
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz@9..40&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* *************************************header***************************************************** */

body {
    font-family: 'Jost', sans-serif;
    /* font-family: 'DM Sans', sans-serif; */
}

.container-v2 {
    max-width: 1440px;
}
a{
    text-decoration: none;
}
/* <**************************************************navbar*************************************> */
.brand {
    
}
.brand h2 {
    font-weight: 700;
    color: #fafafa !important;
    font-family: 'Jost', sans-serif;
    font-size: 3rem;
}
.top-navbar{
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background: #b979ae;
}
.nav__wrapper li {
    list-style: none;
    padding: 24px 24px;
}

.nav__wrapper li a {
    text-decoration: none;
    color: rgb(255, 255, 255);

}

.nav__wrapper li a:hover {
    color: #ffffff;

}

.nav__item a {
    position: relative;
}

/* .nav__wrapper .nav__item a::before {
    content: " ";
    position: absolute;
    width: 0;
    height: 10%;
    bottom: 0px;
    border-bottom: 2px solid #175cff;
    background-repeat: no-repeat;
    transition: all .3s linear;
} */

.nav__wrapper .nav__item a:hover:before {
    width: 100%;
}
.nav__item .active{
    border-bottom: 1px solid #175cff;
}
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    background: #b979ae;
}

.site-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.nav__item a {
    display: block;
    /* padding: 1rem; */
    /* padding: 0 24px; */
    font-weight: 500;
    font-size: 18px;
}

.nav__toggle {
    display: none;
}

.site-header .site-header__start{
    width:42%;
}

.btn-contact {
    color: white;
    padding: 8px 25px;
    border-radius: 0px;
    margin: 0 20px;
    border: 2px solid #175cff;
    font-family: "DM Sans", Sans-serif;
    font-weight: 400;
    background-color: #175cff;

}

/* .btn-contact:hover {
    background-color: #fff;
    border: 2px solid black;
    color: rgb(0, 0, 0) !important;
} */
@media (min-width: 1000px) {
    .site-header__wrapper {
        justify-content: initial;
    }
}

@media (min-width: 1000px) {
    .site-header__middle {
        margin-left: auto;
    }
}

@media (max-width: 1000px) {
    .site-header__end {
        padding-right: 4rem;
    }
}

@media (min-width: 1000px) {
    .nav__wrapper {
        display: flex;
    }
}
@media (max-width: 1000px) {
    .nav__wrapper {
        position: absolute;
        top: 100%;
        right: 0;
        left: -13px;
        z-index: -1;
        background-color: #b979ae;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    }

    .nav__wrapper.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        z-index: 999;
        padding: 20px 0;
    }
}
@media (max-width: 1000px) {
    .nav__toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
    }
}
@media (max-width: 991px){
    .site-header .site-header__start {
        width: 50%;
    }
    .site-header__wrapper{
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
@media (max-width: 575px){
    .nav__toggle{
        top: 0.25rem;
    }
}
/**************    navbar end   *******************/
/**************    header end   ********************/
.btn-primary_my{
    --bs-btn-color: #614f00;
    --bs-btn-bg: #ffe161  !important;
    --bs-btn-border-color: #ffe161   !important;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn_my{
    --bs-btn-border-radius: none;
}
.btn-primary_my:hover {
    color:#614f00 !important;
    background-color: #ffe161  !important;
    border-color: #ffe161  !important;
}
.btn-primary_my2{
    --bs-btn-color: #614f00;
    --bs-btn-bg: #ffe161  !important;
    --bs-btn-border-color: #ffe161   !important;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary_my2:hover {
    color:#614f00 !important;
    background-color: #ffe161  !important;
    border-color: #ffe161  !important;
}
.btn-primary_my1{
    --bs-btn-color: #ff6666;
    --bs-btn-bg: transparent   !important;
    --bs-btn-border-color: #ff6666   !important;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 400;
}
.btn-primary_my1:hover {
    color:#ff6666 !important;
    background-color: transparent  !important;
    border-color: #ff6666  !important;
}
.display-1 {
    font-family: 'Jost', sans-serif;
    font-size: 4.6rem;
    line-height: 1.1;
  }
 
  .display-2 {
    font-family: 'Jost', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
  }
 
  .display-4 {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
  }
 
  .display-5 {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    line-height: 1.5;
  }
 
  .display-7 {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .to-top-section{
    color: #16544A;
    font-size: 28px;
  }
  .all-section{
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #b979ae;
  }
  .all-section h2{
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
  }
  .all-section h4{
    color: #ffe885;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .all-brand {
    padding-top: 30px;
  }
  .all-brand  h4{
    font-weight: 700;
  }
  .all-brand .img-wrapper img {
    margin: auto;
    width: 200px;
    padding-bottom: 2rem;
    align: center;
}
.counter-container ol li {
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-footer {
    padding: 0.5rem 1rem;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125);
}
.card-wrap {
    background: #fafafa;
    border-radius: 4px;
}
.item-wrapper {
    background-color: #ffffff;
    border-radius: 4px;
}
.fw-400{
    font-weight: 400;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fw-800{
    font-weight: 800;
}
.review-name{
    font-size: 25px;
    text-align: center;
}
.counter-container .imgwidth{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.offersection{
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #fafafa;
}



.counter-container ul {
    margin: 0;
    list-style: none;
    padding-left: 2.5rem;
}

.counter-container ul li {
    margin-bottom: 1rem;
    list-style: none;
    position: relative;
    padding-left: 1rem;
}
.counter-container ul li::before {
    position: absolute;
    left: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    background-color: rgb(22, 84, 74);
    width: 40px;
    height: 40px;
    margin-top: 5px;
    content: "✓";
    border-radius: 50%;
}
.to-footerP{
    color: #9e0a0a;
}

.footer-footer{
    text-align: center;
    color: #ffffff;
}
.main_section .heading-h5{
    color: #175cff;
    font-family: "DM Sans", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 26.04px;
}
.main_section .heading-h1{
    color: #b979ae;
    font-weight: 800;
}
.main_section .heading-h2{
    color: #14171B;
    font-family: "DM Sans", Sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 62.5px;
}
.main_section .heading-h3{
    color: #14171B;
    font-family: "DM Sans", Sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 62.5px;
}
.main_section .heading-h6{
    color: #B6B6B6;
    font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.83px;
}
.site-header__middle {
    margin: auto;
}
.nav__toggle i{
    margin-top: 0px; font-size: 25px; padding: 12px 18px;
}
.nav__wrapper{
    margin: 0;
}
.totexr1{
    font-size: 1.2rem;
}

@media screen and (max-width: 1399px) and (min-width: 1000px) {
    .site-header .site-header__start {
        width: 20%;
    }
  }
@media screen and (min-width: 786px) {
    .card-wrap .content-wrap {
        padding: 2rem;
    }
  }
  @media screen and (max-width: 991px) {
    .nav__toggle{
       background: none;
        border: none;
    }
  }
  @media screen and (max-width:575px) {
    .brand h2{
        font-size: 2rem;
    }
    .nav__toggle i{
        margin-top: 6px;
    }
    .counter-container ol{
        padding: 0;
    }
    .display-2{
        font-size: 2rem;
    }
    .display-5{
        font-size: 1.5rem;
    }
  }



#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #175cff; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 5px 10px; /* Some padding */
    border-radius: 0px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }













