/* Fonts */
@font-face {
    font-family: 'Tajawal';
    font-display: swap;
    src: url('../fonts/font-face/Tajawal-Regular.woff2') format('woff2'),
        url('../fonts/font-face/Tajawal-Regular.woff') format('woff'),
        url('../fonts/font-face/Tajawal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Tajawal';
    font-display: swap;
    src: url('../fonts/font-face/Tajawal-Medium.woff2') format('woff2'),
        url('../fonts/font-face/Tajawal-Medium.woff') format('woff'),
        url('../fonts/font-face/Tajawal-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Tajawal';
    font-display: swap;
    src: url('../fonts/font-face/Tajawal-Bold.woff2') format('woff2'),
        url('../fonts/font-face/Tajawal-Bold.woff') format('woff'),
        url('../fonts/font-face/Tajawal-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Root Variables */
:root {
    --primary-color: #ef6e0d;
    --secondery-color: #243374;
    --light-color: #e9f5f8;
    --gray-text: #808080;
}

/* General Resets */
body {
    font-family: 'Tajawal';
    position: relative;
    color: var(--secondery-color);
    overflow-x: hidden;
}
body.ovh {
    overflow: hidden;
}
input:focus, button:focus, a:focus, select:focus, textarea:focus {
    outline: 0;
}
input::placeholder {
    color: inherit;
}
a, a:hover, a:focus {
    text-decoration: none;
    color:inherit
}
button {
    border: none;
    background: none;
    outline: 0;
}
a, img, button, input, select {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}
[role="button"] {
    cursor: pointer;
}

/* Lists */
.mk-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.mk-inlinelist {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Overlays */
.navOverlay {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    position: fixed;
    opacity: 0;
    visibility: hidden;
    z-index: 999998;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.navOverlay.open {
    visibility: visible;
    opacity: 1;
}

/* Responsive Enhancements */
@media (max-width:479px) {
    .col-mob-12 {
        width: 100%;
    }
    .col-mob-9 {
        width: 75%;
    }
    .col-mob-8 {
        width: 66.6666%;
    }
    .col-mob-3 {
        width: 25%;
    }
    .col-mob-4 {
        width: 33.3333%;
    }
    .hidden-mob {
        display: none;
    }
}
@media (min-width:481px) {
    .visible-mob {
        display: none;
    }
}

/* Forms */
.formGroup {
    position: relative;
    margin-bottom: 15px;
}
.formLabel {
    display: block;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
    padding: 0 20px;
}
.formGroup.required .formLabel:after {
    content: '*';
    color: #f00;
}
.formControl {
    width: 100%;
    min-height: 45px;
    border: 1px solid #d5e5ef;
    border-radius: 22.5px;
    padding: 0 30px;
    background-color: #f4fafb;
}
.formControl:focus {
    border-color: var(--primary-color);
}
.formControl[type="number"]::-webkit-inner-spin-button {
    display: none;
}
.formBtn.flex-end {
    display: flex;
    justify-content: flex-end;
}
.formBtn.flex-cntr {
    display: flex;
    justify-content: center;
}
.primary-btn.submit-btn {
    font-size: 17px;
    font-weight: bold;
    width: 130px;
}

select.formControl {
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: left 22px top 50%;
    background-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea.formControl {
    padding-top: 15px;
}

/* Buttons */
.primary-btn {
    min-width: 40px;
    min-height: 40px;
    border-radius: 20px;
    background-color: var(--primary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    box-shadow: 0px 7px 30px 0px rgba(239, 110, 13, 0.3);
}
.primary-btn:hover, .primary-btn:focus {
    background-color: var(--secondery-color);
    color: #fff;
}
.primary-btn i {
    padding-bottom: 5px;
}
html[dir="rtl"] .primary-btn i {
    margin-left: 5px;
}
html[dir="ltr"] .primary-btn i {
    margin-right: 5px;
}

.reversed-btn {
    min-width: 45px;
    min-height: 45px;
    border-radius: 25px;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    font-size: 17px;
    font-weight: 500;
}
.reversed-btn:hover, .reversed-btn:focus {
    color: #fff;
    background-color: var(--primary-color);
}

/* Heading title */
.heading-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 50px;
    margin-top: 0;
}
.heading-title.dashed:after {
    content: '';
    width: 55px;
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    margin-top: 25px;
}
.heading-title.dashed.text-center:after {
    margin: 25px auto 0;
}

@media (max-width:767px) {
    .heading-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

.main-wrapper {
    overflow: hidden;
}

/* ========================== */
/* Header */
header {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    position: relative;
}
.top-head-container {
    background-color: var(--primary-color);
    margin-bottom: 15px;
}
.top-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    height: 42px;
}
.top-head i {
    font-size: 16px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: #cb5e0b;
    color: #fff;
    transition: 0.3s ease;
}
html[dir="rtl"] .top-head i {
    margin-left: 5px;
}
html[dir="ltr"] .top-head i {
    margin-right: 5px;
}
.top-head a:hover i {
    background-color: #fff;
    color: var(--primary-color);
}

html[dir="rtl"] .contact-info > li:not(:last-child) {
    margin-left: 20px;
}
html[dir="ltr"] .contact-info > li:not(:last-child) {
    margin-right: 20px;
}
html[dir="rtl"] .social-list {
    margin-right: auto;
}
html[dir="ltr"] .social-list {
    margin-left: auto;
}
html[dir="rtl"] .lang-btn {
    margin-right: 20px;
}
html[dir="ltr"] .lang-btn {
    margin-left: 20px;
}
.lang-btn:hover {
    color: var(--secondery-color);
}

@media (max-width:767px) {
    .top-head {
        height: auto;
        padding: 10px 0;
        flex-wrap: wrap-reverse;
        justify-content: flex-start;
    }
    .contact-info {
        margin-top: 10px;
    }
    html[dir="rtl"] .social-list, html[dir="ltr"] .social-list {
        margin: 0;
    }

    html[dir="rtl"] .lang-btn {
        margin-right: auto;
    }
    html[dir="ltr"] .lang-btn {
        margin-left: auto;
    }
}

.main-logo {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.fixed-header {
    padding-top: 60px;
}
.fixed-header .nav-head {
    transition: 0.3s ease;
    position: fixed;
    top: -100%;
    background-color: #fff;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.fixed-header .nav-head.shown {
    top: 0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav-menu {
    position: relative;
}
.main-nav-menu > li {
    position: relative;
}
.main-nav-menu > li > a {
    color: var(--secondery-color);
    font-size: 16px;
    font-weight: 500;
    margin: 0 8px;
    display: block;
    line-height: 60px;
    position: relative;
}
.main-nav-menu > li:hover > a {
    color: var(--primary-color);
}
.main-nav-menu > li.current-menu-item > a:before, .main-nav-menu > li.current-menu-parent > a:before {
    content: '';
    position: absolute;
    bottom: 0px;
    background-color: var(--primary-color);
    height: 2px;
    left: 0;
    right: 0;
}
.main-nav-menu li.current-menu-item > a, .main-nav-menu li.current-menu-parent > a {
    color: var(--primary-color);
}

li.menu-item-has-children > a:after {
    content: '\f078';
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    font-size: 10px;
    line-height: 1;
}
html[dir="rtl"] li.menu-item-has-children > a:after {
    margin-right: 5px;
}
html[dir="ltr"] li.menu-item-has-children > a:after {
    margin-left: 5px;
}
li.menu-item-has-children ul.sub-menu {
    z-index: 9999;
    position: absolute;
    background-color: #fff;
    min-width: 100%;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    top: 125%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0;
    list-style: none;
    text-align: center;
    padding: 10px 0;
}
li.menu-item-has-children:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
    top: 95%;
}

li.menu-item-has-children.megamneu ul.sub-menu {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    left: 0;
    right: 0;
    transform: none;
}

.main-nav-menu > li.menu-item-has-children.megamneu {
    position: static;
}

li.menu-item-has-children.megamneu ul.sub-menu > li {
    width: 33.3333%;
}

li.menu-item-has-children ul.sub-menu > li > a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 15px;
}
li.menu-item-has-children.megamenu ul.sub-menu > li > a {
    padding: 5px 0;
}
li.menu-item-has-children ul.sub-menu > li > a:hover {
    color: var(--primary-color);
}

li.menu-item-has-children > a {
    cursor: pointer;
}

@media (max-width:1199px) {
    .nav-open {
        overflow: hidden;
    }
    .nav-container {
        position: fixed;
        top: 0;
        bottom: 0;
        width: 300px;
        background-color: #fff;
        overflow: auto;
        transition: 0.3s ease;
        z-index: 9999999999;
    }
    html[dir="rtl"] .nav-container {
        right: -300px;
    }
    html[dir="ltr"] .nav-container {
        left: -300px;
    }
    html[dir="rtl"] body.nav-open .nav-container {
        right: 0;
    }
    html[dir="ltr"] body.nav-open .nav-container {
        left: 0;
    }

    .nav-container .main-nav-menu {
        flex-direction: column;
        padding: 50px 0;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #000;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 9999;
    }

    body.nav-open .nav-overlay {
        opacity: 0.6;
        visibility: visible;
    }

    body.nav-open .fixed-header .nav-head.shown {
        top: -100%;
    }
    
    .nav-head {
        padding: 10px 0;
        background-color: var(--light-color);
        border-bottom: 2px solid var(--primary-color);
    }

    .nav-btn {
        font-size: 18px;
    }
    .fixed-header .nav-btn {
        color: var(--secondery-color);
    }
    .nav-btn i {
        font-size: 20px;
    }

    .main-nav-menu > li > a {
        line-height: 40px;
        padding: 0 10px;
    }
    .main-nav-menu > li.active > a {
        color: var(--primary-color);
    }
    .main-nav-menu > li:not(.active):hover > a {
        color: var(--secondery-color);
    }
    .main-nav-menu > li.current-menu-item > a:before, .main-nav-menu > li.current-menu-parent > a:before {
        display: none;
    }
    .main-nav-menu li.menu-item-has-children > a:after {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 13px;
    }
    html[dir="rtl"] .main-nav-menu li.menu-item-has-children > a:after {
        left: 25px;
    }
    html[dir="ltr"] .main-nav-menu li.menu-item-has-children > a:after {
        right: 25px;
    }

    .main-nav-menu li.menu-item-has-children ul.sub-menu {
        display: none;
        visibility: visible;
        opacity: 1;
        position: static;
        box-shadow: none;
        transform: none;
        background-color: #f2f2f2;
        padding: 10px 0;
        flex-direction: column;
    }
    html[dir="rtl"] .main-nav-menu li.menu-item-has-children ul.sub-menu {
        text-align: right;
    }
    html[dir="ltr"] .main-nav-menu li.menu-item-has-children ul.sub-menu {
        text-align: left;
    }
    .main-nav-menu li.menu-item-has-children.megamneu ul.sub-menu > li {
        width: 100%;
    }

    .main-nav-menu li.menu-item-has-children.active ul.sub-menu {
        display: flex;
    }

    li.menu-item-has-children.megamneu ul.sub-menu > li:nth-child(3n) {
        order: 3
    }
    li.menu-item-has-children.megamneu ul.sub-menu > li:nth-child(3n + 1) {
        order: 1
    }
    li.menu-item-has-children.megamneu ul.sub-menu > li:nth-child(3n - 1) {
        order: 2
    }
}

/* ========================== */
/* Slider */
.main-slider {
    margin: 0 0 50px;
    position: relative;
}
.primary-swiper-pagination.main-pagination {
    margin: 0;
    position: absolute;
    bottom: 40px;
    z-index: 9998;
    left: 0;
    right: 0;
}
.primary-swiper-pagination.main-pagination span {
    background-color: rgba(0,0,0,0.5);
}
.primary-swiper-pagination.main-pagination span.swiper-pagination-bullet-active {
    background-color: #fff;
}

.slide-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.slider-item {
    height: 43vw;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    position: relative;
}

.slider-item.slide1 {
    display: flex;
    align-items: center;
    padding-right: 50%;
    text-align: right;
}
html[dir="ltr"] .slider-item.slide1 {
    justify-content: flex-end;
}

.slide-info {
    color: #fff;
}
.slide-info h1 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 0;
}
.slide-info p {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 40px;
}

.slide-btns {
    display: flex;
}
.slide-btns a {
    margin: 0 4px;
    font-size: 16px;
    font-weight: bold;
    height: 45px;
    padding: 0 30px;
}
.slide-btns .white-btn {
    background-color: #fff;
    color: var(--secondery-color);
    font-size: 17px;
    font-weight: 500;
    padding: 0 35px;
}
.slide-btns a.white-btn:hover {
    background-color: var(--secondery-color);
    color: #fff;
}

@media (max-width:767px) {
    .slider-item {
        height: 50vw;
        background-size: 100% 100%;
    }
    .slider-item.slide1 {
        padding-right: 40%;
        background-size: 110% 100%;
    }
    .slide-info h1 {
        font-size: 20px;
    }
    .slide-info p {
        font-size: 14px;
        line-height: 1.3;
        margin: 10px 0 0;
    }
    .slide-btns {
        display: none;
    }
    .primary-swiper-pagination.main-pagination {
        bottom: 5px;
    }
}
@media (max-width:479px) {
    .slider-item {
        height: 60vw;
    }
    .slide-info p {
        font-size: 12px;
    }
}

/* services slide */
.slider-item.slide3 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sliderServices {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.sliderServices.rs {
    order: 1;
    align-items: flex-end;
}
.sliderServices.ls {
    order: 3;
    align-items: flex-start;
}

.sliderServices .service-item {
    display: flex;
    align-items: center;
    --margin-value: 40px;
}
.sliderServices.rs .service-item {
    flex-direction: row-reverse;
}
.sliderServices .service-icon {
    width: 135px;
    height: 135px;
    background-color: #fff;
}
.sliderServices .service-icon img {
    max-width: 80%;
    max-height: 80%;
}

html[dir="rtl"] .sliderServices.rs .service-item {
    text-align: left;
}
html[dir="ltr"] .sliderServices.rs .service-item {
    text-align: right;
}
html[dir="rtl"] .sliderServices.ls .service-item {
    text-align: right;
}
html[dir="ltr"] .sliderServices.ls .service-item {
    text-align: left;
}

html[dir="rtl"] .sliderServices.rs .service-item:nth-child(2) {
    margin-left: var(--margin-value);
}
html[dir="ltr"] .sliderServices.rs .service-item:nth-child(2) {
    margin-right: var(--margin-value);
}
html[dir="rtl"] .sliderServices.ls .service-item:nth-child(2) {
    margin-right: var(--margin-value);
}
html[dir="ltr"] .sliderServices.ls .service-item:nth-child(2) {
    margin-left: var(--margin-value);
}

html[dir="rtl"] .sliderServices.rs .service-icon {
    margin-right: 10px;
}
html[dir="ltr"] .sliderServices.rs .service-icon {
    margin-left: 10px;
}
html[dir="rtl"] .sliderServices.ls .service-icon {
    margin-left: 10px;
}
html[dir="ltr"] .sliderServices.ls .service-icon {
    margin-right: 10px;
}

.more-services {
    order: 2;
    text-align: center;
    padding: 0 60px;
}
.more-services h3 {
    font-size: 36px;
}
.more-services h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 25px;
    margin-top: 10px;
}
.more-services .primary-btn {
    background-color: var(--secondery-color);
    font-size: 19px;
    font-weight: bold;
    height: 50px;
    border-radius: 25px;
    padding: 0 30px;
}
.more-services .primary-btn:hover {
    background-color: var(--primary-color);
}

@media (max-width:767px) {
    .more-services {
        padding: 0 15px;
    }
    .sliderServices .service-item {
        --margin-value: 20px;
    }
    .sliderServices .service-icon {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    .sliderServices .service-name {
        font-size: 14px;
    }
    .more-services img {
        width: 80px;
    }
    .more-services h3 {
        font-size: 13px;
    }
    .more-services h2 {
        font-size: 16px;
        margin-bottom: 0;
    }
    .more-services .primary-btn {
        display: none;
    }
}
@media (max-width:479px) {
    .sliderServices {
        position: relative;
        z-index: 9;
        padding: 0 10px;
    }
    .more-services {
        position: absolute;
        padding-bottom: 15px;
    }

    .sliderServices .service-icon {
        width: 40px;
        height: 40px;
    }
    .sliderServices .service-name {
        font-size: 12px;
        min-height: 26px;
    }
    .more-services h3 {
        font-size: 12px;
        margin: 0;
    }
    .more-services h2 {
        font-size: 14px;
        margin: 0;
    }
}
/* ========================== */
/* Services */
.featured-services, .services {
    padding: 50px 0;
    text-align: center;
}
.services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
    gap: 30px;
    position: relative;
}
.service-item {
    text-align: center;
    display: block;
}
.service-icon {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    transition: 0.3s ease;
}
.service-item:hover .service-icon {
    background-color: var(--primary-color);
}
.service-icon img {
    max-width: 100%;
}

.service-img {
    border-radius: 15px;
    overflow: hidden;
}
.service-img img {
    width: 100%;
    height: 175px;
    display: block;
}
.service-name {
    font-size: 18px;
    font-weight: 500;
}
.service-item:hover .service-name {
    color: var(--primary-color);
}

.services .morebtn {
    margin-top: 30px;
}
/* ========================== */
/* About Dr */
.about-dr {
    margin: 100px 0 50px;
    background-color: var(--light-color);
    position: relative;
}

.dr-img {
    position: absolute;
    bottom: 0;
    width: 50%;
    text-align: center;
    padding: 0 30px;
}
html[dir="rtl"] .dr-img {
    right: 0;
}
html[dir="ltr"] .dr-img {
    left: 0;
}
.dr-img img {
    max-width: 100%;
}
.about-dr-content {
    padding: 100px 0;
}
html[dir="rtl"] .about-dr-content {
    margin-right: 50%;
}
html[dir="ltr"] .about-dr-content {
    margin-left: 50%;
}
.about-tooltip {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background-color: var(--primary-color);
    padding: 0 20px;
    line-height: 30px;
    border-radius: 20px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.about-tooltip:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: -6px;
    border-width: 10px 20px;
    border-style: solid;
    border-color: transparent;
    border-top-color: var(--primary-color);
}
html[dir="rtl"] .about-tooltip:before {
    right: 0;
    border-right-color: var(--primary-color);
}
html[dir="ltr"] .about-tooltip:before {
    left: 0;
    border-left-color: var(--primary-color);
}
.about-tooltip span {
    position: relative;
    z-index: 9;
}

.about-dr-list {
    margin-bottom: 40px;
}
.about-dr-list > li {
    font-size: 17px;
    display: flex;
    margin-bottom: 10px;
}
.about-dr-list > li > i {
    color: var(--primary-color);
    margin-top: 4px;
}
html[dir="rtl"] .about-dr-list > li > i {
    margin-left: 15px;
}
html[dir="ltr"] .about-dr-list > li > i {
    margin-right: 15px;
}

@media (max-width:991px) {
    .dr-img {
        position: static;
        width: auto;
        max-width: 70%;
        margin: auto;
        padding-top: 30px;
    }
    .dr-img img {
        background-color: #bbb;
        border-radius: 15px;
    }
    html[dir="rtl"] .about-dr-content, html[dir="ltr"] .about-dr-content {
        margin: 30px 0;
        padding: 0;
    }
    .about-dr-list > li > i {
        margin-bottom: 5px;
    }
}

/* ========================== */
/* About Clinic */
.about-clinic {
    margin: 100px 0;
    position: relative;
}
.about-clinic .heading-title {
    margin-bottom: 30px;
}

.clinic-img {
    position: absolute;
    top: 0;
    width: 50%;
    text-align: center;
    padding: 0 30px;
}
html[dir="rtl"] .clinic-img {
    left: 0;
}
html[dir="ltr"] .clinic-img {
    right: 0;
}
.clinic-img img {
    max-width: 100%;
    position: relative;
    z-index: 9;
    border-radius: 50%;
}

.clinic-img span {
    position: relative;
    display: inline-block;
}
.clinic-img span:after {
    content: '';
    background-color: var(--primary-color);
    width: 500%;
    height: 100%;
    position: absolute;
    display: block;
    top: 0px;
    left: -1px;
    border-radius: 310px;
    transform-origin: 310px 310px;
}

html[dir="rtl"] .clinic-img span:after {
    transform: rotate(125deg);
}
html[dir="ltr"] .clinic-img span:after {
    transform: rotate(55deg);
}


.about-clinic-content {
    padding-top: 50px;
}
html[dir="rtl"] .about-clinic-content {
    margin-left: 50%;
}
html[dir="ltr"] .about-clinic-content {
    margin-right: 50%;
}

.clinic-desc {
    font-size: 17px;
    margin-bottom: 30px;
}
.clinic-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    grid-gap: 30px;
    margin-bottom: 45px;
}
.c-feat-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background-color: var(--light-color);
    font-size: 25px;
    border-radius: 50%;
    transition: 0.3s ease;
}
.clinic-feature:hover .c-feat-icon {
    background-color: var(--primary-color);
    color: #fff;
}
.c-feat-title {
    font-size: 18px;
    font-weight: bold;
}
.c-feat-desc {
    font-size: 15px;
}

@media (max-width:1199px) {
    .clinic-img span::after {
        display: none;
    }
}
@media (max-width:991px) {
    .clinic-img {
        position: static;
        width: auto;
        max-width: 80%;
        margin: auto;
    }
    .about-clinic-content {
        text-align: center;
    }
    html[dir="rtl"] .about-clinic-content {
        margin-left: 0;
    }
    html[dir="ltr"] .about-clinic-content {
        margin-right: 0;
    }
    .c-feat-icon {
        margin: auto;
    }
}
/* ========================== */
/* BMI */
.bmi-section {
    background-color: var(--light-color);
    padding: 100px 0;
    margin-top: 50px;
}
.bmi-head {
    line-height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.bmi-table {
    border-radius: 30px;
    overflow: hidden;
    margin-top: 20px;
}

.bmi-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: var(--light-color);
    column-gap: 1px;
}
.bmi-list > li {
    line-height: 60px;
    background-color: #fff;
    padding: 0 40px;
    font-size: 17px;
}
.bmi-list > li:nth-child(odd) {
    font-weight: bold;
}
.bmi-list > li:nth-child(4n), .bmi-list > li:nth-child(4n - 1) {
    background-color: #f4fafc;
}

@media (max-width:576px) {
    .bmi-head {
        font-size: 18px;
        line-height: 50px;
    }
    .bmi-list > li {
        line-height: 1.3;
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* BMI Result */
body.modal-open .fixed-header .nav-head.shown {
    top: -100%;
}
.modal-backdrop.in {
    opacity: 0.3;
}
#modal-bmi {
    z-index: 9999;
}
#modal-bmi .modal-content {
    box-shadow: none;
    border: none;
    border-radius: 15px;
}
#modal-bmi .modal-dialog {
    width: 1140px;
    text-align: center;
}
#modal-bmi .modal-body {
    padding-bottom: 50px;
}
#modal-bmi section {
    margin-bottom: 30px;
}
#modal-bmi .heading {
    font-size: 18px;
    font-weight: bold;
}
.bmi-result h2 {
    color: #249bb7;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}
#modal-bmi p {
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    margin: 0;
}
#modal-bmi p span {
    color: #249bb7;
    font-weight: bold;
}

.bmi-shapes {
    border-top: 1px solid #c4d1df;
    border-bottom: 1px solid #c4d1df;
    display: flex;
    justify-content: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 30px;
}

.bmi-shape {
    margin: 0 13px;
    padding: 30px 0;
    position: relative;
}

.bmi-shape.active:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-top: 5px solid #8dc03e;
    border-bottom: 5px solid #8dc03e;
}

.bmi-shape img {
    max-width: 100%;
}

.close-bmi-modal {
    width: 180px;
    height: 45px;
    border-radius: 25px;
    background-color: #ccdce6;
    color: #144880;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.close-bmi-modal:hover {
    background-color: var(--primary-color);
    color: #fff;
}

#modal-bmi .modal-footer {
    background-color: #0f3047;
    padding: 10px;
    padding-bottom: 20px;
}
#modal-bmi .bmi-powered {
    font-size: 15px;
    color: #fff;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.bmi-powered a {
    display: block;
}

@media (max-width:1199px) {
    #modal-bmi .modal-dialog {
        width: 95%;
    }
}
@media (max-width:767px) {
    #modal-bmi section {
        margin-bottom: 20px;
    }
    #modal-bmi .heading {
        font-size: 15px;
    }
    #modal-bmi p {
        font-size: 14px;
        line-height: 24px;
    }
    .bmi-result h2 {
        font-size: 24px;
        margin: 10px 0;
    }
    .bmi-shape {
        padding: 15px 0;
    }
}

