/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@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=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');


:root{
    --theme-color: #E02735;
    --theme-color1: #FF0000;
    --light-grey: #f8f8f8;
    --dark-text: #0E0E0E;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    color: #0E0E0E;
    font-size: 17px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    line-height: 26px;
}

h1,h2,h3,h4,h5,h6,header,nav,article,aside,figure,figcaption,footer,ul,ol,li{
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 400;
}

p{
    color: #616161;
    /* text-align: justify; */
}

ul, ol, li{
    list-style: none;
}


a{
    color: var(--dark-text);
    text-decoration: none;
}
a:hover{
    color: var(--theme-color);
}

a:focus,
input:focus,
.form-control:focus,
button:focus,
.accordion-button:focus{
    box-shadow: none;
    border-color: transparent;
    outline: 0;
}



/* ------ default classes ------ */
.bg-light{
    background-color: var(--light-grey);
}

.theme-color{
    color: var(--theme-color)!important;
}

.text-dark{
    color: var(--dark-text)!important;
}

.section-space{
    padding: 50px 0 50px;
}

/* btn */
.btn{
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    width: auto;
    background-color: var(--theme-color);
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    padding: 12px 35px;
    border: 0;
    border-radius: 34px;
}
.btn:hover{
    background-color: var(--theme-color1);
}
/* btn-light */
.btn.btn-light{
    background-color: #fff;
    color: var(--theme-color);
}
.btn.btn-light:hover{
    background-color: var(--theme-color);
    color: #fff;
}

/* link-btn */
.link-btn{
    display: inline-block;
    color: var(--theme-color);
    font-size: 21px;
    -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;
}
.link-btn img{
    width: 24px;
    margin-left: 9px;
    -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;
}
.link-btn:hover{
    color: #0E0E0E;
}
.link-btn:hover img{
    margin-left: 12px;
}
.link-btn.light-color{
    color: #fff;
}


/* inline-links */
.inline-links li{
    position: relative;
    margin-right: 12px;
    padding-right: 12px;
}
.inline-links li::after{
    content: "";
    border-right: 1px solid #181818;
    height: 78%;
    position: absolute;
    top: 12%;
    right: 0px;
}
.inline-links li:last-child{
    padding-right: 0;
    margin-right: 0;
}
.inline-links li:last-child::after{
    display: none;
}

/* circular-icon-list */
.circular-icon-list{
    display: flex;
}
.circular-icon-list li{
    margin: 0 8px;
}
.circular-icon-list li a{
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    color: #fff;
    background-color: #0E0E0E;
    text-align: center;
    font-size: 12px;
    line-height: 25px;
}
.circular-icon-list li a:hover{
    background-color: var(--theme-color1);
}
.circular-icon-list li:last-child{
    margin-right: 0;
}

/* social-media */
.social-media{
    display: inline-flex;
}

/* heading-style */
.heading-style{
    text-align: center;
    margin-bottom: 60px;
}
.heading-style h2{
    font-size: 43px;
    margin-bottom: 8px;
}
.heading-style h4{
    font-size: 28px;
    margin-bottom: 11px;
}
.heading-style h5{
    font-size: 19px;
    line-height: normal;
}

/* title-style */
.title-style{
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 30px;
}
.title-style h2{
    font-size: 45px;
}
.title-style::after{
    content: "";
    min-width: 68px;
    border-bottom: 3px solid var(--theme-color1);
    position: absolute;
    left: 0;
    bottom: 0;
}

/* form-control */
.form-group{
    margin-bottom: 18px;
}
.form-group.required label{
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding-right: 10px;
}
.form-group.required label::after{
    content: "*";
    position: absolute;
    top: 0;
    right: 0;
    color: var(--theme-color);
}
.form-group .form-control{
    position: relative;
    padding: 12px 23px;
}
.form-group .form-control:focus{
    border-color: var(--theme-color);
}
.form-group.select-group{
    position: relative;
}
.form-group.select-group::after{
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
    font-size: 12px;
    position: absolute;
    top: 13px;
    right: 33px;
    z-index: 1;
}
.form-group.select-group .form-control{
    padding-right: 28px;
}
.form-group textarea.form-control{
    resize: none;
}
/* checkbox */
.form-group.checkbox label{
    position: relative;
    padding-left: 22px;
}
.form-group.checkbox input{
    visibility: hidden;
    position: absolute;
}
.form-group.checkbox label::before{
    content: "";
    width: 17px;
    height: 17px;
    border-radius: 100%;
    border: 1px solid #c9c9c9;
    position: absolute;
    top: 5px;
    left: 0;
}
.form-group.checkbox label::after{
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background-color: transparent;
    position: absolute;
    top: 9px;
    left: 4px;
}
.form-group.checkbox input:checked + label::before{
    border-color: var(--theme-color);
}
.form-group.checkbox input:checked + label::after{
    background-color: var(--theme-color);
}
/* .form-group.checkbox input:checked + label{
    color: var(--theme-color);
} */


