:root {
    --theme-font: "Rubik", serif;
    --theme-heading-font: "Playfair Display", sans-serif;
    --theme-special-font: "Alex Brush", cursive;
    --theme-text: #43413e;
    --theme-text-rgb: 130, 126, 118;
    --theme-text-dark: #a89d8a;
    --theme-text-dark-rgb: 168, 157, 138;
    --theme-text-gray: #89868d;
    --theme-text-gray-rgb: 137, 134, 141;
    --theme-blue: #5bc6ff;
    --theme-pink: #ff8ac3;
    --theme-red: #ff6b81;
    --theme-orange: #ff9f40;
    --theme-yellow: #facc15;
    --theme-green: #22c55e;
    --theme-blue: #3b82f6;
    --theme-indigo: #6366f1;
    --theme-violet: #a855f7;
    --theme-gray: #f1fcf9;
    --theme-gray-rgb: 149, 149, 149;
    --theme-base: #f5a78f;
    --theme-base-rgb: 208, 128, 122;
    --theme-base2: #b6d48b;
    --theme-black: #433838;
    --theme-black-rgb: 67, 56, 56;
    --theme-btn-color: #885AA6;
    --theme-gray-rgb: 74, 91, 128;
    --theme-primary: #8dccda;
    --theme-primary-rgb: 190, 225, 230;
    --theme-gray2: #f7f3ea;
    --theme-gray2-rgb: 247, 243, 234;
    --theme-white: #fff;
    --theme-white-rgb: 255, 255, 255;
    --theme-black: #0e0b06;
    --theme-black-rgb: 14, 11, 6;
    --theme-black2: #405f58;
    --theme-black2-rgb: 64, 95, 88;
    --theme-black3: #000;
    --theme-black3-rgb: 0, 0, 0;
    --theme-border-color: #e5e3e0;
    --theme-border-color-rgb: 229, 227, 224;
    --theme-letter-space: 0.1em;
    --theme-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-120 {
    margin-top: 120px;
}

.mt--60 {
    margin-top: -60px;
}

.mt--120 {
    margin-top: -120px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb--60 {
    margin-bottom: -60px;
}

.mb--120 {
    margin-bottom: -120px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-142 {
    padding-top: 142px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-30 {
    padding-right: 30px;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

body {
    font-family: var(--theme-font, "Rubik", serif);
    color: var(--theme-text);
    font-size: 16px;
    line-height: 1.875;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--theme-base);
    transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--theme-heading-font);
    color: var(--theme-black);
}

@media (max-width: 575px) {
    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br {
        display: none;
    }
}

@media (max-width: 575px) {
    p br {
        display: none;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.background-base {
    background-color: var(--theme-base);
}

.background-gray {
    background-color: var(--theme-gray, #f1fcf9);
}

.background-black {
    background-color: var(--theme-black);
}

.background-black-2 {
    background-color: var(--theme-black);
}

.careold-text-dark {
    color: var(--theme-text-dark, #a89d8a);
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container-fluid,
.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-10 {
    --bs-gutter-y: 10px;
}

.gutter-y-15 {
    --bs-gutter-y: 15px;
}

.gutter-y-20 {
    --bs-gutter-y: 20px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

.gutter-y-60 {
    --bs-gutter-y: 60px;
}

.careold-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--theme-white);
    color: var(--theme-black);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    transition: 500ms;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    text-align: center;
}
.careold-btn.v2 {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--theme-base);
    color: var(--theme-black);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    transition: 500ms;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    text-align: center;
}

.careold-btn.v2>i {
    padding: 13px 43px;
    background-color: transparent;
    border: none;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 300px;
    transition: transform 500ms ease;
    transform-origin: top center;
}
.careold-btn.v2:hover>i {
    transform-origin: bottom center;
    transform: none;
}
.careold-btn>i {
    padding: 13px 43px;
    background-color: transparent;
    border: 2px solid var(--theme-black);
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 300px;
    transition: transform 500ms ease;
    transform-origin: top center;
    transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.careold-btn:hover>i {
    transform-origin: bottom center;
    transform: translateY(-100%) translateZ(150px) scaleY(0) rotateX(90deg);
}

.careold-btn>span {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 700ms ease, top 700ms ease;
    background-color: var(--theme-primary, #abe6d7);
    transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
    perspective: 300px;
    transform-origin: bottom center;
}

.careold-btn:hover>span {
    transition: transform 500ms ease, top 500ms ease;
    transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.tabs-box .tabs-content .tab:not(.active-tab) {
    display: none;
}

.bootstrap-select .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: var(--theme-base);
}

.tns-outer .tns-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.tns-outer .tns-controls button {
    width: 45px;
    height: 45px;
    border: 2px solid #f4f4f4;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-text);
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
}

.block-title {
    margin-top: -8px;
    margin-bottom: 50px;
}

.block-title__decor {
    width: 21px;
    height: 14px;
    background-image: url(../images/shapes/leaf-1-1.html);
    background-repeat: no-repeat;
    background-position: top center;
    display: inline-block;
    line-height: 1;
    margin-bottom: -5px;
    position: relative;
    top: -7px;
}

.block-title p {
    margin: 0;
    color: var(--theme-text);
    font-size: 16px;
    line-height: 1;
    margin-bottom: 7px;
}

@media (min-width: 768px) {
    .block-title p {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .block-title p {
        font-size: 20px;
    }
}

.block-title h3 {
    margin: 0;
    font-size: 35px;
    color: var(--theme-black);
    font-family: var(--theme-special-font, "Alex Brush", cursive);
}

@media (min-width: 768px) {
    .block-title h3 {
        font-size: 42px;
    }
}

@media (min-width: 992px) {
    .block-title h3 {
        font-size: 50px;
    }
}

.ul-list-one {
    margin-bottom: 0;
}

.ul-list-one li {
    position: relative;
    padding-left: 45px;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-black);
}

@media (min-width: 481px) {
    .ul-list-one li {
        font-size: 20px;
    }
}

.ul-list-one li::before {
    content: "\e907";
    color: var(--theme-base);
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: "azino-icon";
}

.preloader {
    position: fixed;
    background-color: var(--theme-black);
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60px auto;
    width: 100%;
    height: 100%;
}

/* scroll to top */

.scroll-to-top {
    display: flex;
    align-items: center;
    width: auto;
    height: 35px;
    background: transparent;
    position: fixed;
    bottom: 60px;
    right: -12px;
    z-index: 99;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: rotate(-90deg);
    cursor: pointer;
    transition: all 0.2s ease;
}

.scroll-to-top__text {
    display: inline;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-right: 8px;
}

.scroll-to-top__wrapper {
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: var(--theme-base);
    position: relative;
    overflow: hidden;
}

.scroll-to-top__inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-black);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 70px;
}

/* post paginations */

.post-pagination {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 5px;
    align-items: center;
}

.post-pagination.text-center {
    justify-content: center;
}

.post-pagination.text-end {
    justify-content: flex-end;
}

.post-pagination--mt0 {
    margin-top: 0px;
}

.post-pagination a {
    display: flex;
    width: 45px;
    height: 45px;
    background-color: #e6e6e6;
    align-items: center;
    justify-content: center;
    color: var(--theme-black);
    font-size: 16px;
    font-weight: 500;
    border-radius: 50%;
    transition: all 400ms ease;
}

.post-pagination a.active,
.post-pagination a:hover {
    background-color: var(--theme-primary, #abe6d7);
    color: var(--theme-black);
}

.post-pagination .dots {
    color: var(--theme-black);
    font-size: 16px;
    font-weight: 500;
    margin: 0 13px;
}

.careold-owl__carousel--with-shadow .owl-stage-outer {
    overflow: visible;
}

.careold-owl__carousel--with-shadow .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.careold-owl__carousel--with-shadow .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.careold-owl__carousel--basic-nav.owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.careold-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    border: none;
    outline: none;
    width: 70px;
    height: 70px;
    margin: 0;
    padding: 0;
    opacity: 1;
    background-color: transparent;
    border: 1px solid var(--theme-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 50%;
    color: var(--theme-white);
    transition: all 500ms ease;
}

.careold-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
    color: var(--theme-white);
    background-color: var(--theme-base);
    border-color: var(--theme-base);
}

.careold-owl__carousel--basic-nav.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-top: 50px;
}

.careold-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
    width: 38px;
    height: 8px;
    display: block;
    border-radius: 0;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    background-color: var(--theme-primary, #abe6d7);
    border: none;
    position: relative;
    padding: 0;
    border: none;
    outline: none;
    margin: 0;
    transition: all 300ms ease;
}

.careold-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.careold-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover,
.careold-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
    background-color: var(--theme-base);
}

.careold-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
    display: none;
}

.careold-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
    margin-top: 50px;
}

.careold-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
    display: none;
}

.sec-title {
    position: relative;
    line-height: 1;
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .sec-title {
        padding-bottom: 50px;
        margin-top: -2px;
    }
}

.sec-title__tagline {
    margin: 0;
    color: var(--theme-black);
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    line-height: 1em;
    margin-bottom: 10px;
    
}
.sec-title__tagline-fast{
    margin-bottom: 14px;
}
.sec-title__tagline__border {
    width: 13px;
    height: 13px;
    position: relative;
    top: 1px;
    display: inline-block;
    margin-right: 7px;
    background-color: var(--theme-white);
    border: 2px solid var(--theme-base);
    border-radius: 50%;
}

.sec-title__tagline__border:last-of-type {
    margin-left: 7px;
    margin-right: 0;
}

.sec-title.text-left .sec-title__tagline__border:last-of-type {
    display: none;
}

.sec-title__title {
    margin: 0;
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
    margin: 0;
}

@media (min-width: 768px) {
    .sec-title__title {
        font-size: 44px;
        line-height: 54px;
    }
}

.sec-title__title--white {
    color: var(--theme-white);
}

.ui-datepicker .ui-datepicker-header {
    background-image: none;
    background-color: var(--theme-black);
    color: var(--theme-white);
    font-family: var(--theme-font, "Rubik", serif);
}

.ui-datepicker-calendar th span {
    font-family: var(--theme-font, "Rubik", serif);
}

.ui-datepicker-calendar td {
    background-color: var(--theme-gray, #f1fcf9);
    background-image: none;
    font-family: var(--theme-font, "Rubik", serif);
    color: var(--theme-text);
}

.ui-datepicker-calendar td a {
    border-color: var(--theme-border-color, #e5e3e0);
    background-color: var(--theme-gray, #f1fcf9);
    background-image: none;
}

.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
    border-color: var(--theme-border-color, #e5e3e0);
    background-color: var(--theme-gray, #f1fcf9);
    background-image: none;
    color: var(--theme-text);
    padding: 10px 5px;
    text-align: center;
    line-height: 1em;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
    color: var(--theme-white);
    background-color: var(--theme-base);
}

.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
    color: var(--theme-white);
    background-color: var(--theme-base);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    background-image: none;
    background-color: var(--theme-white);
    color: var(--theme-black);
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    background-color: var(--theme-base);
    color: var(--theme-white);
    top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
    left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
    right: 2px;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/

.video-one {
    position: relative;
    background-color: var(--theme-black);
    padding: 100px 0;
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-black);
    background-size: cover;
    background-position: center center;
    opacity: 0.5;
}

.video-one .container {
    position: relative;
    text-align: center;
}

.video-one__btn {
    width: 145px;
    height: 145px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
}

.video-one__btn .video-popup {
    font-size: 24px;
    color: var(--theme-white);
    transition: all 500ms ease;
    position: relative;
    z-index: 10;
}

.video-one__btn .video-popup:hover {
    color: var(--theme-base);
}

.video-one__btn .curved-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 145px;
    height: 145px;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.video-one__btn .curved-circle--item {
    width: 145px;
}

.video-one__btn .curved-circle--item span {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--theme-white);
    letter-spacing: 0.4em;
}

.video-one__title {
    margin: 0;
    text-transform: uppercase;
    color: var(--theme-white);
    font-size: 40px;
    line-height: 1.2em;
    margin-bottom: 40px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .video-one__title {
        font-size: 50px;
    }
}

@media (min-width: 992px) {
    .video-one__title {
        font-size: 60px;
        margin-top: 20px;
        margin-bottom: 35px;
    }
}

.video-one__link::before {
    background-color: var(--theme-base);
}

.video-two {
    position: relative;
    background-color: var(--theme-black);
    padding: 143px 0 320px;
}

@media (max-width: 767px) {
    .video-two {
        padding: 100px 0 270px;
    }
    .video-two .text-end {
        text-align: left !important;
    }
}

.video-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-black);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.video-two__shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto;
}

@media (max-width: 1199px) {
    .video-two__shape {
        display: none;
    }
}

.video-two .container {
    position: relative;
}

.video-two__btn {
    width: 145px;
    height: 145px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    margin-top: 42px;
}

.video-two__btn .video-popup {
    font-size: 24px;
    color: var(--theme-white);
    transition: all 500ms ease;
    position: relative;
    z-index: 10;
}

.video-two__btn .video-popup:hover {
    color: var(--theme-base);
}

.video-two__btn .curved-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 145px;
    height: 145px;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.video-two__btn .curved-circle--item {
    width: 145px !important;
    height: 145px !important;
}

.video-two__btn .curved-circle--item span {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--theme-white);
    letter-spacing: 0.4em;
}

.video-two__title {
    margin: 0;
    text-transform: uppercase;
    color: var(--theme-white);
    font-size: 40px;
    line-height: 1.2em;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .video-two__title {
        font-size: 50px;
    }
}

@media (min-width: 992px) {
    .video-two__title {
        font-size: 60px;
        margin-bottom: 35px;
    }
}

.video-two__link::before {
    background-color: var(--theme-base);
}

.team-one {
    position: relative;
    padding: 100px 0 100px;
    background-color: #fbf7ef;
}

@media (max-width: 767px) {
    .team-one {
        padding: 50px 0 50px;
    }
}

.team-one__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.team-card {
    position: relative;
}

.team-card__hover {
    position: absolute;
    top: 30px;
    left: 30px;
}

.team-card__hover__btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--theme-primary, #abe6d7);
    border: 3px solid var(--theme-white);
    font-size: 21px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-black);
    transition: all 500ms ease;
}

.team-card__hover__social {
    position: absolute;
    top: 100%;
    left: 10px;
    z-index: 3;
    margin: 0;
    opacity: 0;
    padding-top: 14px;
    transform: scaleY(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s linear;
    transform-origin: top center;
}

.team-card__hover__social a {
    width: 40px;
    height: 40px;
    background-color: #efe4d0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--theme-black);
    font-size: 14px;
    transition: all 500ms ease;
}

.team-card__hover__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.team-card__hover__social a+a {
    margin-top: 8px;
}

.team-card__hover__social a:hover {
    background-color: var(--theme-primary, #abe6d7);
    color: var(--theme-black);
}

.team-card__hover__social a:hover i {
    animation: iconTranslateX 0.4s forwards;
}

.team-card__hover:hover .team-card__hover__social {
    opacity: 1;
    transform: scaleY(1);
}

.team-card__content {
    position: relative;
    z-index: 1;
    padding: 36px 20px 35px 120px;
    background-color: #efe4d0;
    border-radius: 20px 20px 20px 0;
    margin-bottom: -34px;
}

.team-card__content::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--theme-base);
    border-radius: 20px 20px 20px 0;
    transition: all 500ms ease;
    transform: translate3d(0px, 100%, 0px);
    height: 0;
    z-index: -1;
}

.team-card:hover .team-card__content::after {
    height: 100%;
    transform: translate3d(0px, 0, 0px);
}

.team-card__title {
    margin: 0;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 6px;
}

.team-card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.team-card__title a:hover {
    background-size: 100% 1px;
}

.team-card__title a:hover {
    color: var(--theme-black);
}

.team-card:hover .team-card__title {
    color: var(--theme-white);
}

.team-card__designation {
    line-height: 1em;
    margin: 0;
    text-transform: capitalize;
    transition: all 300ms ease;
}

.team-card:hover .team-card__designation {
    color: var(--theme-white);
}

.team-card__image {
    position: relative;
}

.team-card__image img {
    width: 100%;
    border-radius: 0 0 20px 20px;
}

.team-two {
    position: relative;
    padding: 90px 0;
    background-color: #fbf7ef;
}

@media (max-width: 767px) {
    .team-two {
        padding: 80px 0;
    }
}

.team-two--page {
    background-color: transparent;
    padding-bottom: 0;
}

.team-two__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.team-two__btn {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    margin: 35px 0 0;
}

@media (max-width: 991px) {
    .team-two__btn {
        justify-content: flex-start;
        margin: -20px 0 40px;
    }
}

.team-two__btn .careold-btn {
    font-weight: 600;
    border-radius: 50%;
    overflow: hidden;
}

.team-two__btn .careold-btn>i {
    padding: 31px 27px;
    border: none;
    background-color: var(--theme-base);
}

.team-two__container {
    max-width: 1600px;
}

.team-card-two {
    position: relative;
}

.team-card-two__image {
    position: relative;
    overflow: hidden;
}

.team-card-two__image img {
    width: 100%;
    border-radius: 0 0 20px 20px;
}

.team-card-two__image::before {
    background: rgba(var(--theme-white-rgb, 255, 255, 255), 0.3);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1;
    top: 51%;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.team-card-two__image::after {
    background: rgba(var(--theme-white-rgb, 255, 255, 255), 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.team-card-two:hover .team-card-two__image::after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.team-card-two:hover .team-card-two__image::before {
    bottom: 0;
    top: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.team-card-two__content {
    position: relative;
    z-index: 1;
    padding: 30px 20px 26px;
    text-align: center;
    background-color: #d8f4ed;
    border-radius: 20px 20px 0 0;
}

.team-card-two__social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}

.team-card-two__social a {
    width: 35px;
    height: 35px;
    background-color: var(--theme-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--theme-text);
    font-size: 14px;
    transition: all 500ms ease;
}

.team-card-two__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.team-card-two__social a:hover {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.team-card-two__social a:hover i {
    animation: iconTranslateX 0.4s forwards;
}

.team-card-two__title {
    margin: 15px 0 5px;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
}

.team-card-two__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.team-card-two__title a:hover {
    background-size: 100% 1px;
}

.team-card-two__designation {
    line-height: 1em;
    margin: 0;
    text-transform: capitalize;
}

.team-three {
    position: relative;
    padding: 120px 0 0;
}

@media (max-width: 767px) {
    .team-three {
        padding: 80px 0 0;
    }
}

.team-card-three {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.team-card-three__image {
    position: relative;
}

.team-card-three__image img {
    width: 100%;
}

.team-card-three__image::before {
    background: rgba(var(--theme-white-rgb, 255, 255, 255), 0.3);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1;
    top: 51%;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.team-card-three__image::after {
    background: rgba(var(--theme-white-rgb, 255, 255, 255), 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.team-card-three:hover .team-card-three__image::after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.team-card-three:hover .team-card-three__image::before {
    bottom: 0;
    top: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.team-card-three__social {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #c2ebe1;
    gap: 5px;
    width: 74px;
    border-radius: 0 20px 0 20px;
    padding: 16px 0;
}

.team-card-three__social a {
    width: 35px;
    height: 35px;
    background-color: var(--theme-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--theme-text);
    font-size: 14px;
    transition: all 500ms ease;
}

.team-card-three__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.team-card-three__social a:hover {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.team-card-three__social a:hover i {
    animation: iconTranslateX 0.4s forwards;
}

.team-card-three__content {
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 74px);
    z-index: 1;
    padding: 30px 30px 23px;
    text-align: left;
    background-color: var(--theme-white);
    border-radius: 20px 20px 20px 0;
}

.team-card-three__title {
    margin: 0 0 5px;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
}

.team-card-three__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.team-card-three__title a:hover {
    background-size: 100% 1px;
}

.team-card-three__designation {
    line-height: 1em;
    margin: 0;
    text-transform: capitalize;
}

.team-details {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .team-details {
        padding: 80px 0;
    }
}

.team-details__image {
    display: inline-block;
    position: relative;
}

.team-details__image img {
    max-width: 100%;
    border-radius: 5px;
}

.team-details__content {
    position: relative;
}

@media (min-width: 1200px) {
    .team-details__content {
        padding-left: 40px;
        padding-right: 43px;
    }
}

.team-details__title {
    text-transform: capitalize;
    margin: 0;
    font-weight: bold;
    font-size: 30px;
    line-height: 1;
    margin-top: -5px;
    margin-bottom: 0;
}

.team-details__designation {
    margin: 0;
    font-size: 16px;
    color: var(--theme-black);
    margin-bottom: 24px;
}

.team-details__text {
    margin: 0 0 34px;
    line-height: 28px;
}

.team-details__list {
    margin: 0 0 40px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
    position: relative;
}

@media (max-width: 767px) {
    .team-details__list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.team-details__list li {
    position: relative;
    background-color: #e9fcfc;
    border-radius: 5px;
    padding: 25px 20px 24px 99px;
}

.team-details__list li:hover .team-details__list__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.team-details__list__icon {
    width: 65px;
    height: 65px;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 50%;
    border: 2px solid var(--theme-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--theme-white);
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.team-details__list__icon__zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.team-details__list__title {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--theme-font, "Rubik", serif);
    text-transform: capitalize;
    margin: 0 0 4px;
}

.team-details__list__text {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #626f62;
}

.team-details__list__text a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.team-details__list__text a:hover {
    background-size: 100% 1px;
}

.team-details__list__text a:hover {
    color: var(--theme-base);
}

.team-details__social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 37px;
}

.team-details__social__title {
    margin: 0 10px 0 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-black);
    font-family: var(--theme-font, "Rubik", serif);
}

.team-details__social a {
    width: 35px;
    height: 35px;
    background-color: #e9f2ea;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--theme-text);
    font-size: 14px;
    transition: all 500ms ease;
}

.team-details__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.team-details__social a:hover {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.team-details__social a:hover i {
    animation: iconTranslateX 0.4s forwards;
}

.team-details__highlight {
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--theme-black);
    font-size: 18px;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 30px;
}

@media (max-width: 767px) {
    .team-details__highlight {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.team-details__highlight__phone {
    font-size: 24px;
    color: var(--theme-white);
    display: flex;
    gap: 15px;
    margin: 0;
}

.team-details__highlight__phone a {
    font-size: 20px;
    color: var(--theme-black);
    line-height: 1.1;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.team-details__highlight__phone a:hover {
    background-size: 100% 1px;
}

.team-details__highlight__phone a:hover {
    color: var(--theme-base);
}

.team-form-one {
    position: relative;
    padding: 0 0 120px;
}

@media (max-width: 767px) {
    .team-form-one {
        padding: 0 0 80px;
    }
}

.team-form-one__bg {
    position: absolute;
    width: 100%;
    height: 650px;
    left: 0;
    bottom: 0;
    background-size: cover;
}

@media (max-width: 767px) {
    .team-form-one__bg {
        height: 780px;
    }
}

.team-form-one .container {
    position: relative;
    max-width: 900px;
}

.team-form-one .sec-title__title {
    text-align: center;
    margin-bottom: 160px;
}

.blog-card {
    position: relative;
    background-color: #fffcef;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    border-radius: 20px;
    padding: 30px;
    transition: all 500ms ease;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card {
        padding: 25px;
    }
}

.blog-card:hover {
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.06);
}

.blog-card__image {
    position: relative;
}

.blog-card__image__inner {
    border-radius: 6px 6px 6px 15px;
    overflow: hidden;
    position: relative;
}

.blog-card__image img {
    transition: all 0.4s;
    background-size: cover;
    width: 100%;
}

.blog-card__image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    transform-origin: 100% 50% 0;
    transition: all 0.5s;
    z-index: 3;
}

.blog-card__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--theme-black-rgb, 14, 11, 6), 0.5);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-10%);
    transition: opacity 600ms ease, transform 600ms ease;
}

.blog-card__image__link::before,
.blog-card__image__link::after {
    content: "";
    width: 32px;
    height: 2px;
    background-color: var(--theme-white);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-card__image__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card:hover .blog-card__image__inner>a {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover .blog-card__image img:nth-child(2) {
    transform: rotate(-180deg);
}

.blog-card__cate {
    position: absolute;
    left: -14px;
    bottom: 0;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
    z-index: 5;
}

.blog-card__cate a {
    display: inline-block;
    background-color: var(--theme-base);
    font-size: 16px;
    color: var(--theme-black);
    text-transform: capitalize;
    line-height: 28px;
    padding: 13px 0px;
    border-radius: 0px 30px 30px 30px;
}

.blog-card__cate a:hover {
    background-color: var(--theme-primary, #abe6d7);
}

.blog-card__date {
    width: 74px;
    height: 74px;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 16px;
    color: var(--theme-black);
    padding: 0 10px;
    line-height: 1.2em;
    position: absolute;
    bottom: 8px;
    left: 27px;
    z-index: 10;
    text-transform: uppercase;
    font-weight: 600;
    flex-direction: column;
    letter-spacing: 0;
}

.blog-card__date span {
    display: block;
    margin-bottom: 3px;
}

.blog-card__content {
    position: relative;
    padding: 25px 0 0;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    margin-bottom: 15px;
}

.blog-card__meta li {
    color: var(--theme-text);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    text-transform: capitalize;
    align-items: center;
}

.blog-card__meta li i {
    color: var(--theme-text-dark, #a89d8a);
    font-size: 14px;
    margin-right: 5px;
}

.blog-card__meta li i.fa-comment {
    position: relative;
    top: 1px;
}

.blog-card__meta li a {
    display: flex;
    align-items: center;
    color: inherit;
    margin-left: 3px;
    transition: all 500ms ease;
}

.blog-card__meta li a:hover {
    color: var(--theme-base);
}

.blog-card__title {
    margin: 0 0 25px;
    font-size: 19px;
    line-height: 30px;
    font-weight: 500;
}

.blog-card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-card__title a:hover {
    background-size: 100% 1px;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    background-color: var(--theme-primary, #abe6d7);
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-black);
    transition: all 500ms ease;
    line-height: 1em;
    position: relative;
    border-radius: 30px 0 7px 30px;
    padding: 10px 21px 10px 60px;
}

.blog-card__link:hover .blog-card__link__icon {
    background-color: var(--theme-base);
}

.blog-card__link:hover .blog-card__link__icon i {
    animation: iconTranslateY 0.4s forwards;
}

.blog-card__link__icon {
    width: 47px;
    height: 47px;
    overflow: hidden;
    background-color: var(--theme-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--theme-black);
    position: absolute;
    left: 0;
    top: -5.5px;
    transition: all 500ms ease;
}

.blog-card__link__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.blog-one {
    padding: 90px 0;
    position: relative;
}

@media (max-width: 767px) {
    .blog-one {
        padding: 80px 0;
    }
}

.blog-two {
    padding: 90px 0;
    position: relative;
}

@media (max-width: 767px) {
    .blog-two {
        padding: 80px 0;
    }
}

.blog-card-two {
    position: relative;
    z-index: 1;
    background-color: var(--theme-white);
    border: 1px solid var(--theme-border-color, #e5e3e0);
    border-radius: 20px;
    filter: drop-shadow(0 0 17.5px rgba(209, 210, 212, 0.35));
    padding: 30px 29px;
    transition: all 500ms ease;
}

.blog-card-two::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    transition: all 0.5s linear;
    z-index: -1;
}

.blog-card-two::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    transition: all 0.5s linear;
    z-index: -1;
}

.blog-card-two:hover {
    filter: drop-shadow(0 0 25px rgba(209, 210, 212, 0.5));
    border-color: transparent;
}

.blog-card-two:hover::before {
    border-color: var(--theme-base);
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.blog-card-two:hover::after {
    border-color: var(--theme-base);
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.blog-card-two__image {
    position: relative;
}

.blog-card-two__image__inner {
    border-radius: 6px 6px 6px 15px;
    overflow: hidden;
    position: relative;
}

.blog-card-two__image img {
    transition: all 0.4s;
    background-size: cover;
    width: 100%;
}

.blog-card-two__image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    transform-origin: 100% 50% 0;
    transition: all 0.5s;
    z-index: 3;
}

.blog-card-two__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--theme-black-rgb, 14, 11, 6), 0.5);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-10%);
    transition: opacity 600ms ease, transform 600ms ease;
}

.blog-card-two__image__link::before,
.blog-card-two__image__link::after {
    content: "";
    width: 32px;
    height: 2px;
    background-color: var(--theme-white);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-card-two__image__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card-two:hover .blog-card-two__image__inner>a {
    opacity: 1;
    transform: translateY(0);
}

.blog-card-two:hover .blog-card-two__image img:nth-child(2) {
    transform: rotate(-180deg);
}

.blog-card-two__cate {
    position: absolute;
    left: -14px;
    bottom: 0;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
    z-index: 5;
}

.blog-card-two__cate a {
    display: inline-block;
    background-color: var(--theme-base);
    font-size: 16px;
    color: var(--theme-black);
    text-transform: capitalize;
    line-height: 28px;
    padding: 13px 0px;
    border-radius: 0px 30px 30px 30px;
}

.blog-card-two__cate a:hover {
    background-color: var(--theme-primary, #abe6d7);
}

.blog-card-two__date {
    width: 74px;
    height: 74px;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-black);
    padding: 0 10px;
    line-height: 1.2em;
    position: absolute;
    bottom: 8px;
    right: 9px;
    z-index: 10;
    text-transform: uppercase;
    font-weight: 600;
    flex-direction: column;
    letter-spacing: 0;
}

.blog-card-two__date span {
    display: block;
    margin-bottom: 3px;
}

.blog-card-two__content {
    position: relative;
    padding: 25px 0 0;
}

.blog-card-two__content__top {
    position: relative;
    border-right: 1px solid var(--theme-border-color, #e5e3e0);
    margin-right: 80px;
    padding-right: 30px;
    padding-bottom: 29px;
}

@media (max-width: 767px) {
    .blog-card-two__content__top {
        margin: 0 0 30px;
        padding: 0;
        border: none;
    }
}

.blog-card-two__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    margin-bottom: 15px;
}

.blog-card-two__meta li {
    color: var(--theme-text);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    text-transform: capitalize;
    align-items: center;
}

.blog-card-two__meta li i {
    color: var(--theme-text-dark, #a89d8a);
    font-size: 14px;
    margin-right: 5px;
}

.blog-card-two__meta li i.fa-comment {
    position: relative;
    top: 1px;
}

.blog-card-two__meta li a {
    display: flex;
    align-items: center;
    color: inherit;
    margin-left: 3px;
    transition: all 500ms ease;
}

.blog-card-two__meta li a:hover {
    color: var(--theme-base);
}

.blog-card-two__title {
    margin: 0;
    color: var(--theme-black);
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
}

.blog-card-two__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-card-two__title a:hover {
    background-size: 100% 1px;
}

.blog-card-two__text {
    line-height: 30px;
    margin: 0 -30px 0 0;
    padding: 21px 30px 0 0;
    border-top: 1px solid var(--theme-border-color, #e5e3e0);
}

@media (max-width: 767px) {
    .blog-card-two__text {
        margin-right: 0;
        padding-right: 0;
    }
}

.blog-card-two__link {
    width: 58px;
    height: 58px;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid var(--theme-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--theme-black);
    position: absolute;
    right: -83px;
    top: 30px;
}

@media (max-width: 767px) {
    .blog-card-two__link {
        position: relative;
        top: 0;
        right: auto;
        margin-top: 27px;
    }
}

.blog-card-two__link i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.blog-card-two__link:hover {
    background-color: var(--theme-base);
    border-color: var(--theme-base);
}

.blog-card-two__link:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.blog-three {
    padding: 90px 0;
    position: relative;
}

@media (max-width: 767px) {
    .blog-three {
        padding: 80px 0;
    }
}

.blog-card-three {
    position: relative;
    background-color: var(--theme-white);
    overflow: hidden;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    border-top: none;
    border-radius: 5px 5px 20px 20px;
    transition: all 500ms ease;
    filter: drop-shadow(0 0 17.5px rgba(209, 210, 212, 0.35));
}

.blog-card-three:hover {
    filter: drop-shadow(0 0 25px rgba(209, 210, 212, 0.5));
}

.blog-card-three__image {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin: -1px -1px 0;
}

.blog-card-three__image img {
    transition: all 0.4s;
    background-size: cover;
    width: 100%;
}

.blog-card-three__image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    transform-origin: 100% 50% 0;
    transition: all 0.5s;
    z-index: 3;
}

.blog-card-three__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--theme-black-rgb, 14, 11, 6), 0.5);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-10%);
    transition: opacity 600ms ease, transform 600ms ease;
}

.blog-card-three__image__link::before,
.blog-card-three__image__link::after {
    content: "";
    width: 32px;
    height: 2px;
    background-color: var(--theme-white);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-card-three__image__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card-three:hover .blog-card-three__image>a {
    opacity: 1;
    transform: translateY(0);
}

.blog-card-three:hover .blog-card-three__image img:nth-child(2) {
    transform: rotate(-180deg);
}

.blog-card-three__date {
    width: 74px;
    height: 74px;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-black);
    padding: 0 10px;
    line-height: 1.2em;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
    text-transform: uppercase;
    font-weight: 600;
    flex-direction: column;
    letter-spacing: 0;
}

.blog-card-three__date span {
    display: block;
    margin-bottom: 3px;
}

.blog-card-three__content {
    position: relative;
    padding: 25px 30px 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card-three__content {
        padding: 25px 24px 30px;
    }
}

.blog-card-three__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    margin-bottom: 15px;
}

.blog-card-three__meta li {
    color: var(--theme-text);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    text-transform: capitalize;
    align-items: center;
}

.blog-card-three__meta li i {
    color: var(--theme-text-dark, #a89d8a);
    font-size: 14px;
    margin-right: 5px;
}

.blog-card-three__meta li i.fa-comment {
    position: relative;
    top: 1px;
}

.blog-card-three__meta li a {
    display: flex;
    align-items: center;
    color: inherit;
    margin-left: 3px;
    transition: all 500ms ease;
}

.blog-card-three__meta li a:hover {
    color: var(--theme-base);
}

.blog-card-three__title {
    margin: 0 0 20px;
    color: var(--theme-black);
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
}

.blog-card-three__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-card-three__title a:hover {
    background-size: 100% 1px;
}

.blog-card-three__link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-black);
    transition: all 500ms ease;
    line-height: 1em;
    position: relative;
}

.blog-card-three__link__icon {
    width: 40px;
    height: 40px;
    overflow: hidden;
    background-color: #e7f3f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--theme-black);
    transition: all 500ms ease;
}

.blog-card-three__link__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.blog-card-three__link:hover .blog-card-three__link__icon {
    background-color: var(--theme-base);
}

.blog-card-three__link:hover .blog-card-three__link__icon i {
    animation: iconTranslateX 0.4s forwards;
}

.blog-card-three__link__text {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-card-three__link:hover .blog-card-three__link__text {
    background-size: 100% 1px;
}

.blog-card-three__cate {
    position: absolute;
    right: 29px;
    bottom: 32px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card-three__cate {
        right: 20px;
    }
}

.blog-card-three__cate a {
    display: inline-block;
    background-color: var(--theme-base);
    font-size: 16px;
    color: var(--theme-black);
    text-transform: capitalize;
    line-height: 28px;
    padding: 0 13px;
    border-radius: 20px 0 20px 20px;
}

.blog-card-three__cate a:hover {
    background-color: var(--theme-primary, #abe6d7);
}

.blog-list {
    position: relative;
    z-index: 2;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .blog-list {
        padding: 80px 0;
    }
}

.blog-list__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: top left;
    background-repeat: repeat;
    z-index: -1;
}

.blog-list__item {
    position: relative;
    background-color: var(--theme-white);
    border-radius: 10px;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .blog-list__item {
        margin-right: 10px;
    }
}

.blog-list__item__image {
    overflow: hidden;
    position: relative;
    margin-bottom: -15px;
}

.blog-list__item__image img {
    transition: all 0.4s;
    background-size: cover;
    width: 100%;
}

.blog-list__item__image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    transform-origin: 100% 50% 0;
    transition: all 0.5s;
    z-index: 3;
}

.blog-list__item__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--theme-black-rgb, 14, 11, 6), 0.5);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-10%);
    transition: opacity 600ms ease, transform 600ms ease;
}

