@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #4d4d4d;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .3s ease;
}

a:hover {
    text-decoration: none;
    color: #bdab83;
}

.img-fluid {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 18px;
}

.mobile-nav {
    display: none;
}

.mobile-close-menu {
    display: none;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 30px;
    height: 80px;
    background-color: #efecdc;
    border: solid 1px #ddd;
    border-radius: 5px;
    transition: all .3s ease;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 15px;
    color: black;
}

.swiper-button-prev:after {
    content: "\f053";
}

.swiper-button-next:after {
    content: "\f054";
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #BDAB83;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: white;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 10px;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #efecdc;
    border: solid 1px #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
    background-color: #BDAB83;
}

/* Swiper Lazy Loading */
.swiper-lazy-preloader {
    border-color: #BDAB83;
    border-top-color: transparent;
}


/* fly alert */

.fly-alert {
    position: fixed;
    top: 100px;
    right: 50px;
    z-index: 9999;
    margin: 0;
    font-size: 18px;
    display: inline-block;
    width: auto;
}

.alert-danger {
    background-color: #F44336;
}

.alert-success {
    background-color: #2ec4b6;
}

.alert {
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
}

.content-wrapper {
    margin-bottom: 30px;
    word-wrap: break-word;
}

.content-wrapper iframe {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.content-wrapper img {
    max-width: 100%;
    height: auto !important;
    margin-bottom: 30px;
}

/* YouTube Lazy Load */
.cms_youtube-embedtoLazy {
    display: block;
    position: relative;
    max-width: 100%;
    margin-bottom: 30px;
}

.cms_youtube-embedtoLazy img {
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

.cms_youtube-embedtoLazy .ytp-play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content-wrapper p {
    margin-bottom: 10px;
}

.content-wrapper ul,
.content-wrapper ol {
    display: block;
    list-style: inherit;
    -webkit-margin-before: 1em;
    margin-block-start: 1em;
    -webkit-margin-after: 1em;
    margin-block-end: 1em;
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
    -webkit-margin-end: 0px;
    margin-inline-end: 0px;
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
}

.content-wrapper ol {
    list-style-type: decimal;
}

.content-wrapper::before,
.content-wrapper::after {
    content: "";
    clear: both;
    display: table;
}

.content-wrapper table {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .content-wrapper table {
        display: block;
        border: none;
        overflow-x: scroll;
        height: 100% !important;
    }
}

.leftImage {
    margin-right: 20px;
    margin-bottom: 20px;
}

.rightImage {
    margin-left: 20px;
    margin-bottom: 20px;
}

.floatLeft {
    float: left;
}

.floatRight {
    float: right;
}

span.img-desc {
    display: flex;
    justify-content: center;
    font-size: 14px;
}

/* tables */

table {
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 20px;
    width: 100%;
    clear: both;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

th {
    color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

td,
tbody th {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: normal;
    text-align: center;
    padding: 13px 15px;
}

tbody tr:nth-child(2n) {
    background: rgba(0, 0, 0, 0.03);
}

tbody td .dt-sc-button.small {
    padding: 7px 14px;
    font-size: 12px;
    margin: 0px;
}

th a,
th a:hover {
    color: #ffffff;
}

th a:hover,
td a:hover {
    text-decoration: underline;
}

/*fixed header*/

.fixed-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.5s;
    z-index: 999;
}

.header.fixed-header {
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.20);
}

.header-mobile.fixed-header {
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.20);
}

/* header */

.header {
    background-color: #EFECDC;
    color: black;
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header .area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    transition: all .3s ease;
}

.header .logo img:hover {
    opacity: 0.7;
}

.header .menu>ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header .menu>ul>li>a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    padding: 30px 15px;
    display: block;
}

.header-search a {
    font-size: 16px;
    padding: 30px 0 30px 15px;
    display: inline-block;
}

.header-search a:hover {
    color: #bdab83;
}


.header li.dropdown {
    position: relative;
}

.header ul.sub-menu {
    position: absolute;
    opacity: 0;
    border: 1px solid #f0ebd8;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    background-color: white;
    width: 260px;
    background: #fff;
    padding: 15px;
    list-style: none;
    top: 100%;
    left: 0px;
    transform-origin: top;
    transform: scaleY(0);
    transition: all 300ms ease-out 0s;
}

.header ul.sub-menu li {
    margin-bottom: 10px;
}

.header ul.sub-menu li:last-child {
    margin-bottom: 0;
}

.header li.dropdown:hover ul.sub-menu {
    opacity: 1;
    transform: scaleY(1);
}

.header li.dropdown:hover:after {
    position: absolute;
    content: "\f0d8";
    font-family: "Font Awesome 5 Pro";
    color: white;
    font-size: 40px;
    font-weight: bold;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.header ul.mega-menu {
    position: absolute;
    width: 1300px;
    background-color: white;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    border: 1px solid #f0ebd8;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    list-style: none;
    top: 100%;
    padding: 50px 30px 30px 50px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0;
    transform-origin: top;
    transition: all 300ms ease-out 0s;
}

.header ul.mega-menu li {
    width: 25%;
    float: left;
    margin-bottom: 10px;
}

.header li.megadown a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.header li.megadown a i {
    font-size: 8px;
    color: #bdab83;
    margin-right: 6px;
}

.header li.megadown:hover ul.mega-menu {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
}




.header li.megadown:hover>a:before {
    position: absolute;
    content: "\f0d8";
    font-family: "Font Awesome 5 Pro";
    color: white;
    font-size: 40px;
    font-weight: bold;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.headerclear {
    margin-bottom: 88px;
}

/* slider */

.slider {
    position: relative;
}

.slider .swiper {
    position: relative;
}

.slider .swiper-wrapper {
    /* align-items removed - swiper handles this internally */
}

.slider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

.slider .swiper-button-prev,
.slider .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.slider.mobile {
    display: none;
}

/* services */

.services {
    padding: 20px 0 90px 0;
}

.service-boxs {
    display: flex;
    flex-wrap: wrap;
}

.service-box {
    position: relative;
    min-width: 25%;
    max-width: 25%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: solid 1px #f0ebd8;
    border-right: solid 1px #f0ebd8;
    box-sizing: border-box;
}

.service-box .title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
}

.service-box:nth-child(4n+1) {
    border-left: solid 1px #f0ebd8;
}

.service-box:nth-last-child(1) {
    border-bottom: solid 1px #f0ebd8;
}

.service-box:nth-last-child(2) {
    border-bottom: solid 1px #f0ebd8;
}

.service-box:nth-last-child(3) {
    border-bottom: solid 1px #f0ebd8;
}

.service-box:nth-last-child(4) {
    border-bottom: solid 1px #f0ebd8;
}

a.service-box {
    text-decoration: none;
    color: inherit;
}

a.service-box:hover {
    background-color: #F0EBD8;
}

/* home about */

.home-about {
    background-color: #0D0D0D;
    padding: 50px 0 120px 0;
}

.home-about .doctor-box {
    position: relative;
    background-color: #F0EBD8;
    padding: 25px;
    margin-top: -80px;
    display: flex;
    box-shadow: -8px -6px 13px 0 rgba(0, 0, 0, 0.20);
}

.home-about .doctor-box:before {
    position: absolute;
    content: '';
    width: 66px;
    height: 66px;
    background-image: url(../images/parallax-quote-bg.png);
    top: 10px;
    right: 10px;
}

.home-about .doctor-box .top-title {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.home-about .doctor-box .avatar {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.home-about .doctor-box .text {
    position: relative;
}

.home-about .doctor-box .text:before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Pro";
    left: -55px;
    top: 10px;
    font-size: 40px;
    color: #BBB7A6;
    font-weight: 600;
}

.home-about .doctor-box .text .quote {
    margin-bottom: 50px;
}

.home-about .doctor-box .text .name {
    margin-bottom: 70px;
}

.home-about .doctor-box .text .name span {
    font-weight: 600;
}

.home-about .service-list {
    color: white;
    padding-left: 40px;
}

.home-about .service-list .top-title {
    font-size: 25px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 35px;
    line-height: 32px;
}

.home-about .service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.home-about .service-list ul li {
    position: relative;
    width: 50%;
    margin-bottom: 15px;
    padding-left: 30px;
}

.home-about .service-list ul li:before {
    position: absolute;
    content: "\f111";
    font-family: "Font Awesome 5 Pro";
    color: #bdab83;
    font-size: 10px;
    font-weight: 700;
    left: 0px;
}

.home-about .contact-infos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    margin-bottom: 90px;
}

.home-about .contact-infos .item {
    width: auto;
    color: white;
}

.home-about .contact-infos .item a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}

.home-about .contact-infos .item a i {
    margin-right: 10px;
}

.home-about .counter-area .top-title {
    position: relative;
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 80px;
}