/* accordion */
.accordion .accordion-item{
    background-color: transparent;
}
.accordion .accordion-item .accordion-button{
    position: relative;
    font-size: 24px;
    line-height: normal;
    background-color: transparent;
    padding: 1rem 2.4rem 1rem 0rem;
}
.accordion .accordion-button::after{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
    width: 1rem;
    height: 1rem;
    background: none;
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
    font-size: 15px;
}
.accordion .accordion-button:focus:not(.collapsed){
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    z-index: auto;
}
.accordion-button:not(.collapsed){
    color: var(--theme-color);
}


.owl-theme .owl-nav [class*="owl-"]:hover{
    background-color: transparent;
}


/* ------ header ------ */
header{
    background-color: #fff;
    position: relative;
    top: 0;
    -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;
}

/* top-section */
header .top-section{
    /* height: 60px; */
    color: #2b2b2b;
    background-color: #D9D9D9;
    padding: 7px 0 8px;
    -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 .top-section a{
    color: #2b2b2b;
}
header .top-section p.tagline{
    color: var(--dark-text);
    margin-bottom: 0;
}
header .top-section .inline-links li i{
    color: #292929;
    margin-right: 8px;
    position: relative;
    top: 2px;
}
header .top-section .circular-icon-list li a{
    color: #fff;
}

/* navbar-brand */
header{
    z-index: 2;
    position: relative;
}
header .navbar{
    -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 .navbar .navbar-brand{
    margin-right: 0;
}
header .navbar .navbar-brand .logo img{
    width: 320px;
}
/*  */
header .navbar .navbar-nav{
    padding: 16px 0;
    align-items: center;
}
header .navbar .navbar-nav > li{
    margin-left: 28px;
}
header .navbar .navbar-nav .nav-link{
    position: relative;
    color: #0E0E0E;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
}
header .navbar .navbar-nav li:last-child .nav-link{
    padding-right: 0;
}
header .navbar .navbar-nav .nav-link img,
header .navbar .navbar-nav .nav-link svg{
    width: 22px;
}
header .navbar .navbar-nav .nav-link:hover,
header .navbar .navbar-nav .nav-link.active{
    color: var(--theme-color);
}
header .navbar .navbar-nav .nav-link.active::before{
    content: "";
    width: 7px;
    height: 7px;
    background-color: #024A9E;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    bottom: -1px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
/* dorpdown */
header .navbar .navbar-nav .nav-link.dropdown-toggle::after{
    content: "\f078";
    color: var(--theme-color);
    font-family: 'Font Awesome 5 Pro';
    font-size: 12px;
    border: 0;
    position: relative;
    top: 3px;
    margin-left: 0.5em;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu{
    min-width: 15rem;
    padding: 6px 6px;
    border-color: rgba(98, 98, 92, 0.2);
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li a.dropdown-item{
    color: #0E0E0E;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 4px;
    border-left: 2px solid transparent;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li a.dropdown-item.active,
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li a.dropdown-item:hover{
    background-color: rgba(98, 98, 92, 0.05);
    border-color: var(--theme-color);
}
/*  */
header .navbar .navbar-toggler{
    border: 0;
}
header .navbar .navbar-toggler:focus{
    box-shadow: none;
}


/* sticky-header */
header.sticky-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    box-shadow: 0 3px 18px -4px rgba(102, 78, 78, 0.1);
}
header.sticky-header .top-section{
    display: none;
}
header .navbar{
    padding: 0px 0 2px;
}




/* ------ banner-slider ------ */
.banner-slider .main-slider{
    position: relative;
}
.banner-slider .main-slider .slide-box{
    height: 675px;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}
.banner-slider .main-slider .caption-wrapper{
    position: relative;
    display: flex;
    height: 100%;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    z-index: 1;
}
.banner-slider .main-slider .caption-wrapper::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc((100% - 52%) + 10px);
    height: 100%;
    background-color: transparent;
    z-index: -1;
    border-radius: 0 45px 45px 0;
}
.banner-slider .main-slider .caption-wrapper h4{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.banner-slider .main-slider .caption-wrapper h2{
    font-size: 3.5rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 75px;
    margin-bottom: 25px;
}

.banner-slider .main-slider .caption-wrapper h2 span{
    position: relative;
    display: inline-block;
}
.banner-slider .main-slider .caption-wrapper h2 span::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    border-bottom: 3px solid #fff;
}
.banner-slider .main-slider .caption-wrapper .caption-content{
    position: relative;
}
.banner-slider .main-slider .caption-wrapper .caption-content img{
    /* width: 300px;
    min-width: 370px; */
    position: relative;
    left: 0;
    bottom: 0;
}

.banner-slider .main-slider .caption-wrapper.caption-red h2{
    color: #a4083b;
}
.banner-slider .main-slider .caption-wrapper.caption-red h2 span{
    color: #ff6074;
}
.banner-slider .main-slider .caption-wrapper.caption-red h2 span::after{
    top: 50%;
    bottom: auto;
    border-width: 4px;
    border-color: #a4083b;
}

.banner-slider .main-slider .caption-wrapper.caption-dark h2{
    color: #a4083b;
}
.banner-slider .main-slider .caption-wrapper.caption-dark h2 span::after{
    border-color: #ff6074;
}

.banner-slider .main-slider .caption-wrapper .btn{
    border: 2px solid transparent;
}
.banner-slider .main-slider .caption-wrapper .btn:hover{
    border-color: #fff;
}

.banner-slider .main-slider .owl-nav{
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    overflow: hidden;
}
.banner-slider .main-slider .owl-nav [class*="owl-"]{
    position: relative;
    color: rgb(255, 255, 255, 0.6);
    font-size: 1.5rem;
    width: 25px;
    height: 100px;
    background: transparent;
    -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;
}
.banner-slider .main-slider .owl-nav .owl-prev{
    transform: translateX(-50px);
}
.banner-slider .main-slider .owl-nav .owl-next{
    transform: translateX(50px);
}
.banner-slider .main-slider:hover .owl-nav .owl-prev,
.banner-slider .main-slider:hover .owl-nav .owl-next{
    transform: translateX(0px);
}


/* slider animation */
@-webkit-keyframes scale-h {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@keyframes scale-h {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
.banner-slider .main-slider .owl-item.active .caption-wrapper h2{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 1.1s;
}
.banner-slider .main-slider .owl-item.active .caption-wrapper h2 span::after{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: scale-h;
    animation-delay: 1.7s;
}
.banner-slider .main-slider .owl-item.active .caption-wrapper .caption-content img{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 1.4s;
}


/* ------ treatment-points-section ------ */
.treatment-points-section{
    background-color: var(--light-grey);
    padding: 30px 36px;
    border-radius: 93px;
    /* height: 150px; */
    position: relative;
    /* top: -55px; */
    margin: -58px auto 0;
    z-index: 1;
}
.treatment-points-section .col-box{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-right: 22px;
}
.treatment-points-section .col-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;
}
.treatment-points-section .col-box .image-box{
    display: inline-block;
}
.treatment-points-section .col-box figure{
    width: 114px;
    height: 114px;
    border-radius: 100%;
    border: 3px solid var(--theme-color);
    overflow: hidden;
    margin: 0 22px 0 0;
}
.treatment-points-section .col-box figure img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}
.treatment-points-section .col-box p{
    font-size: 18px;
    text-align: left;
    color: #0E0E0E;
    margin-bottom: 0;
}

.treatment-points-section .col-box:hover figure img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}



/* ------ product category ------ */
.product-secction{
    padding: 60px 0 65px;
}
/* .product-secction .product-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: center;
    background-color: var(--light-grey);
    border-radius: 24px;
    padding: 40px 10px;
    margin: 0 20px 0;
    transform: scale(1);
    box-shadow: 0 3px 18px -4px rgba(102, 78, 78, 0);
    -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;
}
.product-secction .product-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;
}
.product-secction .product-box figure{
    margin-bottom: 15px;
}
.product-secction .product-box figure svg{
    height: 90px;
}
.product-secction .product-box figure svg path{
    fill: currentColor;
}
.product-secction .product-box p{
    color: #171717;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
    padding: 0 20px;
}
.product-secction .product-box:hover{
    background-color: var(--theme-color);
}
.product-secction .product-box:hover p{
    color: #fff;
}
.product-secction .product-box:hover{
    transform: scale(1.03);
    box-shadow: 0 3px 18px -4px rgba(102, 78, 78, 0.1);
}
.product-secction .product-box:hover figure svg path{
    fill: #fff;
} */

.product-secction .product-item{
    margin-bottom: 25px;
}
.product-secction .product-txt{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background-color: var(--light-grey);
    box-shadow: 0 3px 18px -4px rgba(102, 78, 78, 0);
    -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;
}
.product-secction .product-txt *{
    -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;
}
.product-secction .product-txt figure{
    width: 100%;
    min-height: 250px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-filter: grayscale(100);
    -ms-filter: grayscale(100);
    -o-filter: grayscale(100);
    filter: grayscale(100);
}
.product-secction .product-txt::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, rgba(252, 31, 31, 0) 20%, rgba(252, 31, 31, 0.4) 60%, rgba(252, 31, 31, 0.6) 78%, rgba(252, 31, 31, 0.8) 100%);
    -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;
}
.product-secction .product-txt .caption-txt{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    padding: 16px 30px;
}
.product-secction .product-txt .caption-txt p{
    color: #fff;
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 0;
}
.product-secction .product-item:hover .product-txt figure{
    -webkit-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}
.product-secction .product-item:hover .product-txt .caption-txt{
    bottom: 10px;
}
.product-secction .product-item:hover .product-txt::after{
    height: 150px;
    /* background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 0%, rgba(252, 31, 31, 0.8) 0.02%, rgba(252, 31, 31, 0.7) 56%, rgba(252, 31, 31, 0) 100%); */
}



/* ------ about section ------ */
.about-section{
    background-color: var(--light-grey);
    padding: 100px 0 100px;
}
.about-section .content-box{
    padding-right: 70px;
}

/* -- box-wrapper -- */
.about-section .box-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
}
/* text-box */
.about-section .text-box{
    width: 100%;
    background-color: var(--theme-color);
    padding: 20px 20px;
}
.about-section .text-box .txt-title{
    color: #fff;
    font-size: 25px;
    font-weight: 300;
}
.about-section .text-box .link-btn{
    font-size: 17px;
    font-weight: 300;
    margin: 15px 0 0 -10px;
    opacity: 0;
    transition-delay: 0.15s;
}
.about-section .text-box .link-btn img{
    width: 18px;
}
.about-section .text-box:hover .link-btn{
    opacity: 1;
    margin-left: 0;
}

