@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root{
    --primary-color: #BE1F24;
    --secondary-color: #FBEBD8;
}

body{
    color: #232323;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 26px;
}

/* Selection CSS */
::-moz-selection {
    color: #1A1818;
    background: var(--secondary-color);
}
::selection {
    color: #1A1818;
    background: var(--secondary-color);
}

/* ScrollBar CSS */
::-webkit-scrollbar {
    width: 10px !important;
    height: 10px !important;
    display: block;
    background-color: #d2d2d2;
}
::-moz-scrollbar {
    width: 10px !important;
    height: 10px !important;
    display: block;
    background-color: #d2d2d2;
}
::-ms-scrollbar {
    width: 10px !important;
    height: 10px !important;
    background-color: #d2d2d2;
}
::-webkit-scrollbar-thumb {
    cursor: pointer !important;
    background: #A6151A !important;
    border-radius: 6px;
}

a{
    color: #373737;
    text-decoration: none;
}

a:focus, .btn:focus, button:focus, .button:focus, .navbar-toggler:focus, .accordion-button:focus{
    box-shadow: none;
}

a:hover{
    color: inherit;
}

p{
    line-height: 28px;
}

img{max-width: 100%;}

figure{
    margin-bottom: 0;
}

.text-primary{
    color: var(--primary-color)!important;
}

.bg-primary{
    background-color: var(--primary-color)!important;
}
.bg-light{
    background-color: #F8F8F8!important;
}

.fs-lg{
    font-size: 18px;
    line-height: 30px;
}
.fs-md{
    font-size: 15px;
    line-height: 25px;
}
.fs-sm{
    font-size: 14px;
    line-height: 22px;
}

.fw-bold-black{
    font-weight: 800;
}
.fw-semibold{
    font-weight: 600;
}
.fw-medium{
    font-weight: 500;
}

/* section-heading */
.section-heading{
    font-size: 40px;
}

.heading-style-1{
    font-size: 25px;
}