.blog-list__item__image__link::before,
.blog-list__item__image__link::after {
    content: "";
    width: 32px;
    height: 2px;
    background-color: var(--theme-white);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-list__item__image__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-list__item:hover .blog-list__item__image>a {
    opacity: 1;
    transform: translateY(0);
}

.blog-list__item:hover .blog-list__item__image img:nth-child(2) {
    transform: rotate(-180deg);
}

.blog-list__item__content {
    position: relative;
    z-index: 3;
    padding: 0 40px 40px;
}

@media (max-width: 767px) {
    .blog-list__item__content {
        padding: 0 25px 40px;
    }
}

.blog-list__item__cate {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.blog-list__item__cate a {
    display: inline-block;
    background-color: var(--theme-primary, #abe6d7);
    color: var(--theme-black);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 30px;
    padding: 0 20px;
}

.blog-list__item__cate a:hover {
    background-color: var(--theme-base);
}

.blog-list__item__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    margin-bottom: 10px;
}

.blog-list__item__meta li {
    color: var(--theme-text);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    text-transform: capitalize;
    align-items: center;
}

.blog-list__item__meta li i {
    color: var(--theme-text-dark, #a89d8a);
    font-size: 14px;
    margin-right: 5px;
}

.blog-list__item__meta li i.fa-comment {
    position: relative;
    top: 1px;
}

.blog-list__item__meta li a {
    display: flex;
    align-items: center;
    color: inherit;
    margin-left: 3px;
    transition: all 500ms ease;
}

.blog-list__item__meta li a:hover {
    color: var(--theme-base);
}

.blog-list__item__title {
    margin: 0 0 30px;
    color: var(--theme-black);
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}

.blog-list__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-list__item__title a:hover {
    background-size: 100% 1px;
}

.blog-list__item__text {
    line-height: 30px;
    margin: 0 0 33px;
}

.blog-list__item__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-black);
    transition: all 500ms ease;
    line-height: 1.5;
    width: 156px;
    background-color: #f5f2eb;
    border-radius: 5px;
    position: relative;
    padding: 10px 10px;
}

.blog-list__item__link:hover {
    background-color: var(--theme-primary, #abe6d7);
}

.blog-list__item__link__icon {
    width: 25px;
    height: 25px;
    overflow: hidden;
    background-color: var(--theme-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--theme-black);
    transition: all 500ms ease;
}

.blog-list__item__link__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.blog-list__item__link:hover .blog-list__item__link__icon {
    background-color: var(--theme-base);
}

.blog-list__item__link:hover .blog-list__item__link__icon i {
    animation: iconTranslateX 0.4s forwards;
}

.blog-list__item__link__text {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 100% 1px;
    transition: all 500ms ease;
}

.blog-list__item__link:hover .blog-list__item__link__text {
    background-size: 0% 1px;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/

.form-one__group {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin: 0;
}

@media (min-width: 576px) {
    .form-one__group {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-one label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
    color: var(--theme-black);
    cursor: pointer;
    margin: 0 0 18px;
}

.form-one__control {
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    position: relative;
}
.form-one__control br{
    display: none;
}
.form-one__control__icon {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 14px;
}

.form-one__control--full {
    grid-column-start: 1;
    grid-column-end: -1;
}

.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    outline: none !important;
    color: var(--theme-text);
    font-size: 14px;
}
#PopForm .form-one .bootstrap-select>.dropdown-toggle,
#PopForm .form-one input[type=text],
#PopForm .form-one input[type=email],
#PopForm .form-one input[type=tel],
#PopForm .form-one textarea,
#PopForm .form-one select{
    height: 50px;
}    

.form-one .bootstrap-select>.dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one input[type=tel],
.form-one textarea,
.form-one select{
    display: block;
    width: 100%;
    height: 60px;
    background-color: var(--theme-white);
    color: var(--theme-text);
    font-size: 14px;
    font-weight: 400;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    border-radius: 5px;
    outline: none;
    font-family: var(--theme-font, "Rubik", serif);
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease;
}    

.form-one .bootstrap-select>.dropdown-toggle:focus,
.form-one input[type=text]:focus,
.form-one input[type=email]:focus,
.form-one textarea:focus {
    color: var(--theme-black);
    font-weight: 500;
    border-color: var(--theme-white);
}

.form-one textarea {
    height: 185px;
    padding-top: 20px;
}

.form-one .bootstrap-select>.dropdown-toggle {
    display: flex;
    align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

.form-one .careold-btn {
    border: none;
    background-color: var(--theme-primary);
    padding: 12px 33px;
}
.form-one .careold-btn:hover{
    background-color: var(--theme-base);
}
/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/

.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--theme-base);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}

.custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--theme-base);
    opacity: 0.3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 999991;
}

.custom-cursor__hover {
    background-color: var(--theme-base);
    opacity: 0.4;
}

.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.main-footer {
    position: relative;
    background-color: #012f2c;
}

.main-footer__top {
    padding-top: 95px;
    padding-bottom: 45px;
}

@media (max-width: 767px) {
    .main-footer__top {
        padding-top: 55px;
        padding-bottom: 30px;
    }
}

.main-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    mix-blend-mode: luminosity;
    background-size: cover;
    background-position: center center;
}

.main-footer__shape-one {
    position: absolute;
    left: 22%;
    bottom: 158px;
    width: 43px;
    height: 43px;
    animation: startIconOne 1.8s infinite alternate;
}

@media (max-width: 1599px) {
    .main-footer__shape-one {
        left: 15%;
    }
}

@media (max-width: 1399px) {
    .main-footer__shape-one {
        left: 10%;
    }
}

@media (max-width: 1199px) {
    .main-footer__shape-one {
        display: none;
    }
}

.main-footer__shape-two {
    position: absolute;
    right: 6%;
    top: 100px;
    width: 58px;
    height: 58px;
    animation: startIconOne 1.8s infinite alternate;
}

@media (max-width: 1499px) {
    .main-footer__shape-two {
        right: 3%;
    }
}

@media (max-width: 1299px) {
    .main-footer__shape-two {
        display: none;
    }
}

.main-footer .container {
    position: relative;
}

.main-footer__bottom {
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-color: var(--theme-base);
    padding: 17px 0;
}

@media (max-width: 767px) {
    .main-footer__bottom {
        padding: 20px 0;
    }
}

.main-footer__bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .main-footer__bottom__inner {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
}

.main-footer__copyright {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--theme-black);
}

.main-footer__social {
    display: flex;
    position: relative;
    gap: 10px;
}

.main-footer__social a {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-white);
    font-size: 14px;
    color: var(--theme-text);
    transition: all 500ms ease;
    border-radius: 50%;
}

.main-footer__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.main-footer__social a:hover {
    background-color: var(--theme-black);
    color: var(--theme-base);
}

.main-footer__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget__logo {
    display: inline-flex;
    margin-bottom: 24px;
}

.footer-widget__title {
    font-size: 20px;
    font-weight: bold;
    color: var(--theme-white);
    text-transform: capitalize;
    margin: 0 0 34px;
}

.footer-widget__text {
    line-height: 30px;
    margin: 0;
    color: var(--theme-white);
}

.footer-widget__links {
    margin-top: -3px;
    margin-bottom: -13px;
}

.footer-widget__links li {
    font-size: 16px;
    color: var(--theme-text);
    line-height: 36px;
    position: relative;
    padding-left: 25px;
}
.footer-widget__links.v2 li::after{
    content: none !important;
}
.footer-widget__links.v2 li {
    padding-left: 15px;
}
.footer-widget__links li::after {
    position: absolute;
    left: 0;
    top: 1px;
    font-family: "Font Awesome 5 Free";
    content: "\f21e";
    font-size: 15px;
    font-weight: 900;
    color: var(--theme-orange);
}

.footer-widget__links li a {
    color: var(--theme-white);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.footer-widget__links li a:hover {
    background-size: 100% 1px;
}

.footer-widget__links li a:hover {
    color: var(--theme-base);
}

.footer-widget--post {
    position: relative;
}

.footer-widget--post ul {
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}

.footer-widget--post ul li {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 300px;
}

.footer-widget--post ul li+li {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(var(--theme-white-rgb, 255, 255, 255), 0.1);
}

.footer-widget--post__img {
    position: relative;
}

.footer-widget--post__img img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
}

.footer-widget--post__content {
    position: relative;
}

.footer-widget--post__date {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--theme-text);
    line-height: 22px;
    margin-bottom: 5px;
}

.footer-widget--post__date i {
    margin-right: 5px;
    display: inline-block;
}

.footer-widget--post__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--theme-white);
    margin: 0;
}

.footer-widget--post__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.footer-widget--post__title a:hover {
    background-size: 100% 1px;
}

.footer-widget--post__title a:hover {
    color: var(--theme-base);
}

.footer-widget__newsletter {
    position: relative;
    width: 100%;
    margin: 24px 0 0;
}

.footer-widget__newsletter input[type=text] {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    height: 58px;
    background-color: var(--theme-white);
    color: var(--theme-text);
    font-size: 14px;
    font-weight: 400;
    padding-left: 18px;
    border-radius: 5px;
    padding-right: 60px;
    transition: all 500ms ease;
}

.footer-widget__newsletter input[type=text]:focus {
    color: var(--theme-text);
}