/* ========================== */
/* Reserve */
.reserve-section {
    background-repeat: no-repeat;
    padding: 80px 0;
}
html[dir="rtl"] .reserve-section {
    background-position: top left;
    background-image: url(../images/assets/reserve.jpg);
}
html[dir="ltr"] .reserve-section {
    background-position: top right;
    background-image: url(../images/assets/reserve-en.png);
}

@media (max-width:991px) {
    html[dir="rtl"] .reserve-section, html[dir="ltr"] .reserve-section {
        background-image: none;
    }
    .reserve-section .heading-title {
        text-align: center;
    }
    .reserve-section .heading-title:after {
        margin: 25px auto 0;
    }
}
/* ========================== */
/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-image: url(../images/assets/testimonials.png);
    background-size: cover;
    position: relative;
}
.page-template-about-page .testimonials-section {
    margin-top: 150px;
}
.testimonials-section .swiper-slide {
    padding-bottom: 30px;
}
.testimonial-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    position: relative;
}
.testimonial-item:after {
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    position: absolute;
    font-size: 60px;
    top: 5px;
    color: var(--light-color);
}
html[dir="rtl"] .testimonial-item:after {
    left: 20px;
    content: '\f10e';
    transform: rotateY(180deg);
}
html[dir="ltr"] .testimonial-item:after {
    right: 20px;
    content: '\f10d';
    transform: rotate(180deg);
}
.testimonial-item h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 25px;
}
.testimonial-item p {
    font-size: 16px;
    line-height: 26px;
    color: var(--secondery-color);
}