/* team-box */
.about-section .team-box{
    position: relative;
    width: 48%;
    border-bottom: 16px solid var(--theme-color);
    z-index: 1;
    overflow: hidden;
}
.about-section .team-box::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(180deg, rgba(219, 219, 219, 0) 0%, rgba(78, 78, 78, 0.642105) 65%, rgba(0, 0, 0, 0.8) 100%);
}
.about-section .team-box figure{
    width: 100%;
    height: 100%;
    background: url(../images/team-greycells-img.png) no-repeat center/ cover;
}
.about-section .team-box .title{
    color: #fff;
    font-size: 25px;
    font-weight: 300;
    position: absolute;
    width: 100%;
    left: 20px;
    bottom: 15px;
    z-index: 1;
}
.about-section .team-box .text-box{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.about-section .team-box:hover .text-box{
    height: 48%;
    opacity: 1;
}

/* value-box */
.about-section .value-box{
    width: 27%;
    background-color: var(--theme-color);
    overflow: hidden;
}
.about-section .value-box figure{
    overflow: hidden;
    width: 100%;
    height: 260px;
}
.about-section .value-box figure img{
    object-fit: cover;
    -o-object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1.01);
    -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;
}
.about-section .value-box:hover figure img{
    transform: scale(1.1);
}
/* .about-section .value-box .text-box{
    height: 100%;
} */
.about-section .value-box .text-box .link-btn{
    display: block;
    opacity: 1;
    margin-left: 0;
}




