
body {
  --sb-track-color: #002b5c;
  --sb-thumb-color: #ffffff;
  --sb-size: 6px;
}

body::-webkit-scrollbar {
  width: var(--sb-size)
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

/* Global  */
.section_spacing{
    padding-block: 2.5rem;
}
.section_title{
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 34px;
    line-height: 100%;
    color: var(--color-blue);
}
.card{
    all: unset;
}
.comm_line_height{
    line-height: 1.6;
}
/* Global END */

header nav.navbar{
    background-color: #002b5ce3;
}
header .navbar-nav .nav-link{
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 18px;
    line-height: auto;
    color: var(--color-white);
}
header .navbar-nav .nav-link:hover{
    color:var(--color-active);
}
header .navbar-nav .nav-link.active{
    color: var(--color-active);
}
header .navbar-toggler{
    border: none;
    box-shadow: none;
}
header .nav_sm_stuff{
    display: flex;
    align-items: center;
    gap: 0.3em;
}
.etc_icons{
    display: flex;
    /* margin-left: 4px; */

    .cart_etc_icon{
        width: 20px;
        height: 20px;
        display: flex;
        margin-top: 3px;
        img{
            width: 100%;
        }
    }
}
header .navbar-toggler-icon{
    background-image: url('../images/nav-icon-01.svg');
    width: 20px;
    height: 20px;
}
.banner_hero{
    background-image: url('../images/banner-bg.jpg');
    background-size: cover;
    min-height: 800px;
    display: grid;
    align-items: center;
    background-position: center;
}
.banner_hero .title{
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 45px;
    line-height: 1.3;
    /* line-height: 100%; */
    color: var(--color-blue);
    text-align: end;
}
.banner_hero .title .small{
    font-size: 33px;
}
.banner_hero .desc{
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    text-align: end;
    color: var(--color-blue);
}
.banner_hero .intro_tag{
    position: relative;
    background-color: var(--color-blue);
    color: var(--color-white);
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 20px;
    line-height: 40px;
    padding: calc(0.6 * 5px) calc(1.2 * 15px);
    width: fit-content;
    border-radius: 25px 0;
    margin-top: 5rem;
    margin-bottom: 1rem;
}
.banner_hero .intro_tag::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: inherit;
    background: transparent;
    transform: translate(4px, 4px);
    border: 1px solid var(--color-blue);
    z-index: 0;
}
.banner_hero .desc.large{
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
}

.what_happens_next{
    background-image: url('../images/what-next-bg.jpg');
    background-size: cover;
}
.what_happens_next .open_text{
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-blue);
    text-align: center;
}
.what_happens_next .open_text.continue{
    font-weight: 700;
    font-size: 24px;
    line-height: 1.6;
}
.what_happens_next .section_title{
    font-family: var(--font-poppins);
    font-size: 30px;
    line-height: 30px;
    color: var(--color-blue);
    text-align: center;
    font-weight: 700;
    line-height: 50px;
}
.what_happens_next .card{
    all: unset;
    border-radius: 25px;
}
.what_happens_next .card .img_wrap{
    border-radius: 25px 25px 0 0;
    overflow: hidden;
    height: 224px;
}
.what_happens_next .card .img_wrap img{
    width: 100%;
    border-radius: inherit;
    transition: 0.3s linear;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.what_happens_next .card .img_wrap:hover img{
    transform: scale(1.1);
}
.what_happens_next .card .text{
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-white);
    padding: 1.5rem 2.5rem;
    background-color: var(--color-blue);
    border-radius: 0 0 25px 25px;
    text-align: center;
    line-height: 1.3;
}
.what_happens_next .cards_wrap .col_here:nth-child(even) .text{
    background-color: var(--color-active);
}