.primary-swiper-pagination {
    text-align: center;
    margin-top: 45px;
}
.primary-swiper-pagination span {
    width: 15px;
    height: 5px;
    background-color: #afc6e1;
    margin: 0 2.5px;
    opacity: 1;
    border-radius: 2.5px;
}
.primary-swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    z-index: 99;
    cursor: pointer;
}
.swiper-nav.swiper-button-disabled {
    color: #ddd;
}

.swiper-nav.next, html[dir="rtl"] .swiper-nav.prev {
    right: -15px;
    left: auto;
}
.swiper-nav.prev, html[dir="rtl"] .swiper-nav.next {
    left: -15px;
    right: auto;
}
/* ========================== */
/* Blog articles */
.articles-section {
    padding: 100px 0;
}
.articles-section .heading-title {
    margin-bottom: 20px;
}
.articles-section .lead {
    margin-bottom: 40px;
}
.articles-section .swiper-slide {
    padding-bottom: 30px;
}
.articles_row {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}
.article-item {
    background-color: #fff;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    max-width: 360px;
    margin: auto;
}
.article-thumb {
    display: block;
}
.article-thumb img {
    height: 180px;
    object-fit: contain;
}
.article-desc {
    padding: 25px;
}
.article-date {
    color: var(--gray-text);
    display: block;
    font-size: 15px;
}
.article-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    display: block;
    margin-bottom: 15px;
}
.article-title:hover {
    color: var(--primary-color);
}
.article-content {
    font-size: 15px;
    line-height: 26px;
}
/* ========================== */
/* Partners */
.partners-section {
    padding: 100px 0;
    background-color: var(--light-color);
}
.partners-section .swiper-slide {
    padding-bottom: 30px;
}
.partner-item {
    width: 167px;
    height: 167px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: auto;
}
.partner-item:hover {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
/* ========================== */
/* FAQ */
.faq-section {
    padding: 100px 0;
    position: relative;
    margin-top: 100px;
}

.faq-img {
    position: absolute;
    top: 0;
    width: 50%;
    text-align: center;
    padding: 0 30px;
}
html[dir="rtl"] .faq-img {
    right: 0;
}
html[dir="ltr"] .faq-img {
    left: 0;
}
.faq-img img {
    max-width: 100%;
    position: relative;
    z-index: 9;
    border-radius: 50%;
}

.faq-img span {
    position: relative;
    display: inline-block;
}
.faq-img span:after {
    content: '';
    background-color: var(--primary-color);
    width: 500%;
    height: 100%;
    position: absolute;
    display: block;
    top: 1px;
    left: 0px;
    border-radius: 310px;
    transform-origin: 310px 310px;
}

html[dir="rtl"] .faq-img span:after {
    transform: rotate(50deg);
}
html[dir="ltr"] .faq-img span:after {
    transform: rotate(125deg);
}

.faq-content {
    padding-top: 50px;
}
html[dir="rtl"] .faq-content {
    margin-right: 50%;
}
html[dir="ltr"] .faq-content {
    margin-left: 50%;
}

.faq-content .heading-title {
    margin-bottom: 30px;
}

.faq-panel {
    border: none;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 3px;
}
.faq-title {
    padding-bottom: 2px;
}
.faq-title > a {
    display: block;
    font-size: 17px;
    font-weight: 500;
    background-color: var(--light-color);
    padding: 20px 30px;
    border-radius: 5px;
    position: relative;
}
html[dir="rtl"] .faq-title > a {
    padding-left: 50px;
}
html[dir="ltr"] .faq-title > a {
    padding-right: 50px;
}
.faq-title > a:hover {
    color: var(--primary-color);
}
.faq-title > a:after {
    content: '\f139';
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    position: absolute;
    top: 17px;
    color: var(--primary-color);
}
.faq-title > a.collapsed:after {
    content: '\f13a';
    color: var(--secondery-color);
}
html[dir="rtl"] .faq-title > a:after {
    left: 25px;
}
html[dir="ltr"] .faq-title > a:after {
    right: 25px;
}
.faq-desc p {
    padding: 20px 30px;
    color: var(--gray-text);
    font-size: 15px;
    margin: 0;
    line-height: 28px;
    background-color: #f4fafb;
    border-radius: 5px;
}

@media (max-width:1199px) {
    .faq-img span:after {
        display: none;
    }
}
@media (max-width:991px) {
    .faq-img {
        position: static;
        width: auto;
        max-width: 80%;
        margin: auto;
    }

    .faq-content {
        text-align: center;
    }
    html[dir="rtl"] .faq-content {
        margin-right: 0;
    }
    html[dir="ltr"] .faq-content {
        margin-left: 0;
    }
}
/* ========================== */
/* News */
.news-section {
    padding: 100px 0;
}
.news-container {
    position: relative;
    z-index: 99;
}
.news-item {
    margin-bottom: 25px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}
.news-date {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
    border-radius: 50%;
    line-height: 0.8;
    cursor: default;
}
.news-date > span {
    font-size: 37px;
    font-weight: bold;
}
.news-content {
    padding: 15px 20px;
}
.news-content > a {
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}
.news-content > a:hover {
    color: var(--primary-color);
}
.news-content > p {
    font-size: 16px;
    color: var(--gray-text);
}
/* ========================== */
/* Services */
/* ========================== */
/* Footer */
footer {
    background-color: var(--secondery-color);
    padding-top: 70px;
    color: #fff;
}
.footer-row {
    display: flex;
    justify-content: space-between;
}
.footer-about {
    width: calc(25% + 30px);
}
.footer-logo {
    margin-bottom: 15px;
    display: block;
}
.footer-logo img {
    max-width: 100%;
}
.footer-about > p {
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 28px;
}
.footer-social > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 16px;
    background-color: #3a4882;
    color: #fff;
    border-radius: 50%;
}
html[dir="rtl"] .footer-social > li > a {
    margin-left: 5px;
}
html[dir="ltr"] .footer-social > li > a {
    margin-right: 5px;
}
.footer-social > li > a:hover {
    background-color: var(--primary-color);
}
.footer-links {
    padding: 0 15px;
}
.footer-title {
    margin: 0 0 30px;
    font-size: 17px;
    font-weight: bold;
}
.footer-title:after {
    content: '';
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    margin-top: 15px;
}
.footer-list > li > a {
    color: #8bb1ff;
    font-size: 15px;
    line-height: 28px;
}
.footer-list > li > a:hover {
    color: #fff;
}
.footer-services {
    width: calc(50% + 30px);
}
.footer-services .footer-list {
    flex-wrap: wrap;
}
.footer-services .footer-list li {
    width: 50%;
}
html[dir="rtl"] .footer-services .footer-list li:nth-child(even) {
    padding-right: 30px;
}
html[dir="ltr"] .footer-services .footer-list li:nth-child(even) {
    padding-left: 30px;
}
.lower-footer {
    margin-top: 85px;
    background-color: #1f2b63;
}
.copyrights {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyrights > p {
    margin: 0;
    font-size: 14px;
}

.copyrights p:last-child i {
    color: #f14848;
    width: 22px;
    text-align: center;
    display: inline-block;
    animation: pulsing .5s infinite ease-in-out;
}

@-webkit-keyframes pulsing {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.2)
    }
}