.footer-widget__newsletter button[type=submit] {
    background-color: var(--theme-primary, #abe6d7);
    width: 47px;
    height: 47px;
    border: none;
    outline: none;
    color: var(--theme-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.footer-widget__newsletter button[type=submit]:hover {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-one {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .contact-one {
        padding: 80px 0;
    }
}

.contact-one__content {
    position: relative;
}

@media (min-width: 1200px) {
    .contact-one__content {
        padding-right: 50px;
    }
}

.contact-one__title {
    font-size: 43px;
    line-height: 50px;
    margin: 0 0 30px;
}

.contact-one__text {
    margin: 0;
    font-size: 18px;
    color: var(--theme-black);
    margin-bottom: 47px;
}

.contact-one__info {
    margin: 0;
    padding: 0;
    position: relative;
}

.contact-one__info__item {
    display: flex;
    align-items: center;
}

.contact-one__info__item:hover .contact-one__info__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.contact-one__info__item+.contact-one__info__item {
    margin-top: 47px;
}

.contact-one__info__icon {
    width: 86px;
    height: 86px;
    background-color: var(--theme-primary, #abe6d7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    transition: all 500ms ease;
    color: var(--theme-black);
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    border-radius: 50%;
}

.contact-one__info__icon__zoom {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.contact-one__info__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-black);
    margin: 0 0 17px;
}

.contact-one__info__text {
    margin: 0;
    font-weight: 500;
    line-height: 28px;
}

.contact-one__info__text a {
    color: var(--theme-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.contact-one__info__text a:hover {
    background-size: 100% 1px;
}

.contact-one__info__text a:hover {
    color: var(--theme-base);
}

.contact-one .google-map {
    border-radius: 10px;
}

.contact-one .google-map iframe {
    height: 507px;
}

.contact-two {
    position: relative;
    z-index: 2;
    padding: 97px 0 70px;
}

@media (max-width: 767px) {
    .contact-two {
        padding: 80px 0 80px;
    }
}

.contact-two__bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: -1;
}

@media (max-width: 991px) {
    .contact-two__bg {
        background-size: cover;
    }
}

.contact-two__content {
    position: relative;
}

@media (min-width: 1200px) {
    .contact-two__content {
        padding-right: 50px;
    }
}

.contact-two__title {
    font-size: 43px;
    line-height: 50px;
    margin: 0 0 30px;
}

.contact-two__text {
    margin: 0;
    font-size: 18px;
    margin-bottom: 55px;
}

.contact-two img {
    max-width: 100%;
    height: auto;
    animation: shapeMove 3s linear 0s infinite;
}

.contact-two__form {
    position: relative;
}

@media (min-width: 1200px) {
    .contact-two__form {
        padding-left: 40px;
    }
}

@media (max-width: 991px) {
    .contact-two__form {
        margin-top: 40px;
    }
}

.contact-two__form .form-one__group {
    grid-gap: 27px 24px;
    position: relative;
}

.contact-two__form textarea {
    height: 172px;
    padding-top: 15px;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/

.topbar-one {
    display: none;
    background-color: var(--theme-gray, #f1fcf9);
    background-image: url(../images/shapes/topbar-bg-2.jpg);

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 55px;
}

@media (max-width: 1599px) {
    .topbar-one {
        padding: 0 15px;
    }
}

@media (min-width: 768px) {
    .topbar-one {
        display: block;
    }
}

.topbar-one__inner {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 65px;
}

.topbar-one__info {
    display: flex;
    align-items: center;
    margin: 0;
}

.topbar-one__info__item {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2em;
    color: var(--theme-black);
}

.topbar-one__info__item a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.topbar-one__info__item a:hover {
    background-size: 100% 1px;
}

.topbar-one__info__item a:hover {
    color: var(--theme-base);
}

.topbar-one__info__item+.topbar-one__info__item {
    margin-left: 20px;
}

.topbar-one__info__icon {
    font-size: 14px;
    position: relative;
    margin-right: 9px;
    color: var(--theme-orange)
}

.topbar-one__right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.topbar-one__text {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    color: var(--theme-black);
}

@media (max-width: 1199px) {
    .topbar-one__text {
        display: none;
    }
}

.topbar-one__text__icon {
    font-size: 14px;
    position: relative;
    margin-right: 9px;
    color: var(--theme-orange);
}

.topbar-one__links {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-left: 30px;
}

@media (max-width: 991px) {
    .topbar-one__links {
        display: none;
    }
}

.topbar-one__links li {
    position: relative;
    font-size: 14px;
}

.topbar-one__links li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.topbar-one__links li a:hover {
    background-size: 100% 1px;
}

.topbar-one__links li a:hover {
    color: var(--theme-base);
}

.topbar-one__links li+li {
    padding-left: 28px;
}

.topbar-one__links li+li::before {
    position: absolute;
    left: 11px;
    content: "/";
    color: currentColor;
    font-size: 12px;
    color: var(--theme-text);
    top: 2px;
}

.topbar-one__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
    line-height: 1em;
}

.topbar-one__social a {
    width: 35px;
    height: 35px;
    background-color: #f0eade;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    color: var(--theme-black);
    transition: all 500ms ease;
}

.topbar-one__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.topbar-one__social a:hover {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.topbar-one__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.topbar-one--two {
    border-bottom: 1px solid #d7d3c0;
}

.topbar-one--two .topbar-one__inner {
    padding: 10px 0;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/

.main-header {
    position: absolute;
    left: 0;
    top: 57px;
    width: 100%;
    z-index: 9;
    background-color: transparent;
    padding: 0 55px;
}

@media (max-width: 1599px) {
    .main-header {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .main-header {
        padding: 0;
        top: 15px;
    }
}

.main-header__inner {
    display: flex;
    align-items: center;
    background-color: var(--theme-primary);
    border-radius: 5px;
    position: relative;
}

@media (max-width: 1199px) {
    .main-header__inner {
        padding: 0;
    }
}

.main-header__logo {
    display: flex;
    height: 100%;
    padding: 1px 35px;
    position: relative;
    align-items: center;
    justify-content: space-between;
    /*background-color: var(--theme-black);*/
    border-radius: 5px 0 0 0;
    width: auto;
    margin-right: 50px;
}

@media (max-width: 1299px) {
    .main-header__logo {
        margin-right: 35px;
        padding: 20px 25px;
    }
}

@media (max-width: 767px) {
    .main-header__logo {
        padding: 5px 15px;
    }
    .main-header__logo img {
        max-width: 60px;
    }
}

/*.main-header__logo::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    content: "";
    background-color: var(--theme-white);
    border-radius: 0 0 0 5px;
}*/

@media (min-width: 768px) {
    .main-header__logo .mobile-nav__btn {
        margin-left: 30px;
    }
}

.main-header__btn {
    background-color: #ddf7f0;
    padding: 24px 22px;
}
.main-header__btn .careold-btn>i {
    background-color: var(--theme-white);
    padding: 8px 40px;
}

.main-header__right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.main-header__info {
    border-right: 1px solid #a3c2bb;
    padding-right: 18px;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1299px) {
    .main-header__info {
        gap: 10px;
    }
}

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

.main-header__info:hover .main-header__info__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.main-header__info__icon {
    width: 50px;
    height: 50px;
    background-color: var(--theme-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--theme-black);
    flex-shrink: 0;
    position: relative;
}

.main-header__info__icon__zoom {
    display: inline-block;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header__info a {
    color: var(--theme-black);
    font-weight: 600;
    font-size: 20px;
    font-family: var(--theme-font);
    line-height: 1;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.main-header__info a:hover {
    background-size: 100% 1px;
}

@media (min-width: 1200px) and (max-width: 1340px) {
    .main-header__info a {
        font-size: 17px;
    }
}

.main-header__info a:hover {
    color: var(--theme-base);
}

.main-header__cart,
.main-header__search {
    font-size: 24px;
    color: var(--theme-black);
    transition: all 500ms ease;
    margin: 0 20px;
    line-height: 1em;
}

@media (max-width: 767px) {
    .main-header__cart,
    .main-header__search {
        margin-left: 0;
    }
}

.main-header__cart:hover,
.main-header__search:hover {
    color: var(--theme-base);
}

.main-header__cart__number,
.main-header__search__number {
    width: 30px;
    height: 30px;
    background-color: var(--theme-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    color: var(--theme-black);
}

.main-header__cart {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-header__nav {
    margin-left: 0;
    margin-right: auto;
}

.main-header--two {
    position: relative;
    background-color: var(--theme-gray, #f1fcf9);
    left: 0;
    top: 0;
    z-index: 9;
    width: 100%;
    border-bottom: 1px solid #d7d3c0;
}

.main-header--two__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-header--two .main-header__inner {
    background-color: transparent;
}

@media (max-width: 1199px) {
    .main-header--two .main-header__inner {
        padding: 15px 0;
    }
}

@media (max-width: 767px) {
    .main-header--two .main-header__inner {
        padding: 20px 0;
    }
}

.main-header--two .main-header__logo {
    background-color: transparent;
    padding: 0;
    margin-right: 120px;
}

.main-header--two .main-header__logo::after {
    display: none;
}

.main-header--two .main-header__btn {
    background-color: transparent;
    padding: 0;
    margin-left: 40px;
}

.main-header--two .main-header__cart__number,
.main-header--two .main-header__search__number {
    background-color: var(--theme-primary, #abe6d7);
}

.main-header--two.sticky-header--cloned {
    border: none;
}

.main-header--three {
    position: relative;
    background-color: var(--theme-white);
    left: 0;
    top: 0;
    z-index: 9;
    width: 100%;
}

@media (max-width: 1499px) {
    .main-header--three {
        padding: 0 0;
    }
}

.main-header--three__bg {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 0 10px 10px;
}

.main-header--three .main-header__inner {
    background-color: transparent;
    border: 1px solid #d5d0cb;
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1499px) {
    .main-header--three .main-header__inner {
        padding: 0 0 0 20px;
    }
}

@media (max-width: 1199px) {
    .main-header--three .main-header__inner {
        padding: 15px 0 15px 20px;
    }
}

@media (max-width: 767px) {
    .main-header--three .main-header__inner {
        padding: 20px 0 20px 20px;
    }
}

.main-header--three .main-header__logo {
    background-color: transparent;
    padding: 0;
    margin-right: 120px;
}

@media (max-width: 767px) {
    .main-header--three .main-header__logo {
        margin-right: 0;
    }
}

.main-header--three .main-header__logo::after {
    display: none;
}

.main-header--three .main-header__btn {
    background-color: transparent;
    padding: 0;
    margin-left: 40px;
}

.main-header--three .main-header__cart__number,
.main-header--three .main-header__search__number {
    background-color: var(--theme-primary, #abe6d7);
}

.main-header--three.sticky-header--cloned {
    border: none;
    background-color: var(--theme-white);
}

.sticky-header--cloned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    background-color: var(--theme-primary);
    transform: translateY(-100%);
    box-shadow: 0px 3px 18px rgba(var(--theme-black-rgb, 14, 11, 6), 0.07);
    transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
    visibility: hidden;
    transition: transform 500ms ease, visibility 500ms ease;
}

.sticky-header--cloned.active {
    transform: translateY(0%);
    visibility: visible;
}

.mobile-nav__btn {
    width: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    cursor: pointer;
    z-index: 3;
}

@media (max-width: 1199px) {
    .mobile-nav__btn {
        margin-left: -50px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .mobile-nav__btn {
        margin-left: -40px;
        margin-right: 20px;
    }
}

@media (min-width: 1200px) {
    .mobile-nav__btn {
        display: none;
    }
}

.mobile-nav__btn span {
    width: 100%;
    height: 2px;
    background-color: var(--theme-black);
}

.mobile-nav__btn span:nth-child(2) {
    margin-top: 4px;
    margin-bottom: 4px;
}

.main-menu {
    /* after third level no menu */
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {
    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul {
        display: flex;
    }
}

.main-menu .main-menu__list>li {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}

.main-menu .main-menu__list>li.dropdown>a {
    position: relative;
}

.main-menu .main-menu__list>li+li {
    margin-left: 41px;
}

@media (max-width: 1400px) {
    .main-menu .main-menu__list>li+li {
        margin-left: 35px;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .main-menu .main-menu__list>li+li {
        margin-left: 30px;
    }
}

.main-menu .main-menu__list>li>a {
    font-size: 16px;
    display: flex;
    align-items: center;
    color: var(--theme-black);
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
    color: var(--theme-white);
    text-shadow: 0 0 0.5px currentColor;
}

.main-menu .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: -25px;
    min-width: 270px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    z-index: 99;
    background-color: var(--theme-white);
    box-shadow: 0px 10px 60px 0px RGBA(var(--theme-white-rgb, 255, 255, 255), 0.07);
    padding: 15px 20px 11px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>.megamenu {
    position: static;
}

.main-menu .main-menu__list>.megamenu>ul {
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
}

.main-menu .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu .main-menu__list li ul li>a {
    font-size: 15px;
    line-height: 26px;
    color: var(--theme-text);
    font-weight: 500;
    display: flex;
    text-transform: capitalize;
    padding: 8px 20px;
    transition: 400ms;
    margin-bottom: 4px;
}

.main-menu .main-menu__list li ul li>a::after {
    position: absolute;
    right: 20px;
    top: 8px;
    border-radius: 0;
    font-size: 6px;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    content: "\f111";
    color: var(--theme-base);
    visibility: hidden;
    opacity: 0;
    transition: all 500ms ease;
    transform: scale(0);
}

.main-menu .main-menu__list li ul li.current>a,
.main-menu .main-menu__list li ul li:hover>a {
    background-color: var(--theme-gray, #f1fcf9);
    color: var(--theme-black);
}

.main-menu .main-menu__list li ul li.current>a::after,
.main-menu .main-menu__list li ul li:hover>a::after {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.main-menu .main-menu__list li ul li>ul {
    top: 0;
    left: calc(100% + 20px);
}

.main-menu .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul {
    display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .main-menu__list li:nth-last-child(1) ul li>ul,
    .main-menu__list li:nth-last-child(2) ul li>ul {
        left: auto;
        right: calc(100% + 20px);
    }
}

/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    width: 100vw;
    height: 100vh;
    visibility: visible;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
    z-index: 999999;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
    padding: 0;
    background-color: var(--theme-white);
    display: block !important;
    margin: 0;
}

.main-menu__list>li.megamenu-clickable>ul::-webkit-scrollbar {
    display: none;
}

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
    transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
    overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
    bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
    overflow: unset;
}

.mobile-nav__content .demo-one .container {
    padding-left: 15px;
    padding-right: 15px;
}

.megamenu-popup {
    position: relative;
}

.megamenu-popup .megamenu-clickable--close {
    position: absolute;
    top: 18px;
    right: 20px;
    display: block;
    color: var(--theme-black);
}

@media (min-width: 1300px) {
    .megamenu-popup .megamenu-clickable--close {
        top: 38px;
        right: 40px;
    }
}

.megamenu-popup .megamenu-clickable--close:hover {
    color: var(--theme-base);
}

.megamenu-popup .megamenu-clickable--close span {
    width: 24px;
    height: 24px;
    display: block;
    position: relative;
    color: currentColor;
    transition: all 500ms ease;
}

.megamenu-popup .megamenu-clickable--close span::before,
.megamenu-popup .megamenu-clickable--close span::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.megamenu-popup .megamenu-clickable--close span::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/

.demo-one {
    padding-top: 120px;
    padding-bottom: 120px;
}

.demo-one .row {
    --bs-gutter-y: 30px;
}

.demo-one__card {
    background-color: var(--theme-white);
    box-shadow: 0px 10px 60px 0px rgba(var(--theme-black3-rgb, 0, 0, 0), 0.1);
    text-align: center;
    transition: 500ms ease;
    transform: translateY(0px);
}

.demo-one__card:hover {
    transform: translateY(-10px);
}

.demo-one__title {
    margin: 0;
    text-transform: uppercase;
    font-size: 18px;
    color: var(--theme-black);
    font-weight: 600;
}

.demo-one__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.demo-one__title a:hover {
    background-size: 100% 1px;
}

.demo-one__image {
    position: relative;
    overflow: hidden;
}

.demo-one__image img {
    max-width: 100%;
    transition: filter 500ms ease;
    filter: blur(0px);
}

.demo-one__card:hover .demo-one__image img {
    filter: blur(2px);
}

.demo-one__btns {
    background-color: rgba(var(--theme-black3-rgb, 0, 0, 0), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    transform: scale(1, 0);
    transition: transform 500ms ease, opacity 600ms linear;
    transform-origin: bottom center;
    opacity: 0;
}

.demo-one__card:hover .demo-one__btns {
    transform: scale(1, 1);
    opacity: 1;
    transform-origin: top center;
}

.demo-one__btn {
    text-align: center;
    justify-content: center;
}

.demo-one__btn>i {
    background-color: var(--theme-white);
    border: none;
    padding: 5px 15px;
    width: 140px;
}

@media (min-width: 768px) {
    .demo-one__btn {
        display: inline-flex;
    }
}

.demo-one__title {
    padding-top: 28px;
    padding-bottom: 28px;
}

.home-showcase {
    margin-top: -20px;
    margin-bottom: -20px;
}

.home-showcase .row {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 20px;
}

.home-showcase__inner {
    padding: 40px 40px 21px;
    background-color: var(--theme-white);
    box-shadow: 0px 10px 60px 0px rgba(var(--theme-black3-rgb, 0, 0, 0), 0.07);
}

.home-showcase .demo-one__card {
    box-shadow: none;
}

.home-showcase .demo-one__title {
    padding: 0;
    font-size: 17px;
    margin-top: 15px;
    padding-bottom: 10px;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/

.why-choose-one {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .why-choose-one {
        padding: 80px 0;
    }
}

.why-choose-one .sec-title {
    padding-bottom: 22px;
}

.why-choose-one__text {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}

.why-choose-one__experiance {
    position: relative;
    margin: 0 0 35px;
}

@media (min-width: 1200px) {
    .why-choose-one__experiance {
        margin-left: 50px;
    }
}

@media (max-width: 1199px) {
    .why-choose-one__experiance {
        max-width: 620px;
    }
}

.why-choose-one__experiance__image {
    position: absolute;
    right: 0;
    top: 0;
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 554px;
    width: 100%;
    height: 100%;
    border-radius: 0 0 0 50px;
}

.why-choose-one__experiance__content {
    position: relative;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 0 50px 50px 50px;
    text-align: center;
    max-width: 200px;
    padding: 32px 20px 31px;
}

.why-choose-one__experiance__count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 600;
    color: var(--theme-black);
    margin: 0 auto 0px;
}

.why-choose-one__experiance__text {
    color: var(--theme-black);
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 18px;
}

.why-choose-one__experiance img {
    animation: zoomsIn 2s infinite alternate;
    width: 45px;
    height: 47px;
}

.why-choose-one__item {
    position: relative;
    background-color: var(--accent-color);
    text-align: center;
    padding: 32px 25px 36px;
    border-radius: 10px;
}

.why-choose-one__item:hover .why-choose-one__item__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.why-choose-one__item__icon {
    color: var(--theme-black);
    font-size: 67px;
    line-height: 67px;
    display: inline-block;
    margin: 0 0 15px;
    transition: all 500ms ease;
    position: relative;
}

.why-choose-one__item__icon__zoom {
    display: inline-block;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: auto;
}

.why-choose-one__item__title {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 600;
}

.why-choose-one__item__text {
    margin: 0;
    font-size: 15px;
    line-height: 28px;
}

.why-choose-two {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .why-choose-two {
        padding: 80px 0;
    }
}

.why-choose-two .container {
    max-width: 1724px;
}

.why-choose-two .col-xl-4 {
    width: 30%;
}

@media (max-width: 1199px) {
    .why-choose-two .col-xl-4 {
        width: 100%;
    }
}

.why-choose-two .col-xl-8 {
    width: 70%;
}

@media (max-width: 1199px) {
    .why-choose-two .col-xl-8 {
        width: 100%;
    }
}

.why-choose-two .sec-title {
    padding-bottom: 42px;
}

.why-choose-two__text {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}

@media (max-width: 1199px) {
    .why-choose-two__text {
        margin: -15px 0 10px;
    }
}

.why-choose-two__item {
    position: relative;
    background-color: var(--accent-color);
    text-align: center;
    padding: 42px 25px 36px;
    border-radius: 10px;
}

.why-choose-two__item:hover .why-choose-two__item__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.why-choose-two__item__icon {
    color: var(--theme-black);
    font-size: 67px;
    line-height: 67px;
    display: inline-block;
    margin: 0 0 15px;
    transition: all 500ms ease;
    position: relative;
}

.why-choose-two__item__icon__zoom {
    display: inline-block;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: auto;
}

.why-choose-two__item__title {
    margin: 0 0 14px;
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 600;
}

.why-choose-two__item__text {
    margin: 0;
    font-size: 15px;
    line-height: 28px;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/

.funfact-one {
    background-color: var(--theme-base);
    background-image: url(../images/shapes/funfact-bg-1-1.html);
    background-size: cover;
    background-position: center center;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 1200px) {
    .funfact-one {
        padding-top: 73.5px;
        padding-bottom: 73.5px;
    }
}

.funfact-one__list {
    margin: 0;
}

@media (min-width: 768px) {
    .funfact-one__list {
        display: flex;
        flex-wrap: wrap;
        row-gap: 20px;
    }
}

@media (min-width: 1200px) {
    .funfact-one__list {
        justify-content: space-between;
        gap: 0;
    }
}

.funfact-one__item {
    display: flex;
    align-items: center;
    margin-top: -6px;
    position: relative;
}

.funfact-one__item:not(:first-of-type)::before {
    content: "";
    width: 1px;
    height: 67px;
    background-color: var(--theme-white);
    position: absolute;
    top: 50%;
    left: -57px;
    transform: translateY(-50%);
    opacity: 0.3;
    display: none;
}

@media (min-width: 1200px) {
    .funfact-one__item:not(:first-of-type)::before {
        display: block;
    }
}

@media (min-width: 768px) {
    .funfact-one__item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1200px) {
    .funfact-one__item {
        flex: 0 0 auto;
        max-width: none;
    }
}

.funfact-one__item:hover .funfact-one__icon {
    transform: rotateY(360deg);
}

.funfact-one__item+.funfact-one__item {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .funfact-one__item+.funfact-one__item {
        margin-top: 0;
    }
}

.funfact-one__icon {
    font-size: 60px;
    color: var(--theme-white);
    margin-right: 20px;
    flex-shrink: 0;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.funfact-one__count {
    margin: 0;
    color: var(--theme-white);
    font-family: var(--theme-font, "Rubik", serif);
    font-size: 35px;
    font-weight: 500;
    line-height: 1;
}

@media (min-width: 768px) {
    .funfact-one__count {
        font-size: 40px;
    }
}

.funfact-one__text {
    margin: 0;
    color: var(--theme-white);
    font-size: 16px;
    line-height: 36px;
    margin-top: 7px;
    margin-bottom: -6px;
}

.funfact-two {
    position: relative;
    background-color: var(--theme-base);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 90px 0;
}

.funfact-two__shape {
    position: absolute;
    left: -10px;
    top: 0;
}

.funfact-two__shape img {
    animation: shapeMove 3s linear 0s infinite;
}

@media (max-width: 767px) {
    .funfact-two {
        padding: 80px 0;
    }
}

.funfact-two .sec-title {
    padding-bottom: 33px;
}

.funfact-two .sec-title__tagline,
.funfact-two .sec-title__title {
    color: var(--theme-white);
}

.funfact-two__list {
    position: relative;
    background-color: var(--theme-white);
    margin: 0 0 0 -7px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    row-gap: 0;
}

@media (max-width: 991px) {
    .funfact-two__list {
        margin: 50px 0 0;
    }
}

.funfact-two__list__icon {
    width: 94px;
    height: 94px;
    background-color: var(--theme-base);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.funfact-two__list__icon img {
    height: 65px;
    transform: scale(1);
    transition: 500ms ease;
}

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

.funfact-two__list:hover .funfact-two__list__icon img {
    transform: scale(0.9);
}

.funfact-two__item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 42px 58px;
}

.funfact-two__item:nth-child(1),
.funfact-two__item:nth-child(3) {
    border-right: 1px solid var(--theme-base);
}

.funfact-two__item:nth-child(1),
.funfact-two__item:nth-child(2) {
    border-bottom: 1px solid var(--theme-base);
}

@media (max-width: 1199px) {
    .funfact-two__item {
        padding-left: 30px;
        padding-right: 25px;
    }
}

@media (max-width: 991px) {
    .funfact-two__item {
        padding-left: 50px;
    }
}

@media (max-width: 767px) {
    .funfact-two__item {
        padding-left: 50px;
        flex: 0 0 100%;
        max-width: 100%;
        border-bottom: 1px solid var(--theme-base);
    }
}

.funfact-two__count {
    margin: 0;
    color: var(--theme-black);
    font-size: 40px;
    font-family: var(--theme-font, "Rubik", serif);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .funfact-two__count {
        font-size: 50px;
    }
}

.funfact-two__text {
    margin: 0;
    font-size: 18px;
    margin: 0;
}

.funfact-three {
    position: relative;
    padding: 100px 0;
    background-color: var(--theme-white);
}

@media (max-width: 767px) {
    .funfact-three {
        padding: 80px 0 50px;
    }
}

.funfact-three__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--theme-gray, #f1fcf9);
    z-index: 3;
}

@media (min-width: 1400px) {
    .funfact-three__bg {
        width: calc(100% - 240px);
        left: 120px;
    }
}

.funfact-three__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    row-gap: 0;
    z-index: 3;
    position: relative;
}

@media (max-width: 767px) {
    .funfact-three__list {
        display: block;
    }
}

.funfact-three__item {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
}

@media (max-width: 991px) {
    .funfact-three__item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 0 30px !important;
    }
}

@media (max-width: 767px) {
    .funfact-three__item {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 0 30px !important;
        text-align: center;
    }
}

.funfact-three__item:not(:last-of-type)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--theme-border-color, #e5e3e0);
    position: absolute;
    top: 0;
    right: 54px;
}

@media (max-width: 991px) {
    .funfact-three__item:not(:last-of-type)::before {
        right: 50px !important;
    }
}

@media (max-width: 767px) {
    .funfact-three__item:not(:last-of-type)::before {
        display: none;
    }
}

.funfact-three__item:not(:first-of-type) {
    padding-left: 37px;
}

@media (max-width: 1199px) {
    .funfact-three__item:not(:first-of-type) {
        padding-left: 0;
    }
}

.funfact-three__item:nth-child(2)::before {
    right: 16px;
}

@media (max-width: 991px) {
    .funfact-three__item:nth-child(2)::before {
        display: none;
    }
}

.funfact-three__item:nth-child(3)::before {
    right: -20px;
}

.funfact-three__item:nth-child(3) {
    padding-left: 63px;
}

@media (max-width: 1199px) {
    .funfact-three__item:nth-child(3) {
        padding-left: 40px;
    }
}

.funfact-three__item:last-child {
    padding-left: 104px;
}

@media (max-width: 1199px) {
    .funfact-three__item:last-child {
        padding-left: 70px;
    }
}

.funfact-three__item:hover .funfact-three__icon::before {
    transform: scale(0.9);
}

.funfact-three__icon {
    width: 103px;
    height: 104px;
    background-color: var(--theme-base);
    font-size: 60px;
    color: var(--theme-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 13px;
}

@media (max-width: 767px) {
    .funfact-three__icon {
        margin-left: auto;
        margin-right: auto;
    }
}

.funfact-three__icon::before {
    transition: all 500ms linear;
    transition-delay: 0s;
    transition-delay: 0s;
    transition-delay: 0s;
    transition-delay: 0s;
    transition-delay: 0.1s;
    transform: scale(1);
}

.funfact-three__count {
    margin: 0;
    color: var(--theme-black);
    font-family: var(--theme-font, "Rubik", serif);
    font-size: 35px;
    font-weight: 500;
    line-height: 1;
}

@media (min-width: 768px) {
    .funfact-three__count {
        font-size: 40px;
    }
}

.funfact-three__text {
    margin: 0;
    color: var(--theme-text);
    font-size: 16px;
    margin-top: 9px;
    margin-bottom: -6px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials-one {
    position: relative;
    padding-top: 120px;
    margin-bottom: 90px;
}

@media (max-width: 767px) {
    .testimonials-one {
        padding-top: 80px;
    }
}

.testimonials-one--page {
    margin: 0;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .testimonials-one--page {
        padding: 60px 0;
    }
}

.testimonials-one__container.container {
    max-width: 1600px;
}

.testimonials-one .careold-owl__carousel--basic-nav.owl-carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -150px;
    z-index: 2;
    width: 1170px;
    gap: 10px;
    transform: none;
    text-align: right;
}

@media (max-width: 1199px) {
    .testimonials-one .careold-owl__carousel--basic-nav.owl-carousel .owl-nav {
        width: 950px;
    }
}

@media (max-width: 991px) {
    .testimonials-one .careold-owl__carousel--basic-nav.owl-carousel .owl-nav {
        display: none;
    }
}

.testimonials-one .careold-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    background-color: var(--theme-gray2, #f7f3ea);
    width: 90px;
    height: 90px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--theme-black);
}

.testimonials-one .careold-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.testimonials-card {
    position: relative;
    padding: 0 0 45px;
    border-radius: 15px;
    transition: all 500ms ease;
}

.testimonials-card__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    /*background-color: var(--theme-gray2, #f7f3ea);*/
    background-image: linear-gradient(100deg, #8dccda, #756e64, #f5a78f);
}

.testimonials-card:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-card__top {
    position: relative;
    padding: 41px 35px 37px;
}

.testimonials-card__image {
    border: 4px solid var(--theme-white);
    border-radius: 50%;
    position: absolute;
    top: 30px;
    right: 30px;
    width: 61px;
    height: 61px;
    overflow: hidden;
    transition: all 500ms ease;
}

.testimonials-card__image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.testimonials-card:hover .testimonials-card__image {
    border-color: var(--theme-base);
}

.testimonials-card__name {
    margin: 0;
    text-transform: capitalize;
    color: var(--theme-white);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 9px;
}

.testimonials-card__designation {
    margin: 0 0 31px;
    line-height: 1;
    font-weight: 500;
    font-size: 14px;
    color: var(--theme-base);
}

.testimonials-card__content {
    line-height: 30px;
    margin: 0 0 5px;
    color: var(--theme-gray);
}
.testimonials-card__content p{
    color: var(--theme-gray);
}
.testimonials-card__bottom {
    position: relative;
    margin-left: 35px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--theme-white);
    padding: 8px 20px 8px 0;
    border-radius: 30px 0 0 30px;
}

.testimonials-card__quote {
    position: absolute;
    left: 0;
    top: -6.5px;
    width: 47px;
    height: 47px;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-black);
    font-size: 14px;
}

.testimonials-card__rating {
    display: flex;
    align-items: center;
    color: var(--theme-base);
    font-size: 18px;
    letter-spacing: 6px;
}

.testimonials-two {
    position: relative;
    padding: 90px 0;
    background-color: #d8f4ed;
}

@media (max-width: 767px) {
    .testimonials-two {
        padding: 80px 0;
    }
}

.testimonials-two__bg {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: auto;
    background-position: top center;
    background-repeat: no-repeat;
    mix-blend-mode: hard-light;
}

.testimonials-two--home-three {
    padding-bottom: 320px;
}

@media (max-width: 767px) {
    .testimonials-two--home-three {
        padding-bottom: 280px;
    }
}

.testimonials-card-two {
    position: relative;
    padding: 54px 40px 51px;
    border-radius: 15px;
    transition: all 500ms ease;
}

.testimonials-card-two__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    background-color: var(--theme-gray2, #f7f3ea);
}

.testimonials-card-two:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-card-two__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--theme-white);
    filter: drop-shadow(0 0 16px rgba(218, 218, 218, 0.42));
    padding: 8px 20px 8px 0;
    border-radius: 30px 5px 5px 30px;
}

.testimonials-card-two__quote {
    position: absolute;
    left: 0;
    top: -14px;
    width: 61px;
    height: 61px;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-black);
    font-size: 14px;
}

.testimonials-card-two__rating {
    display: flex;
    align-items: center;
    color: var(--theme-base);
    font-size: 18px;
    letter-spacing: 6px;
}

.testimonials-card-two__content {
    position: relative;
    z-index: 2;
    line-height: 36px;
    font-size: 24px;
    margin: 44px 0 38px;
}

.testimonials-card-two__name {
    margin: 0;
    text-transform: capitalize;
    color: var(--theme-black);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 9px;
    position: relative;
    z-index: 2;
}

.testimonials-card-two__designation {
    margin: 0;
    line-height: 1;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.testimonials-card-two__image {
    border: 4px solid var(--theme-white);
    border-radius: 50%;
    position: absolute;
    bottom: 35px;
    right: 35px;
    width: 65px;
    height: 65px;
    overflow: hidden;
    transition: all 500ms ease;
}

.testimonials-card-two__image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.testimonials-card-two:hover .testimonials-card-two__image {
    border-color: var(--theme-base);
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/

.cta-one {
    position: relative;
}

.cta-one--about {
    padding: 90px 0;
}

@media (max-width: 767px) {
    .cta-one--about {
        padding: 80px 0;
    }
}

.cta-one__inner {
    position: relative;
    padding: 70px 120px 78px;
    background-color: #f5f2ed;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .cta-one__inner {
        padding: 70px 50px 78px;
    }
}

@media (max-width: 767px) {
    .cta-one__inner {
        padding: 70px 25px 78px;
    }
}

.cta-one__inner__shape-one {
    position: absolute;
    left: 80px;
    top: -263px;
    width: 340px;
    height: 340px;
    background-color: #fdeecd;
    border-radius: 50%;
    animation: zoomsIn 2s infinite alternate;
}

@media (max-width: 767px) {
    .cta-one__inner__shape-one {
        display: none;
    }
}

.cta-one__inner__shape-two {
    position: absolute;
    left: -113px;
    bottom: -195px;
    width: 340px;
    height: 340px;
    background-color: #c6f0e5;
    border-radius: 50%;
    animation: zoomsIn 2s infinite alternate;
}

@media (max-width: 767px) {
    .cta-one__inner__shape-two {
        display: none;
    }
}

.cta-one__inner__shape-three {
    position: absolute;
    right: -168px;
    bottom: -115px;
    width: 340px;
    height: 340px;
    background-color: #fbece5;
    border-radius: 50%;
    animation: zoomsIn 2s infinite alternate;
}

@media (max-width: 767px) {
    .cta-one__inner__shape-three {
        display: none;
    }
}

.cta-one__title {
    font-size: 42px;
    line-height: 52px;
    font-weight: bold;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .cta-one__title {
        font-size: 24px;
        line-height: 36px;
    }
    .cta-one__text {
        font-size: 18px;
        line-height: 28px;
        color: var(--theme-black);
        margin: 0 0 20px;
    }
}

.cta-one__text {
    font-size: 23px;
    line-height: 33px;
    color: var(--theme-black);
    margin: 0 0 30px;
}

@media (max-width: 991px) {
    .cta-one__text {
        font-size: 28px;
        line-height: 42px;
    }
}

@media (max-width: 767px) {
    .cta-one__text {
        font-size: 22px;
        line-height: 35px;
    }
}

.cta-one .careold-btn>i {
    background-color: var(--theme-white);
}

.cta-two {
    position: relative;
    overflow: hidden;
    padding-bottom: 115px;
}

@media (max-width: 767px) {
    .cta-two {
        padding-bottom: 80px;
    }
}

.cta-two__title {
    margin: 0 0 21px;
}

.cta-two__text {
    margin: 0;
    font-size: 16px;
}

@media (min-width: 768px) {
    .cta-two__text {
        font-size: 18px;
    }
}

.cta-two__thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 415px;
}

@media (min-width: 992px) {
    .cta-two__thumb {
        margin-left: -35px;
    }
}

@media (max-width: 991px) {
    .cta-two__thumb {
        margin-top: 45px;
    }
}

.cta-two__thumb img {
    width: 157px;
    height: 157px;
    border-radius: 50%;
    border: 6px solid var(--theme-primary, #abe6d7);
    margin-right: -44px;
}

.cta-two__thumb__more {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    background-color: var(--theme-base);
    border-radius: 50%;
    color: var(--theme-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery-one {
    padding: 120px 0 90px;
    position: relative;
}

@media (max-width: 767px) {
    .gallery-one {
        padding: 80px 0 50px;
    }
}

.gallery-one__filter__list {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-one__filter__list li {
    cursor: pointer;
}

.gallery-one__filter__list li span {
    display: block;
    font-size: 12px;
    background-color: var(--theme-gray, #f1fcf9);
    transition: all 500ms ease;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--theme-black);
    padding: 15px 20px;
    line-height: 1.2em;
}

.gallery-one__filter__list li.active span,
.gallery-one__filter__list li:hover span {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.gallery-one__card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background-color: var(--theme-black);
    margin: 0 0 30px;
}

.gallery-one__card img {
    transform: scale(1);
    max-width: 100%;
    transition: transform 500ms ease, opacity 500ms ease;
    opacity: 1;
}

.gallery-one__card__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(35, 43, 41, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
}

.gallery-one__card__hover .img-popup {
    position: relative;
    width: 94px;
    height: 94px;
    background-color: var(--theme-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--theme-black);
}

.gallery-one__card__hover .img-popup::after {
    position: absolute;
    left: -30px;
    top: -30px;
    content: "";
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    border: 1px dashed var(--theme-white);
    border-radius: 50%;
    transition: all 500ms ease;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.gallery-one__card__hover .img-popup i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.gallery-one__card__hover .img-popup:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.gallery-one__card:hover img {
    transform: scale(1.05);
}

.gallery-one__card:hover .gallery-one__card__hover {
    transform-origin: top center;
    transform: scale(1, 1);
}

.gallery-one .careold-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar {
    position: relative;
}

.sidebar__single {
    background-color: #e2f2ee;
    padding: 40px;
    border-radius: 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sidebar__single {
        padding: 40px 25px;
    }
}

@media (max-width: 767px) {
    .sidebar__single {
        padding: 40px 25px;
    }
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    margin: -3px 0 28px;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 20px;
}

.sidebar__title img {
    height: 18px;
    margin-right: 7px;
    position: relative;
    top: -1px;
}

.sidebar__search {
    position: relative;
}

.sidebar__search input[type=search],
.sidebar__search input[type=text] {
    outline: none;
    width: 100%;
    height: 55px;
    background-color: var(--theme-white);
    font-size: 16px;
    color: var(--theme-black);
    font-weight: 600;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    transition: all 500ms ease;
}

.sidebar__search button[type=submit] {
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: auto;
    font-size: 18px;
    color: var(--theme-black);
    transition: all 500ms ease;
}

.sidebar__search button[type=submit]:hover {
    color: var(--theme-base);
}

.sidebar__categories {
    margin: 0;
    padding: 0;
}

.sidebar__categories li {
    position: relative;
    display: block;
    margin-top: 10px;
}

.sidebar__categories li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-black);
    display: block;
    transition: all 500ms ease;
    text-transform: capitalize;
    padding: 7px 20px;
    border: 1px solid #c8ded9;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.sidebar__categories li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--theme-base);
    transform: scalex(0);
    transform-style: preserve-3d;
    transition: transform 0.4s ease-in-out;
    transform-origin: right center;
    z-index: -1;
}

.sidebar__categories li.current a,
.sidebar__categories li:hover a {
    border-color: var(--theme-base);
    color: var(--theme-black);
}

.sidebar__categories li.current a::after,
.sidebar__categories li:hover a::after {
    transform: scalex(1);
    transform-origin: left center;
}

.sidebar__posts {
    margin-bottom: 0;
}

.sidebar__posts__item {
    display: flex;
    align-items: center;
    margin-right: -15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sidebar__posts__item {
        margin-right: -5px;
    }
}

@media (max-width: 767px) {
    .sidebar__posts__item {
        margin-right: -5px;
    }
}

.sidebar__posts__item:not(:last-of-type) {
    border-bottom: 1px solid #d3dbd6;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.sidebar__posts__image {
    flex-shrink: 0;
    margin-right: 15px;
    border-radius: 50%;
    overflow: hidden;
}

.sidebar__posts__meta {
    margin: 0;
    color: var(--theme-text);
    font-weight: 500;
    font-size: 14px;
    line-height: 1em;
    margin-bottom: 6px;
}

.sidebar__posts__title {
    margin: 0;
    text-transform: capitalize;
    color: var(--theme-black);
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
}

.sidebar__posts__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.sidebar__posts__title a:hover {
    background-size: 100% 1px;
}

.sidebar__comments {
    margin-top: -2px;
    margin-bottom: -2px;
}

.sidebar__comments__item {
    display: flex;
    align-items: center;
    margin-right: -15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sidebar__comments__item {
        margin-right: -5px;
    }
}

@media (max-width: 767px) {
    .sidebar__comments__item {
        margin-right: -5px;
    }
}

.sidebar__comments__item:not(:last-of-type) {
    border-bottom: 1px solid #d3dbd6;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.sidebar__comments__icon {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-white);
    font-size: 24px;
    color: var(--theme-black);
    margin-right: 15px;
    border-radius: 50%;
    transition: all 500ms ease;
}

.sidebar__comments__item:hover .sidebar__comments__icon {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.sidebar__comments__title {
    margin: 0;
    font-family: var(--theme-font, "Rubik", serif);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: var(--theme-text);
}

.sidebar__comments__title a {
    font-family: var(--theme-heading-font);
    color: var(--theme-black);
    transition: all 500ms ease;
    display: block;
}

.sidebar__comments__title a:hover {
    color: var(--theme-base);
}

.sidebar__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar__tags a {
    background-color: #c8e2dc;
    border-radius: 5px;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-black);
    transition: all 500ms ease;
    display: inline-flex;
    padding: 5px 16px;
}

.sidebar__tags a:hover {
    color: var(--theme-black);
    background-color: var(--theme-primary, #abe6d7);
}

.service-sidebar {
    position: relative;
}

.service-sidebar__single {
    position: relative;
    padding: 40px;
    background-color: var(--theme-white);
    border-radius: 7px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-sidebar__single {
        padding: 40px 25px;
    }
}

.service-sidebar__single+.service-sidebar__single {
    margin-top: 30px;
}

.service-sidebar__title {
    margin: 0 0 25px;
    text-transform: capitalize;
    font-weight: bold;
    color: var(--theme-black);
    font-size: 20px;
}

.service-sidebar__title img {
    height: 18px;
    margin-right: 7px;
    position: relative;
    top: -1px;
}

.service-sidebar__nav {
    margin: 0;
    padding: 0;
}

.service-sidebar__nav li {
    position: relative;
    display: block;
    margin-top: 10px;
}

.service-sidebar__nav li::after {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    content: "";
    transition: all 300ms ease;
    border-radius: 50%;
    background-color: var(--theme-base);
    z-index: 1;
}

/*.service-sidebar__nav li::before {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 1px;
    content: "";
    transition: all 500ms ease;
    border-radius: 50%;
    background-color: var(--theme-white);
    z-index: 2;
}*/

.service-sidebar__nav li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-black);
    display: block;
    transition: all 500ms ease;
    text-transform: capitalize;
    padding: 7px 20px;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.service-sidebar__nav li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--theme-base);
    transform: scalex(0);
    transform-style: preserve-3d;
    transition: transform 0.4s ease-in-out;
    transform-origin: right center;
    z-index: -1;
}

.service-sidebar__nav li.current::before,
.service-sidebar__nav li:hover::before {
    width: 30px;
}

.service-sidebar__nav li.current::after,
.service-sidebar__nav li:hover::after {
    background-color: var(--theme-white);
}

.service-sidebar__nav li.current a,
.service-sidebar__nav li:hover a {
    border-color: var(--theme-base);
    color: var(--theme-black);
}

.service-sidebar__nav li:hover a::after {
    transform: scalex(1);
    transform-origin: left center;
}

.service-sidebar__contact {
    background-image: linear-gradient(0deg, rgb(171, 230, 215) 0%, rgb(222, 245, 238) 38%, rgba(226, 246, 240, 0.9014776098) 48%, rgba(241, 211, 148, 0) 99%, rgba(241, 211, 147, 0) 100%);
    padding: 0 30px 38px;
    text-align: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-sidebar__contact {
        padding: 20px 38px;
    }
    .service-sidebar__contact .careold-btn>i {
        padding: 8px 30px;
    }
}

.service-sidebar__contact__image {
    width: 169px;
    height: 169px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
}

.service-sidebar__contact__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-sidebar__contact__title {
    margin: 25px 0 12px;
    color: var(--theme-black);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}
.service-sidebar__contact p{
    margin-bottom: 15px;
    display: block;
    text-transform: capitalize;
    color: var(--theme-indigo);
}
.service-sidebar__contact .careold-btn>span {
    background-color: var(--theme-base);
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/

.blog-details {
    position: relative;
    z-index: 2;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .blog-details {
        padding: 80px 0;
    }
}

.blog-details__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: top left;
    background-repeat: repeat;
    z-index: -1;
}

.blog-details__wrapper {
    position: relative;
    background-color: var(--theme-white);
    border-radius: 10px;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .blog-details__wrapper {
        margin-right: 10px;
    }
}

.blog-details__image {
    position: relative;
    margin-bottom: -15px;
}

.blog-details__image img {
    max-width: 100%;
    height: auto;
}

.blog-details__content {
    position: relative;
    padding: 0 40px 40px;
}

@media (max-width: 767px) {
    .blog-details__content {
        padding: 0 25px 40px;
    }
}

.blog-details__content .mb {
    margin-top: -20px;
    margin-bottom: 37px;
}

.blog-details__content__image {
    position: relative;
}

.blog-details__content__image img {
    max-width: 100%;
    height: auto;
    border-radius: 7px;
}

.blog-details__content__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px;
}

.blog-details__cate {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.blog-details__cate a {
    display: inline-block;
    background-color: var(--theme-primary, #abe6d7);
    color: var(--theme-black);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 30px;
    padding: 0 20px;
}

.blog-details__cate a:hover {
    background-color: var(--theme-base);
}

.blog-details__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    margin-bottom: 10px;
}

.blog-details__meta li {
    color: var(--theme-text);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    text-transform: capitalize;
    align-items: center;
}

.blog-details__meta li i {
    color: var(--theme-primary);
    font-size: 16px;
    margin-right: 10px;
}

.blog-details__meta li i.fa-comment {
    position: relative;
    top: 1px;
}

.blog-details__meta li a {
    display: flex;
    align-items: center;
    color: inherit;
    margin-left: 3px;
    transition: all 500ms ease;
}

.blog-details__meta li a:hover {
    color: var(--theme-base);
}

.blog-details__title {
    margin: 0 0 30px;
    color: var(--theme-black);
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}

.blog-details__text {
    line-height: 30px;
    margin: 0 0 23px;
}
.blog-details__text ul{
    padding-left: 15px;
}
.blog-details__blockquote {
    position: relative;
    background-color: #f0ecec;
    border-radius: 5px;
    position: relative;
    margin: 55px 0 34px;
    text-align: center;
    padding: 63px 40px 40px;
    font-family: var(--theme-heading-font);
    font-size: 26px;
    line-height: 35px;
    font-weight: 500;
    color: var(--theme-black);
}

@media (max-width: 767px) {
    .blog-details__blockquote {
        padding: 63px 25px 40px;
        font-size: 22px;
        line-height: 32px;
    }
}

.blog-details__blockquote::after {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -30px;
    width: 60px;
    height: 60px;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--theme-white);
    content: "\e918";
    font-family: "icomoon" !important;
}

.blog-details__post-meta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--theme-border-color, #e5e3e0);
    padding: 28px 0;
    margin: 51px 0 5px;
}

@media (max-width: 767px) {
    .blog-details__post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}

.blog-details__tags {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-details__tags__title {
    text-transform: capitalize;
    margin: 0;
    line-height: 1em;
    font-size: 20px;
    font-weight: 600;
}

.blog-details__tags .sidebar__tags a {
    background-color: #ededed;
    font-size: 14px;
    padding: 2px 12px;
}

.blog-details__tags .sidebar__tags a:hover {
    background-color: var(--theme-primary, #abe6d7);
}

.blog-details__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-details__social a {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ededed;
    font-size: 14px;
    color: var(--theme-black);
    transition: all 500ms ease;
    border-radius: 50%;
}

.blog-details__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.blog-details__social a:hover {
    background-color: var(--theme-primary, #abe6d7);
    color: var(--theme-black);
}

.blog-details__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/

.comments-one {
    margin-top: 54px;
}

.comments-one__title {
    margin: 0;
    text-transform: capitalize;
    font-size: 24px;
    color: var(--theme-black);
    font-weight: 600;
}

.comments-one__list {
    margin: 0;
    margin-top: 45px;
}

.comments-one__card {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--theme-border-color, #e5e3e0);
    display: flex;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .comments-one__card {
        flex-direction: column;
        gap: 18px;
    }
}

.comments-one__card__image {
    position: relative;
    margin-right: 15px;
}

.comments-one__card__image img {
    border-radius: 50%;
}

.comments-one__card__title {
    margin: 0;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--theme-black);
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 13px;
}

.comments-one__card__date {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 8px;
}

.comments-one__card__text {
    margin: 0;
    line-height: 30px;
}

.comments-one__card__btn {
    position: absolute;
    top: 20px;
    right: 0;
}

@media (max-width: 767px) {
    .comments-one__card__btn {
        position: relative;
        top: auto;
        margin-top: 20px;
    }
}

.comments-one__card__btn .careold-btn {
    font-size: 13px;
    font-weight: 500;
}

.comments-one__card__btn .careold-btn>i {
    border: none;
    background-color: var(--theme-base);
    padding: 0px 13px;
}

.comments-one__card__content {
    position: relative;
}

@media (min-width: 1200px) {
    .comments-one__card__content {
        margin-right: 45px;
    }
}

.comments-form {
    margin-top: 40px;
}

.comments-form__title {
    margin: 0;
    text-transform: capitalize;
    font-size: 24px;
    color: var(--theme-black);
    font-weight: 600;
}

.comments-form__form {
    margin-top: 30px;
}

.comments-form .form-one .bootstrap-select>.dropdown-toggle:focus,
.comments-form .form-one input[type=text]:focus,
.comments-form .form-one input[type=email]:focus,
.comments-form .form-one textarea:focus {
    font-weight: 400;
    border-color: var(--theme-black);
}

.comments-form .form-one textarea {
    margin-bottom: 20px;
}

.comments-form .form-one__group {
    grid-gap: 20px;
}

.comments-form .form-one .careold-btn>span,
.comments-form .form-one .careold-btn>i {
    border-radius: 5px;
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/

.product {
    position: relative;
}

.product__sidebar {
    position: relative;
}

.product__sidebar--title {
    margin: -3px 0 28px;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 20px;
}

.product__sidebar--title img {
    height: 18px;
    margin-right: 7px;
    position: relative;
    top: -1px;
}

.product__search {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.product__search form {
    border-radius: 0;
    position: relative;
}

.product__search form input[type=text] {
    width: 100%;
    height: 60px;
    background-color: transparent;
    padding-left: 30px;
    padding-right: 30px;
    font-family: var(--theme-font, "Rubik", serif);
    font-size: 15px;
    color: var(--theme-text);
    border: 1px solid var(--theme-border-color, #e5e3e0);
    outline: none;
    font-weight: 500;
    border-radius: 5px;
}

.product__price-ranger {
    border: 1px solid var(--theme-border-color, #e5e3e0);
    border-radius: 10px;
    padding: 33px 40px;
    margin-bottom: 30px;
}

.product__price-ranger #slider-range {
    margin: 5px 0 0 0px;
    background: var(--theme-border-color, #e5e3e0);
    border: none;
    height: 5px;
    border-radius: 5px;
    position: relative;
}

.product__price-ranger #slider-range .ui-slider-range {
    height: 100%;
    background: var(--theme-base);
}

.product__price-ranger #slider-range .ui-slider-handle {
    position: absolute;
    top: -5px;
    background: var(--theme-base);
    border: 0;
    height: 14px;
    width: 14px !important;
    border-radius: 50%;
    margin-left: -2px;
    outline: medium none;
    cursor: pointer;
    z-index: 2;
}

.product__price-ranger .ranger-min-max-block {
    position: relative;
    display: block;
    margin: 18px 0 0 0px;
}

.product__price-ranger .ranger-min-max-block input[type=text] {
    position: relative;
    display: inline-block;
    color: var(--theme-text);
    font-size: 16px;
    font-weight: 500;
    width: 40px;
    line-height: 30px;
    border: none;
    outline: none;
    font-family: var(--theme-font, "Rubik", serif);
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.product__price-ranger .ranger-min-max-block span {
    position: relative;
    display: inline-block;
    color: var(--theme-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    left: -2px;
}

.product__price-ranger .ranger-min-max-block input[type=submit] {
    position: relative;
    display: block;
    background: var(--theme-primary, #abe6d7);
    font-family: var(--theme-font, "Rubik", serif);
    float: right;
    text-align: center;
    border: none;
    color: var(--theme-black);
    font-size: 12px;
    font-weight: 600;
    line-height: 35px;
    margin: 0;
    cursor: pointer;
    padding: 0 20px;
    height: 35px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 500ms ease;
}

.product__price-ranger .ranger-min-max-block input[type=submit]:hover {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.product__categories {
    border: 1px solid var(--theme-border-color, #e5e3e0);
    border-radius: 10px;
    padding: 33px 40px;
}

.product__categories ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: -15px;
    margin-bottom: -10px;
}

.product__categories ul li {
    position: relative;
    margin: 0 0 4px;
}

.product__categories ul li a {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--theme-text);
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 1;
    padding: 9px 15px 11px;
}

.product__categories ul li a span {
    position: relative;
    top: 1px;
    display: inline-block;
    font-size: 12px;
    color: var(--theme-black);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.product__categories ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 16px;
    bottom: 0;
    width: 100%;
    background-color: var(--theme-base);
    z-index: -1;
    transform: scale(1, 0);
    perspective: 400px;
    visibility: hidden;
    border-radius: 5px;
    transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
    transform-origin: bottom center;
}

.product__categories ul li:hover a,
.product__categories ul li.active a {
    color: var(--theme-white);
    padding-left: 40px;
}

.product__categories ul li:hover a::before,
.product__categories ul li.active a::before {
    transform: scale(1, 1);
    visibility: visible;
    transform-origin: top center;
}

.product__categories ul li:hover a span,
.product__categories ul li.active a span {
    color: var(--theme-white);
}

.product__categories ul li.active a {
    font-weight: 600;
}

.product__info-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    border-radius: 5px;
    padding: 0 28px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .product__info-top {
        display: block;
        padding: 20px;
    }
}

.product__showing-text {
    margin: 0;
    font-size: 16px;
}

.product__showing-sort {
    margin: 0;
}

.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 160px !important;
    font-family: var(--theme-font, "Rubik", serif);
}

.product__showing-sort .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.product__showing-sort .bootstrap-select .dropdown-menu {
    border: none;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle {
    position: relative;
    height: 53px;
    outline: none !important;
    border-radius: 0;
    border: 0;
    background-color: transparent !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 0;
    color: var(--theme-text) !important;
    font-size: 16px;
    line-height: 53px;
    font-weight: 400;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
}

@media (max-width: 767px) {
    .product__showing-sort .bootstrap-select>.dropdown-toggle {
        padding-left: 0;
    }
}

.product__showing-sort .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10px;
    font-family: "icomoon" !important;
    content: "\e91b";
    font-weight: normal;
    font-size: 24px;
    color: var(--theme-text);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid var(--theme-border-color, #e5e3e0);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 400;
    padding: 8px 25px;
    color: var(--theme-text);
    background-color: var(--theme-gray, #f1fcf9);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.product__showing-sort .bootstrap-select .dropdown-menu>li:hover>a,
.product__showing-sort .bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--theme-base);
    color: var(--theme-white);
    border-color: var(--theme-base);
}

.product__item {
    position: relative;
    transition: all 500ms ease;
}

.product__item__img {
    position: relative;
    overflow: hidden;
    background-color: #eaf8f5;
    border-radius: 30px 30px 0 0;
}

.product__item__img img {
    width: 100%;
    height: auto;
    transition: all 500ms ease;
    transform: scale(1);
}

.product__item__label {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
}

.product__item__label__sale {
    background-color: var(--theme-base);
    color: var(--theme-black);
    font-size: 14px;
    display: block;
    border-radius: 30px;
    padding: 6px 14px;
    line-height: 1;
}

.product__item__btn {
    position: relative;
    width: 100%;
    z-index: 2;
}

.product__item__btn .careold-btn {
    width: 100%;
    font-size: 15px;
    border-radius: 0;
}

.product__item__btn .careold-btn>i {
    border: none;
    border-radius: 0;
    background-color: var(--theme-primary, #abe6d7);
    padding: 12px 20px;
}

.product__item__btn .careold-btn span {
    border-radius: 0;
    background-color: var(--theme-base);
}

.product__item:hover .product__item__img img {
    transform: scale(1.05);
}

.product__item__content-wrap {
    position: relative;
    background-color: var(--theme-white);
    box-shadow: 0px 0px 18px 0px rgba(229, 230, 232, 0.72);
    margin-top: -48px;
    transition: all 500ms ease;
    border-radius: 0 0 30px 30px;
}

.product__item:hover .product__item__content-wrap {
    box-shadow: 0px 0px 25px 0px rgba(229, 230, 232, 0.9);
}

.product__item__content {
    position: relative;
    padding: 31px 22px 26px;
}

.product__item__ratings {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #ed8a19;
    letter-spacing: 2px;
    font-weight: normal;
    position: absolute;
    right: 18px;
    bottom: 33px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .product__item__ratings {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 15px 0 0;
    }
}

.product__item__title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    font-family: var(--theme-font, "Rubik", serif);
    margin: 0;
    margin-bottom: 9px;
}

.product__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.product__item__title a:hover {
    background-size: 100% 1px;
}

.product__item__price {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--theme-black);
    line-height: 1em;
    font-weight: 500;
    gap: 10px;
    margin: 0;
}

.product__item__price__offer {
    color: #abb2b8;
    text-decoration: line-through;
}

.product-one {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .product-one {
        padding: 80px 0;
    }
}

.product-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .product-pagination {
        margin-top: 10px;
        gap: 5px;
    }
}

.product-pagination a,
.product-pagination span {
    width: 45px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    background-color: transparent;
    color: var(--theme-black);
    border-radius: 20px;
    transition: all 500ms ease;
}

.product-pagination a:hover,
.product-pagination a.current,
.product-pagination span:hover,
.product-pagination span.current {
    border-color: var(--theme-base);
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.product-pagination .prev {
    width: auto;
    font-size: 14px;
    text-transform: capitalize;
    padding: 0 16px;
    margin-right: 10px;
    border-radius: 10px;
}

.product-pagination .next {
    width: auto;
    font-size: 14px;
    text-transform: capitalize;
    padding: 0 16px;
    border-radius: 10px;
    margin-left: 10px;
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/

.product-details {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .product-details {
        padding: 80px 0;
    }
}

.product-details__slider {
    position: relative;
}

@media (min-width: 1200px) {
    .product-details__slider {
        margin-right: 35px;
    }
}

.product-details__slider__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-details__slider__image img {
    max-width: 100%;
    height: auto;
}

.product-details__carousel {
    position: relative;
    border-radius: 30px;
    background-color: #eaf8f5;
    text-align: center;
}

.product-details__carousel .prev {
    position: absolute;
    z-index: 2;
    left: 11px;
    bottom: 88px;
    width: 57px;
    height: 57px;
    background-color: var(--theme-white);
    border-radius: 50%;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--theme-black);
}

.product-details__carousel .prev:hover {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.product-details__carousel .next {
    position: absolute;
    right: 11px;
    bottom: 88px;
    width: 57px;
    height: 57px;
    background-color: var(--theme-white);
    border-radius: 50%;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--theme-black);
}

.product-details__carousel .next:hover {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.product-details__carousel-thumb {
    max-width: 266px;
    margin: -45px auto 0;
    position: relative;
}

.product-details__carousel-thumb .item {
    position: relative;
    padding: 0 0 0;
}

.product-details__carousel-thumb__item {
    width: 130px;
    height: 96px;
    background-color: var(--theme-white);
    border: 2px solid #e1e8e6;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    text-align: center;
    position: relative;
    padding: 15px;
}

.product-details__carousel-thumb__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details__content {
    position: relative;
    margin-top: 4px;
}

@media (min-width: 1200px) {
    .product-details__content {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .product-details__content {
        margin: 45px 0 0;
    }
}

.product-details__title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 16px;
}

.product-details__price {
    display: flex;
    align-items: center;
    position: relative;
}

.product-details__price__regular {
    display: block;
    font-size: 28px;
    color: var(--theme-black);
    font-weight: 600;
    margin: 0;
}

.product-details__price__offer {
    display: block;
    font-size: 14px;
    color: rgba(var(--theme-black-rgb, 14, 11, 6), 0.5);
    text-decoration: line-through;
    margin-left: 22px;
}

.product-details__price__off {
    display: block;
    font-size: 14px;
    color: #f42647;
    padding-left: 5px;
}

.product-details__price__stock {
    font-size: 13px;
    line-height: 1;
    display: inline-block;
    color: var(--theme-black);
    background-color: var(--theme-primary, #abe6d7);
    padding: 4px 6px;
    border-radius: 5px;
    margin-left: 6px;
}

.product-details__review {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #efce4a;
    letter-spacing: 3px;
    margin-bottom: 32px;
}

.product-details__review a {
    display: inline-block;
    color: var(--theme-black);
    font-size: 14px;
    letter-spacing: 0;
    margin-left: 4px;
    font-weight: 400;
    transition: all 500ms ease;
}

.product-details__review a:hover {
    color: var(--theme-base);
}

.product-details__excerpt {
    line-height: 30px;
    margin: 0 0 22px;
}

.product-details__feature {
    padding: 0;
    margin: 0 0 22px;
    list-style: none;
}

.product-details__feature li {
    list-style: none;
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    color: var(--theme-black);
    position: relative;
    padding-left: 28px;
}

.product-details__feature__icon {
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--theme-black);
    font-size: 18px;
}

.product-details__qty {
    position: relative;
    display: flex;
    align-items: end;
    gap: 27px;
    margin: 0 0 35px;
}

@media (max-width: 767px) {
    .product-details__qty {
        flex-wrap: wrap;
    }
}

.product-details__quantity {
    position: relative;
}

.product-details__quantity__title {
    margin: 0 0 12px;
    font-family: var(--theme-font, "Rubik", serif);
    font-size: 15px;
    font-weight: 600;
}

.product-details__quantity .quantity-box {
    position: relative;
    width: 115px;
    height: 44px;
    border: 1px solid var(--theme-border-color, #e5e3e0);
}

.product-details__quantity .quantity-box input {
    width: 60px;
    height: 42px;
    border: none;
    outline: none;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    font-family: var(--theme-font, "Rubik", serif);
    color: var(--theme-black);
    padding-left: 21px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    background-color: transparent;
}

.product-details__quantity .quantity-box button {
    width: 24px;
    height: 24px;
    color: var(--theme-black);
    font-size: 20px;
    position: absolute;
    top: 2px;
    right: 9px;
    background-color: transparent;
    border: none;
    border-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: all 500ms ease;
    text-shadow: 0px 0px 1px var(--theme-text);
    padding: 0;
}

.product-details__quantity .quantity-box button.sub {
    bottom: 2px;
    top: auto;
    border-top: 0;
}

.product-details__quantity .quantity-box button:hover {
    color: var(--theme-base);
}

.product-details__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 27px;
    width: 100%;
}

.product-details__buttons .careold-btn>i {
    border: none;
    padding: 10px 35px;
    background-color: var(--theme-base);
}

.product-details__buttons__wishlist {
    height: 44px;
    width: 44px;
    background-color: #f9f7f7;
    color: var(--theme-black);
    border-radius: 50%;
    font-size: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.product-details__buttons__wishlist:hover {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.product-details__info {
    padding: 0;
    margin: 0 0 32px;
    list-style: none;
}

.product-details__info li {
    list-style: none;
    font-size: 15px;
    line-height: 32px;
    font-weight: 500;
    color: var(--theme-black);
    position: relative;
    padding-left: 28px;
}

.product-details__info li span {
    font-weight: 600;
}

.product-details__info li i {
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--theme-black);
    font-size: 18px;
}

.product-details__socials {
    position: relative;
    display: flex;
    align-items: center;
}

.product-details__socials__title {
    margin: 0 14px 0 0;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--theme-font, "Rubik", serif);
    color: var(--theme-black);
}

.product-details__socials a {
    display: inline-block;
    font-size: 16px;
    color: var(--theme-text);
}

.product-details__socials a:hover {
    color: var(--theme-base);
}

.product-details__socials a+a {
    margin-left: 22px;
}

.product-details__tabs {
    position: relative;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    border-radius: 10px;
    margin-top: 95px;
    padding: 0 0 52px;
}

.product-details__tabs__list {
    margin: 0 0 37px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

@media (max-width: 767px) {
    .product-details__tabs__list {
        flex-wrap: wrap;
    }
}

.product-details__tabs__list .tab-btn {
    position: relative;
    background-color: #eaf8f5;
    color: var(--theme-black);
    cursor: pointer;
    border-radius: 0 0 10px 10px;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 9px 42px;
    transition: all 500ms ease;
}

.product-details__tabs__list .tab-btn:hover,
.product-details__tabs__list .tab-btn.active-btn {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.product-details__tabs__description {
    position: relative;
    padding: 0 65px;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}

@media (max-width: 991px) {
    .product-details__tabs__description {
        padding: 0 35px;
    }
}

@media (max-width: 767px) {
    .product-details__tabs__description {
        padding: 0 25px;
    }
}

.product-details__tabs__description__text {
    margin: 0 0 29px;
}

.product-details__tabs__description__text:last-child {
    margin: 0;
}

.product-details__tabs__specfication {
    position: relative;
    padding: 0 70px;
}

@media (max-width: 991px) {
    .product-details__tabs__specfication {
        padding: 0 35px;
    }
}

@media (max-width: 767px) {
    .product-details__tabs__specfication {
        padding: 0 25px;
    }
}

.product-details__tabs__specfication table {
    position: relative;
    width: 100%;
    border: none;
    margin: 0;
}

.product-details__tabs__specfication table th {
    line-height: 36px;
    color: var(--theme-black);
    font-size: 16px;
    font-weight: 600;
    width: 500px;
    margin: 0 0 0;
    padding: 9px 0;
    background: transparent !important;
    border: none;
    border-bottom: 1px dashed var(--theme-border-color, #e5e3e0);
}

@media (max-width: 1199px) {
    .product-details__tabs__specfication table th {
        width: 300px;
    }
}

@media (max-width: 991px) {
    .product-details__tabs__specfication table th {
        width: 200px;
    }
}

@media (max-width: 767px) {
    .product-details__tabs__specfication table th {
        width: auto;
        min-height: 120px;
    }
}

.product-details__tabs__specfication table td {
    color: var(--theme-text);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    background: transparent !important;
    border: none;
    border-bottom: 1px dashed var(--theme-border-color, #e5e3e0);
}

.product-details__tabs__comment {
    position: relative;
    padding: 0 65px;
}

@media (max-width: 991px) {
    .product-details__tabs__comment {
        padding: 0 35px;
    }
}

@media (max-width: 767px) {
    .product-details__tabs__comment {
        padding: 0 25px;
    }
}

.product-details__comment {
    position: relative;
}

.product-details__comment__title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
}

.product-details__comment__list {
    margin: 0;
    margin-top: 40px;
}

.product-details__comment__card {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--theme-border-color, #e5e3e0);
    display: flex;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .product-details__comment__card {
        flex-direction: column;
        gap: 25px;
    }
}

.product-details__comment__card__image {
    margin-right: 27px;
}

.product-details__comment__card__image img {
    border-radius: 50%;
}

.product-details__comment__card__title {
    margin: 5px 0 13px;
    font-size: 20px;
    font-weight: 600;
}

.product-details__comment__card__text {
    margin: 0;
    line-height: 30px;
}

.product-details__comment__card__date {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 8px;
}

.product-details__comment__card__ratings {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #ed8a19;
    letter-spacing: 2px;
    font-weight: normal;
    position: absolute;
    right: 18px;
    top: 15px;
}

@media (max-width: 767px) {
    .product-details__comment__card__ratings {
        right: 0;
    }
}

.product-details__comment__card__content {
    position: relative;
}

.product-details__form {
    position: relative;
    margin: 51px 0 0;
}

.product-details__form .row {
    --bs-gutter-x: 20px;
}

.product-details__form-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
}

.product-details__form-ratings {
    display: flex;
    align-items: center;
    letter-spacing: 6px;
    font-size: 16px;
    color: var(--theme-base);
    margin: 0 0 15px;
}

.product-details__form-ratings__label {
    display: inline-block;
    font-size: 18px;
    letter-spacing: 0;
    color: var(--theme-text);
    margin: 0 17px 0 0;
}

.product-details__form__form {
    margin-top: 0;
}

.product-details__form .form-one .bootstrap-select>.dropdown-toggle:focus,
.product-details__form .form-one input[type=text]:focus,
.product-details__form .form-one input[type=email]:focus,
.product-details__form .form-one textarea:focus {
    font-weight: 400;
    border-color: var(--theme-black);
}

.product-details__form .form-one__group {
    grid-gap: 30px;
}

.product-details__form .form-one .careold-btn>span,
.product-details__form .form-one .careold-btn>i {
    border-radius: 5px;
}

.related-product {
    position: relative;
    padding: 0 0 120px;
}

@media (max-width: 767px) {
    .related-product {
        padding-bottom: 80px;
    }
}

.related-product__title {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 43px;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/

.cart-page {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .cart-page {
        padding: 80px 0;
    }
}

.cart-page .col-lg-8 {
    width: 69.3%;
}

@media (max-width: 991px) {
    .cart-page .col-lg-8 {
        width: 100%;
    }
}

.cart-page .col-lg-4 {
    width: 30.7%;
}

@media (max-width: 991px) {
    .cart-page .col-lg-4 {
        width: 100%;
    }
}

.cart-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 1199px) {
    .cart-page .table-responsive {
        margin-bottom: 50px;
    }
}

.cart-page__table {
    position: relative;
    width: 100%;
    border: none;
    margin: 0 0 31px;
}

@media (max-width: 1199px) {
    .cart-page__table {
        min-width: 802px;
    }
}

.cart-page__table thead tr th {
    color: var(--theme-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    padding: 0 0 4px;
    font-family: var(--theme-heading-font);
    text-transform: capitalize;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--theme-border-color, #e5e3e0) !important;
    box-shadow: none;
}

.cart-page__table thead tr th:last-child {
    text-align: right;
}

.cart-page__table tbody tr td {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-black);
    vertical-align: middle;
    border: none;
    box-shadow: none;
    background-color: transparent;
    border-top: 1px solid var(--theme-border-color, #e5e3e0);
    border-bottom: 1px solid var(--theme-border-color, #e5e3e0);
    padding: 30px 0;
    letter-spacing: 0;
}

.cart-page__table tbody tr td:last-child {
    text-align: right;
}

.cart-page__table__meta {
    display: flex;
    align-items: center;
}

.cart-page__table__meta__remove {
    position: absolute;
    right: -12px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background-color: var(--theme-base);
    color: var(--theme-black);
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-page__table__meta__remove:hover {
    background-color: var(--theme-black);
    color: var(--theme-base);
}

.cart-page__table__meta__img {
    width: 83px;
    height: 93px;
    border-radius: 4px;
    background-color: var(--theme-gray, #f1fcf9);
    margin-right: 26px;
    position: relative;
}

.cart-page__table__meta__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.cart-page__table__meta__title {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    font-weight: 500;
    font-family: var(--theme-font, "Rubik", serif);
    color: var(--theme-black);
}

.cart-page__table__meta__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.cart-page__table__meta__title a:hover {
    background-size: 100% 1px;
}

.cart-page__table .product-details__quantity .quantity-box {
    height: 60px;
    background-color: var(--theme-gray, #f1fcf9);
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 15px;
    border-radius: 5px;
}

.cart-page__table .product-details__quantity .quantity-box input {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.cart-page__table .product-details__quantity .quantity-box button {
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 35px;
    height: 35px;
    background-color: var(--theme-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-black);
}

.cart-page__table .product-details__quantity .quantity-box button:hover {
    background-color: var(--theme-base);
    color: var(--theme-white);
}

.cart-page__coupone-form-title {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--theme-font, "Rubik", serif);
    margin: 0 0 20px;
}

.cart-page__coupone-form {
    position: relative;
    margin: 0 0 26px;
}

.cart-page__coupone-form input[type=text] {
    height: 58px;
    width: 100%;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    background-color: transparent;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 15px;
    color: var(--theme-text);
    font-family: var(--theme-font, "Rubik", serif);
    font-weight: 400;
    border-radius: 5px;
}

.cart-page__coupone-form .careold-btn {
    position: absolute;
    right: 0;
    top: 1px;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.cart-page__coupone-form .careold-btn>i {
    border: none;
    background-color: var(--theme-primary, #abe6d7);
    padding: 14px 43px;
    border-radius: 5px;
}

.cart-page__coupone-form .careold-btn span {
    background-color: var(--theme-base);
    border-radius: 5px;
}

@media (max-width: 767px) {
    .cart-page__coupone-form .careold-btn {
        position: relative;
        margin: 10px 0 0;
    }
}

.cart-page__link {
    color: var(--theme-black);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.1;
    display: inline-block;
    text-transform: capitalize;
    position: relative;
    transition: all 0.5s ease;
}

.cart-page__link::after {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 100%;
    height: 1.1px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: 0 auto;
    background-color: var(--theme-black);
    transition: all 0.5s ease;
}

.cart-page__link:hover {
    color: var(--theme-base);
}

.cart-page__link:hover::after {
    max-width: 70%;
    background-color: var(--theme-base);
}

.cart-page__cart-total {
    position: relative;
    background-color: var(--theme-gray, #f1fcf9);
    margin: 0 0 0;
    padding: 0;
}

@media (min-width: 1200px) {
    .cart-page__cart-total {
        margin-left: 10px;
    }
}

.cart-page__cart-total li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    color: var(--theme-black);
    font-weight: 600;
    padding: 15px 25px;
}

.cart-page__cart-total li:first-child {
    background-color: #fdfaf3;
}

.cart-page__cart-total li+li {
    border-top: 1px solid var(--theme-border-color, #e5e3e0);
}

.cart-page__cart-total__amount {
    position: relative;
}

.cart-page__cart-total__shipping {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    color: var(--theme-text);
}

.cart-page__cart-total__shipping__rate {
    font-size: 16px;
    color: var(--theme-black);
}

.cart-page__cart-total__shipping__link {
    color: var(--theme-base);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1;
    display: inline-block;
    position: relative;
    margin-top: 10px;
    transition: all 0.5s ease;
}

.cart-page__cart-total__shipping__link::after {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 85%;
    height: 1.1px;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: 0 auto;
    background-color: var(--theme-base);
    transition: all 0.5s ease;
}

.cart-page__cart-total__shipping__link:hover {
    color: var(--theme-black);
}

.cart-page__cart-total__shipping__link:hover::after {
    background-color: var(--theme-black);
}

.cart-page__buttons {
    position: relative;
}

.cart-page__buttons .careold-btn {
    width: 100%;
    font-size: 15px;
}

.cart-page__buttons .careold-btn>i {
    padding: 11px 20px;
    width: 100%;
    border: none;
    background-color: var(--theme-base);
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/

.checkout-page {
    position: relative;
    padding: 90px 0;
    /*.container {
  	@media (max-width: 1200px) {
  		max-width: 100%;
  	}
  }*/
}

@media (max-width: 767px) {
    .checkout-page {
        padding: 80px 0;
    }
}

.checkout-page .bs-gutter-x-20 {
    --bs-gutter-x: 20px;
}

.checkout-page__billing-address {
    position: relative;
}

.checkout-page__billing-address__title {
    font-family: var(--theme-font, "Rubik", serif);
    font-size: 20px;
    margin: 0 0 29px;
    font-weight: 600;
    border-bottom: 1px solid var(--theme-border-color, #e5e3e0);
    padding-bottom: 13px;
}

.checkout-page__label-text {
    line-height: 1;
    color: var(--theme-black);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--theme-font, "Rubik", serif);
    cursor: pointer;
    margin-bottom: 17px;
    display: block;
}

.checkout-page__input-box {
    position: relative;
    line-height: 1;
    margin: 0 0 28px;
}

.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel] {
    height: 60px;
    width: 100%;
    border: none;
    background-color: transparent;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 15px;
    color: var(--theme-text);
    font-family: var(--theme-font, "Rubik", serif);
    display: block;
    font-weight: 400;
    border-radius: 4px;
}

.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 100% !important;
    font-family: var(--theme-font, "Rubik", serif);
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle {
    position: relative;
    height: 58px;
    outline: none !important;
    border-radius: 0;
    border: 0;
    background-color: transparent !important;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    margin: 0;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--theme-text) !important;
    font-size: 15px;
    line-height: 56px;
    font-weight: 400;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    font-family: "icomoon" !important;
    content: "\e91b";
    font-weight: normal;
    font-size: 22px;
    color: var(--theme-text);
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid var(--theme-border-color, #e5e3e0);
}

.checkout-page__input-box .bootstrap-select .dropdown-menu {
    border: none;
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li>a {
    font-size: 15px;
    font-weight: 400;
    padding: 15px 20px;
    color: var(--theme-text);
    background-color: var(--theme-gray, #f1fcf9);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li:hover>a,
.checkout-page__input-box .bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--theme-base);
    color: var(--theme-black);
    border-color: var(--theme-base);
}

.checkout-page__input-box textarea {
    font-size: 15px;
    font-weight: 400;
    color: var(--theme-text);
    height: 120px;
    width: 100%;
    background-color: var(--theme-white);
    font-family: var(--theme-font, "Rubik", serif);
    padding: 20px 20px 30px 20px;
    border: none;
    outline: none;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    resize: none;
    border-radius: 18px;
    margin-bottom: 0px;
}

.checkout-page__check-wrapper {
    position: relative;
    margin: 5px 0 30px;
}

.checkout-page__check-box {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.checkout-page__check-box input[type=checkbox] {
    display: none;
}

.checkout-page__check-box label {
    position: relative;
    display: block;
    padding-left: 27px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--theme-black);
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-transform: none;
    cursor: pointer;
}

.checkout-page__check-box label span:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary, #abe6d7);
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-size: 8px;
    font-weight: 900;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.checkout-page__check-box input[type=checkbox]+label span {
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: var(--theme-white);
    border: 1px solid var(--theme-border-color, #e5e3e0);
    vertical-align: middle;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checkout-page__check-box input[type=checkbox]:checked+label span:before {
    opacity: 1;
}

.checkout-page__cost-process {
    padding-left: 43px;
}

@media (max-width: 1200px) {
    .checkout-page__cost-process {
        padding-left: 0;
    }
}

.checkout-page__cost-process-title {
    font-family: var(--theme-font, "Rubik", serif);
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    border-bottom: 1px solid var(--theme-border-color, #e5e3e0);
    margin-bottom: 0;
    padding-bottom: 18px;
}

.checkout-page .cart-process-wrap {
    border: 1px solid var(--theme-black);
    border-radius: 4px;
    padding: 30px 20px 15px 20px;
}

.checkout-page .cart-process-wrap.cart-process-wrap+.cart-process-wrap {
    margin-top: 26px;
}

.checkout-page .cart-page__common {
    padding: 20px 0;
    margin-bottom: 0;
    color: var(--theme-black);
    font-weight: 600;
    font-size: 18px;
    position: relative;
}

.checkout-page .cart-page__common b,
.checkout-page .cart-page__common strong {
    font-weight: 600;
}

.checkout-page .cart-page__common:hover {
    background-color: transparent;
}

.checkout-page .cart-page__common+.cart-page__common {
    border-top: 1px solid var(--theme-border-color, #e5e3e0);
}

.checkout-page .cart-page__flat-rate {
    position: relative;
    font-size: 16px;
    text-align: right;
}

.checkout-page .cart-page__flat-rate span {
    display: block;
}

.checkout-page .cart-page__flat-rate small {
    font-size: 14px;
    color: var(--theme-text);
    display: block;
}

.checkout-page .cart-page__flat-rate a {
    color: var(--theme-base);
    text-decoration: underline;
    font-size: 14px;
    line-height: 1.1;
    display: inline-block;
    position: relative;
    margin-top: 10px;
    transition: all 0.5s ease;
}

.checkout-page .cart-page__flat-rate a:hover {
    color: var(--theme-black);
}

.checkout-page .cart-page__table__meta-img {
    width: 52px;
    min-width: 52px;
    padding: 7px 7px;
    margin-right: 10px;
}

.checkout-page .cart-page__table__meta-img img {
    max-width: 36px;
    max-height: initial;
}

.checkout-page .cart-page__table__meta__title {
    font-size: 14px;
}

.checkout-page .change-address {
    color: var(--theme-primary, #abe6d7);
}

.checkout-page .change-address::after {
    border-bottom-color: var(--theme-primary, #abe6d7);
}

.checkout-page__payment {
    padding-bottom: 54px;
}

.checkout-page__payment .checkout-page__cost-process-title {
    margin-bottom: 40px;
}

.checkout-page__payment__select input[type=checkbox] {
    display: none;
}

.checkout-page__payment__select label {
    position: relative;
    padding-left: 50px;
    cursor: pointer;
    font-family: var(--theme-font, "Rubik", serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--theme-black);
    height: 50px;
    border: 1px solid var(--theme-black);
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: all 0.4s;
}

.checkout-page__payment__select label span:before {
    position: absolute;
    width: auto;
    height: 100%;
    top: 0;
    left: 20px;
    bottom: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    color: var(--theme-white);
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    font-size: 18px;
    font-weight: normal;
    color: var(--theme-text);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.4s ease;
    opacity: 1;
}

.checkout-page__payment__select label:hover {
    border-color: var(--theme-primary, #abe6d7);
}

.checkout-page__payment__select label:hover span:before {
    color: var(--theme-primary, #abe6d7);
}

.checkout-page__payment__select input[type=checkbox]+label span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 100%;
    border: none;
    vertical-align: middle;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checkout-page__payment__select input[type=checkbox]:checked+label {
    border-color: var(--theme-primary, #abe6d7);
    background-color: var(--theme-white);
}

.checkout-page__payment__select input[type=checkbox]:checked+label span:before {
    opacity: 1;
    color: var(--theme-primary, #abe6d7);
}

.checkout-page__payment__select+.checkout-page__payment__select {
    margin-top: 10px;
}

.checkout-page__payment .payment_condition-check {
    padding-top: 33px;
}

.checkout-page__payment .place-oder-btn-wrap {
    padding-top: 24px;
}

.checkout-page__payment .careold-btn {
    width: 100%;
    font-size: 15px;
}

.checkout-page__payment .careold-btn>i {
    padding: 11px 20px;
    width: 100%;
    border: none;
    background-color: var(--theme-base);
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/

.login-page {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .login-page {
        padding: 80px 0;
    }
}

.login-page__info {
    background-color: var(--theme-gray, #f1fcf9);
    padding: 13px 30px 15px;
    margin-bottom: 72px;
}

@media (max-width: 991px) {
    .login-page__info {
        margin-bottom: 20px;
    }
}

.login-page__info p {
    margin: 0;
}

.login-page__info p span {
    color: var(--theme-black);
}

.login-page__info p a {
    display: inline-block;
    color: var(--theme-base);
    transition: all 500ms ease;
}

.login-page__info p a:hover {
    color: var(--theme-black);
    text-shadow: 0 0 1px currentColor;
}

.login-page__wrap {
    position: relative;
}

.login-page__wrap__title {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 34px;
}

@media (max-width: 991px) {
    .login-page__wrap__title {
        margin-top: 50px;
    }
}

.login-page__form {
    position: relative;
    display: block;
    padding: 60px;
    border: 1px solid var(--theme-border-color, #e5e3e0);
}

@media (min-width: 991px) and (max-width: 1199px) {
    .login-page__form {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .login-page__form {
        padding: 30px 22px;
    }
}

.login-page__form-input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.login-page__form-input-box input[type=email],
.login-page__form-input-box input[type=password] {
    height: 60px;
    width: 100%;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    background-color: transparent;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 15px;
    color: var(--theme-text);
    display: block;
    font-weight: 400;
}

.login-page__checked-box {
    position: relative;
    display: block;
    margin-top: -8px;
    margin-bottom: 15px;
}

.login-page__checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--theme-black);
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    text-transform: none;
    cursor: pointer;
}

.login-page__checked-box label span:before {
    position: absolute;
    top: 2px;
    left: 3px;
    display: block;
    border-bottom: 2px solid var(--theme-primary, #abe6d7);
    border-right: 2px solid var(--theme-primary, #abe6d7);
    content: "";
    width: 5px;
    height: 8px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.login-page__checked-box input[type=checkbox] {
    display: none;
}

.login-page__checked-box input[type=checkbox]+label span {
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background: transparent;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 1px solid var(--theme-border-color, #e5e3e0);
}

.login-page__checked-box input[type=checkbox]:checked+label span:before {
    opacity: 1;
}

.login-page__form-btn-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.login-page__form-btn-box .careold-btn {
    padding: 0;
}

.login-page__form-btn-box .careold-btn>i {
    padding: 11px 40px;
    width: 100%;
    border: none;
    background-color: var(--theme-base);
}

.login-page__form-forgot-password {
    position: relative;
    display: block;
    margin-left: 0px;
    flex: 0 0 100%;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .login-page__form-forgot-password {
        margin-left: 20px;
        flex: 0 0 auto;
        margin-top: 0;
    }
}

.login-page__form-forgot-password a {
    font-size: 15px;
    font-weight: 500;
    color: var(--theme-black);
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.login-page__form-forgot-password a:hover {
    background-size: 100% 1px;
}

.login-page__form-forgot-password a:hover {
    color: var(--theme-base);
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/

.error-404 {
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .error-404 {
        padding: 80px 0;
    }
}

.error-404::after {
    position: absolute;
    right: -180px;
    bottom: -425px;
    width: 960px;
    height: 960px;
    content: "";
    border-radius: 50%;
    background-color: #edfcf8;
    z-index: -1;
    animation: zoomsIn 2s infinite alternate;
}

@media (max-width: 1199px) {
    .error-404::after {
        display: none;
    }
}

.error-404__image {
    position: relative;
    margin-bottom: 50px;
}

.error-404__image img {
    max-width: 100%;
    height: auto;
    animation: flowerRotate 5s linear 0s infinite;
}

.error-404__title {
    font-size: 34px;
    text-transform: capitalize;
    color: var(--theme-black);
    margin: 0 0 0;
    font-weight: 600;
}

.error-404__text {
    font-size: 20px;
    font-weight: 500;
    color: var(--theme-black);
    margin: 0 0 35px;
}

.error-404__search {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    max-width: 520px;
}

.error-404__search input[type=text] {
    border: 1px solid var(--theme-border-color, #e5e3e0);
    border-radius: 3px;
    outline: none;
    display: block;
    background-color: var(--theme-white);
    color: var(--theme-text);
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    padding-left: 30px;
    height: 60px;
}

.error-404__search__btn {
    width: 48px;
    height: 48px;
    background-color: var(--theme-gray, #f1fcf9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--theme-black);
    border: none;
    outline: none;
    transition: all 500ms ease;
}

.error-404__search__btn:hover {
    background-color: var(--theme-primary, #abe6d7);
}

.error-404 .careold-btn>i {
    background-color: var(--theme-primary, #abe6d7);
    padding: 13px 50px;
    border: none;
}

.error-404 .careold-btn>span {
    background-color: var(--theme-base);
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/

.faq-page {
    position: relative;
    z-index: 2;
    padding: 90px 0;
}

@media (max-width: 991px) {
    .faq-page {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .faq-page {
        padding: 40px 0;
    }
}

.faq-page__bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: -1;
}

@media (max-width: 991px) {
    .faq-page__bg {
        background-size: cover;
    }
}

.faq-page__title {
    font-size: 43px;
    line-height: 50px;
    margin: 0 0 27px;
}

.faq-page__text {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}

.faq-page__btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .faq-page__btn {
        justify-content: center;
        align-items: flex-start;
        margin-top: 40px;
    }
}


.faq-page__sub-title {
    font-size: 28px;
    font-weight: 600;
    margin: 48px 0 35px;
    padding-top: 43px;
    border-top: 1px solid var(--theme-border-color, #e5e3e0);
}

.faq-page__accordion {
    position: relative;
}
.faq-page__accordion .accrodion {
    position: relative;
    background-color: var(--theme-white);
    border: 1px solid var(--theme-border-color, #e5e3e0);
    border-radius: 6px;
    margin-top: 20px;
    transition: all 500ms ease;
}

.faq-page__accordion .accrodion-title {
    padding: 16px 30px;
    padding-right: 70px;
    cursor: pointer;
    transition: all 500ms ease;
}

.faq-page__accordion .accrodion-title h4 {
    text-transform: capitalize;
    font-weight: 600;
    color: var(--theme-black);
    font-size: 22px;
    margin: 0;
    transition: all 500ms ease;
    position: relative;
}

.faq-page__accordion .accrodion-title__icon {
    width: 33px;
    height: 33px;
    background-color: var(--theme-base);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.faq-page__accordion .accrodion-title__icon::after,
.faq-page__accordion .accrodion-title__icon::before {
    width: 2px;
    height: 14px;
    position: absolute;
    background-color: var(--theme-black);
    top: 50%;
    left: 50%;
    content: "";
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
    z-index: 2;
}

.faq-page__accordion .accrodion-title__icon::after {
    width: 14px;
    height: 2px;
}

.faq-page__accordion .active {
    border-color: var(--theme-black);
}

.faq-page__accordion .active .accrodion-title__icon {
    background-color: var(--theme-base);
}

.faq-page__accordion .active .accrodion-title__icon::after,
.faq-page__accordion .active .accrodion-title__icon::before {
    background-color: var(--theme-black);
    opacity: 0;
}

.faq-page__accordion .active .accrodion-title__icon::after {
    opacity: 1;
}

.faq-page__accordion .accrodion-content .inner {
    padding: 14px 30px 40px;
}

@media (min-width: 1200px) {
    .faq-page__accordion .accrodion-content .inner {
        padding-right: 100px;
    }
}

.faq-page__accordion .accrodion-content p {
    margin: 0;
    line-height: 30px;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/

.package-card {
    background-color: #0e1a17;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 30px 30px;
    transition: all 500ms ease;
}

.package-card__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.package-card__price {
    width: 78px;
    height: 78px;
    background-color: var(--theme-base);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-black);
    font-weight: 600;
    font-family: var(--theme-heading-font);
    font-size: 35px;
    position: relative;
    line-height: 1;
    margin: 0 auto;
}

.package-card__price::after {
    position: absolute;
    left: -9px;
    top: -9px;
    content: "";
    width: calc(100% + 18px);
    height: calc(100% + 18px);
    border: 1px solid var(--theme-white);
    border-radius: 50%;
    transition: all 500ms ease;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card:hover .package-card__price::after {
    animation: textRotate 15s linear 0s forwards infinite alternate;
    border-style: dashed;
}

.package-card__title {
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
    color: var(--theme-white);
    font-size: 24px;
    margin-top: 26px;
    margin-bottom: 6px;
}

.package-card__period {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    display: inline-block;
    background-color: #1c2f2a;
    color: #abe6d7;
    padding: 0 21px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.package-card__border {
    width: 174px;
    background-color: #192c27;
    height: 1px;
    margin: 0 auto;
}

.package-card__list {
    margin: 26px 0 37px;
    padding: 0;
    list-style: none;
}

.package-card__list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 16px;
    line-height: 32px;
}

.package-card__list li i {
    color: var(--theme-base);
    font-size: 12px;
}

.package-card .careold-btn>i {
    background-color: var(--theme-primary, #abe6d7);
    padding: 7px 31px;
    border: none;
}

.package-card .careold-btn>span {
    background-color: var(--theme-base);
}

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

@media (max-width: 767px) {
    .package-page {
        padding: 80px 0;
    }
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }
    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }
    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }
    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes cloudMove {
    0% {
        background-position: 1920px 100%;
    }
    100% {
        background-position: 0 100%;
    }
}

@keyframes startIconOne {
    0% {
        transform: scale(1) rotate(0);
    }
    100% {
        transform: scale(0.5) rotate(45deg);
    }
}

@keyframes iconTranslateX {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    51% {
        opacity: 1;
    }
}

@-webkit-keyframes widths {
    0% {
        width: 0%;
    }
    50% {
        width: 97%;
        left: 0;
    }
    100% {
        width: 0;
    }
}

@keyframes widths {
    0% {
        width: 0%;
    }
    50% {
        width: 97%;
        left: 0;
    }
    100% {
        width: 0;
    }
}

@keyframes shapeMover {
    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }
    50% {
        transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes banner3Shake {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
    30% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    60% {
        -webkit-transform: rotate3d(1, 0, 0, 0deg);
        transform: rotate3d(1, 0, 0, 0deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes squareMover {
    0%,
    100% {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0);
    }
    20%,
    60% {
        -webkit-transform: translate(20px, 40px) rotate(180deg);
        transform: translate(20px, 40px) rotate(180deg);
    }
    30%,
    80% {
        -webkit-transform: translate(40px, 60px) rotate(0deg);
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes treeMove {
    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }
    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}

@keyframes treeMove2 {
    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
    25%,
    75% {
        -webkit-transform: rotate(-10deg) translateX(0);
        transform: rotate(-10deg) translateX(0);
    }
    50% {
        -webkit-transform: rotate(10deg) translateX(0);
        transform: rotate(10deg) translateX(0);
    }
}

@keyframes treeMove3 {
    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
    25%,
    75% {
        -webkit-transform: rotate(-10deg) translateX(0);
        transform: rotate(-3deg) translateX(0);
    }
    50% {
        -webkit-transform: rotate(3deg) translateX(0);
        transform: rotate(3deg) translateX(0);
    }
}

@keyframes leafMove {
    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
    25%,
    75% {
        transform: rotate(-2deg) translateX(5px);
    }
    50% {
        transform: rotate(-4deg) translateX(10px);
    }
}

@keyframes messageMove {
    0%,
    100% {
        transform: translateX(0);
    }
    25%,
    75% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(10px);
    }
}

@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes flowerRotate {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25%,
    75% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

@keyframes zump {
    0%,
    100% {
        transform: translateY(0);
    }
    25%,
    75% {
        transform: translateY(5px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes videoZoom {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 3px;
    }
    40% {
        opacity: 1;
        border-width: 2px;
    }
    65% {
        border-width: 1px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes zumpX {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-30px);
    }
}

@keyframes zumpY {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-30px);
    }
}

@keyframes zumpXtwo {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(30px);
    }
}

@keyframes zoom-hover {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 120%;
        height: 120%;
        opacity: 0;
    }
}

@keyframes zoomsIn {
    100%,
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
}

@keyframes shrinkAnim {
    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 0 50%;
    }
    10% {
        transform: rotate(2deg);
    }
    20%,
    40%,
    60% {
        transform: rotate(-4deg);
    }
    30%,
    50%,
    70% {
        transform: rotate(4deg);
    }
    80% {
        transform: rotate(-2deg);
    }
    90% {
        transform: rotate(2deg);
    }
}

@keyframes shrinkAnim2 {
    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 100% 50%;
    }
    10% {
        transform: rotate(2deg);
    }
    20%,
    40%,
    60% {
        transform: rotate(-4deg);
    }
    30%,
    50%,
    70% {
        transform: rotate(4deg);
    }
    80% {
        transform: rotate(-2deg);
    }
    90% {
        transform: rotate(2deg);
    }
}

@keyframes rollInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes vibrant {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes blinkAnim {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}

@keyframes movebounce2 {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-15px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes movebounce3 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes shapeMove {
    0%,
    100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(10px);
    }
}

@keyframes rotated {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(0.7);
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(0.7);
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.animate__backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp;
}

@keyframes iconTranslateY {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes zumpXtwo {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(5px);
    }
}

@keyframes animateTop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes animateRight {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes animateBottom {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes animateLeft {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--theme-white-rgb, 255, 255, 255), 0.2), 0 0 0 30px rgba(var(--theme-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--theme-white-rgb, 255, 255, 255), 0.2);
    }
    100% {
        box-shadow: 0 0 0 30px rgba(var(--theme-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--theme-white-rgb, 255, 255, 255), 0.2), 0 0 0 70px rgba(var(--theme-white-rgb, 255, 255, 255), 0);
    }
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@keyframes wobble-horizontal-on-hover {
    16.65% {
        transform: translateX(8px);
    }
    33.3% {
        transform: translateX(-6px);
    }
    49.95% {
        transform: translateX(4px);
    }
    66.6% {
        transform: translateX(-2px);
    }
    83.25% {
        transform: translateX(1px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes float-bob-y-2 {
    0% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
        transform: translateY(10px) translateX(10px) rotate(5deg);
    }
    100% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

@keyframes animateTop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes animateRight {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes animateBottom {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes animateLeft {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes iconsZoom {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.75, 1.75);
    }
}

@keyframes wobbleTop {
    16.65% {
        transform: skew(-12deg);
    }
    33.3% {
        transform: skew(10deg);
    }
    49.95% {
        transform: skew(-6deg);
    }
    66.6% {
        transform: skew(4deg);
    }
    83.25% {
        transform: skew(-2deg);
    }
    100% {
        transform: skew(0);
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/

.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(-100%);
    transform-origin: left center;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    visibility: hidden;
    position: fixed;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
    flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase {
    margin-bottom: -1px;
    margin-top: 0;
    border-bottom: 1px solid RGBA(var(--theme-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__wrapper .home-showcase__inner {
    padding: 15px 0px;
    background-color: transparent;
    box-shadow: none;
}

.mobile-nav__wrapper .home-showcase__title {
    color: var(--theme-white);
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-black);
    opacity: 0.3;
    cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--theme-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

.mobile-nav__content .main-menu__nav {
    display: block;
    padding: 0;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--theme-white);
    cursor: pointer;
}

.mobile-nav__close:hover {
    color: var(--theme-base);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid RGBA(var(--theme-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li>a {
    padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid RGBA(var(--theme-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li>a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: var(--theme-white);
    font-size: 12px;
    font-family: var(--theme-font, "Rubik", serif);
    text-transform: uppercase;
    font-weight: 500;
    height: 46px;
    letter-spacing: var(--theme-letter-space, 0.1em);
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--theme-base);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--theme-base);
    border: none;
    outline: none;
    color: var(--theme-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: var(--theme-white);
    color: var(--theme-black);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--theme-white);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 20px;
}

.mobile-nav__social a:hover {
    color: var(--theme-base);
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--theme-white);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: inherit;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--theme-base);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--theme-base);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    margin-right: 10px;
    color: var(--theme-white);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
    display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/

.search-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    -webkit-transition: all 1s ease;
    -khtml-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.search-popup__overlay {
    position: fixed;
    width: 224vw;
    height: 224vw;
    top: calc(90px - 112vw);
    right: calc(50% - 112vw);
    z-index: 3;
    display: block;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: transform 0.8s ease-in-out;
    -khtml-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    -ms-transition: transform 0.8s ease-in-out;
    -o-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition-delay: 0s;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    background-color: #000;
    opacity: 0.9;
    cursor: url(../images/close.png), auto;
}

@media (max-width: 767px) {
    .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(-110%);
    }
}

.search-popup__content {
    position: fixed;
    width: 0;
    max-width: 560px;
    padding: 30px 15px;
    left: 50%;
    top: 50%;
    opacity: 0;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition-delay: 0s, 0.8s, 0s;
    transition-delay: 0s, 0.4s, 0s;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}

.search-popup__form {
    position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
    width: 100%;
    background-color: var(--theme-white);
    font-size: 15px;
    color: var(--theme-text);
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__form .careold-btn {
    padding: 0;
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
}

.search-popup__form .careold-btn i {
    margin: 0;
}

.search-popup__form .careold-btn::after {
    background-color: var(--theme-black);
}

.search-popup.active {
    z-index: 9999;
}

.search-popup.active .search-popup__overlay {
    top: auto;
    bottom: calc(90px - 112vw);
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    opacity: 0.9;
    -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
    .search-popup.active .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(0%);
    }
}

.search-popup.active .search-popup__content {
    width: 100%;
    opacity: 1;
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
    background-color: var(--theme-black);
    position: relative;
    padding-top: 100px;
    padding-bottom: 90px;
}

@media (max-width: 767px) {
    .page-header {
        padding-top: 120px;
        padding-bottom: 40px;
    }
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header__bg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #3c4946;
    mix-blend-mode: overlay;
}

.page-header__shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/shapes/page-header-shape.png);
}

.page-header .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header__title {
    margin: 0 0 10px;
    font-size: 40px;
    color: var(--theme-black);
    font-weight: 600;
}

@media (min-width: 768px) {
    .page-header__title {
        font-size: 50px;
    }
}

.page-header--details {
    position: relative;
}

.page-header--details .careold-breadcrumb li span {
    color: var(--theme-white);
}

.careold-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.careold-breadcrumb li {
    font-size: 16px;
    color: var(--theme-black);
    text-transform: capitalize;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--theme-black);
}

.careold-breadcrumb li:not(:last-of-type)::after {
    content: "/";
    position: relative;
    top: 0;
    margin-left: 7px;
    margin-right: 7px;
}

.careold-breadcrumb li span {
    color: inherit;
    display: inline-flex;
}

.careold-breadcrumb li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.careold-breadcrumb li a:hover {
    background-size: 100% 1px;
}

.careold-breadcrumb li a:hover {
    color: var(--theme-base);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/

.google-map {
    position: relative;
}

.google-map iframe {
    position: relative;
    display: block;
    border: none;
    height: 440px;
    width: 100%;
}

.google-map__contact {
    overflow: hidden;
}

.contact-map {
    position: relative;
    padding-bottom: 120px;
}

@media (max-width: 767px) {
    .contact-map {
        padding-bottom: 80px;
    }
}

.contact-map .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 1654px;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/

.client-carousel {
    position: relative;
    padding: 120px 0 0;
}

@media (max-width: 767px) {
    .client-carousel {
        padding-top: 80px;
    }
}

.client-carousel__one {
    position: relative;
    border-top: 1px solid #d8e4e1;
    border-bottom: 1px solid #d8e4e1;
    padding: 51px 0;
}

.client-carousel__one__item {
    position: relative;
    padding-top: 10px;
}

.client-carousel__one__item::after {
    position: absolute;
    right: -30px;
    top: 0;
    width: 1px;
    height: 84px;
    content: "";
    background-color: #d8e4e1;
}

@media (max-width: 1199px) {
    .client-carousel__one__item::after {
        display: none;
    }
}

.client-carousel__one__item img {
    opacity: 0.6;
    transition: all 300ms ease;
    max-width: 100%;
    width: auto !important;
    cursor: pointer;
}

@media (max-width: 575px) {
    .client-carousel__one__item img {
        margin: 0 auto;
    }
}

.client-carousel__one__item:hover img {
    opacity: 1;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/

.main-slider-one {
    position: relative;
}

.main-slider-one__carousel {
    position: relative;
    width: 100%;
}

.main-slider-one__carousel.owl-carousel .owl-nav {
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 55%;
    transform: translateY(-50%);
    width: calc(100% - 80px);
}

@media (max-width: 1199px) {
    .main-slider-one__carousel.owl-carousel .owl-nav {
        width: calc(100% - 40px);
    }
}

@media (max-width: 767px) {
    .main-slider-one__carousel.owl-carousel .owl-nav {
        top: auto;
        bottom: 30px;
        transform: none;
    }
}

.main-slider-one__carousel.owl-carousel .owl-nav button {
    transition: all 400ms ease;
    width: 70px;
    height: 70px;
    outline: none;
    box-shadow: none;
    border: none;
    background-color: var(--theme-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-white);
    font-size: 22px;
    margin: 0 0;
    text-align: center;
}

.main-slider-one__carousel.owl-carousel .owl-nav button:hover {
    background-color: var(--theme-white);
    color: var(--theme-black);
}

.main-slider-one__item {
    background-color: var(--theme-black);
    position: relative;
    z-index: 3;
    padding-top: 255px;
    padding-bottom: 195px;
}

@media (max-width: 1199px) {
    .main-slider-one__item {
        padding-top: 180px;
        padding-bottom: 150px;
    }
}

.main-slider-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    transform: scale(1);
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
    overflow: hidden;
}

.main-slider-one__bg::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #3c4946;
    mix-blend-mode: overlay;
}

.main-slider-one__shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 650px;
    height: 388px;
    mix-blend-mode: overlay;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transition-delay: 0s, 0s;
    transform: translateY(500px);
    opacity: 0;
    filter: blur(10px);
}

.main-slider-one__shape img {
    max-width: 100%;
    animation: shapeMove 3s linear 0s infinite;
}

@media (max-width: 1450px) {
    .main-slider-one__shape {
        width: 550px;
        height: auto;
    }
}

@media (max-width: 1350px) {
    .main-slider-one__shape {
        display: none;
    }
}

.main-slider-one__shape-two {
    position: absolute;
    left: 0;
    top: 0;
    width: 390px;
    height: 390px;
    mix-blend-mode: hard-light;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transition-delay: 0s, 0s;
    transform: translateX(-500px);
    opacity: 0;
    filter: blur(10px);
}

.main-slider-one__shape-two img {
    max-width: 100%;
}

@media (max-width: 767px) {
    .main-slider-one__shape-two {
        display: none;
    }
}

.main-slider-one__content {
    position: relative;
    display: inline-block;
    z-index: 3;
    overflow: hidden;
}

.main-slider-one__sub-title {
    color: var(--theme-white);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--theme-font, "Rubik", serif);
    line-height: 1;
    margin: 0 0 28px;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(-400px);
}

.main-slider-one__title {
    color: var(--theme-white);
    font-size: 90px;
    line-height: 92px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    overflow: hidden;
    margin: 0 0 17px;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(400px);
}

@media (max-width: 1199px) {
    .main-slider-one__title {
        font-size: 85px;
        line-height: 90px;
    }
}

@media (max-width: 991px) {
    .main-slider-one__title {
        font-size: 60px;
        line-height: 65px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__title {
        font-size: 40px;
        line-height: 45px;
    }
}

.main-slider-one__title::after {
    content: "";
    width: 101%;
    height: 100%;
    position: absolute;
    top: 2px;
    left: 100%;
    background: currentColor;
    transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
    z-index: 3;
    transform: translateX(-100%);
    transition-delay: 1s;
}

.main-slider-one__btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(200px);
    transform-origin: bottom;
    transition: all 1500ms ease;
}

.main-slider-one__btn .careold-btn {
    font-size: 18px;
}

.main-slider-one__btn .careold-btn>i {
    background-color: var(--theme-base);
    border-color: var(--theme-base);
    padding: 9px 25px;
}

.main-slider-one:hover .careold-btn {
    animation-name: wobbleTop;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

.main-slider-one .active .main-slider-one__bg {
    transform: scale(1.1);
}

.main-slider-one .active .main-slider-one__sub-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}

.main-slider-one .active .main-slider-one__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms;
}

.main-slider-one .active .main-slider-one__title::after {
    transform: translateX(1%);
    transition-delay: 1500ms;
}

.main-slider-one .active .main-slider-one__btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms;
}

.main-slider-one .active .main-slider-one__shape {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1900ms;
    filter: blur(0px);
}

.main-slider-one .active .main-slider-one__shape-two {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 2000ms;
    filter: blur(0px);
}

.hero-banner-one {
    position: relative;
    background-color: var(--theme-white);
    padding: 104px 0 0;
}

.hero-banner-one__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 715px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner-one__shape-one {
    position: absolute;
    left: 7%;
    top: 23%;
    width: 78px;
    height: 78px;
}

@media (max-width: 1400px) {
    .hero-banner-one__shape-one {
        display: none;
    }
}

.hero-banner-one__shape-one img {
    animation: startIconOne 1.8s infinite alternate;
}

.hero-banner-one__shape-two {
    position: absolute;
    right: 5%;
    top: 18%;
    width: 45px;
    height: 47px;
}

@media (max-width: 1400px) {
    .hero-banner-one__shape-two {
        display: none;
    }
}

.hero-banner-one__shape-two img {
    animation: startIconOne 1.8s infinite alternate;
}

.hero-banner-one__shape-three {
    position: absolute;
    left: 7%;
    bottom: 0;
    width: 100px;
    height: 100px;
}

@media (max-width: 1400px) {
    .hero-banner-one__shape-three {
        display: none;
    }
}

.hero-banner-one__shape-three img {
    animation: startIconOne 1.8s infinite alternate;
}

.hero-banner-one__shape-four {
    position: absolute;
    right: -10px;
    bottom: 0;
}

@media (max-width: 1700px) {
    .hero-banner-one__shape-four {
        display: none;
    }
}

.hero-banner-one__shape-four img {
    max-width: 100%;
    animation: leafMove 2s infinite alternate;
}

.hero-banner-one__content {
    position: relative;
}

.hero-banner-one__content__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 47px;
}

@media (max-width: 991px) {
    .hero-banner-one__content__top {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
}

.hero-banner-one__content__bottom {
    position: relative;
    margin-top: -10px;
}

@media (min-width: 1440px) {
    .hero-banner-one__content__bottom {
        margin-right: -130px;
        margin-left: 45px;
    }
}

.hero-banner-one__title {
    font-size: 90px;
    line-height: 92px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 1199px) {
    .hero-banner-one__title {
        font-size: 67px;
        line-height: 80px;
    }
}

.hero-banner-one__video {
    width: 228px;
    height: 228px;
    background-color: transparent;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    display: inline-block;
    border-radius: 50%;
    padding: 20px;
    z-index: 2;
    position: relative;
}

.hero-banner-one__video__inner {
    width: 100%;
    height: 100%;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 50%;
}

.hero-banner-one__video .curved-circle {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 150px !important;
    height: 150px !important;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.hero-banner-one__video .curved-circle--item {
    width: 150px !important;
    height: 150px !important;
}

.hero-banner-one__video .curved-circle--item span {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-black);
    letter-spacing: 0.8px;
}

.hero-banner-one__video .video-popup {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    background-color: var(--theme-base);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-black);
    border-radius: 50%;
}

.hero-banner-one__video .video-popup:hover {
    background-color: var(--theme-black);
    color: var(--theme-white);
}

.hero-banner-one__image {
    position: relative;
}

.hero-banner-one__image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero-banner-one__text {
    font-size: 24px;
    line-height: 36px;
    margin: 0 0 57px;
}

@media (max-width: 1199px) {
    .hero-banner-one__text {
        margin-bottom: 35px;
    }
}

@media (max-width: 991px) {
    .hero-banner-one__text {
        margin: 40px 0 35px;
    }
}

.hero-banner-one .careold-btn {
    font-size: 18px;
}

.hero-banner-one .careold-btn>i {
    background-color: var(--theme-base);
    border: none;
    padding: 11px 27px;
}

.hero-banner-one__author {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: -20px;
    margin-top: 144px;
}

@media (max-width: 1400px) {
    .hero-banner-one__author {
        margin-top: 115px;
    }
}

@media (max-width: 1199px) {
    .hero-banner-one__author {
        margin-top: 55px;
    }
}

.hero-banner-one__author__left {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-banner-one__author__item {
    width: 85px;
    height: 85px;
    border: 3px solid var(--theme-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
}

.hero-banner-one__author__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-banner-one__author__item--plus {
    position: absolute;
    right: -19px;
    top: 0;
    width: 46px;
    height: 46px;
    background-color: var(--theme-primary, #abe6d7);
    border: 3px solid var(--theme-white);
    border-radius: 50%;
    font-size: 15px;
    color: var(--theme-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-one__author__item+.hero-banner-one__author__item {
    margin-left: -15px;
}

.hero-banner-one__author__review {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 48px;
}

.hero-banner-one__author__review::after {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 125px;
    height: 125px;
    background-color: #fff5e1;
    z-index: -1;
    content: "";
    border-radius: 50%;
}

.hero-banner-one__author__review__count {
    margin: 0 0 6px;
    line-height: 1;
    font-size: 43px;
    font-weight: 600;
}

.hero-banner-one__author__review__text {
    margin: 0;
    line-height: 1;
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-black);
}

.hero-banner-two {
    position: relative;
    overflow: hidden;
    background-color: var(--theme-white);
    padding: 120px 0 0;
}

@media (max-width: 767px) {
    .hero-banner-two {
        padding: 80px 0 0;
    }
}

.hero-banner-two__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner-two__shape-one {
    position: absolute;
    left: 11%;
    top: 14%;
    width: 45px;
    height: 47px;
}

@media (max-width: 1700px) {
    .hero-banner-two__shape-one {
        left: 6%;
    }
}

@media (max-width: 1400px) {
    .hero-banner-two__shape-one {
        display: none;
    }
}

.hero-banner-two__shape-one img {
    animation: startIconOne 1.8s infinite alternate;
}

.hero-banner-two__shape-two {
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 78px;
    height: 78px;
}

@media (max-width: 1400px) {
    .hero-banner-two__shape-two {
        display: none;
    }
}

.hero-banner-two__shape-two img {
    animation: startIconOne 1.8s infinite alternate;
}

.hero-banner-two__shape-three {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 12%;
    width: 43px;
    height: 43px;
}

@media (max-width: 1400px) {
    .hero-banner-two__shape-three {
        display: none;
    }
}

.hero-banner-two__shape-three img {
    animation: startIconOne 1.8s infinite alternate;
}

.hero-banner-two__shape-four {
    position: absolute;
    right: 5%;
    top: 12%;
    width: 44px;
    height: 43px;
}

@media (max-width: 1400px) {
    .hero-banner-two__shape-four {
        display: none;
    }
}

.hero-banner-two__shape-four img {
    max-width: 100%;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.hero-banner-two__content {
    position: relative;
}

.hero-banner-two__title {
    font-size: 90px;
    position: relative;
    line-height: 92px;
    font-weight: 600;
    display: inline-block;
    margin: 0 0 48px;
}

.hero-banner-two__title img {
    position: absolute;
    right: 35px;
    top: 50px;
    width: 61px;
    height: 61px;
    animation: leafMove 2s infinite alternate;
}

@media (max-width: 991px) {
    .hero-banner-two__title img {
        display: none;
    }
}

@media (max-width: 1199px) {
    .hero-banner-two__title {
        font-size: 67px;
        line-height: 80px;
    }
}

@media (max-width: 767px) {
    .hero-banner-two__title {
        font-size: 45px;
        line-height: 52px;
        margin-bottom: 30px;
    }
}

.hero-banner-two__text {
    font-size: 24px;
    line-height: 36px;
    margin: 0 0 53px;
}

@media (max-width: 1199px) {
    .hero-banner-two__text {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .hero-banner-two__text {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 30px;
    }
}

.hero-banner-two .careold-btn {
    font-size: 18px;
}

.hero-banner-two .careold-btn>i {
    background-color: var(--theme-base);
    border: none;
    padding: 11px 27px;
}

.hero-banner-two__review-author-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 30px 0 0;
}

@media (max-width: 767px) {
    .hero-banner-two__review-author-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero-banner-two__review {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    background-color: #e9f5f2;
    border-radius: 5px;
    gap: 11px;
    padding: 18px 21px;
}

.hero-banner-two__review__count {
    margin: 0;
    line-height: 1;
    font-size: 43px;
    font-weight: 600;
    font-family: var(--theme-font);
}

.hero-banner-two__review img {
    height: 24px;
}

.hero-banner-two__review__text {
    margin: 0;
    line-height: 1;
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-black);
}

.hero-banner-two__author {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-banner-two__author__item {
    width: 85px;
    height: 85px;
    border: 3px solid var(--theme-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
}

.hero-banner-two__author__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-banner-two__author__item--plus {
    position: absolute;
    right: -19px;
    top: 0;
    width: 46px;
    height: 46px;
    background-color: var(--theme-primary, #abe6d7);
    border: 3px solid var(--theme-white);
    border-radius: 50%;
    font-size: 15px;
    color: var(--theme-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-two__author__item+.hero-banner-two__author__item {
    margin-left: -15px;
}

.hero-banner-two__image {
    position: relative;
    z-index: 2;
    display: inline-block;
}

@media (min-width: 1440px) {
    .hero-banner-two__image {
        margin-left: 95px;
    }
}

@media (max-width: 1199px) {
    .hero-banner-two__image {
        margin-top: 70px;
    }
}

@media (max-width: 767px) {
    .hero-banner-two__image {
        margin: 120px 0 0;
    }
}

.hero-banner-two__image::after {
    position: absolute;
    left: 0;
    top: -26px;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 300px 300px 0 0;
    border: 3px solid var(--theme-base);
    z-index: -1;
    animation: movebounce3 4s linear infinite;
}

@media (max-width: 767px) {
    .hero-banner-two__image::after {
        display: none;
    }
}

.hero-banner-two__image::before {
    position: absolute;
    left: 27px;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 300px 300px 0 0;
    border: 1px solid var(--theme-white);
    animation: shapeMove 3s linear 0s infinite;
}

@media (max-width: 767px) {
    .hero-banner-two__image::before {
        display: none;
    }
}

.hero-banner-two__image img {
    max-width: none;
    height: auto;
    border-radius: 300px 300px 0 0;
}

@media (max-width: 767px) {
    .hero-banner-two__image img {
        max-width: 100%;
    }
}

.hero-banner-two__image__shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 109px;
    height: 167px;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner-two__video {
    width: 228px;
    height: 228px;
    background-color: transparent;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    display: inline-block;
    border-radius: 50%;
    padding: 20px;
    z-index: 2;
    position: absolute;
    left: -70px;
    top: 20px;
}

@media (max-width: 1439px) {
    .hero-banner-two__video {
        left: -30px;
    }
}

@media (max-width: 767px) {
    .hero-banner-two__video {
        left: 0;
        top: -90px;
    }
}

.hero-banner-two__video__inner {
    width: 100%;
    height: 100%;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 50%;
}

.hero-banner-two__video .curved-circle {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 150px !important;
    height: 150px !important;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.hero-banner-two__video .curved-circle--item {
    width: 150px !important;
    height: 150px !important;
}

.hero-banner-two__video .curved-circle--item span {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-black);
    letter-spacing: 0.8px;
}

.hero-banner-two__video .video-popup {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    background-color: var(--theme-base);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-black);
    border-radius: 50%;
}

.hero-banner-two__video .video-popup:hover {
    background-color: var(--theme-black);
    color: var(--theme-white);
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/

.feature-one {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .feature-one {
        padding: 80px 0;
    }
}

.feature-one__shape {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 140px;
    background-position: top center;
    background-repeat: no-repeat;
    animation: movebounce3 4s linear infinite;
}

.feature-one__item {
    position: relative;
    transition: all 500ms ease;
    background-color: var(--theme-gray, #f1fcf9);
    padding: 40px 30px 35px;
    border-radius: 15px;
}

.feature-one__item:hover {
    background-color: #fffaef;
    filter: drop-shadow(0.157px 8.999px 5px rgba(209, 207, 202, 0.42));
}

.feature-one__item:hover .feature-one__item__icon {
    background-color: var(--theme-orange);
    border-color: var(--theme-black);
}

.feature-one__item:hover .feature-one__item__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.feature-one__item__icon {
    width: 112px;
    height: 90px;
    border: 1px solid var(--theme-primary, #abe6d7);
    background-color: var(--theme-primary, #abe6d7);
    color: var(--theme-black);
    font-size: 62px;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 500ms ease;
    position: relative;
}

.feature-one__item__icon__zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.feature-one__item__title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 18px;
}

.feature-one__item__title br {
    display: block;
}

.feature-one__item__text p{
    font-size: 15px;
    line-height: 28px;
    margin: 0;
}

@media (min-width: 1200px) {
    .feature-one__item__text {
        padding: 0 20px;
    }
}

.feature-two {
    position: relative;
    padding: 120px 0 115px;
}

@media (max-width: 767px) {
    .feature-two {
        padding: 80px 0 75px;
    }
}

.feature-two--about {
    padding-top: 0;
}

.feature-two__bg {
    width: 100%;
    height: 613px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.feature-two__item {
    position: relative;
    z-index: 2;
    transition: all 500ms ease;
    background-color: var(--accent-color);
    padding: 50px 30px 40px;
    border-radius: 15px;
}

.feature-two__item::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    transition: all 0.5s linear;
    z-index: -1;
}

.feature-two__item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    transition: all 0.5s linear;
    z-index: -1;
}

.feature-two__item:hover {
    background-color: var(--theme-white);
}

.feature-two__item:hover::before {
    border-color: var(--theme-black);
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.feature-two__item:hover::after {
    border-color: var(--theme-black);
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.feature-two__item:hover .feature-two__item__icon {
    background-color: var(--theme-base);
    border-color: var(--theme-black);
}

.feature-two__item:hover .feature-two__item__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.feature-two__item__icon {
    width: 112px;
    height: 90px;
    border: 1px solid var(--theme-primary);
    background-color: var(--theme-primary);
    color: var(--theme-black);
    font-size: 62px;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 500ms ease;
    position: relative;
}

.feature-two__item__icon__zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.feature-two__item__title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 18px;
}

.feature-two__item__title br {
    display: block;
}

.feature-two__item__text {
    font-size: 15px;
    line-height: 28px;
    margin: 0;
}

@media (min-width: 1200px) {
    .feature-two__item__text {
        padding: 0 20px;
    }
}

.feature-two__bottom {
    text-align: center;
    margin: 54px 0 40px;
    font-size: 52px;
    line-height: 65px;
    font-weight: 600;
    color: var(--theme-white);
    position: relative;
    z-index: 2;
}

@media (max-width: 1199px) {
    .feature-two__bottom {
        font-size: 60px;
        line-height: 80px;
    }
}

@media (max-width: 991px) {
    .feature-two__bottom br {
        display: none;
    }
}

@media (max-width: 767px) {
    .feature-two__bottom {
        font-size: 40px;
        line-height: 52px;
    }
}

.feature-two__bottom span {
    color: var(--theme-base);
    text-decoration: underline;
}

.feature-three {
    position: relative;
    z-index: 1;
    padding: 120px 0 0;
    margin-bottom: -150px;
}

@media (max-width: 767px) {
    .feature-three {
        padding: 80px 0 0;
    }
}

.feature-three__item {
    position: relative;
    z-index: 2;
    transition: all 500ms ease;
    background-color: var(--accent-color);
    padding: 50px 30px 40px;
    border-radius: 15px;
}

.feature-three__item::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    transition: all 0.5s linear;
    z-index: -1;
}

.feature-three__item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    transition: all 0.5s linear;
    z-index: -1;
}

.feature-three__item:hover::before {
    border-color: var(--theme-black);
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.feature-three__item:hover::after {
    border-color: var(--theme-black);
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.feature-three__item:hover .feature-three__item__icon {
    background-color: var(--theme-base);
    border-color: var(--theme-black);
}

.feature-three__item:hover .feature-three__item__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.feature-three__item__icon {
    width: 112px;
    height: 90px;
    border: 1px solid var(--theme-primary);
    background-color: var(--theme-primary);
    color: var(--theme-black);
    font-size: 62px;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 500ms ease;
    position: relative;
}

.feature-three__item__icon__zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.feature-three__item__title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 18px;
}

.feature-three__item__title br {
    display: block;
}

.feature-three__item__text {
    font-size: 15px;
    line-height: 28px;
    margin: 0;
}

@media (min-width: 1200px) {
    .feature-three__item__text {
        padding: 0 20px;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-one {
    position: relative;
    padding: 0 0 120px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .about-one {
        padding: 0px 0 80px;
    }
}

.about-one__shape-one {
    position: absolute;
    left: 0;
    bottom: 110px;
    height: 555px;
    width: 48%;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1399px) {
    .about-one__shape-one {
        display: none;
    }
}

.about-one__shape-two {
    position: absolute;
    right: 10%;
    bottom: 130px;
    height: 172px;
    width: 116px;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
    animation: leafMove 2s infinite alternate;
}

@media (max-width: 1799px) {
    .about-one__shape-two {
        right: 3%;
    }
}

@media (max-width: 1499px) {
    .about-one__shape-two {
        display: none;
    }
}

.about-one__image {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.about-one__image::after {
    position: absolute;
    left: -65px;
    bottom: -28px;
    z-index: -1;
    content: "";
    background-color: var(--theme-base);
    border-radius: 50%;
    width: 190px;
    height: 190px;
    animation: zoomsIn 2s infinite alternate;
}

.about-one__image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.about-one__image__experiance {
    position: absolute;
    left: -165px;
    top: 145px;
    background-color: var(--theme-primary, #abe6d7);
    padding: 24px 20px 28px 110px;
    border-radius: 5px;
}

@media (max-width: 1399px) {
    .about-one__image__experiance {
        left: -100px;
    }
}

@media (max-width: 1299px) {
    .about-one__image__experiance {
        left: 0;
    }
}

.about-one__image__experiance:hover .about-one__image__experiance__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.about-one__image__experiance__icon {
    width: 74px;
    height: 74px;
    background-color: var(--theme-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: var(--theme-black);
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.about-one__image__experiance__icon__zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.about-one__image__experiance__year {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--theme-black);
    margin: 0 0 2px;
}

.about-one__image__experiance__text {
    margin: 0;
    font-size: 18px;
    color: var(--theme-black);
    line-height: 1.2;
    font-weight: 500;
    text-transform: capitalize;
}

.about-one__image__ratings {
    position: absolute;
    bottom: 52px;
    right: -90px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 5px;
    padding: 10px 30px 10px 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-black);
}

@media (max-width: 1199px) {
    .about-one__image__ratings {
        right: 0px;
    }
}

.about-one__image__ratings__icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-white);
    border-radius: 50%;
}

.about-one__image__ratings__icon img {
    height: 35px;
    width: 35px;
}

.about-one__content {
    position: relative;
}

@media (max-width: 991px) {
    .about-one__content {
        padding-top: 50px;
    }
}

@media (min-width: 1200px) {
    .about-one__content {
        padding-left: 30px;
        padding-right: 40px;
    }
}

.about-one__content .sec-title {
    padding-bottom: 23px;
}

.about-one__content__text {
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 35px;
}

.about-one__content__box {
    position: relative;
    min-height: 64px;
    margin-top: 30px;
    padding: 3px 0 0 85px;
}

.about-one__content__box:hover .about-one__content__box__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.about-one__content__box__icon {
    width: 64px;
    height: 64px;
    background-color: var(--accent-color);
    color: var(--theme-black);
    font-size: 38px;
    display: flex;
    border-radius: 50%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    position: absolute;
    left: 0;
    top: 0;
}

.about-one__content__box__icon__zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.about-one__content__box__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 5px;
}

.about-one__content__box__text {
    margin: 0;
}

.about-one__content__list {
    margin: 28px 0 34px;
    padding: 0;
}

.about-one__content__list li {
    list-style: none;
    line-height: 32px;
    padding-left: 25px;
    position: relative;
}

.about-one__content__list li span {
    position: absolute;
    left: 0;
    top: 8px;
    transition: all 0.6s ease;
    transform: scale(1);
    color: var(--theme-black);
    font-size: 18px;
}

.about-one__content__list li:hover span {
    transform: scale(1.05);
    color: var(--theme-base);
}

.about-one__content:hover .careold-btn {
    animation-name: wobbleTop;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

.about-two {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .about-two {
        padding: 80px 0;
    }
}

.about-two__bg {
    position: absolute;
    left: 0;
    bottom: 120px;
    height: 345px;
    width: 46.9%;
    background-color: var(--theme-gray, #f1fcf9);
    border-radius: 0 5px 5px 0;
}

@media (max-width: 1399px) {
    .about-two__bg {
        display: none;
    }
}

.about-two__shape {
    position: absolute;
    right: 10%;
    bottom: 130px;
    height: 172px;
    width: 116px;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
    animation: leafMove 2s infinite alternate;
}

@media (max-width: 1799px) {
    .about-two__shape {
        right: 3%;
    }
}

@media (max-width: 1499px) {
    .about-two__shape {
        display: none;
    }
}

.about-two__image {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.about-two__image>img {
    max-width: 100%;
    height: auto;
    border-radius: 0 250px 0 0;
}

.about-two__image__experiance {
    position: absolute;
    left: -130px;
    bottom: 50px;
    background-color: var(--theme-white);
    filter: drop-shadow(0 0 16px rgba(144, 145, 145, 0.44));
    border-radius: 0 50px 50px 50px;
    text-align: center;
    max-width: 190px;
    padding: 32px 15px 31px;
}

@media (max-width: 1399px) {
    .about-two__image__experiance {
        left: -100px;
    }
}

@media (max-width: 1299px) {
    .about-two__image__experiance {
        left: 0;
        bottom: 0;
    }
}

@media (max-width: 767px) {
    .about-two__image__experiance {
        position: relative;
        bottom: 0;
        margin-top: -100px;
    }
}

.about-two__image__experiance__count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 600;
    margin: 0 auto 0px;
}

.about-two__image__experiance__text {
    color: var(--theme-black);
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 18px;
}

.about-two__image__experiance img {
    animation: zoomsIn 2s infinite alternate;
    width: 45px;
    height: 47px;
}

.about-two__image__ratings {
    position: absolute;
    top: 52px;
    right: -33px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--theme-primary, #abe6d7);
    border: 2px solid var(--theme-black);
    border-radius: 5px;
    padding: 10px 30px 10px 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-black);
}

@media (max-width: 1199px) {
    .about-two__image__ratings {
        right: 0px;
    }
}

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

.about-two__image__ratings__icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-white);
    border-radius: 50%;
}

.about-two__image__ratings__icon img {
    height: 35px;
    width: 35px;
}

.about-two__content {
    position: relative;
}

@media (max-width: 991px) {
    .about-two__content {
        padding-top: 50px;
    }
}

@media (min-width: 1200px) {
    .about-two__content {
        padding-left: 30px;
        padding-right: 40px;
    }
}

.about-two__content .sec-title {
    padding-bottom: 23px;
}

.about-two__content__text {
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 35px;
}

.about-two__content__box {
    position: relative;
    min-height: 64px;
    margin-top: 30px;
    padding: 3px 0 0 85px;
}

.about-two__content__box:hover .about-two__content__box__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.about-two__content__box__icon {
    width: 64px;
    height: 64px;
    background-color: var(--accent-color);
    color: var(--theme-black);
    font-size: 38px;
    display: flex;
    border-radius: 50%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    position: absolute;
    left: 0;
    top: 0;
}

.about-two__content__box__icon__zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.about-two__content__box__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 5px;
}

.about-two__content__box__text {
    margin: 0;
}

.about-two__content__list {
    margin: 28px 0 34px;
    padding: 0;
}

.about-two__content__list li {
    list-style: none;
    line-height: 32px;
    padding-left: 25px;
    position: relative;
}

.about-two__content__list li span {
    position: absolute;
    left: 0;
    top: 8px;
    transition: all 0.6s ease;
    transform: scale(1);
    font-size: 18px;
}

.about-two__content__list li:hover span {
    transform: scale(1.05);
    color: var(--theme-base);
}

.about-two__content:hover .careold-btn {
    animation-name: wobbleTop;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.service-one {
    position: relative;
    background-color: #c5b38d;
    counter-reset: count;
    padding: 90px 0;
}

.service-one__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .service-one {
        padding: 80px 0;
    }
}

.service-one__item {
    position: relative;
    z-index: 2;
    counter-increment: count;
    transition: all 500ms ease;
}

.service-one__item__image {
    position: relative;
    overflow: hidden;
}

.service-one__item__image img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0px 0px;
}

.service-one__item__image::after {
    background: linear-gradient(90deg, rgba(var(--theme-white-rgb, 255, 255, 255), 0.2) 0px, rgba(var(--theme-white-rgb, 255, 255, 255), 0.2) 77%, rgba(var(--theme-white-rgb, 255, 255, 255), 0.45) 92%, rgba(var(--theme-white-rgb, 255, 255, 255), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.7s ease 0s;
    width: 200%;
}

.service-one__item:hover .service-one__item__image::after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.service-one__item__content {
    position: relative;
    background-color: #f6f0e7;
    background-position: top right;
    background-repeat: no-repeat;
    padding: 25px 20px;
    border-radius: 0px 0px 15px 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-one__item__content {
        margin: 0 10px;
        padding: 35px 18px 40px 30px;
    }
}

.service-one__item__number {
    position: absolute;
    left: -16px;
    top: -25px;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
    z-index: 5;
    display: inline-block;
    background-color: var(--theme-base);
    font-size: 16px;
    color: var(--theme-black);
    text-transform: capitalize;
    line-height: 28px;
    padding: 17px 0px;
    border-radius: 0px 30px 30px 30px;
}

.service-one__item__number::after {
    content: counters(count, ".");
    position: relative;
    display: inline-block;
    margin-top: 5px;
}

.service-one__item__title {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 10px;
}

.service-one__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.service-one__item__title a:hover {
    background-size: 100% 1px;
}

.service-one__item__text {
    
    margin: 0 0 29px;
}
.service-one__item__text p{
    line-height: 24px;
}
.service-one__item__link {
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    background-color: var(--theme-primary, #abe6d7);
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-black);
    transition: all 500ms ease;
    line-height: 1em;
    position: relative;
    border-radius: 30px 0 7px 30px;
    padding: 10px 21px 10px 60px;
}

.service-one__item__link:hover .service-one__item__link__icon {
    background-color: var(--theme-base);
}

.service-one__item__link:hover .service-one__item__link__icon i {
    animation: iconTranslateY 0.4s forwards;
}

.service-one__item__link__icon {
    width: 47px;
    height: 47px;
    overflow: hidden;
    background-color: var(--theme-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--theme-black);
    position: absolute;
    left: 0;
    top: -5.5px;
    transition: all 500ms ease;
}

.service-one__item__link__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.service-two {
    position: relative;
    background-color: #c5b38d;
    counter-reset: count;
    padding: 90px 0;
}

.service-two__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .service-two {
        padding: 80px 0;
    }
}

.service-two .container {
    max-width: 1600px;
}

.service-two--page {
    padding: 90px 0;
}

@media (max-width: 767px) {
    .service-two--page {
        padding: 80px 0;
    }
}

.service-two--page .container {
    max-width: 1200px;
}

.service-two--page .service-two__bg {
    background-repeat: repeat;
}

.service-two__item {
    position: relative;
    z-index: 2;
    background-color: var(--theme-white);
    border: 1px solid var(--theme-white);
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    padding: 50px 35px 70px;
    counter-increment: count;
    transition: all 500ms ease;
}

.service-two__item:hover {
    border-color: var(--theme-black);
}

.service-two__item__shape {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 69px;
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: -1;
}

.service-two__item__image {
    position: relative;
    width: 230px;
    height: 230px;
    margin: 0 auto;
    border: 3px solid var(--theme-white);
    border-radius: 50%;
    overflow: hidden;
}

.service-two__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-two__item__image::after {
    background: linear-gradient(90deg, rgba(var(--theme-white-rgb, 255, 255, 255), 0.2) 0px, rgba(var(--theme-white-rgb, 255, 255, 255), 0.2) 77%, rgba(var(--theme-white-rgb, 255, 255, 255), 0.45) 92%, rgba(var(--theme-white-rgb, 255, 255, 255), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.7s ease 0s;
    width: 200%;
}

.service-two__item:hover .service-two__item__image {
    animation-name: wobbleTop;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

.service-two__item:hover .service-two__item__image::after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.service-two__item__number {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
    z-index: 5;
    display: inline-block;
    background-color: var(--theme-base);
    font-size: 16px;
    color: var(--theme-black);
    text-transform: capitalize;
    line-height: 34px;
    padding: 25px 0px 17px;
    border-radius: 0;
    clip-path: polygon(50% 10%, 100% 0, 100% 100%, 0 100%, 0 0);
}

.service-two__item__number::after {
    content: counters(count, ".");
    position: relative;
    display: inline-block;
    margin-top: 5px;
}

.service-two__item__title {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 25px 0 10px;
}

.service-two__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.service-two__item__title a:hover {
    background-size: 100% 1px;
}

.service-two__item__text {
    line-height: 28px;
    margin: 0 0 29px;
}

.service-two__item__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-transform: capitalize;
    background-color: #fff2d6;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-black);
    transition: all 500ms ease;
    line-height: 1em;
    border-radius: 0 0 10px 10px;
    padding: 10px 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.service-two__item__link:hover {
    background-color: var(--theme-primary, #abe6d7);
}

.service-two__item__link:hover .service-two__item__link__icon {
    background-color: var(--theme-base);
}

.service-two__item__link:hover .service-two__item__link__icon i {
    animation: iconTranslateX 0.4s forwards;
}

.service-two__item__link__icon {
    width: 47px;
    height: 47px;
    overflow: hidden;
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--theme-black);
    transition: all 500ms ease;
}

.service-two__item__link__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.service-three {
    position: relative;
    background-color: #e9f6f3;
    counter-reset: count;
    padding: 270px 0 120px;
}

.service-three__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .service-three {
        padding: 230px 0 80px;
    }
}

.service-three .container {
    max-width: 1600px;
}

.service-three__item {
    position: relative;
    z-index: 2;
    background-color: var(--theme-white);
    border: 1px solid var(--theme-white);
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    padding: 46px 45px 48px;
    counter-increment: count;
    transition: all 500ms ease;
}

.service-three__item__shape {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 69px;
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: -1;
}

.service-three__item__image {
    position: relative;
    margin: 0 -12px;
    overflow: hidden;
}

.service-three__item__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.service-three__item__image::after {
    background: linear-gradient(90deg, rgba(var(--theme-white-rgb, 255, 255, 255), 0.2) 0px, rgba(var(--theme-white-rgb, 255, 255, 255), 0.2) 77%, rgba(var(--theme-white-rgb, 255, 255, 255), 0.45) 92%, rgba(var(--theme-white-rgb, 255, 255, 255), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.7s ease 0s;
    width: 200%;
}

.service-three__item__image::before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -110px;
    width: 190px;
    height: 190px;
    background-color: var(--theme-white);
    border-radius: 50%;
    content: "";
    margin: 0 auto;
}

.service-three__item:hover .service-three__item__image::after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.service-three__item__number {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
    z-index: 5;
    display: inline-block;
    background-color: var(--theme-base);
    font-size: 16px;
    color: var(--theme-black);
    text-transform: capitalize;
    line-height: 34px;
    padding: 25px 0px 17px;
    border-radius: 0;
    clip-path: polygon(50% 10%, 100% 0, 100% 100%, 0 100%, 0 0);
}

.service-three__item__number::after {
    content: counters(count, ".");
    position: relative;
    display: inline-block;
    margin-top: 5px;
}

.service-three__item__title {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.service-three__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.service-three__item__title a:hover {
    background-size: 100% 1px;
}

.service-three__item__text {
    line-height: 28px;
    margin: 0 0 32px;
}

.service-three__item__link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-black);
    transition: all 500ms ease;
    line-height: 1em;
    position: relative;
    margin: -38px 0 0;
}

.service-three__item__link:hover .service-three__item__link__text {
    background-size: 100% 1px;
    color: var(--theme-base);
}

.service-three__item__link:hover .service-three__item__link__icon-wrapper::before {
    border-top-color: var(--theme-base);
    border-right-color: var(--theme-base);
    border-bottom-color: var(--theme-base);
    transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.service-three__item__link:hover .service-three__item__link__icon-wrapper::after {
    border-top: 1px solid var(--theme-base);
    border-left-width: 1px;
    border-right-width: 1px;
    transform: rotate(270deg);
    transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
}

.service-three__item__link:hover .service-three__item__link__icon i {
    animation: iconTranslateX 0.4s forwards;
}

.service-three__item__link__icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: none;
    border: 0;
    box-sizing: border-box;
    border-radius: 100%;
    position: relative;
}

.service-three__item__link__icon-wrapper::after {
    box-sizing: inherit;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 0 solid transparent;
    top: 0;
    left: 0;
}

.service-three__item__link__icon-wrapper::before {
    box-sizing: inherit;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 1px solid transparent;
    border-top-color: var(--theme-base);
    top: 0;
    left: 0;
}

.service-three__item__link__icon {
    width: 47px;
    height: 47px;
    background-color: var(--theme-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--theme-black);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: all 500ms ease;
}

.service-three__item__link__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.service-three__item__link__text {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/

.service-details {
    position: relative;
    padding: 80px 0 40px;
}

@media (max-width: 767px) {
    .service-details {
        padding: 80px 0;
    }
}

.service-details__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 215px);
    background-position: left top;
    background-repeat: repeat;
    background-size: cover;
    z-index: -1;
}

.service-details__content {
    position: relative;
}

@media (min-width: 1200px) {
    .service-details__content {
        padding-left: 30px;
    }
}

.service-details__thumbnail {
    margin-bottom: 30px;
    position: relative;
}

.service-details__thumbnail img {
    width: 100%;
    border-radius: 5px;
}

.service-details__title {
    margin: 0;
    text-transform: capitalize;
    color: var(--theme-black);
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-details__text {
    margin: 0 0 30px;
    line-height: 30px;
}

.service-details__sub-title {
    margin: 0;
    text-transform: capitalize;
    color: var(--theme-black);
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 16px;
}

.service-details__image {
    position: relative;
}

.service-details__image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.service-details__item {
    position: relative;
    background-color: var(--accent-color);
    text-align: center;
    padding: 42px 45px 36px;
    border-radius: 10px;
}

.service-details__item:hover .service-details__item__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.service-details__item__icon {
    color: var(--theme-black);
    font-size: 67px;
    line-height: 67px;
    display: inline-block;
    margin: 0 0 15px;
    transition: all 500ms ease;
    position: relative;
}

.service-details__item__icon__zoom {
    display: inline-block;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: auto;
}

.service-details__item__title {
    margin: 0 0 20px;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
}

.service-details__item__text {
    margin: 0;
    color: var(--theme-black);
    line-height: 28px;
}

.service-details .mt30 {
    margin-top: 10px;
    margin-bottom: 17px;
}

.service-details__support {
    position: relative;
}

.service-details__support .service-details__text {
    font-size: 15px;
    line-height: 26px;
    margin: 0 0 18px;
}

.service-details__list {
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 3px;
}

.service-details__list li {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    padding-left: 32px;
    color: var(--theme-black);
}

.service-details__list li>i {
    width: 22px;
    height: 22px;
    background-color: var(--theme-base);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--theme-white);
}

.service-details__accordion {
    background-color: var(--theme-white);
    padding: 40px 20px;
    position: relative;
    margin-top: 24px;
}

.service-details__accordion .accrodion {
    position: relative;
    margin-top: 10px;
}

.service-details__accordion .accrodion-title {
    padding: 15px 30px;
    padding-right: 70px;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    cursor: pointer;
    transition: all 500ms ease;
}

.service-details__accordion .accrodion-title h4 {
    text-transform: capitalize;
    font-weight: 500;
    color: var(--theme-black);
    font-size: 20px;
    font-family: var(--theme-font, "Rubik", serif);
    margin: 0;
    transition: all 500ms ease;
    position: relative;
}

.service-details__accordion .accrodion-title__icon {
    width: 28px;
    height: 28px;
    background-color: #d3d3d2;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.service-details__accordion .accrodion-title__icon::after,
.service-details__accordion .accrodion-title__icon::before {
    width: 1px;
    height: 15px;
    position: absolute;
    background-color: var(--theme-white);
    top: 50%;
    left: 50%;
    content: "";
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
    z-index: 2;
}

.service-details__accordion .accrodion-title__icon::after {
    width: 15px;
    height: 1px;
}

.service-details__accordion .active .accrodion-title {
    background-color: #fdf4e0;
    border-color: #fdf4e0;
}

.service-details__accordion .active .accrodion-title__icon {
    background-color: var(--theme-base);
}

.service-details__accordion .active .accrodion-title__icon::after,
.service-details__accordion .active .accrodion-title__icon::before {
    background-color: var(--theme-black);
    opacity: 0;
}

.service-details__accordion .active .accrodion-title__icon::after {
    opacity: 1;
}

.service-details__accordion .accrodion-content .inner {
    padding: 20px 30px 15px;
}

.service-details__accordion .accrodion-content p {
    margin: 0;
    line-height: 30px;
}

.service-details .cta-one__inner {
    margin-top: 120px;
}

@media (max-width: 767px) {
    .service-details .cta-one__inner {
        margin-top: 80px;
    }
}

.service-details .careold-btn>i {
    background-color: var(--theme-white);
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/

body.boxed-wrapper {
    position: relative;
}

body.boxed-wrapper .page-wrapper {
    max-width: 1530px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--theme-white);
    box-shadow: 0px 0px 100px 0px rgba(var(--theme-black3-rgb, 0, 0, 0), 0.08);
}

body.boxed-wrapper .topbar-one,
body.boxed-wrapper .main-header {
    padding: 0 20px;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/

.work-process-one {
    position: relative;
    counter-reset: count;
    padding: 120px 0 0;
}

@media (max-width: 767px) {
    .work-process-one {
        padding: 80px 0 0;
    }
}

.work-process-one__item {
    position: relative;
    z-index: 2;
    background-color: #f1f7f6;
    padding: 40px 30px 63px;
    margin-bottom: 30px;
    border-radius: 10px;
    border: 1px solid var(--theme-border-color, #e5e3e0);
    counter-increment: count;
    transition: all 0.3s linear;
}

.work-process-one__item::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    transition: all 0.5s linear;
    z-index: -1;
}

.work-process-one__item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    transition: all 0.5s linear;
    z-index: -1;
}

.work-process-one__item:hover {
    border-color: transparent;
}

.work-process-one__item:hover::before {
    border-color: var(--theme-primary, #abe6d7);
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.work-process-one__item:hover::after {
    border-color: var(--theme-primary, #abe6d7);
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.work-process-one__item:hover .work-process-one__item__icon::after {
    animation-play-state: paused;
}

.work-process-one__item__icon {
    width: 144px;
    height: 144px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: auto;
    padding: 14px;
    transition: all 500ms linear;
    z-index: 2;
}

.work-process-one__item__icon::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    border: 2px dashed var(--theme-black);
    border-radius: 50%;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.work-process-one__item__icon__dot {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 21px;
    height: 21px;
    background-color: var(--theme-white);
    border-radius: 50%;
    animation: startIconOne 1.2s infinite alternate;
    z-index: 3;
}

.work-process-one__item__icon__dot:nth-child(2) {
    right: auto;
    top: auto;
    left: 24px;
    bottom: 24px;
    background-color: var(--theme-primary, #abe6d7);
    animation: startIconOne 1s infinite alternate;
}

.work-process-one__item__icon__inner {
    width: 100%;
    height: 100%;
    background-color: var(--theme-base);
    color: var(--theme-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid var(--theme-white);
    font-size: 56px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 500ms linear;
}

.work-process-one__item__icon__inner i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.work-process-one__item:hover .work-process-one__item__icon__inner {
    background-color: var(--theme-primary, #abe6d7);
}

.work-process-one__item:hover .work-process-one__item__icon__inner i {
    animation: iconTranslateY 0.4s forwards;
}

.work-process-one__item__title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    margin: 24px 0 18px;
}

.work-process-one__item__title br {
    display: block;
}

.work-process-one__item__text {
    font-size: 15px;
    line-height: 28px;
    margin: 0;
}

.work-process-one__item__number {
    width: 60px;
    height: 60px;
    background-color: var(--theme-primary, #abe6d7);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--theme-black);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -30px;
    margin: 0 auto;
    transition: all 500ms linear;
    transform: scale(1);
}

.work-process-one__item__number::before {
    content: counters(count, ".", decimal-leading-zero);
    position: relative;
    display: inline-block;
}

.work-process-one__item:hover .work-process-one__item__number {
    transform: scale(0.95);
}

.work-process-one__border {
    width: 663px;
    height: 88px;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 90px;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1199px) {
    .work-process-one__border {
        display: none;
    }
}

.work-process-one--home-two {
    padding-bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio-one {
    position: relative;
    background-color: #edf3f1;
    overflow: hidden;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .portfolio-one {
        padding: 80px 0;
    }
}

.portfolio-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.portfolio-one__item {
    position: relative;
}

.portfolio-one__item img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

@media (max-width: 767px) {
    .portfolio-one__item img {
        min-height: 300px;
        object-fit: cover;
    }
}

.portfolio-one__item__rm {
    position: absolute;
    right: 0;
    left: 0;
    top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100px);
    transition: all 500ms linear;
}

@media (max-width: 1199px) {
    .portfolio-one__item__rm {
        top: 50px;
    }
}

@media (max-width: 767px) {
    .portfolio-one__item__rm {
        top: 30px;
    }
}

.portfolio-one__item__rm a {
    width: 145px;
    height: 145px;
    background-color: var(--theme-primary, #abe6d7);
    border: 2px solid var(--theme-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--theme-black);
}

@media (max-width: 767px) {
    .portfolio-one__item__rm a {
        width: 90px;
        height: 90px;
        font-size: 30px;
    }
}

.portfolio-one__item__rm a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.portfolio-one__item__rm a:hover {
    background-color: var(--theme-base);
}

.portfolio-one__item__rm a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.portfolio-one__item__content {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    visibility: hidden;
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: -100% -100%;
    transition: all 0.7s;
    background-color: var(--theme-white);
    max-width: 380px;
    border-radius: 50px;
    padding: 21px 20px;
}

@media (max-width: 575px) {
    .portfolio-one__item__content {
        max-width: 90%;
    }
}

.portfolio-one__item__cat {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--theme-primary, #abe6d7);
    margin: 0 0 2px;
}

.portfolio-one__item__title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: var(--theme-black);
    margin: 0;
}

.portfolio-one__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-one__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-one .center .portfolio-one__item__rm {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.portfolio-one .center .portfolio-one__item__content {
    visibility: visible;
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: 100% 100%;
}

.portfolio-two {
    position: relative;
    overflow: hidden;
    padding: 120px 0 110px;
}

@media (max-width: 767px) {
    .portfolio-two {
        padding: 80px 0 70px;
    }
}

.portfolio-two--page {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .portfolio-two--page {
        padding: 80px 0;
    }
}

.portfolio-two--page .container {
    max-width: 1500px;
}

.portfolio-two--page .careold-btn {
    font-weight: 600;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 50px;
}

.portfolio-two--page .careold-btn>i {
    background-color: var(--theme-gray2, #f7f3ea);
    padding: 31px 27px;
    border: none;
}

.portfolio-two__container {
    max-width: 1500px;
}

.portfolio-two__item {
    position: relative;
    margin: 0 0 60px;
}

.portfolio-two__item img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

@media (max-width: 767px) {
    .portfolio-two__item img {
        min-height: 300px;
        object-fit: cover;
    }
}

.portfolio-two__item__content {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -49px;
    margin: 0 auto;
    filter: drop-shadow(0 0 14.5px rgba(209, 207, 202, 0.42));
    background-color: var(--theme-white);
    width: calc(100% - 90px);
    border-radius: 10px;
    padding: 64px 20px 22px;
    text-align: center;
}

@media (max-width: 991px) {
    .portfolio-two__item__content {
        width: calc(100% - 50px);
    }
}

.portfolio-two__item__rm {
    position: absolute;
    right: 0;
    left: 0;
    top: -47px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.portfolio-two__item__rm a {
    width: 98px;
    height: 98px;
    background-color: var(--theme-primary, #abe6d7);
    border: 2px solid var(--theme-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: var(--theme-black);
}

.portfolio-two__item__rm a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.portfolio-two__item__rm a:hover {
    background-color: var(--theme-base);
}

.portfolio-two__item__rm a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.portfolio-two__item__cat {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--theme-primary, #abe6d7);
    margin: 0 0 4px;
}

.portfolio-two__item__title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
}

.portfolio-two__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-two__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-two .careold-owl__carousel--basic-nav.owl-carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -150px;
    z-index: 2;
    width: 1170px;
    gap: 10px;
    transform: none;
    text-align: right;
}

@media (max-width: 1199px) {
    .portfolio-two .careold-owl__carousel--basic-nav.owl-carousel .owl-nav {
        width: 950px;
    }
}

@media (max-width: 991px) {
    .portfolio-two .careold-owl__carousel--basic-nav.owl-carousel .owl-nav {
        position: relative;
        top: auto;
        text-align: center;
        justify-content: center;
        width: 100%;
        margin: 30px 0 0;
    }
}

.portfolio-two .careold-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    background-color: var(--theme-gray2, #f7f3ea);
    width: 90px;
    height: 90px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--theme-black);
}

.portfolio-two .careold-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
    background-color: var(--theme-base);
    color: var(--theme-black);
}

.portfolio-three {
    position: relative;
    z-index: 1;
    counter-reset: count;
    padding: 0 0 100px;
    margin-top: -170px;
}

.portfolio-three__bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 1480px;
    margin: auto;
    background-color: #f4ede0;
    border-radius: 20px;
    z-index: -1;
}

@media (max-width: 1500px) {
    .portfolio-three__bg {
        max-width: 1320px;
    }
}

.portfolio-three__newsletter {
    position: relative;
    top: -30px;
    width: 100%;
    height: 60px;
    border-radius: 3px;
    border: 1px solid var(--theme-black);
    background-color: var(--theme-white);
    margin: 0 0 70px;
}

.portfolio-three__newsletter__icon {
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
}

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

.portfolio-three__newsletter input[type=text] {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    height: 60px;
    background-color: transparent;
    color: var(--theme-black);
    font-family: var(--theme-heading-font);
    font-size: 22px;
    font-weight: 600;
    padding-left: 96px;
    border-radius: 0;
    padding-right: 60px;
    transition: all 500ms ease;
}

@media (max-width: 767px) {
    .portfolio-three__newsletter input[type=text] {
        padding-left: 20px;
    }
}

.portfolio-three__newsletter input[type=text]:focus {
    color: var(--theme-black);
}

.portfolio-three__newsletter .careold-btn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
}

.portfolio-three__newsletter .careold-btn>i {
    padding: 14px 43px;
    border: none;
    background-color: var(--theme-primary, #abe6d7);
}

@media (max-width: 767px) {
    .portfolio-three__newsletter .careold-btn>i {
        padding: 14px 15px;
    }
}

.portfolio-three__newsletter .careold-btn span {
    background-color: var(--theme-base);
}

.portfolio-three__btn {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    margin: 35px 0 0;
}

@media (max-width: 991px) {
    .portfolio-three__btn {
        justify-content: flex-start;
        margin: -20px 0 40px;
    }
}

.portfolio-three__btn .careold-btn {
    font-weight: 600;
    border-radius: 50%;
    overflow: hidden;
}

.portfolio-three__btn .careold-btn>i {
    padding: 31px 27px;
    border: none;
    background-color: var(--theme-base);
}

.portfolio-three__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    counter-increment: count;
    border-bottom: 1px solid var(--theme-black);
    border-top: 1px solid var(--theme-black);
    padding: 11px 0 11px 78px;
    margin-bottom: -1px;
    z-index: 2;
}

@media (max-width: 767px) {
    .portfolio-three__item {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.portfolio-three__item::before {
    content: counters(count, ".", decimal-leading-zero);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--theme-black);
    font-weight: normal;
    font-family: var(--theme-heading-font);
}

.portfolio-three__item::after {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    height: 64px;
    width: 0;
    background-color: var(--theme-primary, #abe6d7);
    transition: all 500ms ease;
    z-index: -1;
}

.portfolio-three__item:hover::after {
    width: 15px;
}

.portfolio-three__item__title {
    position: relative;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
}

.portfolio-three__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-three__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-three__item__rm {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .portfolio-three__item__rm {
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.portfolio-three__item__rm a {
    width: 89px;
    height: 89px;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: var(--theme-black);
}

.portfolio-three__item__rm a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.portfolio-three__item__rm a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.portfolio-three__item:hover .portfolio-three__item__rm a {
    background-color: var(--theme-primary, #abe6d7);
    border-color: var(--theme-white);
}

.portfolio-three__item__image {
    position: absolute;
    z-index: 2;
    width: 179px;
    height: 175px;
    top: 50%;
    left: 0;
    pointer-events: none;
    transform: translate(-100%, -50%);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease-out;
    border-radius: 0 20px 20px 20px;
}

.portfolio-three__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.portfolio-three__item+.portfolio-three__item {
    border-top: none;
}

.portfolio-four {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .portfolio-four {
        padding: 80px 0;
    }
}

.portfolio-four__item {
    position: relative;
}

.portfolio-four__item img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

@media (max-width: 767px) {
    .portfolio-four__item img {
        min-height: 400px;
        object-fit: cover;
    }
}

.portfolio-four__item__content {
    position: absolute;
    left: 0;
    bottom: 0;
    filter: drop-shadow(0 0 14.5px rgba(209, 207, 202, 0.42));
    background-color: var(--theme-white);
    width: 100%;
    border-radius: 10px;
    padding: 65px 20px 22px;
    text-align: center;
    z-index: 2;
}

.portfolio-four__item__rm {
    position: absolute;
    right: 0;
    left: 0;
    top: -48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.portfolio-four__item__rm a {
    width: 96px;
    height: 96px;
    background-color: var(--theme-white);
    border: 1px solid #dbede9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: var(--theme-black);
    transform: rotate(45deg);
}

.portfolio-four__item__rm a:hover {
    background-color: var(--theme-base);
    border-color: var(--theme-base);
    transform: rotate(0deg);
}

.portfolio-four__item__cat {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--theme-primary, #abe6d7);
    margin: 0 0 4px;
}

.portfolio-four__item__title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
}

.portfolio-four__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-four__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-four__item__title a:hover {
    color: var(--theme-primary, #abe6d7);
}

.portfolio-four .careold-btn {
    font-weight: 600;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 60px;
}

.portfolio-four .careold-btn>i {
    background-color: var(--theme-gray2, #f7f3ea);
    padding: 31px 27px;
    border: none;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .portfolio-details {
        padding: 80px 0;
    }
}

.portfolio-details__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 215px);
    background-position: left top;
    background-repeat: repeat;
    background-size: cover;
    z-index: -1;
}

.portfolio-details__image {
    position: relative;
}

.portfolio-details__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.portfolio-details__info {
    background-color: var(--theme-primary, #abe6d7);
    border-radius: 10px;
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: -107px;
    max-width: 295px;
    width: 100%;
    padding: 40px 30px;
}

@media (max-width: 1199px) {
    .portfolio-details__info {
        bottom: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .portfolio-details__info {
        position: relative;
        margin-bottom: 10px;
    }
}

.portfolio-details__info::before {
    position: absolute;
    left: -74px;
    bottom: 7px;
    height: 100px;
    width: 74px;
    content: "";
    background-color: #9bc9bd;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: -1;
}

@media (max-width: 767px) {
    .portfolio-details__info::before {
        display: none;
    }
}

.portfolio-details__info__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.portfolio-details__info__item:hover .portfolio-details__info__icon__zoom {
    animation: iconsZoom 0.25s ease-out;
}

.portfolio-details__info__item+.portfolio-details__info__item {
    margin-top: 29px;
}

.portfolio-details__info__icon {
    width: 46px;
    height: 46px;
    background-color: var(--theme-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all 500ms ease;
    color: var(--theme-black);
    flex-shrink: 0;
    position: relative;
    border-radius: 50%;
}

.portfolio-details__info__icon__zoom {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.portfolio-details__info__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--theme-black);
}

.portfolio-details__info__text span {
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: var(--theme-text);
    margin-bottom: 7px;
}

.portfolio-details__content {
    position: relative;
    padding: 21px 0 0;
}
.portfolio-details__content ul,
.service-details__content ul{
    padding-left: 15px;
}
.portfolio-details__content .mt25 {
    margin-top: 25px;
}

.portfolio-details__content__image {
    position: relative;
}

.portfolio-details__content__image img {
    width: 100%;
    border-radius: 5px;
}

.portfolio-details__content__right {
    position: relative;
}

@media (min-width: 1200px) {
    .portfolio-details__content__right {
        margin-left: 20px;
    }
}

.portfolio-details__title {
    font-size: 34px;
    line-height: 42px;
    font-weight: 600;
    margin: 0 0 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--theme-border-color, #e5e3e0);
}

@media (max-width: 1199px) {
    .portfolio-details__title {
        font-size: 45px;
        line-height: 60px;
    }
}

@media (max-width: 767px) {
    .portfolio-details__title {
        font-size: 30px;
        line-height: 40px;
    }
}

.portfolio-details__sub-title {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 16px;
}

.portfolio-details__text {
    line-height: 32px;
    margin: 0 0 20px;
}

.portfolio-details__list {
    margin: 30px 0 33px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 767px) {
    .portfolio-details__list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.portfolio-details__list li {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    background-color: #d6e5e5;
    border-radius: 5px;
    padding: 16px 21px;
    color: var(--theme-black);
    display: flex;
    align-items: center;
    gap: 16px;
}

.portfolio-details__list li>i {
    width: 37px;
    height: 37px;
    background-color: #30a5a2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    color: var(--theme-white);
}

.portfolio-details__cta {
    position: relative;
    margin: 65px auto 0;
    background-color: #dae7e7;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    max-width: 970px;
}

@media (max-width: 767px) {
    .portfolio-details__cta {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
}

.portfolio-details__cta__title {
    margin: 0;
    font-size: 30px;
    font-weight: 600;
}

.portfolio-details__cta .careold-btn {
    color: var(--theme-white);
}

.portfolio-details__cta .careold-btn>i {
    background-color: var(--theme-black);
}

.portfolio-details__cta .careold-btn:hover {
    color: var(--theme-black);
}

.portfolio-details .cta-one__inner {
    margin-top: 120px;
}

@media (max-width: 767px) {
    .portfolio-details .cta-one__inner {
        margin-top: 80px;
    }
}

.portfolio-details .cta-one__inner .careold-btn>i {
    background-color: var(--theme-white);
}


.first-hero,
.slide-s2 {
    
    height: 890px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex !important;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 0px !important;
    
}
.first-hero::after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(22, 17, 15, 0.74);
    z-index: -1;
}
@media (max-width: 1585px) {
    .first-hero,
    .slide-s2 {
        height: 800px;
    }
}
@media (max-width: 1400px) {
    .first-hero,
    .slide-s2 {
        height: 620px;
        margin-top: 30px;
    }
}
@media (max-width: 1200px) {
    .first-hero,
    .slide-s2 {
        height: 650px;
    }
}
@media (max-width: 767px) {
    .first-hero,
    .slide-s2 {
        padding-top: 30%;
        height: 580px;
    }
    .hero-banner-two__review-author-wrapper{
        display: none;
    }
}
.first-hero .shape-01,
.slide-s2 .shape-01 {
    position: absolute;
    bottom: 0;
    right: calc(8% - 45px);
    width: 685px;
}
@media (max-width: 1700px) {
    .first-hero .shape-01,
    .slide-s2 .shape-01 {
        width: 630px;
    }
}
@media (max-width: 1585px) {
    .first-hero .shape-01,
    .slide-s2 .shape-01 {
        width: 600px;
        right: calc(6% - 45px);
    }
}
@media (max-width: 1400px) {
    .first-hero .shape-01,
    .slide-s2 .shape-01 {
        width: 500px;
        right: calc(14% - 45px);
    }
}
@media (max-width: 1200px) {
    .first-hero .shape-01,
    .slide-s2 .shape-01 {
        width: 450px;
        right: 0;
    }
}
@media (max-width: 991px) {
    .first-hero .shape-01,
    .slide-s2 .shape-01 {
        display: none;
    }
}

@media (max-width: 768px) {
    .slide-s2 {
        height: 550px;
        padding-top: 10%;
    }
}

.hero-first-content .title {
    font-size: 70px;
    font-weight: 600;
    color: #ece3e3;
    line-height: 83px;
    margin-top: 10px;
    margin-bottom: 16px;
}
@media (max-width: 1585px) {
    .hero-first-content .title {
        font-size: 60px;
        width: 90%;
    }
}
@media (max-width: 1400px) {
    .hero-first-content .title {
        font-size: 48px;
        line-height: 60px;
        width: 95%;
    }
}
@media (max-width: 1200px) {
    .hero-first-content .title {
        font-size: 55px;
        line-height: 65px;
    }
}
@media (max-width: 991px) {
    .hero-first-content .title {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .hero-first-content{
        text-align: center;
    }
    .hero-first-content .title {
        font-size: 24px;
        line-height: 32px;
        width: 100%;
    }
    .hero-first-content .hero-btn-div .hero-btn{
        text-align: center;
        display: block;
        margin: 0px auto;
    }
}
.hero-first-content .subtitle {
    font-size: 17px;
    color: #f4f2f2;
    line-height: 28px;
    margin-bottom: 38px;
    width: 80%;
}
@media (max-width: 1585px) {
    .hero-first-content .subtitle {
        width: 70%;
    }
}
@media (max-width: 768px) {
    .hero-first-content .subtitle {
        font-size: 15px;
        line-height: 26px;
        width: 100%;
        margin-bottom: 30px;
    }
}
.hero-first-content .hero-btn-div {
    display: flex;
    align-items: center;
    -moz-column-gap: 40px;
    column-gap: 40px;
}
@media (max-width: 576px) {
    .hero-first-content .hero-btn-div {
        flex-direction: column;
        justify-content: start;
        align-items: center;
        row-gap: 25px;
    }
}
.hero-first-content .hero-btn-div .hero-btn {
    background: var(--theme-primary);
}
.hero-first-content .hero-btn-div .hero-btn:hover {
    background: #111;
    border: 1px solid #111;
}
@media (max-width: 576px) {
    .hero-first-content .hero-btn-div .hero-btn {
        font-size: 16px;
    }
}
.hero-first-content .hero-btn-div .experience-text a {
    font-size: 21px;
    color: #f4f1f1;
    text-decoration: underline;
    font-weight: 600;
}
@media (max-width: 768px) {
    .hero-first-content .hero-btn-div .experience-text a {
        font-size: 18px;
    }
}
@media (max-width: 576px) {
    .hero-first-content .hero-btn-div .experience-text a {
        font-size: 16px;
    }
}
.section-title-first .small-title {
    font-size: 17px;
    color: var(--theme-white);
    padding: 10px 25px 10px 25px;
    /*border: 1px solid var(--theme-primary);*/
    background-image: linear-gradient(120deg, var(--theme-blue), var(--theme-pink), var(--theme-indigo));
    display: inline-block;
    line-height: 25px;
    border-radius: 30px;
    position: relative;
    margin-bottom: 10px;
    font-weight: 500;
}
.section-steps {
    padding: 80px 20px;
    text-align: center;
}

.section-steps h2 {
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 700;
    color: #222;
}

/* container */

.steps{
    display:grid;
    grid-template-columns: repeat(5,1fr);
    gap:25px;
}

.step{
    background:#fff;
    padding:20px 15px;
    border-radius:10px;
    text-align:center;
    position:relative;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.step:hover{
    transform:translateY(-6px);
}

.step-number{
    width:50px;
    height:50px;
    line-height:50px;
    background:#6c63ff;
    color:#fff;
    font-size:20px;
    font-weight:bold;
    border-radius:50%;
    margin:0 auto 20px;
}

.step h3{
    font-size: 19px;
    margin-bottom: 10px;
    color: #333;
    line-height: 30px;
}

.step p{
    font-size:14px;
    color:#666;
}

/* Tablet */
@media (max-width:992px){
    .steps{
        grid-template-columns: repeat(2,1fr);
    }
}

/* Mobile */
@media (max-width:576px){
    .steps{
        grid-template-columns:1fr;
    }
}
.br-15{
    border-radius: 15px;
}
.cst-about-list ul{
    padding-left: 0px;
}
.cst-about-list ul li {
  gap: 15px;
  display: flex;
  list-style: none;
  margin-bottom: 20px;
    font-size: 16px;
}
.cst-about-list ul li span{
    background-color: var(--theme-base);
    color: var(--theme-white);
    padding: 10px;
    border-radius: 50%;
}

.our_clinic{
    background-color: #f6f3ea;
}
.sec_padding{
    padding: 80px 0;
}
.no-border{
    border: none;
}
.st-text-block h4,
.st-text-block h3{
    margin-bottom: 15px;
    display: block;
}
.st-text-block ul{
    padding-left: 15px;
}
.st-shedule-wrap {
  padding: 20px;
  background: #f9fafc;
  margin-left: 30px;
}
.st-shedule-wrap.st-type1 {
  padding: 0;
  background: #f9f9f9;
}
.st-shedule-wrap.st-type1 .st-shedule {
  border: 10px solid #fff;
}
.st-shedule-wrap.st-type2 {
  padding: 0;
  background: #fff;
}
.st-shedule-wrap.st-type2 .st-shedule {
  border: 1px solid #eaeaea;
  border-radius: 5px;
}
.st-shedule-wrap.st-color1 .st-shedule-title {
  color: #27b1d9;
}
.st-shedule-wrap.st-color2 .st-shedule-title {
  color: #ff375f;
}

.st-shedule {
  border: 1px solid #0cb8b6;
  padding: 30px 20px;
}

.st-shedule-title {
  font-size: 24px;
  font-weight: 600;
  color: #0cb8b6;
  margin-bottom: 8px;
}

.st-shedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.st-shedule-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px dashed #b5b5b5;
  padding: 10px 0;
}

.st-call.st-style1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.st-call.st-style1 .st-call-icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 32px;
  margin-right: 15px;
}
.st-call.st-style1 .st-call-icon svg {
  fill: #111;
}
.st-call.st-style1 .st-call-title {
  font-size: 15px;
  margin-bottom: 1px;
  line-height: 1.2em;
}
.st-call.st-style1 .st-call-number {
  font-size: 18px;
  font-weight: 700;
  color: #0cb8b6;
}

.st-shedule-wrap.st-style1 {
  margin-left: 0;
}

.st-shedule-wrap.st-style2 {
  margin-left: 0;
}

@media screen and (max-width: 991px) {
  .st-shedule-wrap {
    margin-left: 0;
  }
}

.portfolio-details__content table{
    width: 100%;
}
.portfolio-details__content tr td{
    border: 1px solid #666;
    padding: 10px;
}
.portfolio-details__content h3{
    margin-bottom: 22px;
}