.home-about .counter-area .top-title:before {
    position: absolute;
    content: '';
    height: 3px;
    width: 50px;
    background-color: white;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.counter-box {
    text-align: center;
}

.counter-box .counter {
    color: #bdab83;
    font-size: 60px;
    line-height: 60px;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.counter-box .icon {
    position: relative;
    color: white;
    font-size: 20px;
}

.counter-box .icon:before {
    position: absolute;
    content: '';
    border-top: 1px dashed;
    left: 10px;
    width: 38%;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}

.counter-box .icon:after {
    position: absolute;
    content: '';
    border-top: 1px dashed;
    right: 10px;
    width: 38%;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}

.counter-box .title {
    font-size: 24px;
    color: white;
    margin-top: 25px;
}

/* testimonials */

.testimonials {
    padding: 50px 0;
}

.seperator {
    position: relative;
}

.seperator:before {
    position: absolute;
    content: "";
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    top: 25px;
    width: 375px;
    height: 1px;
    padding: 0;
    background: #f0ebd8;
}

.seperator:after {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    content: "\f10d";
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    font-weight: 700;
    border: 1px solid #f0ebd8;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}


.testimonials .swiper-slide {
    text-align: center;
    padding: 80px 0px 0px 0px;
}

.testimonials .swiper-slide .quote {
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 40px;
}

.testimonials .swiper-slide .avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonials .swiper-slide .avatar img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
}

.testimonials .swiper-slide .name {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials .swiper-slide .name span {
    font-size: 14px;
    font-weight: 300;
    margin-left: 5px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    background-color: transparent;
    border: none;
    width: auto;
    height: auto;
}

.testimonials .swiper-button-prev:after,
.testimonials .swiper-button-next:after {
    font-size: 60px;
    color: #ddd;
    font-weight: 300;
}

/* home cta */

.home-cta {
    background-color: #BCAA85;
    color: white;
    padding: 80px 0;
}

.home-cta .area {
    align-items: center;
}

.home-cta .top-title {
    position: relative;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.home-cta .top-title:before {
    position: absolute;
    content: '';
    width: 51px;
    height: 3px;
    background-color: white;
    top: -25px;
}

.home-cta .desc {
    margin-bottom: 40px;
    width: 500px;
}

.home-cta .phone{
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
}

.home-cta .phone a:hover{
    color: #efecdc;
}

.home-cta .phone a i, .landing-phone a i {
    animation: tada infinite 1500ms;
}
.landing-phone {
    font-size: 26px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .landing-phone {
        font-size: 20px;
        white-space: nowrap;
        margin-left: 15px;
    }
}
@media (max-width: 576px) {
    .landing-phone {
        font-size: 16px;
    }
}

.landing-header {
    padding: 15px 0;
}

.buttons a {
    background-color: white;
    color: #4d4d4d;
    padding: 15px 30px;
    margin-right: 35px;
    border-radius: 5px;
    display: inline-block;
}

.buttons a:hover {
    background-color: #efecdc;
}

.home-cta .picture {
    position: relative;
}

.home-cta .picture .video-pop {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    color: #fff;
}

.home-cta .video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.home-cta .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.home-cta .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #BCAA85;
    border-radius: 50%;
    -webkit-transition: all 200ms;
    transition: all 200ms;
}

.home-cta .video-play-button:hover:after {
    background-color: #0D0D0D;
}

.home-cta .video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.home-cta .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* footer */

.footer {
    position: relative;
    padding: 80px 0;
    background-color: #F0EBD8;
    color: black;
}

.footer .avatar img {
    border-radius: 50%;
}

.footer .health-logo {
    display: block;
    margin-top: 30px;
}

.footer .health-logo img {
    max-width: 250px;
}

.footer:before {
    position: absolute;
    content: '';
    background-image: url(../images/footer-pattern-top.png);
    width: 231px;
    height: 347px;
    left: 0;
    top: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.footer:after {
    position: absolute;
    content: '';
    background-image: url(../images/footer-pattern-bottom.png);
    width: 247px;
    height: 255px;
    right: 0;
    bottom: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li span {
    font-weight: 600;
    margin-right: 8px;
}

.footer .avatar img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.footer .desc {
    font-size: 14px;
}

.footer .footer-title {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer a.phone {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 35px;
    display: block;
}

.footer .social-menu a {
    font-size: 30px;
    margin-right: 20px;
}

.footer .social-menu a:last-child {
    margin-right: 0;
}

.footer-bottom {
    background-color: #BDAB83;
    color: white;
    padding: 15px 0;
}

.footer-bottom a:hover {
    color: black;
}

.footer-bottom .right {
    text-align: right;
}

/* scroll top */

#scroll-top {
    position: fixed;
    right: 10px;
    bottom: 80px;
    margin: 0;
    text-decoration: none;
    z-index: 9999999999999999;
    opacity: 0.5;
    transition: all .3s ease;
}

#scroll-top:hover {
    opacity: 1;
}

#scroll-top button {
    position: relative;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    background-color: transparent;
    color: black;
    display: block;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    border: none;
}

#scroll-top button i {
    font-size: 50px;
}

#scroll-top button span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#scroll-top button span i {
    font-size: 30px;
}

/* footer bar */

.footerbar {
    display: none;
}

/* breadcrumb */

.breadcrumb {
    padding: 30px 0;
    background-color: #efecdc;
    color: black;
}

.breadcrumb .area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.breadcrumb .area:before {
    position: absolute;
    content: '';
    width: 300px;
    height: 1px;
    background-color: white;
    right: 0;
    top: -30px;
}

.breadcrumb ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 13px;
}

.breadcrumb ul li {
    color: rgba(0, 0, 0, 0.5);
}

.breadcrumb ul li a {
    position: relative;
    color: black;
    display: block;
    margin-right: 20px;
}

.breadcrumb ul li a:hover {
    color: #bdab83;
}

.breadcrumb ul li a:after {
    position: absolute;
    content: "/";
    margin-left: 5px;
    margin-right: 5px;
}

.last-updated {
    background-color: #fff;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}

/* about page */

.about-page {
    background-color: #fff;
}

.about-page .about-info {
    padding: 10px 0px 50px 0px;
}

.about-page .about-info .top-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #f0ebd8;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.about-page .about-info .top-area .titles {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .5px;
}

.about-page .about-info .top-area .titles span {
    display: block;
    font-size: 18px;
    font-weight: 300;
}