@keyframes pulsing {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.2)
    }
}

.copyrights p:last-child a {
    color: #1abcbc;
}

@media (max-width:991px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
    }
    .footer-about {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-links, .footer-services {
        width: 100%;
        margin-bottom: 40px;
    }
    .footer-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
    .footer-services .footer-list li {
        width: 100%;
    }
    html[dir="rtl"] .footer-services .footer-list li:nth-child(even), html[dir="ltr"] .footer-services .footer-list li:nth-child(even) {
        padding: 0;
    }
    .footer-list > li > a {
        margin: 0 10px;
    }
    .footer-title {
        text-align: center;
    }
    .footer-title:after {
        margin: 15px auto 0;
    }

    .lower-footer {
        margin-top: 15px;
    }
    .copyrights {
        height: auto;
        padding: 15px 0;
        flex-direction: column;
    }
    .copyrights > p:first-child {
        margin-bottom: 5px;
    }
}

/* Breadcrumb */
.breadcrumb-sec {
    height: 250px;
    background-image: url(../images/assets/breadcrumb.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.breadcrumb-sec .page-head {
    margin-bottom: 0;
    font-size: 36px;
    font-weight: bold;
}
.breadcrumb {
    background: none;
}
.breadcrumb > li {
    font-size: 16px;
}

@media (max-width:767px) {
    .breadcrumb-sec {
        display: none;
    }
}

/* Contact page */
.inner-contact-form {
    margin-bottom: 100px;
}
.page-template-contact-us .heading-title {
    margin-top: 70px;
    line-height: 40px;
}
.page-template-contact-us .heading-title span {
    font-weight: 400;
    display: block;
}

.clinics-info {
    margin: 60px 0;
}
.clinic-card {
    background-color: var(--secondery-color);
    padding: 30px 15px;
    color: #fff;
    margin-bottom: 30px;
}

.clinic-title {
    font-size: 24px;
    margin: 10px 0 20px;
    text-align: center;
}
.clinic-title:after {
    content: '';
    width: 55px;
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    margin: 15px auto 0;
}
.clinic-details > li {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #3a4882;
}
.clinic-details > li:last-child {
    border-bottom: none;
}
.clinic-details > li > i {
    color: var(--primary-color);
    font-size: 18px;
}
html[dir="rtl"] .clinic-details > li > i {
    margin-left: 12px;
}
html[dir="ltr"] .clinic-details > li > i {
    margin-right: 12px;
}

.clinic-details > li > p {
    font-size: 15px;
    margin: 0;
    line-height: 28px;
}
.clinic-details > li a:hover {
    color: var(--primary-color);
}

/* Pagination */
ul.pagination-pg {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

ul.pagination-pg li a, ul.pagination-pg li span {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    margin: 0 1px;
    line-height: 1;
    font-size: 16px;
    text-align: center;
}

ul.pagination-pg li.active span {
    background-color: var(--primary-color);
    color: #fff;
}

ul.pagination-pg li a:hover {
    background-color: var(--secondery-color);
    color: #fff;
}

.inner-testimonials, .success_stories {
    padding: 50px 0;
}
.inner-testimonials .testimonial-item {
    margin-bottom: 30px;
}

.fancy_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
    gap: 30px;
}

.fancy_item {
    display: block;
    position: relative;
}
.fancy_item:after {
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 999;
}
.fancy_item.fancy_img:after {
    font-size: 20px;
    content: '\f00e';
}
.fancy_item.fancy_video:after {
    font-size: 22px;
    content: '\f04b';
}
.fancy_overlay {
    position: absolute;
    z-index: 99;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    transition: 0.3s ease;
}
.fancy_overlay.has_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fancy_overlay.has_buttons > a {
    font-size: 22px;
    margin: 0 8px;
    color: #fff;
}
.fancy_overlay.has_buttons > a:hover {
    color: var(--primary-color);
}
.fancy_item:hover:after, .fancy_item:hover .fancy_overlay {
    opacity: 1;
}

.stories-pagination {
    margin-top: 40px;
}
.stories-pagination > li {
    width: auto;
    height: auto;
    opacity: 1;
    background: none;
}
.stories-pagination > li.swiper-pagination-bullet-active > a {
    background-color: var(--primary-color);
    color: #fff;
}

.page-template-about-page .about-dr {
    margin-top: 0;
    height: 780px;
}
@media (max-width:991px) {
    .page-template-about-page .about-dr {
        height: auto;
    }
}
.page-template-about-page .about-dr-content {
    padding-top: 180px;
}

.inner-page {
    padding: 60px 0;
}

/* Single page */
.article-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}
.article-image img {
    width: 100%;
}
.article-content h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
}
.article-content img {
    max-width: 100%;
    height: auto;
}
.article-content iframe {
    max-width: 100%;
}