/* ------ featured-products-section ------ */
.featured-products-section{
    padding: 70px 0 90px;
}
.featured-products-section .heading-style{
    margin-bottom: 40px;
}
.featured-products-section .product-col{
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #F5F5F5;
}
.featured-products-section .product-col *{
    -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;
}
.featured-products-section .product-col figure{
    overflow: hidden;
}
.featured-products-section .product-col figure img{
    width: 100%;
    transform: scale(1);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    height: 300px;
    -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;
}
.featured-products-section .product-col .content-box{
    /* background-color: #F5F5F5; */
    padding: 25px 28px 29px;
    /* height: 100%; */
}
.featured-products-section .product-col .content-box h3{
    color: #262626;
    font-size: 24px;
    line-height: normal;
    display: -webkit-box;
    /* line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; */
    margin-bottom: 18px;
}
.featured-products-section .product-col .content-box h3 span{
    font-weight: 700;
}
/* .featured-products-section .product-col .content-box p{
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
} */
.featured-products-section .product-col .content-box .link-btn{
    font-size: 16px;
}

.featured-products-section .product-col:hover figure img{
    transform: scale(1.1);
}
.featured-products-section .product-col:hover .content-box h3{
    color: var(--theme-color);
}



/* ------ info-section ------ */
.info-section{
    position: relative;
    background: url(../images/bg/featured-women-bg-img.png) no-repeat bottom right, linear-gradient(131deg, #F6F6F6 0%, #FAFAFA 100%);
    padding: 80px 0 100px;
    z-index: 1;
}
.info-section .bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/ribbon-img.png), url(../images/ribbon-half-img.png);
    background-repeat: no-repeat, no-repeat;
    background-position: 0 138%, 100% 10%;
    z-index: -1;
}
.info-section h3{
    font-size: 48px;
    line-height: 65px;
    margin-bottom: 42px;
}
.info-section h3 span{
    color: var(--theme-color);
}
.info-section .content-box{
    padding-left: 70px;
}