.about-page .about-info .top-area .social a {
    margin-left: 15px;
    background: #f0ebd8;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.sidebar {
    /* position: sticky; */
    top: 140px;
    padding-top: 50px;
    padding-bottom: 210px;
    background-color: #efecdc;
    background-image: url(../images/tab-pattern-bg.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto;
    margin-bottom: 30px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 24px;
}

.sidebar ul li a {
    display: block;
    padding: 5px 20px;
    background-color: #F0EBD8;
}

.sidebar ul li a.active {
    background-color: #bdab83;
    color: white;
}

/* testimonials page */

.testimonials-page .boxs-area {
    padding: 90px 0;
}

.testimonials-page .boxs-area .box {
    text-align: center;
}

.testimonials-page .boxs-area .box .icon {
    font-size: 40px;
    color: #bdab83;
    margin-bottom: 25px;
}

.testimonials-page .boxs-area .box .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonials-page .boxs-area .box .desc {
    font-weight: 300;
}

.testimonials-page .comments-area .top-title {
    position: relative;
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

.testimonials-page .comments-area .top-title:before {
    position: absolute;
    content: '';
    background-color: #F0EBD8;
    width: 51px;
    height: 3px;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials-page .comments-area .quote-box {
    padding: 20px 0;
    border-bottom: solid 1px #f0ebd8;
    margin-bottom: 30px;
}

.testimonials-page .comments-area .quote-box .title {
    color: black;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonials-page .comments-area .quote-box .infos {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.testimonials-page .comments-area .quote-box .infos .stars {
    color: #F2C333;
    margin-right: 10px;
}

.testimonials-page .comments-area .quote-box .infos .name {
    color: #bdab83;
    font-weight: 700;
    margin-right: 10px;
}

.testimonials-page .comments-area .quote-box .infos .detail {
    font-weight: 300;
    font-style: italic;
    color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
}

/* medical device list */

.medical-device-list {
    padding: 90px 0;
}

.device-box .picture {
    display: flex;
    justify-content: center;
}

.device-box .text {
    position: relative;
    border: 1px dashed #bdab83;
    margin: 0 0 50px;
    padding: 30px 20px 45px;
    box-sizing: border-box;
    height: 290px;
}

.device-box .text .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.device-box .text .desc {
    font-size: 15px;
}

.device-box .text .read-more a {
    position: absolute;
    font-size: 14px;
    background-color: #bdab83;
    color: white;
    padding: 5px 20px;
    bottom: -7%;
    left: 30%;
}

.device-box .text .read-more a:hover {
    background-color: #0D0D0D;
}

.device-box .text .read-more a i {
    margin-left: 10px;
}

/* medical device detail */

.medical-device-detail {
    padding: 10px 0px 90px 0px;
}

/* treatment list */

.treatment-list {
    padding: 10px 0px 90px 0px;
}

.treatment-list .top-title {
    position: relative;
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.treatment-list .top-title:before {
    position: absolute;
    content: '';
    background-color: #F0EBD8;
    width: 51px;
    height: 3px;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.treatment-list .top-desc {
    width: 600px;
    margin: auto;
    text-align: center;
    margin-bottom: 60px;
}

.treatment-list .item {
    margin-bottom: 30px;
    transition: all .3s ease;
}

.treatment-list .item:hover {
    opacity: 0.8;
}

/* treatment detail */

.treatment-detail {
    padding: 0px 0px 90px 0px;
}

.appointment-contact {
    border-top: solid 1px #f0ebd8;
    padding-top: 30px;
}

.appointment-contact .top-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 50px;
}

.boxs {
    display: flex;
}

.boxs .box {
    width: 33.33%;
    text-align: center;
    padding: 50px 15px;
    border-top: solid 1px #f0ebd8;
    border-right: solid 1px #f0ebd8;
    border-bottom: solid 1px #f0ebd8;
    transition: all .3s ease;
}

.boxs .box:hover {
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.20);
}

.boxs .box:first-child {
    border-left: solid 1px #f0ebd8;
}

.boxs .box .icon {
    font-size: 55px;
    margin-bottom: 25px;
}

.boxs .box .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* faq page */

.faq-page {
    padding: 100px 0;
}

.faq-page .area, .landing-page .area{
    justify-content: center;
}

.faq-page .top-title, .landing-page .top-title{
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.faq-page .top-desc, .landing-page .top-desc{
    margin-bottom: 50px;
    text-align: center;
}

.faq-page .card, .landing-page .card{
    margin-bottom: 20px;
    border: none;
}

.faq-title {
    background-color: #bdab83;
    color: white;
    display: flex;
    align-items: center;
    padding: 0px 25px;
    height: 62px;
    border-radius: 3px;
}

.faq-title.collapsed {
    background-color: #efecdc;
    color: black;
}

.faq-title i {
    margin-right: 6px;
    transition: all ease .3s;
}
.faq-title:not(.collapsed) i {
    transform: rotate(45deg);
}

.faq-page .card-header, .landing-page .card-header{
    cursor: pointer;
}

.faq-page .card-body, .landing-page .card-body{
    background-color: white;
    padding: 20px;
    color: black;
}

.faq-page .no-faq, .landing-page .no-faq{
    text-align: center;
    margin-top: 20px;
    color: red;
}

.faq-page .no-faq a, .landing-page .no-faq a{
    font-weight: 700;
}

/* contact page */

.contact-page .maps iframe {
    width: 100%;
    height: 450px;
}

.contact-page .area {
    padding: 50px 0;
}

.contact-page .top-desc {
    text-align: center;
    margin-bottom: 30px;
}

.contact-page .top-title {
    font-size: 35px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 50px;
}

.contact-sidebar {
    background-color: #efecdc;
    padding: 50px 20px;
}

.contact-page .item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    text-align: center;
    border-bottom: solid 1px rgba(0, 0, 0, 0.15);
}

.contact-page .item:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-page .item span {
    display: block;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    display: block;
    padding: 5px 10px;
    border: solid 2px #EFECDC;
}

.form-control:focus {
    border: solid 2px rgba(0, 0, 0, 0.15);
    outline: none;
}

label {
    font-size: 17px;
    font-weight: 600;
}

.btn-contact {
    border: none;
    padding: 10px 60px;
    float: right;
    background-color: #bdab83;
    color: white;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all .3s ease;
}

.btn-contact:hover {
    background-color: #0D0D0D;
}

/* pic gallery */

.pic-gallery {
    padding: 90px 0;
}

.pic-gallery .gallery-box {
    margin-bottom: 30px;
}

.pic-gallery .gallery-box img {
    transition: all .3s ease;
}

.pic-gallery .gallery-box img:hover {
    opacity: 0.8;
}

/* vid gallery */

.vid-gallery {
    padding: 90px 0;
}

.video-box-area>* {
    margin-bottom: 30px;
}

.video-box-area .col {
    height: 100%;
}

.video-box {
    height: 100%;
    border: solid 1px #ddd;
    background-color: white;
}

.video-box .picture {
    position: relative;
}

.video-box .picture .video-pop {
    position: absolute;
    top: 43%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    color: #fff;
}

.video-box .video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-box .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-box .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #BCAA85;
    border-radius: 50%;
    -webkit-transition: all 200ms;
    transition: all 200ms;
}

.video-box .video-play-button:hover:after {
    background-color: #0D0D0D;
}

.video-box .video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-box .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

.video-box .title {
    padding: 10px;
    text-align: center;
    font-weight: 600;
    background-color: white;
}

.video-box .title a {
    width: 100%;
    display: inline-block;
}

/* instagram */

.insta-page {
    padding: 90px 0;
}

.insta-box {
    position: relative;
    margin-bottom: 30px;
}

.insta-box .top {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #BDAB83;
    color: white;
    border-top-left-radius: 15px;
}

.insta-box .top .item img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

.insta-box img {
    filter: grayscale(0);
    transition: all 200ms;
    width: 100%;
}

.insta-box:hover img {
    filter: grayscale(0%);
}


/* blog list */

.blog-list {
    padding: 10px 0px 90px 0px;
}


.blog-box {
    border: solid 1px #EFECDC;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.blog-box .picture {
    transition: all .3s ease;
}

.blog-box .picture:hover {
    opacity: 0.8;
}

.blog-box .text {
    padding: 20px;
}

.blog-box .text .title {
    font-size: 18px;
    font-weight: 600;
    color: #bdab83;
    margin-bottom: 15px;
}

.blog-box .text .title a:hover {
    color: black;
}

.blog-box .text .desc {
    font-size: 15px;
    margin-bottom: 10px;
}

.blog-box .text .read-more a {
    font-size: 14px;
    color: #bdab83;
}

.blog-box .text .read-more a:hover {
    color: black;
}

/* blog detail */

.sidebar-blog {
    border: solid 1px #efecdc;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-blog .title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.sidebar-blog ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-blog ul li {
    position: relative;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: solid 1px #efecdc;
    padding-left: 15px;
}

.sidebar-blog ul li:before {
    position: absolute;
    content: "\f0da";
    font-family: "Font Awesome 5 Pro";
    left: 0;
    font-weight: 700;
    color: #bdab83;
}

.sidebar-blog ul li:last-child {
    border: none;
    margin-bottom: 0;
}

/* error page */

.error-page {
    text-align: center;
    padding: 150px 0;
}

.error-page .title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
}

.error-page .desc {
    margin-bottom: 30px;
}

.error-page .buttons a {
    background-color: #f0ebd8;
    width: 240px;
}

.error-page .buttons a:hover {
    background-color: #bdab83;
}



@media only screen and (min-width: 992px),
(height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape),
(width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {

    .header-mobile {
        display: none;
    }

    .treatments::after {
        content: "";
        clear: both;
        display: table;
    }

    .treatment-toggler {
        margin-top: 24px;
    }

}

@media only screen and (max-width: 992px),
(height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape),
(width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }

    h5 {
        font-size: 16px;
    }

    h6 {
        font-size: 16px;
    }

    .mobile-header-icons {
        display: flex;
    }

    .mobile-header-hamburger .hamburger-toggle {
        background: transparent;
        padding: 0px;
        font-size: 30px;
        margin: 0 10px;
        border: none;
    }

    .mobile-nav {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 9999;
        width: 100%;
        -webkit-animation: fadeOutLeft 0.5s ease-in-out;
        animation: fadeOutLeft 0.5s ease-in-out;
    }

    .mobile-nav-content {
        padding-top: 20px;
        background: #0D0D0D;
        width: 85%;
        height: 100%;
        cursor: copy;
        overflow-y: scroll;
    }

    .mobile-nav-menu ul li {
        padding: 10px 25px;
        list-style: none;
    }

    .sub-menu ul {
        background-color: #222222;
    }

    .mobile-nav-menu ul li .sub-menu-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .mobile-nav-menu ul li i {
        font-size: 14px;
        fill: white;
        color: white;
    }

    .mobile-nav-menu ul li a {
        color: white;
        font-weight: 600;
        font-size: 14px;
    }

    .mobile-nav-menu ul li ul {
        display: none;
        margin-top: 10px;
        margin-right: -25px;
        margin-left: -25px;
        padding-left: 25px;
    }

    .mobile-nav.open {
        display: block;
        -webkit-animation: fadeInLeft 0.5s;
        animation: fadeInLeft 0.5s;
        overflow-x: scroll;
    }

    .mobile-close-menu {
        position: fixed;
        top: 18px;
        right: 20px;
        display: none;
        z-index: 9999;
    }

    .mobile-close-menu i {
        color: #fff;
        font-size: 25px;
    }

    .mobile-nav-menu ul {
        padding: 0px;
    }

    .header-mobile {
        display: block;
        background-color: #EFECDC;
    }

    .header-mobile-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* fly alert */

    .fly-alert {
        top: 30px;
        left: 10px;
        right: 10px;
        font-size: 16px;
        text-align: center;
    }

    /* header */

    .header {
        display: none;
    }

    .headerclear {
        display: none;
    }

    /* slider */

    .slider {
        display: none;
    }

    .slider.mobile {
        display: block;
    }

    .slider.mobile .swiper-button-prev,
    .slider.mobile .swiper-button-next {
        display: none;
    }

    /* services */

    .services {
        padding: 0px 0 40px 0;
    }

    .service-box {
        min-width: 50%;
        max-width: 50%;
        min-height: 190px;
        border: none;
    }

    .service-box .title {
        font-size: 15px;
        text-align: center;
    }

    .service-box:nth-child(4n+1) {
        border: none;
        border-top: solid 1px #ddd;
    }

    .service-box:nth-last-child(1) {
        border: none;
        border-top: solid 1px #ddd;
    }

    .service-box:nth-last-child(2) {
        border: none;
        border-top: solid 1px #ddd;
    }

    .service-box:nth-last-child(3) {
        border: none;
        border-top: solid 1px #ddd;
    }

    .service-box:nth-last-child(4) {
        border: none;
        border-top: solid 1px #ddd;
    }

    .service-box {
        border-top: solid 1px #ddd;
    }

    .service-box:first-child {
        border: none;
    }

    .service-box:nth-child(2) {
        border: none;
    }

    /* home about */

    .home-about {
        padding: 0px 0 70px 0;
    }

    .home-about .doctor-box {
        margin-top: 0;
        padding: 0;
        padding-bottom: 40px;
    }

    .home-about .doctor-box .top-title {
        font-size: 25px;
        margin-top: 55px;
        margin-bottom: 20px;
        text-align: center;
    }

    .home-about .doctor-box .avatar {
        height: auto;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }

    .home-about .doctor-box .text .quote {
        margin-bottom: 10px;
    }

    .home-about .doctor-box .text .name {
        margin-bottom: 10px;
    }

    .home-about .service-list {
        padding-left: 0;
    }

    .home-about .service-list .top-title {
        font-size: 25px;
        line-height: 30px;
        text-align: center;
        margin-top: 50px;
    }

    .home-about .service-list ul li {
        width: 100%;
        float: unset;
        text-align: center;
        padding-left: 0;
        border-bottom: dashed 1px #f0ebd8;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .home-about .service-list ul li:before {
        display: none;
    }

    .home-about .contact-infos {
        display: block;
        margin-bottom: 0px;
    }

    .home-about .contact-infos .item {
        margin-bottom: 20px;
    }

    .home-about .contact-infos .item a {
        font-size: 16px;
        font-weight: 400;
    }

    .home-about .counter-area .top-title {
        margin-bottom: 40px;
        font-size: 25px;
    }

    .counter-box {
        margin-bottom: 50px;
    }

    .counter-box .counter {
        font-size: 40px;
        line-height: 40px;
    }

    /* testimonials */

    .testimonials {
        padding: 50px 0 0 0;
    }

    .testimonials .swiper-slide {
        text-align: center;
        padding: 80px 0px 0px 0px;
    }

    .testimonials .swiper-slide .quote {
        font-size: 16px;
    }

    .testimonials .swiper-button-prev {
        left: 0;
    }

    .testimonials .swiper-button-next {
        right: 0;
    }

    .testimonials .swiper-button-prev:after,
    .testimonials .swiper-button-next:after {
        font-size: 30px;
    }

    /* home cta */

    .home-cta .top-title {
        font-size: 25px;
        text-align: center;
    }

    .home-cta .top-title:before {
        left: 50%;
        transform: translateX(-50%);
    }

    .home-cta .desc {
        width: auto;
        text-align: center;
    }

    .home-cta .phone {
        font-size: 25px;
        font-weight: 600;
        text-align: center;
    }

    .home-cta .buttons a {
        margin-right: 0;
        display: block;
        text-align: center;
        margin-bottom: 40px;
    }

    .seperator:before {
        width: 100%;
    }

    /* footer */

    .footer {
        padding: 40px 0;
    }

    .footer:after {
        display: none;
    }

    .footer .avatar {
        text-align: center;
    }

    .footer .desc {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer .footer-title {
        text-align: center;
        font-size: 20px;
    }

    .footer ul {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer a.phone {
        text-align: center;
    }

    .social-menu {
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
        font-size: 14px;
    }

    .footer-bottom .right {
        text-align: center;
        margin-top: 5px;
    }

    /* scroll top */

    #scroll-top button {
        display: none;
    }

    /* footer bar */

    .footerbar {
        display: block;
        position: sticky;
        bottom: 0;
        display: flex;
        justify-content: space-around;
        width: 100%;
        background-color: #EFECDC;
        box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.20);
        z-index: 100;
    }

    .footerbar .item a {
        display: block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 600;
        color: #4d4d4d;
    }

    .footerbar .item a i {
        margin-right: 5px;
        font-weight: 600;
    }

    /* breadcrumbcrumb */

    .breadcrumb .area {
        display: block;
        text-align: center;
    }

    .breadcrumb .area:before {
        display: none;
    }

    .breadcrumb ul {
        justify-content: center;
    }

    /* about page */

    .about-page .about-info {
        padding: 40px 0 0px 0;
    }

    .about-page .about-info .top-area {
        display: block;
        text-align: center;
        margin-top: 30px;
    }

    .about-page .about-info .top-area .titles {
        margin-bottom: 20px;
    }

    .sidebar {
        position: relative;
        top: 0;
        padding-bottom: 20px;
        background: none;
        margin-bottom: 30px;
        padding-top: 0;
    }

    /* testimonials page */

    .testimonials-page .boxs-area {
        padding: 50px 0;
    }

    .testimonials-page .boxs-area .box {
        margin-bottom: 30px;
    }

    .testimonials-page .comments-area .top-title {
        font-size: 25px;
        letter-spacing: normal;
        margin-bottom: 30px;
    }

    .testimonials-page .comments-area .quote-box .infos {
        display: block;
    }

    /* medical device list */

    .medical-device-list {
        padding: 50px 0;
    }

    /* medical device detail */

    .medical-device-detail {
        padding: 90px 0;
    }

    /* treatment list */

    .treatment-list {
        padding: 50px 0;
    }

    .treatment-list .top-title {
        font-size: 25px;
        letter-spacing: 0;
    }

    .treatment-list .top-desc {
        width: auto;
        font-size: 15px;
    }

    .treatment-detail {
        padding: 50px 0;
    }

    .appointment-contact .top-title {
        font-size: 25px;
    }

    .boxs {
        display: block;
    }

    .boxs .box {
        width: 100%;
        margin-bottom: 30px;
        border: solid 1px #f0ebd8;
    }

    /* faq page */

    .faq-page {
        padding: 50px 0;
    }

    .faq-page .top-title {
        font-size: 25px;
    }

    /* contact page */

    .contact-page .top-title {
        font-size: 25px;
    }

    .contact-sidebar {
        margin-bottom: 50px;
    }

    /* pic gallery */

    .pic-gallery {
        padding: 50px 0;
    }

    /* vid gallery */

    .vid-gallery {
        padding: 50px 0;
    }

    /* instagram */

    .insta-page {
        padding: 50px 0;
    }

    /* blog list */

    .blog-list {
        padding: 50px 0;
    }

    /* error page */
  
    .error-page {
        padding: 50px 0;
    }
    
    .error-page .title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .error-page .buttons a {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

/* Fly Alert */
 
.fly-alert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 10px;
    background-color: rgba(0,0,0,.4);
    z-index: 1060;
}
 
.fly-alert .content {
    padding: 20px;
    background: rgb(255, 255, 255);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
    max-width: 500px;
    border-radius: 5px;
    margin: auto;
}
 
.fly-alert .icon {
    width: 80px;
    height: 80px;
    border: 4px solid;
    border-radius: 50%;
    margin: 20px 0 30px;
    box-sizing: content-box;
    cursor: default;
    font-size: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
 
.fly-alert.success .icon{
    border-color: #a5dc86;
    color: #a5dc86;
}
.fly-alert.danger .icon{
    border-color: #f27474;
    color: #f27474;
}
.fly-alert .icon svg{
    overflow: visible;
    height: 60px;
}
 
.fly-alert .desc {
    color: #595959;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    margin: 0 0 .4em;
    word-wrap: break-word;
}
 
.fly-alert .btn {
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    margin: 15px 5px 0;
    padding: 10px 32px;
    background-color: rgb(48, 133, 214);
}
 
/* Fly Alert */

.form-group .g-recaptcha div {
    margin-left: auto;
}

.g-recaptcha {
    position: relative;
}
.fake_error {
	white-space: nowrap;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	box-shadow: rgba(0, 0, 0, .2) 0 5px 10px;
	background-color: #F44336;
	color: #fff;
	padding: 5px 15px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 15px);
	position: absolute;
	z-index: 99;
	font-weight: 500;
}
.fake_error:before {
	bottom: 100%;
	left: 75%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(194, 225, 245, 0);
	border-bottom-color: #F44336;
	border-width: 10px;
	margin-left: -10px
}

/* Bootstrap Modal Base Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: none;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.show .modal-dialog {
    pointer-events: auto;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

/* Bootstrap Collapse */
.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.search1 .modal-dialog {
    max-width: 60%;
    top: 40%;
    margin: 0 auto;
}

.search1 .modal-header {
    display: none;
}

.search1 .close {
    position: absolute;
    border: none;
    background: none;
    top: 2px;
    right: 2px;
    font-size: 40px;
    outline: none;
    padding: 0;
}

.search1 .modal-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

.search1 button.searchbutton {
    background-color: #bdab83;
    color: white;
    border: none;
    padding: 8px 20px;
    font-weight: 500;
    margin-left: 10px;
    border-radius: 3px;
}

.modal-open {
    padding-right: 0px !important;
}
.p50{
    padding: 50px 0;
}
.pt50{
    padding-top: 50px;
}
@media (max-width:992px){
    .p50{
        padding: 20px 0;
    }
}

.section-title {
    position: relative;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 80px;
}
.section-title:before {
    position: absolute;
    content: '';
    height: 3px;
    width: 50px;
    background-color: #4d4d4d;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width:922px){
    .section-title {
        margin-bottom: 40px;
        font-size: 25px;
    }
}

.section-bg{
    background-color: #f0f0f0;
}

.mobile-nav-menu .search1 .modal-body {
    padding: 0;
}

.mobile-nav-menu .search1 .title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.mobile-nav-menu .search1 form {
    padding: 0 25px;
}

@media (max-width: 992px) {
    .desktop-bread {
        display:none!important
    }
}

@media (min-width: 992px) {
    .mobile-bread {
        display:none!important
    }
}

@media (max-width: 992px) {
    .bread {
        position:relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 500;
        flex-wrap: nowrap;
    }

    .bread a {
        color: inherit
    }

    .js-bread-list .bread-item a {
        color: inherit
    }

    .bread-area {
        position: relative;
    }

    .bread-item {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        opacity: .7;
        text-align: left;
    }

    .bread-item {
        display: none;
        line-height: 1.5
    }

    .bread-item i {
        margin-left: 15px;
        margin-right: 15px
    }

    .bread-item.active {
        opacity: 1
    }

    .bread-item:first-child {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }

    .bread-item:nth-child(2) {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }

    .bread-item:last-child {
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .bread .bread-item:last-child {
        opacity: .8
    }

    .js-bread-list {
        display: none;
        background-color: #fdfdfe;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 25px 20px 30px 20px;
        font-size: 16px;
        z-index: 8;
        color: #333;
        box-shadow: 0 1px 3px 0 rgba(0,0,0,.2)
    }

    .js-bread-list .bread-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .js-bread-list .bread-item i {
        margin-left: 0
    }

    .js-bread-list .bread-item+.bread-item {
        margin-top: 20px
    }

    .js-bread-list .bread-item:nth-child(2) {
        margin-left: 10px
    }

    .js-bread-list .bread-item:nth-child(3) {
        margin-left: 20px
    }

    .js-bread-list .bread-item:nth-child(4) {
        margin-left: 30px
    }

    .js-bread-list .bread-item:nth-child(5) {
        margin-left: 40px
    }

    .js-bread-list .js-bread-close {
        position: absolute;
        top: 20px;
        right: 20px
    }
}

.instagram-swiper .swiper-button-prev,
.devices-swiper .swiper-button-prev {
    left: -45px;
}
.instagram-swiper .swiper-button-next,
.devices-swiper .swiper-button-next {
    right: -45px;
}
@media (max-width: 992px) {
    .instagram-swiper .swiper-button-prev,
    .devices-swiper .swiper-button-prev,
    .instagram-swiper .swiper-button-next,
    .devices-swiper .swiper-button-next {
        display: none;
    }
}

.kvkk-list .btn-contact {
    float: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 30px;
}

.kvkk-list .btn-contact::after {
    content: "\f1c1";
    font-family: "Font Awesome 5 Pro";
    font-size: 28px;
}

@media (max-width: 992px){
    .row.mobile-reverse {
        flex-direction: column-reverse;
    }
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
} 
.clearfix {
    clear: both;
}

.landing-form-area{
    margin-bottom: 40px;
}
.landing-page {
    padding: 70px 0;
}
@media (max-width:992px) {
    .landing-page {
        padding: 35px 0;
    }
}

.landing-form-area label {
    display: inline;
}

.landing-form-area .g-recaptcha div {
    margin-left: unset;
}

.landing-form-area .btn-contact {
    float: unset;
}

.landing-page .faq-title {
    padding: 0 15px;
    height: auto;
    min-height: 62px;
}

.landing-page .card {
    margin-bottom: 10px;
}

.landing-page .section-title {
    margin-bottom: 40px;
    text-align: left;
}

.landing-page .section-title::before {
    left: 0;
    transform: unset;
    bottom: -20px;
    top: unset;
}
.mb30{
    margin-bottom: 30px;
}

.footer-sticky {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 10px;
    background: #202020;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px -5px 15px rgba(32, 32, 32, 0.15);
    box-shadow: 0px -5px 15px rgba(32, 32, 32, 0.15);
    z-index: 561;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (min-width: 768px) {
    .footer-sticky {
        display: none;
    }
}

.footer-sticky .sticky-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    padding: 10px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: #93B2D6;
}

.footer-sticky .sticky-item img {
    height: 25px;
}

.footer-sticky .sticky-item .sticky-title {
    line-height: 1;
    margin-top: 5px;
    text-align: center;
    font-size: 13px;
    color: white;
}

@media (max-width: 576px) {
    .footer-sticky .sticky-item .sticky-title {
        font-size: 10px;
    }
}

.footer-sticky .sticky-item .main-item {
    background-color: #efecdc;
    border: 1px solid #efecdc;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px -3px 4px rgba(34,34,34,.2);
    box-shadow: 0px -3px 4px rgba(34,34,34,.2);
    width: 54px;
    height: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -18px;
}

.treatment-toggler {
    cursor: pointer;
    font-size: 14px;
    background-color: #bdab83;
    color: white;
    padding: 10px 30px;
    border: 0;
    outline: none;
}

.treatment-toggler:focus {
    outline: none;
}


.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-item {
    margin-bottom: 30px;
    padding: 0 15px;
}

.side-item .title {
    font-weight: 600;
    font-size: 20px;
    position: relative;
    margin-bottom: 30px;
}

.side-item .title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30%;
    height: 2px;
    background-color: #222;
}


.mt60 {
    margin-top: 60px;
}

.sticky {
    position: sticky;
    top: 100px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.languages a {
        border-left: 1px solid #333;
    padding-left: 15px;
    text-transform: uppercase;
}

@media (max-width:992px) {

        .search1 {
        margin: 40px 0;
    }
 .languages a {
    padding-left: 25px;
    color: white;
 }   
}