.navigation-links {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.navigation-links a {
    font-size: 16px;
}
.navigation-links a:hover {
    color: var(--primary-color);
}

/* Side widgets */
.widget {
    margin-bottom: 50px;
}
.widget .heading-title {
    font-size: 24px;
    margin-bottom: 30px;
}

.widget .heading-title.dashed:after {
    margin-top: 10px
}

.search-form {
    position: relative;
}
.search-form label {
    width: 100%;
}
.search-form button {
    position: absolute;
    bottom: 10px;
    font-size: 18px;
}
html[dir="rtl"] .search-form button {
    left: 20px;
}
html[dir="ltr"] .search-form button {
    right: 20px;
}

article.item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
article.item span.fullimage {
    width: 70px;
    height: 70px;
    display: inline-block;
    border-radius: 10px;
    background-color: var(--light-color);
    overflow: hidden;
}
article.item span.fullimage img {
    width: 100%;
    height: 100%;
}
article.item .info .title {
    line-height: 24px;
}
html[dir="rtl"] article.item .info {
    padding-right: 15px;
}
html[dir="ltr"] article.item .info {
    padding-left: 15px;
}
article.item:hover .info a {
    color: var(--primary-color);
}

/* Default page */
.inner-page .heading-title {
    margin-bottom: 30px;
}
.inner-page .heading-title:after {
    margin-top: 10px;
}

/* 404 */

.error-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--light-color);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-content {
    text-align: center;
    margin: 0 auto;
    max-width: 700px
}

