body {

    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings: "wdth" 100, "YTLC" 500;

    padding: 0;
    margin: 0;
    /* background-color: rgb(255, 250, 226); */
}

.header-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid lightgrey;
    font-size: 1.2rem;
}

.ht-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ht-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-nav {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    padding: 10px 0;
}

.main-nav li {
    list-style: none;
    border-left: 1px solid lightgrey;
}

.main-nav a {
    padding: 10px;
    font-size: 1.2rem;
    padding: 10px 30px;
}

.main-nav li:first-child {
    border-left: none;
    /* padding-left: 0; */
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
}

.main-nav a:hover {
    cursor: pointer;
    color: #ff5e14;
}

.main-nav a.active {
    color: #ff5e14;
    font-weight: bold;
}

.products {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    justify-content: flex-start;
    align-items: center;
    /* gap: 20px; */
    max-width: 100vw;
    padding: 30px 60px;
    /* background-color: rgb(253, 246, 238); */
}


.product-card {

    width: 65vw;
    max-width: 65vw;
    min-width: 65vw;

    /* margin: 20px 0; */
    margin: 0;

    /* padding: 20px; */
    box-sizing: content-box;

    text-align: center;
    /* cursor: pointer; */

    /* border-radius: 20px; */
    background-color: white;

    font-size: 1rem;
    display: flex;
    justify-content: center;

    border-bottom: 1px solid lightgrey;

}

.product-card:first-child {
    border-top: 1px solid lightgrey;
}

/* .product-card:last-child {
    border-bottom: none;
} */

.product-card__head {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    border-left: 1px solid lightgrey;
    border-right: 1px solid lightgrey;
}
.product-card__body {
    width: 70%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    margin-left: 30px;
    padding: 60px 20px;
}

.product-card p {
    margin: 0;
    margin-bottom: 20px;
    text-align: left;
    font-size: 1.2rem;
}

.product-card h3 {
    margin-top: 0;
    font-size: 2rem;
    padding-top: 10px;
    line-height: 2.4rem;
    font-weight: 500;
    /* min-height: 4.7rem; */
}


.product-card i {
    font-size: 2.4rem;
    color: rgb(14, 89, 133);
}

.product-card:hover i, .product-card:hover h3 {
    transform: scale(1.02);
    transition: transform 0.5s ease-in-out;
}

.product-card:hover i {
    color: rgb(28, 129, 159);
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.product-card .bt-container {
    margin-top: 20px;
    /* align-self: flex-end; */
    display: none;
}


/* product card alt */


.product-card--alt .product-card__head {
    border-left: 1px solid lightgrey;
    border-right: 1px solid lightgrey;
}


/* Product card alt end */

.header-hero {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 300px;
    margin-bottom: 20px;
    margin-top: 10px;
}



.header-hero .hero {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
}

.header-hero .hero__blurb {
    /* position: absolute; */
    top: 100px;
    margin-top: 20px;
    left: 0;
    width: 70%;
    height: auto;
    z-index: 100;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
}

.header-hero .hero__blurb p {
    margin: 0;
}


.logo {
    max-width: 230px;
    height: auto;
    z-index: 100;
    border: 20px solid white;
    border-radius: 20px;
}

.header__phone {
    margin-right: 20px;
}
.header__phone a {
    text-decoration: none;
    color: #333;
}
.header__phone a:hover {
    color: #ff5e14;
    cursor: pointer;
}

/* Buttons */
.bt-container {
    position: relative;
    max-width: 200px;
}
.btn-bg {
    width: 100%;
    max-width: 200px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
}
.btn-bg.bg-2 {
    background: #2966b1;
}

.btn-bg.bg-2 .btn-2 button {
    border: none;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;

    width: 100%;
    max-width: 200px;
    height: 100%;
    background: none;
    color: white;
}

.btn-bg.bg-2 .btn-2 button:hover {
    background: transparent;
    color: white;
    cursor: pointer;
}

.btn-bg.bg-2 .btn-2 button:hover:before,
.btn-bg.bg-2 .btn-2 button:hover:after {
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    width: 100%;
    max-width: 200px;
}

.btn-bg.bg-2 .btn-2 button:before,
.btn-bg.bg-2 .btn-2 button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    width: 0px;
    height: 3px;
    background: white;
    transition: all 0.4s ease;
}