/* ------ footer ------ */
footer{
    background-color: #fdfdfd;
    background-color: #fff;
}
/*  */
footer .widget-row{
    padding-top: 50px;
    padding-bottom: 50px;
}
footer .widget-row .widget-box .widget-title{
    font-size: 22px;
    margin-bottom: 18px;
}
footer .widget-row .widget-box p{
    font-size: 15px;
}
footer .widget-row .widget-box p a{
    color: #225AAE;
}
footer .widget-row .widget-box .circular-icon-list li{
    margin: 0 7px;
}
footer .widget-row .widget-box .circular-icon-list li a{
    background-color: #2B2B2B;
    line-height: 26px;
}
footer .widget-row .widget-box .circular-icon-list li:first-child{
    margin-left: 0;
}

/*  */
footer .copyright-row{
    background-color: var(--theme-color);
    border-radius: 26px 26px 0 0;
    padding: 26px 20px 21px;
}
footer .copyright-row p{
    color: #fff;
}
footer .copyright-row p img{
    vertical-align: sub;
}
footer .copyright-row p a{
    color: #fff;
}
footer .copyright-row .insight-txt p{
    font-size: 22px;
    margin-bottom: 30px;
}

footer .copyright-row .inline-links{
    flex-wrap: wrap;
    padding-top: 10px;
}
footer .copyright-row .inline-links li{
    margin-right: 9px;
    margin-bottom: 8px;
    padding-right: 10px;
}
footer .copyright-row .inline-links li::after {
    height: 70%;
    top: 18%;
    border-color: #fff;
}
footer .copyright-row .inline-links li a{
    color: #fff;
}


/* -- top btn -- */
.top-btn{
    position: fixed;
    bottom: 30px;
    right: 35px;
    background-color: transparent;
    width: 38px;
    height: 38px;
    line-height: 34px;
    border: 2px solid #242424;
    color: #242424;
    text-align: center;
    border-radius: 100%;
    z-index: 2;
    display: none;
    -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;
}
.top-btn:hover{
    color: #fff;
    background-color: #242424;
}



/* ------ page-banner ------ */
.page-banner{
    position: relative;
    height: 400px;
    background-color: #f4f4f4;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    overflow: hidden;
}
.page-banner h3{
    color: #1A1A1A;
    font-family: 'Poppins', sans-serif;
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 10px;
}
/* breadcrumb */
.page-banner .breadcrumb{
    margin-bottom: 0;
}
.page-banner .breadcrumb li{
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 300;
    position: relative;
    margin: 0 9px;
}
.page-banner .breadcrumb li:first-child{
    margin-left: 0;
}
.page-banner .breadcrumb li::after{
    content: "\f105";
    font-family: 'Font Awesome 5 Pro';
    font-size: 15px;
    position: absolute;
    top: 1px;
    right: -11px;
}
.page-banner .breadcrumb li a{
    display: block;
    color: var(--theme-color);
    padding: 0 3px;
}
.page-banner .breadcrumb li:last-child::after{
    display: none;
}

/* .page-banner.side-img .imagebox{
    position: absolute;
    left: -5%;
    right: 100%;
    bottom: -20px;
} */