.error-content h3 {
    font-size: 40px;
    font-weight: 700;
    margin-top: 45px;
    margin-bottom: 15px
}

.error-content p {
    max-width: 520px;
    margin: 0 auto 20px
}

@media (max-width:767px) {
    .error-area {
        height: 100%;
        padding-top: 60px;
        padding-bottom: 60px
    }

    .error-content img {
        max-height: 140px
    }

    .error-content h3 {
        font-size: 25px;
        margin-top: 40px;
        margin-bottom: 10px
    }
}

/* Fixed buttons */
.fixed_btns {
    position: fixed;
    bottom: 20px;
    right: 25px;
    display: flex;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
}
.fixed_btns.open {
    visibility: visible;
    opacity: 1;
}
.fixed_btns > a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 30px;
}
.fixed_btns > a.msngr-btn {
    background-color: #0384ff;
    color: #fff;
}
.fixed_btns > a.whats-btn {
    background-color: #39c17e;
    color: #fff;
}
@media (max-width:767px) {
    .fixed_btns {
        right: 70px;
    }
}

/* Comments */
#commentform .submit {
  min-width: 40px;
  min-height: 40px;
  border-radius: 20px;
  background-color: var(--primary-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: none;
  box-shadow: 0px 7px 30px 0px rgba(239, 110, 13, 0.3);
}
#commentform .submit:hover, #commentform .submit:focus {
    background-color: var(--secondery-color);
    color: #fff;
}