.btn-bg.bg-2 .btn-2 button:after {
    top: inherit;
    left: inherit;
    bottom: 0;
    right: 0;
}

/* Buttons End */



/* team */
.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 40px;
    gap: 40px;
}
.team-member {
    width: calc(25% - 30px);
    max-width: calc(25% - 30px);
    border: 1px solid lightgrey;
    text-align: left;
    padding: 40px;
    box-sizing: border-box;
}

.team-member__image {
    overflow: hidden;
    width: 100%;
    height: 500px;
}

.team-member__image img {
    width: 100%;
    height: auto;
}

.team-member h3 {
    color: #2966b1;
    font-size: 1.2rem;
}
/* team end */


.hero__blurb--mobile {
    display: none;
}







/* Footer */

.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}
/* Footer end */

@media (max-width: 768px) {

    .team {
        flex-direction: column;
    }

    .team-member {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .main-nav, .products, .product-card {
        flex-direction: column;
    }

    .hero__blurb--mobile {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 90vw;
        padding: 10px;
    }

    .main-nav {
        /* display: none   ; */
    }

    .header-hero {
        display: none;
        height: 300px;
        padding-top: 5px;
    }

    .header-hero .hero {
        height: 100%;
        width: auto;
        display: none;
    }

    .products {
        padding: 20px 0;
    }

    .product-card {
        max-width: 90%;
        width: 90%;
        min-width: 90%;
        /* margin: 20px; */
        margin-bottom: 20px;
        padding: 40px 0;
    }

    .product-card__head {
        width: 100%;
        order: 1;
    }

    .product-card__body {
        width: 100%;
        margin-left: 0;
        order: 2;
    }

    .product-card__head, .product-card__body {
        padding-left: 0;
        padding-right: 0;
        border: 0;
        padding: 0;
    }

    .product-card--alt .product-card__head, .product-card--alt .product-card__body {
        padding-left: 0;
        padding-right: 0;
        border: 0;
        padding: 0;
    }

    /* burger menu */
    #burger-menu {
        cursor: pointer;
        height: 27px;
        width: 27px;
        margin: 50px;
        overflow: visible;
        position: relative;
        z-index:400;
    }
    #burger-menu span,
    #burger-menu span:before,
    #burger-menu span:after {
        background: #0b1d53;
        display: block;
        height: 4px;
        opacity: 1;
        position: absolute;
        transition: 0.3s ease-in-out;
    }
    #burger-menu span:before,
    #burger-menu span:after {
        content: "";
    }
    #burger-menu span {
        right: 0px;
        top: 13px;
        width: 27px;
    }
    #burger-menu span:before {
        left: 0px;
        top: -10px;
        width: 16px;
    }
    #burger-menu span:after {
        left: 0px;
        top: 10px;
        width: 20px;
    }
    
    #burger-menu.close span {
        transform: rotate(-45deg);
        top: 13px;
        width: 27px;
        background-color: #fff;
    }
    #burger-menu.close span:before {
        top: 0px;
        transform: rotate(90deg);
        width: 27px;
        background-color: #fff;
    }
    #burger-menu.close span:after {
        top: 0px;
        left:0;
        transform: rotate(90deg);
        opacity:0;
        width:0;
    }
    
    #menu{
        z-index:1;
        min-width:100%;
        min-height:100%;
        position: fixed;
        top:0;
        height:0;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease-in-out;
        
    }
    
    #menu.overlay{
        visibility: visible;
        display: flex;
        opacity: 1;
        padding-top:80px;
        background: #08365c;
        z-index: 300;
    }
    
    #menu li{
        list-style:none;
    }

    #menu a{
        color:#fff;
        display:block;
        font-size: 32px;
        margin-bottom:10px;
        text-decoration:none;
    }

    /* burger menu ends */


}