/* ------ about-wrapper ------ */
.about-wrapper{
    padding: 60px 0 70px;
}
.about-wrapper .title{
    font-size: 35px;
    font-weight: 200;
    line-height: normal;
    margin-bottom: 25px;
}
/* greycells-team */
.about-wrapper.greycells-team{
    padding: 0;
}
.about-wrapper.greycells-team figure{
    width: 50%;
    height: 100%;
    background: url(../images/team-img.jpg) no-repeat center/ cover;
}
.about-wrapper.greycells-team figcaption{
    width: 50%;
    height: 100%;
    background-color: var(--theme-color);
    padding: 35px;
}
.about-wrapper.greycells-team figcaption .title-style{
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    padding-top: 50px;
}
.about-wrapper.greycells-team figcaption .title-style::after{
    border-bottom: 0;
    height: 0.6px;
    background-color: #fff;
}
.about-wrapper.greycells-team figcaption .title-style h2{
    color: #fff;
    font-weight: 200;
}
.about-wrapper.greycells-team .content-box{
    padding: 64px 15px 82px 55px;
}
.about-wrapper.greycells-team .content-box p{
    color: #626262;
    font-size: 23px;
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 0;
}
/* vision & mission */
.about-wrapper.vision-mission-section .title-style{
    position: relative;
    display: inline-block;
    padding-right: 50px;
}
.about-wrapper.vision-mission-section .title-style img{
    position: absolute;
    top: -5px;
    right: -22px;
}
.about-wrapper.vision-mission-section .title-style h2{
    font-size: 35px;
}
/* core-values-section */
.about-wrapper.core-values-section{
    position: relative;
    z-index: 1;
}
.about-wrapper.core-values-section .bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg/logo-bg-img-2.png), url(../images/bg/logo-bg-img-1.png);
    background-repeat: no-repeat, no-repeat;
    background-position: 0 90%, 100% 10%;
    z-index: -1;
}
.about-wrapper.core-values-section .title-style h2{
    font-size: 35px;
}



/* ------ products-wrapper ------ */
.products-wrapper .heading-style{
    margin-bottom: 50px;
}
.products-wrapper .heading-style h2{
    color: #2C2C2C;
    font-size: 28px;
    text-align: justify;
    line-height: normal;
    margin-bottom: 25px;
}
.products-wrapper .heading-style h4{
    color: #d32a38;
    font-size: 23px;
}
/* products-grid */
.products-wrapper .products-grid .product-col{
    text-align: center;
    padding-inline: 25px;
    margin-bottom: 40px;
}
.products-wrapper .product-col h3{
    font-family: 'Jost', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.products-wrapper .product-col figure{
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F6F6F6;
    min-height: 380px;
    padding: 10px 10px;
    margin-bottom: 15px;
}
.products-wrapper .product-col figure img{
    max-width: 100%;
    height: 320px;
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -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;
}
.products-wrapper .product-col:hover figure img{
    -webkit-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
}
.products-wrapper .product-col .description{
    padding: 0 25px;
}
.products-wrapper .product-col .description p{
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    text-align: center;
    line-height: normal;
    margin-bottom: 10px;
}
.products-wrapper .product-col .description p span{
    display: block;
}



/* ------ career-page ------ */
.career-page{
    padding: 80px 0 40px;
}
.career-page h2{
    color: var(--theme-color);
}
.career-page .heading-style{
    margin-bottom: 30px;
}
.career-page .heading-style h4{
    line-height: normal;
}
.career-page ul{
    margin-top: 10px;
}
.career-page ul li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
}
.career-page ul li::before,
.career-page ul li::after{
    position: absolute;
    top: 0;
    left: 0;
}
.career-page ul li::before{
    content: "\f336";
    font-family: 'Font Awesome 5 Duotone';
    font-weight: 900;
    color: var(--theme-color);
}
.career-page ul li::after{
    content: "\10f336";
    font-family: 'Font Awesome 5 Duotone';
    font-weight: 900;
    color: var(--theme-color, inherit);
    opacity: 0.4;
}

.career-form{
    background-color: #F9F9F9;
    padding: 50px 0 80px;
}
.career-form .form-box .form-group .form-control{
    padding: 10px 18px;
    border-radius: 0;
}
.career-form .form-box .form-group.select-group::after{
    top: auto;
    bottom: 11px;
}



/* ------ contact-information ------ */
.contact-information{
    background: url(../images/bg/contact-info-bg-img.png) top right no-repeat;
    background-size: cover;
    padding-block: 70px 90px;
}
.contact-information .heading-style{
    margin-bottom: 45px;
}
/* form-box */
.contact-information .form-box .form-group{
    margin-bottom: 23px;
}
.contact-information .form-box .form-control{
    padding: 15px 30px;
    border-radius: 50px;
}
.contact-information .form-box .form-group textarea.form-control{
    border-radius: 31px;
}
.contact-information .form-box .btn{
    font-weight: 400;
}
.contact-information .form-box .btn:hover{
    color: #fff;
}
/* contact-details */
.contact-information .contact-details img{
    height: 48px;
    margin-bottom: 14px;
}
.contact-information .contact-details h4{
    font-size: 27px;
    margin-bottom: 8px;
}
.contact-information .contact-details p{
    color: var(--dark-text);
    /* font-size: 16px; */
    line-height: 28px;
}