/* theme-btn */
.theme-btn{
    position: relative;
    color: #fff;
    line-height: normal;
    background-color: var(--primary-color);
    text-align: center;
    padding: 6px 58px 6px 26px;
    border-radius: 50px;
    overflow: hidden;
}
.theme-btn *{
    display: inline-block;
    line-height: 16px;
}
.theme-btn span:nth-child(1){
    font-size: 10px;
}
.theme-btn span:nth-child(2){
    font-size: 17px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-linear-gradient(#C8AC40 -27.32%, #EFD977 25.06%, #EFD977 92.28%, #C4A73B 129.02%);
    background-image: linear-gradient(#C8AC40 -27.32%, #EFD977 25.06%, #EFD977 92.28%, #C4A73B 129.02%);
}
.theme-btn span.icon-box{
    width: 50px;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    line-height: 50px;
    background:#A6151A;
    /* background: url(../images/rocket-img.gif) no-repeat center, #A6151A; */
    background-size: contain;
}
.theme-btn span.icon-box img{
    max-width: 54%;
}
.theme-btn:hover{
    color: #fff;
}
.theme-btn span.icon-box{
    overflow: hidden;
}
.theme-btn span.icon-box img{
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
}


.icon-box{
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
}

.section-box{
    padding-top: 100px;
    padding-bottom: 110px;
}

/* bg-image */
.bg-image{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.bg-image.bg-image-fixed{
    background-attachment: fixed;
}

/* accordion */
.accordion{}
.accordion .accordion-item{
    background-color: #F8F8F8;
    border: 0;
}
.accordion .accordion-item .accordion-button{
    cursor: pointer;
    color: #232323;
    font-size: 20px;
    font-weight: 500;
    background-color: #F8F8F8;
    padding: 1rem 2.5rem 1rem 1.25rem;
    box-shadow: none;
}
.accordion .accordion-item .accordion-button::after{
    content: "+";
    width: auto;
    height: auto;
    background: transparent;
    text-align: center;
    position: absolute;
    top: 15px;
    right: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.accordion .accordion-item .accordion-button:not(.collapsed)::after{
    content: "-";
    background: transparent;
    transform: none;
}
.accordion .accordion-item .accordion-collapse .accordion-body{
    padding-top: 0rem;
    padding-bottom: 0.8rem;
}






/* ---- Header ---- */
header{
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
header *{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* navbar */
header .navbar{
    position: relative;
}
header .navbar-brand{
    width: 130px;
    padding-top: 0;
    padding-bottom: 0.2rem;
}
/* navbar-nav */
header .navbar-nav{
    position: relative;
}
header .navbar-nav .nav-item{
    margin: 0 3px;
}
header .navbar-nav .nav-link{
    color: #373737;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}
header .navbar-nav .nav-link:hover{
    color: var(--primary-color);
}
header .navbar-nav .nav-link.active{
    color: var(--primary-color);
    font-weight: 600;
}
/* call-btn */
header .call-btn{
    color: var(--primary-color);
    font-size: 22px;
    background-color: var(--secondary-color);
    width: 56px;
    height: 56px;
    line-height: 56px;
    box-shadow: 0 0 0 0 rgba(251, 235, 216, 0);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
header .call-btn:hover{
    /* color: #fff; */
    /* background-color: var(--primary-color); */
    background-color: #DEC45F;
    /* background-color: rgb(222, 196, 95); */
    /* box-shadow: 0 0 0 6px rgba(190, 31, 36, 0.3); */
    
    box-shadow: 0 0 0 6px rgba(222, 196, 95, 0.3);
}
/* sticky */
header.sticky{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 25px -8px rgba(100, 98, 94, 0.4);
    z-index: 10;
}
header.sticky .navbar{
    padding-top: .1rem;
    padding-bottom: .1rem;
}
header.sticky .navbar-brand{
    width: 80px;
}
header.sticky .call-btn{
    font-size: 18px;
    width: 46px;
    height: 46px;
    line-height: 46px;
}


/* ---- banner ---- */
.banner-carousel{
    
}


/* ---- info-section ---- */
.info-section .title-box{
    position: relative;
}
.info-section .title{
    font-size: 3.8rem;
    line-height: 5rem;
    text-indent: 9rem;
    display: inline-block;
    padding-right: 80px;
    padding-bottom: 40px;
}
.info-section figure{
    text-align: center;
    width: 220px;
    height: 220px;
    line-height: 220px;
    position: absolute;
    right: 0;
    bottom: 20px;
    display: inline-block;
    background-color: #F4F4F4;
    border-radius: 150px 150px 150px 0;
}
.info-section figure img{
    max-width: 68%;
}


/* ---- About us section ---- */
.about-section{
    background-position: top center;
}
/* process-list */
.about-section .process-list li{
    text-align: center;
}
.about-section .process-list li p{
    font-weight: 500;
    line-height: 20px;
    padding: 0 25px;
}
.about-section .process-list figure{
    width: 74px;
    height: 74px;
    line-height: 74px;
    margin: 0 auto 10px;
    border: 2px solid #DEC45F;
}
.about-section .process-list figure img{
    max-width: 60%;
}
/* side-img */
.about-section .side-img{
    text-align: center;
    position: relative;
    width: 400px;
    height: 400px;
    line-height: 400px;
    border-radius: 100%;
}
.about-section .side-img::before{
    content: "";
    position: absolute;
    top: 2%;
    left: 2%;
    width: 96%;
    height: 96%;
    border: 1px dashed #DEC45F;
    border-radius: 100%;
}


/* ---- key-features-section ---- */
.key-features-section{
    position: relative;
    background-color: var(--secondary-color);
}
/* .key-features-section::before{
    content: "";
    width: 100%;
    height: 65%;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
} */
.key-features-section .owl-carousel .owl-stage{
    display: flex;
}
.key-features-section .owl-carousel .owl-stage .item-col{
    height: 100%;
    display: flex;
    flex: 1 0 auto;
}
.key-features-section .owl-carousel .owl-nav{
    position: absolute;
    top: -50px;
    right: 5px;
}
.key-features-section .owl-carousel .owl-nav button[class^="owl-"]{
    color: #232323;
    display: inline-block;
    padding: 0 18px!important;
}
.key-features-section .column-box{
    background-color: #fff;
    box-shadow: 0px 4px 4px 3px rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.key-features-section .column-box *{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.key-features-section .column-box .title{
    font-size: 19px;
}
.key-features-section .column-box img{
    height: 50px;
}
.key-features-section .column-box:hover{
    box-shadow: 0px 4px 4px 3px rgba(0, 0, 0, 0.1);
}


/* ---- benefits-overview-section ---- */
.benefits-overview-section{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.benefits-overview-section .bg-img{
    height: 100%;
    position: absolute;
    top: 0;
    left: -10%;
    z-index: -1;
}
/* .bg-img::after{
    content: "";
    width: 50%;
    height: 100%;
    background: url(../images/abstract-shape-2.png) no-repeat left center / cover;
    position: absolute;
    top: 0;
    left: 10%;
    z-index: -1;
} */
/* overview-section */
.benefits-overview-section .overview-section{
    position: relative;
}
.benefits-overview-section .container::before{
    content: "";
    width: 1850px;
    height: 100%;
    background-color: #f8f8f8;
    position: absolute;
    left: auto;
    right: 110%;
    bottom: 0;
}
/* column */
.benefits-overview-section .column{
    display: flex;
    color: #fff;
}
.benefits-overview-section .column *{
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.benefits-overview-section .column .icon-box{
    flex: 0 0 auto;
    width: 55px;
    height: 55px;
    line-height: 55px;
    background-color: #901115;
    margin-right: 15px;
}
.benefits-overview-section .column .icon-box img{
    max-width: 60%;
}
.benefits-overview-section .column .title{
    font-size: 19px;
    margin-top: 4px;
}
.benefits-overview-section .column p{
    font-size: 13px;
    line-height: 20px;
}
.benefits-overview-section .column:hover .icon-box img{
    max-width: 65%;
}


/* ---- active-compounds-section ---- */
.active-compounds-section .column-design{
    display: flex;
    align-items: center;
}
.active-compounds-section .column-design .number{
    color: #fff;
    font-size: 80px;
    font-weight: 600;
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    border-radius: 100px 100px 0 100px;
}
.active-compounds-section .column-left .column-design:nth-child(1) .number{
    background: linear-gradient(30deg, #F3510F 13.39%, #FC9D00 86.61%);
}
.active-compounds-section .column-left .column-design:nth-child(2) .number{
    background: linear-gradient(30deg, #FE9E00 3.68%, #FFC51D 100%);
}
.active-compounds-section .column-right .column-design:nth-child(1) .number{
    background: linear-gradient(30deg, #469965 -8.75%, #68C230 86.61%);
}
.active-compounds-section .column-right .column-design:nth-child(2) .number{
    background: linear-gradient(30deg, #5FBA3F 5.99%, #E1E31D 86.61%);
}
.active-compounds-section .column-design .title{
    color: #FF0000;
    font-size: 25px;
}


/* ---- health-benefits-section ---- */
.health-benefits-section .column-wrap{
    display: flex;
    justify-content: center;
}
.health-benefits-section .column-wrap .column-box{
    flex: 0 0 auto;
    width: calc(100% / 8);
    padding: 10px;
}
.health-benefits-section .column-wrap figure{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}
.health-benefits-section .column-wrap p{
    color: #272727;
    font-size: 13px;
}


/* ---- gallery-section ---- */
.gallery-wrapper .image-box{
    cursor: pointer;
}


/* ---- upcoming-products-section ---- */
.products-wrap{
    border: 1px dashed rgba(255, 0, 0, 0.5);
}
.products-wrap li:not(:last-child){
    border-right: 1px dashed rgba(255, 0, 0, 0.5);
}
.products-wrap li .title{
    color: #DD0000;
    font-size: 25px;
}
.products-wrap li figure{
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ---- gratification-index-section ---- */
.gratification-index-section{
    background: linear-gradient(267.41deg, #BE9F32 -3.84%, #DFC661 8.9%, #F4DF7E 27.25%, #F4DF7E 51.31%, #F4DF7E 84.49%, #D1B64D 102.51%, #BE9F32 117.16%);
}
.gratification-index-section .title{
    font-size: 55px;
}
.gratification-index-section .info-box{
    position: relative;
    display: inline-block;
    font-family: "Outfit", sans-serif;
    padding: 18px 20px;
    font-size: 50px;
    background-color: var(--primary-color);
    border-radius: 15px 0 20px 0;
    overflow: hidden;
}
.gratification-index-section .info-box::after{
    content: "";
    width: 128%;
    position: absolute;
    height: 100%;
    top: 0px;
    left: -2px;
    transform: skew(150deg);
    background: linear-gradient(to right, transparent 40%, rgba(244, 223, 126, 0.6) 10%, transparent 50%);
    background-size: 200% 200%;
    background-repeat: no-repeat;
    animation-name: fade_in;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}
@keyframes fade_in {
    0% {
        background-position: 100% 100%;
        opacity: 0.5;
    }

    50% {
        background-position: 0 0;
        opacity: 1;
    }

    100% {
        background-position: 100% 100%;
        opacity: 0;
    }
}
/* .gratification-index-section .info-box::after{
    content: "";
    width: 115%;
    position: absolute;
    height: 100%;
    top: 0px;
    left: -15px;
    transform: skew(150deg);
    background: linear-gradient(to right, transparent 50%, rgba(244, 223, 126, 0.6) 5%, transparent 60%);
    background-size: 200% 200%;
    background-repeat: no-repeat;
    animation-name: fade_in;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}
@keyframes fade_in {
    0% {
        background-position: 100% 100%;
        opacity: 0.8;
    }
    100% {
        background-position: 0 0;
        opacity: 0.3;
    }
    -- 100% {
        background-position: 100% 100%;
        opacity: 1;
    } --
} */


/* ---- footer ---- */
footer{
    background-color: #1A1818;
}
/* link-list */
footer .link-list li{
    position: relative;
    padding-left: 25px;
}
footer .title,
footer .link-list li a{
    font-size: 19px;
}
footer .link-list svg{
    position: absolute;
    top: 4px;
    left: 0;
}
/* copyright-line */
footer .copyright-line{
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}
footer .copyright-line img{
    width: 20px;
}









/* -- whatsapp-btn -- */
.whatsapp-btn{
    color: #fff;
    font-size: 2rem;
    background: linear-gradient(30deg, #469965 -8.75%, #68C230 86.61%);
    border: 0;
    text-align: center;
    position: fixed;
    left: 20px;
    bottom: 35px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    z-index: 5;
}
.whatsapp-btn:hover{
    color: #fff;
}
/* -- back-to-top -- */
.back-to-top{
    cursor: pointer;
    color: #232323;
    background-color: #DEC45F;
    border: 0;
    text-align: center;
    position: fixed;
    right: 20px;
    bottom: 35px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 100%;
    z-index: 5;
}
.back-to-top:hover{
    color: #232323;
}








/* ---- Responsive ---- */
/* min-width */
@media only screen and (min-width: 1400px){
    header .navbar .navbar-collapse{
        margin-left: 120px!important;
    }
    header .navbar-nav .nav-item {
        margin: 0 5px;
    }
}
@media only screen and (min-width: 1200px){
    
}
@media only screen and (min-width: 1199px){
    
}
@media only screen and (min-width: 992px){
    header .navbar-nav .nav-link{
        font-size: 0.9rem;
    }

    .active-compounds-section .column-left .column-design:nth-child(2) .number{
        border-radius: 100px 0 100px 100px;
    }
    .active-compounds-section .column-right .column-design:nth-child(1) .number{
        border-radius: 100px 100px 100px 0;
    }
    .active-compounds-section .column-right .column-design:nth-child(2) .number{
        border-radius: 0 100px 100px 100px;
    }
}

/* max-width */
@media only screen and (max-width: 1199px){
    .health-benefits-section .column-wrap{
        flex-wrap: wrap;
    }
    .health-benefits-section .column-wrap .column-box{
        width: calc(100% / 5);
        padding: 10px 20px;
    }

    .info-section .title{
        font-size: 3rem;
        line-height: 4rem;
        padding-right: 40px;
        padding-bottom: 10px;
    }
    .info-section figure{
        width: 160px;
        height: 160px;
        line-height: 160px;
        bottom: 0px;
    }
    .info-section figure img {
        max-width: 60%;
    }

    .about-section .process-list li p{
        padding: 0 5px;
    }
    .about-section .side-img{
        width: 300px;
        height: 300px;
        line-height: 300px;
    }
    .about-section .side-img img{
        max-width: 90%;
    }

    .benefits-overview-section .bg-img {
        left: -32%;
    }
}

@media only screen and (max-width: 991px){
    .section-box {
        padding-top: 90px;
        padding-bottom: 100px;
    }
      
    /* navbar-collapse */
    header .navbar-collapse{
        position: absolute;
        top: 105px;
        left: 0;
        width: 100%;
        background-color: #f8f8f8;
        padding: 0 20px;
        box-shadow: 0px 6px 10px -4px rgba(100, 98, 94, 0.2);
        z-index: 2;
    }
    header.sticky .navbar-collapse{
        top: 78px;
    }

    .info-section .title{
        font-size: 2.4rem;
        line-height: 3.5rem;
        text-indent: 5rem;
        padding-right: 30px;
        padding-bottom: 20px;
    }
    .info-section figure{
        width: 130px;
        height: 130px;
        line-height: 130px;
        right: 20px;
        bottom: -10px;
    }
    
    .benefits-overview-section .bg-img{
        display: none;
    }
    .benefits-overview-section .container::before{
        display: none;
    }
    .benefits-overview-section .overview-section{
        color: #fff;
        padding-bottom: 0;
    }

    .active-compounds-section .column-design .number{
        width: 110px;
        height: 110px;
        font-size: 60px;
    }
    .active-compounds-section .column-design .title{
        font-size: 22px;
    }

    .health-benefits-section .column-wrap .column-box{
        width: calc(100% / 4);
    }
    
    .gallery-wrapper{
        flex-wrap: wrap;
    }
    .gallery-wrapper .image-box{
        flex: 0 0 auto;
        width: calc(100% / 2);
        height: 250px;
        margin-bottom: 20px;
    }
    .gallery-wrapper .image-box img{
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .gratification-index-section{
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .gratification-index-section .title {
        font-size: 45px;
    }
    .gratification-index-section .info-box{
        font-size: 40px;
    }

    .whatsapp-btn{
        bottom: 55px;
    }
    .back-to-top{
        bottom: 60px;
    }
}

@media only screen and (max-width: 767px){
    .section-heading {
        font-size: 35px;
    }
    .heading-style-1{
        font-size: 21px;
    }

    .theme-btn{
        padding: 3px 50px 3px 25px;
    }
    .theme-btn span.icon-box {
        width: 43px;
    }
    header .navbar-brand{
        width: 110px;
    }
    header .call-btn{
        font-size: 19px;
        width: 52px;
        height: 52px;
        line-height: 52px;
    }

    .info-section p{
        font-size: 16px;
    }
    .info-section .title{
        font-size: 1.8rem;
        line-height: 2.8rem;
        padding-right: 0px;
        padding-bottom: 10px;
    }
    .info-section figure{
        width: 100px;
        height: 100px;
        line-height: 100px;
        right: 0px;
        bottom: -6px;
    }

    .about-section .process-list figure{
        margin: 0 auto 5px;
    }
    .about-section .process-list li p{
        font-size: 14px;
    }
    .about-section .side-img{
        width: 250px;
        height: 250px;
        line-height: 250px;
    }
    .about-section .side-img img {
        max-width: 80%;
    }

    .key-features-section .column-box .title{
        font-size: 18px;
    }
    .key-features-section .column-box img{
        height: 44px;
    }
    .key-features-section .owl-carousel .owl-nav{
        position: relative;
        top: 0px;
        right: 0;
    }
    
    .active-compounds-section .column-design{
        font-size: 15px;
    }
    .active-compounds-section .column-design .number {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    .active-compounds-section .column-design .title {
        font-size: 19px;
    }
    
    .health-benefits-section .column-wrap .column-box{
        width: calc(100% / 3);
    }

    .accordion .accordion-item .accordion-button{
        font-size: 18px;
    }

    .products-wrap li:not(:last-child) {
        border-right: 0;
        border-bottom: 1px dashed rgba(255, 0, 0, 0.5);
    }

    .gratification-index-section {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .gratification-index-section .title {
        font-size: 35px;
    }
    .gratification-index-section .info-box{
        font-size: 30px;
        padding: 11px 20px;
    }

    footer .copyright-line{
        font-size: 14px;
    }
}

@media only screen and (max-width: 575px){
    .section-heading {
        font-size: 28px;
    }
    .section-heading + p{
        font-size: 15px;
    }

    .info-section .title{
        font-size: 1.6rem;
        line-height: 2.4rem;
        padding-right: 80px;
        padding-bottom: 10px;
    }
    .info-section figure{
        right: 18px;
        bottom: 2px;
    }
    
    .about-section .process-list figure {
        width: 65px;
        height: 65px;
        line-height: 65px;
    }
    .about-section .side-img img {
        max-width: 80%;
    }
    
    .active-compounds-section .column-design{
        font-size: 14px;
    }
    .active-compounds-section .column-design .title {
        font-size: 18px;
    }

    .health-benefits-section .column-wrap .column-box{
        width: calc(100% / 2);
        padding: 5px 20px;
    }

    .accordion .accordion-item .accordion-collapse .accordion-body{
        font-size: 15px;
    }
    
    .gallery-wrapper .image-box{
        height: 200px;
    }

    .gratification-index-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .gratification-index-section .title {
        font-size: 26px;
    }
    .gratification-index-section .info-box{
        font-size: 20px;
        padding: 6px 20px;
    }

    footer{
        font-size: 15px;
    }
    footer .title, footer .link-list li a{
        font-size: 17px;
    }
    .whatsapp-btn{
        bottom: 85px;
    }
    .back-to-top{
        bottom: 85px;
    }
}


@media only screen and (max-width: 480px){
    header .navbar-brand{
        width: 95px;
    }
    .theme-btn *{
        line-height: 13px;
    }
    .theme-btn{
        padding: 2px 40px 2px 15px;
    }
    .theme-btn span:nth-child(1) {
        font-size: 7px;
    }
    .theme-btn span:nth-child(2) {
        font-size: 13px;
    }
    .theme-btn span.icon-box {
        width: 36px;
        line-height: 37px;
    }
    header .call-btn {
        font-size: 18px;
        width: 42px;
        height: 42px;
        line-height: 42px;
    }
    header .navbar .navbar-toggler{
        /* padding: .25rem .45rem; */
    }

    .info-section .title-box{
        text-align: center;
    }
    .info-section .title{
        text-align: left;
        font-size: 1.5rem;
        line-height: 2.4rem;
        text-indent: 2.5rem;
        padding-right: 0px;
        padding-bottom: 0px;
    }
    .info-section figure{
        width: 150px;
        height: 150px;
        line-height: 150px;
        position: relative;
        right: 0;
        bottom: 0;
    }
}