.therma_advantage{
    background-image: url('../images/adventage_bg.jpg');
}
.therma_advantage .card{
    display: grid;
    gap: 1em;
    text-align: center;
}
.see_diff{
    display: flex;
    gap: 1em;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-inline: auto;
    text-decoration: none;
}
.see_diff img{
    width: 70%;
}
.see_diff .text{
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 30px;
    line-height: 117%;
    color: var(--color-blue);
    margin: 0;
}

.clinically_proven{
    background-image: url('../images/proven-bg.jpg');
    background-size: cover;
    background-position: center;
}
.clinically_proven .desc{
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-blue);
}
.clinically_proven .card{
    display: flex;
    gap: 1em;
    text-align: center;
    align-items: start;
}
.clinically_proven .card .text{
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-blue);
}
.clinically_proven .card .text lg{
    font-weight: 600;
    font-size: 25px;
}
.clinically_proven .desc.large{
    font-size: 24px;
    line-height: 40px;
    width: 80%;
    margin-inline: auto;
}

.shop_now .cards_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: ; */
}
.shop_now .cards_wrap .title{
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    color: var(--color-blue);
    text-align: center;
    margin-bottom: 10px;
}
.shop_now .cards_wrap .border_wrap{
    border: 1px solid #000;
}
.shop_now .cards_wrap .card .border_wrap {
    border-inline-width: 0;
}
.shop_now .cards_wrap .card:first-child .border_wrap{
    border-left-width: 1px;
}
.shop_now .cards_wrap .card:last-child .border_wrap{
    border-right-width: 1px;
}
.shop_now .cards_wrap .img_wrap{
    background-color: #E0DCDB;
    border-radius: 10px;
    margin: 10px;
}
.shop_now .cards_wrap .last_item .img_wrap{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.shop_now .cards_wrap .last_item .img_wrap a{
    display: block;
    text-align: center;
}
.shop_now .cards_wrap .last_item .img_wrap img{
    width: 96.4%;
}
.shop_now .cards_wrap .shop_button{
    background-color: #00A8A8;
    padding: calc(0.6 * 11px) calc(1.2 * 15px);
    color: var(--color-white);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 10px;
    margin-inline: auto;
    width: fit-content;
    display: flex;
}

.comparison_section{
    background-image: url('../images/compare-bg.webp');
    background-size: cover;
    background-position: center;
    padding-bottom: 0;
}
.comparison_section .title_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
}
.comparison_section .img_wrap img{
    width: 100%;
}
.comparison_section .container-fluid .title{
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 25px;
    line-height: 100%;
    color: var(--color-blue);
    text-align: center;
    margin-top: 1.5em;
}

.offer_and_testimonials .owl-carousel .owl-stage-outer{
    min-height: 300px;
    position: relative;
    z-index: 2;
}
.offer_and_testimonials .owl-carousel .owl-stage-outer .owl-stage{
    display: flex;
    align-items: center ;
}
.offer_and_testimonials .owl-nav{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.offer_and_testimonials .owl-nav .owl-prev{
    transform: translateX(-65px);
}
.offer_and_testimonials .owl-nav .owl-next{
    transform: translateX(65px);
}
.offer_and_testimonials{
    background-image: url('../images/offer-bg.webp');
    background-size: cover;
    background-position: center;
}
.offer_and_testimonials .offer .img_wrap img{
    position: relative;
    z-index: 1;
    cursor: pointer;
    pointer-events: auto;
}
.offer_and_testimonials #copyImage{
    position: relative;
}
.offer_and_testimonials .copied {
  /* opacity: 1; */
  position: relative;
  left: 0;
  right: 0;
  font-family: var(--font-poppins);
  font-size: 18px;
  color: #155724;
  z-index: 0;
  display:none;
}
.offer_and_testimonials .testimonials .cards_wrap{
    /* display: flex; */
    /* gap: 20px; */
}
.offer_and_testimonials .testimonials .card{
    border: 5px solid var(--color-active);
    padding: 2rem;
    background: #Fff;
    display: flex;
    min-height: 300px;
}
.offer_and_testimonials .testimonials .inner_wrap{
    position: relative;
    padding: 2rem;
    border-radius: 46px;
    border: 2px solid #000;
    font-family: var(--font-poppins);
    display: grid;
    align-content: center;
    gap: 1em;
}
.offer_and_testimonials .testimonials .inner_wrap::before,
.offer_and_testimonials .testimonials .inner_wrap::after{
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    top: -20px;
    left: 48px;
    background-image: url('../images/quote-top.svg');
}
.offer_and_testimonials .testimonials .inner_wrap::after{
    background-image: url('../images/quote-bottom.svg');
    left: unset;
    top: unset;
    right: 48px;
    bottom: -20px;
}