@media only screen and (max-width: 1399px){
    .about-section .box-wrapper{
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-section .content-box{
        padding-right: 30px;
    }
    .about-section .team-box{
        width: 100%;
    }
    .about-section .team-box,
    .about-section .value-box{
        height: 340px;
        margin-bottom: 30px;
    }
    .about-section .value-box{
        width: 48%;
    }
    .about-section .value-box figure{
        height: 205px;
    }

    .featured-products-section .product-col figure{
        height: 240px;
        background-position: top center;
    }
}

@media only screen and (max-width: 1199px){
    .heading-style{
        margin-bottom: 30px;
    }

    header .navbar .navbar-nav > li{
        margin-left: 20px;
    }
    
    .banner-slider .main-slider .slide-box{
        height: 520px;
    }
    .banner-slider .main-slider .caption-wrapper h2{
        font-size: 2.7rem;
        line-height: 60px;
    }
    .banner-slider .main-slider .caption-wrapper .caption-content img{
        width: auto!important;
        height: 120px;
    }

    .treatment-points-section{
        padding: 18px 32px;
    }
    .treatment-points-section .col-box{
        padding-right: 15px;
    }
    .treatment-points-section .col-box figure{
        width: 80px;
        height: 80px;
        margin: 0 14px 0 0;
        border-width: 2px;
    }
    .treatment-points-section .col-box p{
        font-size: 16px;
        line-height: normal;
    }

    .page-banner{
        height: 320px;
    }
    .page-banner h3{
        font-size: 38px;
    }
    
    .contact-information .heading-style{
        margin-bottom: 30px;
    }

}

/* @media only screen and (max-width: 1024px){
    
} */

@media only screen and (max-width: 991px){
    .container{
        padding: 0 25px;
    }
    
    .heading-style h2{
        font-size: 35px;
        margin-bottom: 4px;
    }
    .heading-style h5 {
        font-size: 17px;
    }
    .heading-style h4{
        font-size: 24px;
    }

    header .top-section{
        font-size: 15px;
    }

    header .navbar .navbar-collapse .navbar-nav{
        padding: 16px 10px;
        align-items:normal;
    }
    header .navbar .navbar-collapse .navbar-nav .nav-link.active::before{
        left: 2%;
    }
    header .navbar .navbar-collapse .navbar-nav > li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .banner-slider .main-slider .slide-box{
        height: 420px;
    }
    .banner-slider .main-slider .caption-wrapper h2{
        font-size: 2.2rem;
        font-weight: 500;
        line-height: 50px;
    }
    .banner-slider .main-slider .caption-wrapper .caption-content img{
        height: 70px;
    }
    .banner-slider .main-slider .caption-wrapper h2 span::after,
    .banner-slider .main-slider .caption-wrapper.caption-red h2 span::after{
        border-width: 2px;
    }
    
    .treatment-points-section{
        padding: 16px 33px;
        margin: -32px auto 0;
    }
    .treatment-points-section .col-box{
        display: inline-block;
        text-align: center;
    }
    .treatment-points-section .col-box figure{
        width: 70px;
        height: 70px;
        margin: 0 0 0 0;
        border-width: 2px;
    }
    .treatment-points-section .col-box p{
        font-size: 15px;
    }

    .about-section{
        padding: 80px 0 65px;
    }
    .about-section .content-box{
        padding-bottom: 30px;
    }

    .featured-products-section .product-col{
        margin-bottom: 25px;
    }

    footer .widget-row{
        padding-top: 40px;
        padding-bottom: 30px;
    }
    footer .widget-row .widget-box{
        margin-bottom: 25px;
    }

    .info-section{
        padding: 90px 0 160px;
        background-size: 332px;
    }
    .info-section .bg-img{
        background-position: -5% 161%, 104% 4%;
    }
    .info-section .content-box{
        padding-left: 25px;
    }
    .info-section h3{
        font-size: 38px;
        line-height: 54px;
        margin-bottom: 22px;
    }

    .page-banner{
        height: 260px;
    }
    .page-banner h3{
        font-size: 33px;
    }
    .page-banner .breadcrumb li{
        font-size: 16px;
        font-weight: 400;
    }

    .about-wrapper .title{
        font-size: 30px;
        margin-bottom: 20px;
    }
    .title-style h2{
        font-size: 38px;
    }
    
    .about-wrapper.greycells-team figcaption{
        height: 222px;
    }
    .about-wrapper.greycells-team figcaption .title-style{
        padding: 40px 0 20px;
    }
    .about-wrapper.greycells-team figcaption .title-style h2{
        margin-bottom: 0;
    }
    .about-wrapper.greycells-team figcaption .title-style::after{
        height: 1px;
    }

    .products-wrapper .heading-style h2{
        font-size: 25px;
    }
    .products-wrapper .heading-style h4{
        font-size: 21px;
    }
    .products-wrapper .products-grid .product-col{
        margin-bottom: 25px;
    }
    .products-wrapper .product-col h3{
        font-size: 24px;
    }
    .products-wrapper .product-col figure{
        margin-bottom: 10px;
    }
    .products-wrapper .product-col .description p{
        font-size: 17px;
    }

    .career-page{
        padding: 60px 0 40px;
    }

}

@media only screen and (max-width: 767px){
    .inline-links{
        justify-content: center;
    }
    
    header .navbar .navbar-brand{
        padding: 12px 0;
    }

    .banner-slider .main-slider .slide-box{
        height: 345px;
    }
    .banner-slider .main-slider .caption-wrapper h2{
        font-size: 1.8rem;
        line-height: 40px;
    }
    .banner-slider .main-slider .caption-wrapper .caption-content img{
        height: 60px;
    }

    .treatment-points-section {
        display: none;
        padding: 16px 27px;
    }

    .product-secction .product-txt::after{
        height: 220px;
    }
    .product-secction .product-item:hover .product-txt::after {
        height: 290px;
    }
    .product-secction .product-txt .caption-txt{
        padding: 12px 16px;
    }
    .product-secction .product-txt .caption-txt p{
        font-size: 21px;
        font-weight: 500;
        line-height: 30px;
    }

    .featured-products-section{
        padding: 60px 0 70px;
    }
    .featured-products-section .product-col .content-box h3{
        font-size: 19px;
    }

    footer .copyright-row .inline-links{
        justify-content: start;
    }

    
    .page-banner{
        height: 200px;
    }
    .page-banner h3{
        font-size: 28px;
    }
    .page-banner .breadcrumb li {
        font-size: 15px;
    }
    .page-banner .breadcrumb li::after{
        font-size: 12px;
        top: 0px;
    }
    .title-style h2{
        font-size: 33px;
    }
    .about-wrapper.greycells-team figcaption .title-style{
        padding: 18px 0 20px;
    }
    .about-wrapper.core-values-section .bg-img{
        background-position: -3% 101%, 104% -1%;
    }

    .products-wrapper .heading-style{
        margin-bottom: 36px;
    }
    .products-wrapper .heading-style h2{
        font-size: 22px;
    }
    .products-wrapper .heading-style h4 {
        font-size: 19px;
    }
}

@media only screen and (max-width: 640px){
    .banner-slider .main-slider .slide-box{
        height: 280px;
    }
    .banner-slider .main-slider .caption-wrapper h2{
        font-size: 1.5rem;
        line-height: 35px;
    }
    .banner-slider .main-slider .caption-wrapper .caption-content img{
        height: 45px;
    }

    .info-section{
        padding: 70px 0 140px;
    }
    .info-section .bg-img{
        display: none;
    }
    .info-section h3{
        font-size: 30px;
        line-height: 46px;
        margin-bottom: 18px;
    }

    .page-banner{
        height: 160px;
    }
    .page-banner h3{
        font-size: 24px;
        margin-bottom: 6px;
    }
    .page-banner .breadcrumb li {
        font-size: 13px;
    }
    .page-banner .breadcrumb li::after{
        font-size: 11px;
    }

    .about-wrapper.greycells-team .content-box {
        padding: 40px 32px 62px 36px;
    }
    .about-wrapper.vision-mission-section .title-style h2{
        font-size: 32px;
    }

}

@media only screen and (max-width: 540px){
    .inline-links li {
        font-size: 15px;
    }
    /* .inline-links li:first-child{
        display: none;
    } */
    header .top-section .inline-links li i{
        margin-right: 6px;
    }
    header .navbar .navbar-brand .logo img{
        width: 250px;
    }

    
    .banner-slider .main-slider .slide-box{
        height: 230px;
    }
    .banner-slider .main-slider .caption-wrapper h2{
        font-size: 1.4rem;
        line-height: 33px;
    }
    .banner-slider .main-slider .caption-wrapper .caption-content img{
        height: 42px;
    }

    .page-banner{
        height: 140px;
    }
    .page-banner h3{
        font-size: 21px;
        margin-bottom: 4px;
    }
    .page-banner .breadcrumb li {
        font-size: 12px;
    }
    .page-banner .breadcrumb li::after{
        font-size: 10px;
    }
}

@media only screen and (max-width: 460px){    
    .banner-slider .main-slider .slide-box{
        height: 180px;
        background-position: center center;
    }
    .banner-slider .main-slider .caption-wrapper h2{
        font-size: 1.05rem;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .banner-slider .main-slider .caption-wrapper h2 span::after{
        border-width: 1px;
    }
    .banner-slider .main-slider .caption-wrapper .caption-content img{
        height: 32px;
    }
}