.offer_and_testimonials .testimonials .name{
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #000;
}
.offer_and_testimonials .testimonials .desig{
    font-weight: 600;
    font-size: 11px;
    line-height: 100%;
    color: var(--color-active);
}
.offer_and_testimonials .testimonials .para{
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: #002B5C;

    /* -webkit-line-clamp: 4;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical; */
}
.offer_and_testimonials .testimonials .card.active .para{
    -webkit-line-clamp:initial;
}
.offer_and_testimonials .testimonials .read_more{
    font-weight: 600;
    font-size: 10px;
    line-height: 100%;
    color: #000;
    cursor: pointer;
    text-align: end;
    display: none;
}
.offer_and_testimonials .tooltip{
    width: 100px;
    height: 100px;
    background-image: url('../images/slider-img.svg');
    display: none;
}

.quick_links{
    background-image: url('../images/footer-links-bg.svg');
    background-size: cover;
    background-position: center;
}
.quick_links .card{
    width: 60%;
    background-color: #D9D9D9;
    border-radius: 42px;
    border: 4px solid #fff;
    padding: 2rem 0;
    text-align: center;
    display: block;
    margin: auto;
    /* width: 36%; */
}
.quick_links .card .text{
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: var(--color-blue);
    display: block;
    text-decoration: none;
}
.quick_links .card .links_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}
.quick_links .card .links_wrap .text:hover{
    text-decoration: underline;
}

.quick_links .card .links_wrap .dot{
    width: 10px;
    height: 10px;
    background-color: var(--color-active);
    border-radius: 50%;
}
.quick_links .section_title{
    color: var(--color-white);
}
.quick_links .contact_item{
    display: flex;
    justify-content: center;
    gap: 1em;
}
.quick_links .contact_item .item{
    display: flex;
    gap: 0.5em;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: var(--color-white);
    align-items: center;
    text-decoration: none;
}
.quick_links .contact_item .item:hover{
    text-decoration: underline;
}

.recognized_by .section_title{
    padding-bottom: 15px;
}
.recognized_by .logo_wrap{
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6em; */
}
.recognized_by .logo_wrap .logo{
    max-width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
}
.recognized_by .logo_wrap .logo img{
    height: 100%;
    object-fit: contain;
}

.copyright{
    padding-block: 1rem;
    background-color: var(--color-blue);
}
.copyright .text{
    font-family: var(--font-poppins);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
}
.copyright .text a{
    color: var(--color-white);
}

.offer_modal .modal-content{
    background: transparent;
    border: none;
}
.offer_modal .offer_and_testimonials{
    background-image: unset;
}
.offer_modal .offer_and_testimonials .offer .img_wrap img{
        width: 100%;
}
.offer_modal .btn-close{
position: absolute;
    top: 4px;
    right: -4px;
    z-index: 2;
    background-color: var(--color-active);
    color: #fff;
    padding: 10px;
    opacity: 1;
    --bs-btn-close-bg: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}
.offer_modal .btn-close img{
    width: 100%;
}

.offer_modal .copied{
    color: #fff;
    font-size: 25px;
}
.offer_modal .modal-dialog{
    max-width: 700px;
    justify-content: center;
}