:root {
    --primary: #e1662a;
    --secondary: #eb9f2b;
    --light: #F8F8F9;
    --white: #fff;
    --dark: #001D23;        
    --thm-primary: #EB9179;
    --thm-color-2: #AD5959;
    --thm-color-3: #85B3CB;
    --thm-color-4: #6AAEA1;
    --thm-color-5: #A39CBE;
    --thm-extra: #f4f1f0;
    --thm-black: #001D23;
    --thm-white: #fff;
    --thm-gray: #727472;
  --body-font: "Aleo", sans-serif;
  --careox-heading-font: "Quicksand", sans-serif;
  --careox-special-font: "Philosopher", cursive;
  --accent-color: #07a2dc;
  --careox-text: #636363;
  --careox-text-rgb: 99, 99, 99;
  --careox-text-dark: #727472;
  --careox-text-dark-rgb: 114, 116, 114;
  --careox-text-gray: #bcbcbc;
  --careox-text-gray-rgb: 188, 188, 188;
  --careox-base: #c32129;
  --careox-base-rgb: 255, 85, 40;
  --careox-secondary: #eb9f2b;
  --careox-secondary-rgb: 255, 164, 21;
  --careox-gray: #f9f7f4;
  --careox-gray-rgb: 241, 246, 247;
  --careox-gray2: #eae4dd;
  --careox-white: #fff;
  --careox-white-rgb: 255, 255, 255;
  --careox-black: #122f2a;
  --careox-black-rgb: 18, 47, 42;
  --careox-black2: #121212;
  --careox-black2-rgb: 18, 18, 18;
  --careox-black3: #000;
  --careox-black3-rgb: 0, 0, 0;
  --careox-border-color: #dddddd;
  --careox-border-color-rgb: 221, 221, 221;
  --careox-letter-space: 0.1em;
  --careox-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-0 {
    padding-right: 0px;
}
.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(--body-font, "Aleo", sans-serif);
    color: #2d2b2b;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--careox-base, #c32129);
    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(--careox-heading-font, "Quicksand", sans-serif);
    color: var(--careox-black, #122f2a);
}

@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(--careox-base, #c32129);
}

.background-gray {
    background-color: var(--careox-gray);
}

.background-black {
    background-color: var(--careox-black, #122f2a);
}

.background-black-2 {
    background-color: var(--careox-black2, #121212);
}

.careox-text-dark {
    color: var(--careox-text-dark, #727472);
}

.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;
}
.banner_txt .careox-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: transparent;
    color: var(--careox-white, #fff);
    font-size: 17px;
    font-weight: 700;
    border-radius: 30px;
    font-family: var(--body-font);
    letter-spacing: 0.25px;
    padding: 13px 37px;
    transition: 500ms;
    text-transform: capitalize;
    position: relative;
    text-align: center;
}


.banner_txt .careox-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 30px;
    background: #ea9c24;
    transition: all 0.3s;
}

.banner_txt .careox-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: 0 0;
    border-radius: 30px;
    transition: all 0.4s;
    border: 1px solid var(--careox-white);
    transform: scale(1.2, 1.2);
}

.banner_txt .careox-btn:hover {
    color: var(--careox-white);
    background-color: var(--thm-color-2) !important;
}

.banner_txt .careox-btn:hover::before {
    opacity: 0;
    transform: scale(0.5, 0.5);
}

.banner_txt .careox-btn:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}


.careox-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: transparent;
    color: var(--careox-white, #fff);
    font-size: 17px;
    font-weight: 700;
    border-radius: 30px;
    font-family: var(--body-font);
    letter-spacing: 0.25px;
    padding: 13px 37px;
    transition: 500ms;
    text-transform: capitalize;
    position: relative;
    text-align: center;
    z-index: 9;
}

.careox-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 30px;
    background: var(--careox-secondary);
    transition: all 0.3s;
}

.careox-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: 0 0;
    border-radius: 30px;
    transition: all 0.4s;
    border: 1px solid var(--careox-base, #c32129);
    transform: scale(1.2, 1.2);
}

.careox-btn:hover {
    color: #222;
}

.careox-btn:hover::before {
    opacity: 0;
    transform: scale(0.5, 0.5);
}

.careox-btn:hover::after {
    opacity: 1;
    transform: scale(1, 1);
    border-color: #34aa73;
}

.careox-btn span {
    position: relative;
    color: inherit;
    z-index: 2;
}

.careox-btn i {
    font-size: 20px;
    margin-right: 10px;
    top: 2px;
    position: relative;
}

.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 {
    padding: 12px 30px;
    border-bottom: 1px solid var(--careox-gray);
}

.bootstrap-select .dropdown-item:hover,
.bootstrap-select .dropdown-item.active {
    background-color: var(--careox-secondary);
    border-color: var(--careox-secondary);
    color: var(--careox-white, #fff);
}

.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(--careox-text, #636363);
    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(--careox-text, #636363);
    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(--careox-black, #122f2a);
    font-family: var(--careox-special-font, "Old Standard TT", 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(--careox-black, #122f2a);
}

@media (min-width: 481px) {
    .ul-list-one li {
        font-size: 20px;
    }
}

.ul-list-one li::before {
    content: "\e907";
    color: var(--careox-base, #c32129);
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: "azino-icon";
}

.preloader {
    position: fixed;
    background-color: var(--careox-black, #122f2a);
    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: 700;
    margin-right: 8px;
}

.scroll-to-top__wrapper {
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: var(--careox-base, #c32129);
    position: relative;
    overflow: hidden;
}

.scroll-to-top__inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--careox-black, #122f2a);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 70px;
}

/* post paginations */

.post-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .post-pagination {
        margin-top: 10px;
    }
}

.post-pagination a {
    display: flex;
    width: 45px;
    height: 45px;
    background-color: var(--careox-gray);
    align-items: center;
    justify-content: center;
    color: var(--careox-black, #122f2a);
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px;
    transition: 500ms ease;
}

.post-pagination a.current,
.post-pagination a:hover {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
}

.careox-owl__carousel--with-shadow .owl-stage-outer {
    overflow: visible;
}

.careox-owl__carousel--with-shadow .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.careox-owl__carousel--with-shadow .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.careox-owl__carousel--basic-nav.owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.careox-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    border: none;
    outline: none;
    border-radius: 50%;
    opacity: 1;
    margin: 0;
    padding: 0;
}

.careox-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    background-color: var(--careox-gray);
    display: flex;
    justify-content: center;
    opacity: 1;
    align-items: center;
    color: var(--careox-black, #122f2a);
    border-radius: 50%;
    font-size: 17px;
    transition: all 500ms ease;
}

.careox-owl__carousel--basic-nav.owl-carousel .owl-nav button span:hover {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
}


.careox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
    display: none;
}

.sec-title {
    position: relative;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .sec-title {
        padding-bottom: 46px;
        margin-top: -3px;
    }
}

.sec-title__tagline {
    margin: 0;
    font-family: var(--careox-special-font);
    color: #eb9f2e;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 1.2px;
    font-size: 18px;
    line-height: 1em;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .sec-title__tagline {
        font-size: 19px;
        letter-spacing: 1px;
        margin-bottom: 11px;
    }
}

.sec-title__tagline__border {
    width: 4px;
    height: 17px;
    display: inline-block;
    background-color: #F2CE80;
    position: relative;
    top: 2px;
    margin-right: 10px;
}

.sec-title__tagline__border::after {
    position: absolute;
    right: -5px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 3.5px 0 3.5px 5px;
    border-color: transparent transparent transparent currentColor;
    content: "";
    /*animation: zump 2s linear infinite;*/
}

.sec-title__title {
    margin: 0;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    margin: 0;
}

@media (min-width: 768px) {
    .sec-title__title {
        font-size: 43px;
        line-height: 51px;
    }
}

.ui-datepicker .ui-datepicker-header {
    background-image: none;
    background-color: var(--careox-black, #122f2a);
    color: var(--careox-white, #fff);
    font-family: var(--body-font, "Aleo", sans-serif);
}

.ui-datepicker-calendar th span {
    font-family: var(--body-font, "Aleo", sans-serif);
}

.ui-datepicker-calendar td {
    background-color: var(--careox-gray);
    background-image: none;
    font-family: var(--body-font, "Aleo", sans-serif);
    color: var(--careox-text, #636363);
}

.ui-datepicker-calendar td a {
    border-color: var(--careox-border-color, #dddddd);
    background-color: var(--careox-gray);
    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(--careox-border-color, #dddddd);
    background-color: var(--careox-gray);
    background-image: none;
    color: var(--careox-text, #636363);
    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(--careox-white, #fff);
    background-color: var(--careox-base, #c32129);
}

.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(--careox-white, #fff);
    background-color: var(--careox-base, #c32129);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    background-image: none;
    background-color: var(--careox-white, #fff);
    color: var(--careox-black, #122f2a);
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
    top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
    left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
    right: 2px;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/

.video-one {
    position: relative;
    padding: 90px 0 100px;
    z-index: 1;
}

@media (max-width: 767px) {
    .video-one {
        padding: 60px 0 70px;
    }
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
}

.video-one__bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--careox-black, #122f2a);
    opacity: 0.65;
}

.video-one__shape-one {
    position: absolute;
    left: -10px;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto;
    animation: shapeMove 4s linear 0s infinite;
}

@media (max-width: 1199px) {
    .video-one__shape-one {
        display: none;
    }
}

.video-one__shape-two {
    position: absolute;
    right: 7%;
    top: 160px;
    width: 242px;
    height: 230px;
    opacity: 0.1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    animation: treeMove 4s linear 0s infinite;
}

@media (max-width: 1199px) {
    .video-one__shape-two {
        display: none;
    }
}

.video-one--about {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .video-one--about {
        padding: 80px 0;
    }
}

.video-one--about .video-one__bg {
    mask: none;
}

.video-one--about .video-one__bg::after {
    background-color: rgba(var(--careox-black3-rgb, 0, 0, 0), 0.88);
}

.video-one .container {
    position: relative;
    text-align: center;
    z-index: 2;
}

.video-one .video-popup {
    width: 68px;
    height: 68px;
    background-color: var(--careox-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 37px;
    color: var(--careox-black, #122f2a);
    transition: all 500ms ease;
    position: relative;
    z-index: 10;
}

.video-one .video-popup .ripple,
.video-one .video-popup .ripple:before,
.video-one .video-popup .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.25);
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.video-one .video-popup .ripple:before {
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-one .video-popup .ripple::after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.video-one .video-popup:hover {
    color: var(--careox-secondary);
}

.video-one__sub-title {
    font-size: 28px;
    color: var(--careox-white, #fff);
    font-weight: 700;
    letter-spacing: 3.5px;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    margin: 20px 0 15px;
}

@media (min-width: 768px) {
    .video-one__sub-title {
        font-size: 35px;
    }
}

.video-one__title {
    color: var(--careox-white, #fff);
    font-size: 35px;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .video-one__title {
        font-size: 40px;
    }
}

.video-one__text {
    color: var(--careox-white, #fff);
    margin-bottom: 34px;
}

.video-two {
    position: relative;
}

.video-two__wrapper {
    position: relative;
    background-color: var(--careox-white, #fff);
    box-shadow: 0 0 35px 10px rgba(0, 0, 0, 0.04);
}

.video-two__content {
    position: relative;
    padding: 30px 30px 30px 50px;
}

@media (max-width: 767px) {
    .video-two__content {
        padding: 30px 20px;
    }
}

.video-two__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 18px;
}

.video-two__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.video-two__list li {
    position: relative;
    padding-left: 23px;
    margin-bottom: 4px;
}

.video-two__list li a {
    color: inherit;
    font-weight: 500;
    border-bottom: 2px solid currentColor;
}

.video-two__list li a:hover {
    color: var(--careox-secondary);
}

.video-two__list li span {
    color: var(--careox-secondary);
}

.video-two__list__icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    line-height: 1;
    margin: auto;
    display: flex;
    align-items: center;
    color: var(--careox-secondary);
    font-size: 15px;
}

.video-two__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 462px;
    margin-left: auto;
}

@media (max-width: 991px) {
    .video-two__image {
        margin: 0 0 0 50px;
    }
}

@media (max-width: 767px) {
    .video-two__image {
        margin: 0;
    }
}

.video-two__image img {
    max-width: 100%;
    height: auto;
    border-left: 9px solid var(--careox-base, #c32129);
}

@media (max-width: 1199px) {
    .video-two__image img {
        min-height: 200px;
    }
}

.video-two__image .video-popup {
    width: 52px;
    height: 52px;
    background-color: var(--careox-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 28px;
    color: var(--careox-black, #122f2a);
    transition: all 500ms ease;
    z-index: 2;
}

.video-two__image .video-popup .ripple,
.video-two__image .video-popup .ripple:before,
.video-two__image .video-popup .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.5);
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.video-two__image .video-popup .ripple:before {
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-two__image .video-popup .ripple::after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.video-two__image .video-popup:hover {
    color: var(--careox-secondary);
}

.video-three {
    position: relative;
    padding: 60px 0 70px;
    z-index: 1;
}

@media (max-width: 767px) {
    .video-three {
        padding: 380px 0 80px;
    }
}

.video-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.video-three__shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto;
}

.video-three__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.8);
}

.video-three .container {
    position: relative;
    text-align: center;
    z-index: 2;
}

.video-three .video-popup {
    width: 68px;
    height: 68px;
    background-color: var(--careox-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 37px;
    color: var(--careox-black, #122f2a);
    transition: all 500ms ease;
    position: relative;
    z-index: 10;
}

.video-three .video-popup .ripple,
.video-three .video-popup .ripple:before,
.video-three .video-popup .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.25);
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.video-three .video-popup .ripple:before {
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-three .video-popup .ripple::after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.video-three .video-popup:hover {
    color: var(--careox-secondary);
}

.video-three__sub-title {
    font-size: 28px;
    color: var(--careox-white, #fff);
    font-weight: 700;
    letter-spacing: 3.5px;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    margin: 20px 0 15px;
}

@media (min-width: 768px) {
    .video-three__sub-title {
        font-size: 35px;
    }
}

.video-three__title {
    color: var(--careox-white, #fff);
    font-size: 35px;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .video-three__title {
        font-size: 40px;
    }
}

.video-three__text {
    color: var(--careox-white, #fff);
    margin-bottom: 34px;
}

.video-four {
    position: relative;
    padding: 160px 0 190px;
    z-index: 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 777"><path d="m0 80.2c0 0 885-1.2 1485-72.2 370.1-43.8 435 116 435 116v576c0 0-54.3 78-676.7 0-622.3-78-1243.3 76.2-1243.3 76.2z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 777"><path d="m0 80.2c0 0 885-1.2 1485-72.2 370.1-43.8 435 116 435 116v576c0 0-54.3 78-676.7 0-622.3-78-1243.3 76.2-1243.3 76.2z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: cover;
    mask-size: cover;
}

@media (max-width: 1199px) {
    .video-four {
        padding: 120px 0 120px;
    }
}

@media (max-width: 991px) {
    .video-four {
        margin-top: -60px;
        padding: 120px 0 190px;
    }
}

@media (max-width: 767px) {
    .video-four {
        padding: 80px 0 190px;
        margin-bottom: -100px;
    }
}

.video-four::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--careox-black, #122f2a);
    opacity: 0.91;
}

.video-four__shape-one {
    position: absolute;
    left: 11%;
    top: 68px;
    width: 510px;
    height: 100%;
    z-index: 1;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto;
    animation: shapeMove 4s linear 0s infinite;
}

@media (max-width: 1599px) {
    .video-four__shape-one {
        left: 0%;
        top: 60px;
    }
}

@media (max-width: 1299px) {
    .video-four__shape-one {
        display: none;
    }
}

.video-four__shape-two {
    position: absolute;
    right: -15px;
    bottom: 30px;
    width: 359px;
    height: 278px;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
    opacity: 0.6;
    z-index: 1;
    animation: zoomsIn 3s linear 0s infinite;
}

@media (max-width: 1199px) {
    .video-four__shape-two {
        display: none;
    }
}

.video-four .container {
    position: relative;
    z-index: 2;
}

.video-four__area {
    position: relative;
    display: inline-block;
}

@media (max-width: 991px) {
    .video-four__area {
        margin-bottom: 20px;
    }
}

.video-four__area img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

.video-four__area .video-popup {
    width: 70px;
    height: 70px;
    background-color: var(--careox-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 37px;
    color: var(--careox-black, #122f2a);
    transition: all 500ms ease;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 10;
}

.video-four__area .video-popup .ripple,
.video-four__area .video-popup .ripple:before,
.video-four__area .video-popup .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.25);
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.video-four__area .video-popup .ripple:before {
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-four__area .video-popup .ripple::after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.video-four__area .video-popup:hover {
    color: var(--careox-secondary);
}

.video-four__sub-title {
    font-size: 28px;
    color: var(--careox-white, #fff);
    font-weight: 700;
    letter-spacing: 3.5px;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    margin: 20px 0 14px;
}

@media (min-width: 768px) {
    .video-four__sub-title {
        font-size: 35px;
    }
}

.video-four__title {
    color: var(--careox-white, #fff);
    font-size: 35px;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 19px;
}

@media (min-width: 768px) {
    .video-four__title {
        font-size: 40px;
    }
}

.video-four__text {
    color: var(--careox-white, #fff);
    margin-bottom: 34px;
}

.team-one {
    padding: 120px 0;
    position: relative;
}

@media (max-width: 767px) {
    .team-one {
        padding: 80px 0;
    }
}

.team-one--about {
    padding: 0;
}

.team-card {
    position: relative;
    z-index: 1;
    background-color: var(--careox-gray);
    overflow: hidden;
    transition: all 500ms ease;
    border-radius: 10px 10px 0 0;
}

.team-card::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--careox-black, #122f2a);
    opacity: 0;
    visibility: hidden;
    transition: all 700ms ease;
    transform: translate3d(0px, 100%, 0px);
    z-index: -1;
}

.team-card:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0, 0px);
}

.team-card__image {
    position: relative;
    z-index: 1;
}

.team-card__image::after {
    position: absolute;
    right: -5px;
    bottom: -10px;
    width: calc(100% + 5px);
    height: 100%;
    content: "";
    background-color: var(--careox-white, #fff);
    z-index: -1;
    border-radius: 0 0 142px 0;
}

.team-card__image img {
    position: relative;
    width: 100%;
    border-radius: 0 0 142px 0;
}

.team-card__hover {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.team-card__hover__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-color);
    font-size: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--careox-white, #fff);
    transition: all 500ms ease;
}

.team-card__hover__btn::after {
    display: inline-block;
    content: "+";
    transition: 300ms ease;
}

.team-card__hover:hover .team-card__hover__btn::after {
    content: "-";
}

.team-card__hover__social {
    position: absolute;
    bottom: 100%;
    right: 0;
    z-index: 3;
    margin: 0;
    opacity: 0;
    padding-bottom: 14px;
    transform: scaleY(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s linear;
    transform-origin: bottom center;
}

.team-card__hover__social a {
    width: 40px;
    height: 40px;
    background-color: var(--careox-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 14px;
    transition: all 500ms ease;
}

.team-card__hover__social a+a {
    margin-top: 8px;
}

.team-card__hover__social a:hover {
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
}

.team-card__hover:hover .team-card__hover__social {
    opacity: 1;
    transform: scaleY(1);
}

.team-card__content {
    position: relative;
    padding: 35px 30px 26.3px;
}

.team-card__content::after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    right: 74px;
    bottom: 0;
    content: "";
    width: 51px;
    height: 44px;
    background-image: url(../images/shapes/team-hover-arrow.png);
    background-position: center center;
    background-size: cover;
    transition: all 400ms ease;
}

.team-card:hover .team-card__content::after {
    visibility: visible;
    opacity: 1;
    bottom: 14px;
}

.team-card__title {
    margin: 0;
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 11px;
}

.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(--accent-color);
}

.team-card:hover .team-card__title {
    color: var(--careox-white, #fff);
}

.team-card__designation {
    line-height: 1em;
    margin: 0;
    font-size: 17px;
    text-transform: capitalize;
    transition: all 300ms ease;
}

.team-card:hover .team-card__designation {
    color: var(--careox-white, #fff);
}

.team-two {
    padding: 120px 0 0;
    position: relative;
}

@media (max-width: 767px) {
    .team-two {
        padding: 80px 0 0;
    }
}

.team-two--page {
    padding: 120px 0;
    position: relative;
}

@media (max-width: 767px) {
    .team-two--page {
        padding: 80px 0;
    }
}

.team-card-two {
    position: relative;
}

.team-card-two__hover {
    position: absolute;
    top: 32px;
    right: 30px;
}

.team-card-two__hover__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-color);
    font-size: 21px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--careox-white, #fff);
    transition: all 500ms ease;
}

.team-card-two__hover__btn::after {
    display: inline-block;
    content: "+";
    transition: 300ms ease;
}

.team-card-two__hover:hover .team-card-two__hover__btn::after {
    content: "-";
}

.team-card-two__hover__social {
    position: absolute;
    top: 100%;
    right: 0;
    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-two__hover__social a {
    width: 40px;
    height: 40px;
    background-color: var(--careox-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 14px;
    transition: all 500ms ease;
}

.team-card-two__hover__social a+a {
    margin-top: 8px;
}

.team-card-two__hover__social a:hover {
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
}

.team-card-two__hover:hover .team-card-two__hover__social {
    opacity: 1;
    transform: scaleY(1);
}

.team-card-two:hover .team-card-two__hover__btn {
    background-color: var(--careox-white, #fff);
    color: var(--accent-color);
}

.team-card-two__content {
    position: relative;
    z-index: 1;
    padding: 25px 30px 26px;
    background-color: var(--careox-gray);
    border-radius: 20px;
    margin-bottom: 9px;
}

.team-card-two__content::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--accent-color);
    border-radius: 10px;
    transition: all 500ms ease;
    transform: translate3d(0px, 100%, 0px);
    height: 0;
    z-index: -1;
}

.team-card-two:hover .team-card-two__content::after {
    height: 100%;
    transform: translate3d(0px, 0, 0px);
}

.team-card-two__title {
    margin: 0;
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 11px;
}

.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__title a:hover {
    color: inherit;
}

.team-card-two:hover .team-card-two__title {
    color: var(--careox-white, #fff);
}

.team-card-two__designation {
    line-height: 1em;
    margin: 0;
    font-size: 17px;
    text-transform: capitalize;
    transition: all 300ms ease;
}

.team-card-two:hover .team-card-two__designation {
    color: var(--careox-white, #fff);
}

.team-card-two__image {
    position: relative;
    padding: 9px;
    margin: 0 10px;
    border: 1px dashed var(--careox-border-color, #dddddd);
    border-radius: 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .team-card-two__image {
        margin: 0;
    }
}

.team-card-two__image img {
    width: 100%;
    border-radius: 10px;
}

.team-card-two:hover .team-card-two__image {
    border-color: var(--accent-color);
}

.volunteer {
    position: relative;
    padding: 0 0 120px;
}

@media (max-width: 767px) {
    .volunteer {
        padding: 0 0 80px;
    }
}

.volunteer__content {
    position: relative;
}

.volunteer__content .sec-title {
    padding-bottom: 20px;
}

.volunteer__content__text {
    margin-bottom: 32px;
}

.volunteer__area {
    position: relative;
    min-height: 584px;
    margin-right: -200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 920px;
}

@media (max-width: 1600px) {
    .volunteer__area {
        margin-right: -78px;
    }
}

@media (max-width: 1300px) {
    .volunteer__area {
        margin-right: 0;
    }
}

@media (max-width: 1199px) {
    .volunteer__area {
        max-width: 675px;
        margin-top: 45px;
    }
}

@media (max-width: 767px) {
    .volunteer__area {
        flex-wrap: wrap;
        gap: 30px;
        min-height: auto;
        justify-content: flex-start;
    }
}

.volunteer__area__border {
    position: absolute;
    left: 40px;
    top: 150px;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: -1;
}

@media (max-width: 1300px) {
    .volunteer__area__border {
        left: -30px;
    }
}

@media (max-width: 767px) {
    .volunteer__area__border {
        display: none;
    }
}

.volunteer__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

@media (max-width: 767px) {
    .volunteer__item {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }
}

.volunteer__item>a {
    display: inline-block;
    width: 83px;
    height: 83px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.volunteer__item>a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.volunteer__item>a::after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    content: "+";
    font-size: 26px;
    color: var(--careox-white, #fff);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--careox-base-rgb, 255, 85, 40), 0.9);
    border-radius: 50%;
    transition: all 400ms ease;
    opacity: 0;
    transform: scale(0.9);
}

.volunteer__item.volunteer__item--center,
.volunteer__item:hover {
    animation: none;
}

.volunteer__item>a:hover:after {
    opacity: 1;
    transform: scale(1);
}

.volunteer__item__content {
    position: relative;
    z-index: 8;
    transition: all 400ms ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
}

.volunteer__item.volunteer__item--center .volunteer__item__content,
.volunteer__item:hover .volunteer__item__content {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.volunteer__item__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 5px;
}

@media (max-width: 1600px) {
    .volunteer__item__title {
        display: none;
    }
}

.volunteer__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.volunteer__item__title a:hover {
    background-size: 100% 1px;
}

.volunteer__item__title a:hover {
    color: var(--careox-base, #c32129);
}

.volunteer__item__designation {
    margin: 0;
}

@media (max-width: 1600px) {
    .volunteer__item__designation {
        display: none;
    }
}

.volunteer__item:nth-child(2) {
    position: absolute;
    right: 20px;
    top: 0;
}

@media (max-width: 1600px) {
    .volunteer__item:nth-child(2) {
        right: 20px;
    }
}

.volunteer__item:nth-child(3) {
    position: absolute;
    right: 230px;
    top: 0;
}

@media (max-width: 1600px) {
    .volunteer__item:nth-child(3) {
        right: 210px;
    }
}

.volunteer__item:nth-child(4) {
    position: absolute;
    left: 0;
    top: 30px;
}

.volunteer__item:nth-child(5) {
    position: absolute;
    top: 280px;
    left: 45px;
}

.volunteer__item:nth-child(6) {
    position: absolute;
    bottom: 20px;
    left: 205px;
}

.volunteer__item:nth-child(7) {
    position: absolute;
    bottom: 0;
    right: 155px;
}

@media (max-width: 1600px) {
    .volunteer__item:nth-child(7) {
        right: 130px;
    }
}

.team-details {
    padding: 120px 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%;
}

.team-details__content {
    position: relative;
}

@media (min-width: 1200px) {
    .team-details__content {
        padding-left: 30px;
    }
}

.team-details__title {
    text-transform: capitalize;
    margin: 0;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    margin-top: -5px;
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .team-details__title {
        font-size: 35px;
    }
}

@media (min-width: 992px) {
    .team-details__title {
        font-size: 40px;
    }
}

.team-details__designation {
    margin: 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.team-details__text {
    margin: 0;
}

.team-details__list {
    margin: 31px 0;
    padding: 0;
    list-style: none;
}

.team-details__list li {
    position: relative;
    font-size: 16px;
    padding-left: 27px;
    margin-bottom: 3px;
}

.team-details__list li>i {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--careox-secondary);
}

.team-details__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.team-details__social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--careox-gray);
    font-size: 14px;
    color: var(--accent-color);
    transition: all 500ms ease;
    border-radius: 50%;
}

.team-details__social a:hover {
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
}

.team-details__progress {
    position: relative;
}

.team-details__progress+.team-details__progress {
    margin-top: 20px;
}

.team-details__progress__title {
    text-transform: capitalize;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-details__progress__bar {
    width: 100%;
    height: 9px;
    background-color: var(--careox-gray);
    position: relative;
    border-radius: 20px;
}

.team-details__progress__inner {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--accent-color);
    transition: all 700ms linear;
    border-radius: 20px;
    width: 0px;
}

.team-details__progress__number {
    position: absolute;
    bottom: calc(100% + 5px);
    right: 0;
    font-size: 16px;
    font-weight: 400;
}
.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-one__img-box {
  position: relative;
  display: block;
}

.blog-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  z-index: 1;
}

.blog-one__img:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0px;
  background-color: rgba(var(--wishon-black-rgb), .30);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);
  border-radius: 5px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.blog-one__single:hover .blog-one__img:before {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);
  height: 100%;
}

.blog-one__img img {
  width: 100%;
  border-radius: 5px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.blog-one__single:hover .blog-one__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05)
}

.blog-one__date {
  position: absolute;
  bottom: 0;
  right: 20px;
  background-color: var(--careox-base, #c32129);
  border-radius: 5px;
  border-bottom-right-radius: 0;
  padding: 16px 18px 0px;
  z-index: 3;
}

.blog-one__date span {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  margin-bottom: 5px;
  display: block;
}

.blog-one__date p {
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  color: #fff;
  /* margin-top: -6px; */
}

.blog-one__content-box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  padding: 22px 30px 10px;
  margin-top: -30px;
  margin-left: 20px;
  margin-right: 20px;
  z-index: 2;
}

.blog-one__meta {
  position: relative;
  display: flex;
  align-items: center;
    margin-bottom: 0px;
    margin-top: 15px;
}

.blog-one__meta li {
  position: relative;
  display: block;
}

.blog-one__meta li+li {
  margin-left: 7px;
}

.blog-one__meta li a {
  font-size: 14px;
  color: #c32129;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__meta li a:hover {
  color: var(--careox-base, #c32129);
}

.blog-one__meta li a i {
  color: var(--wishon-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__meta li a:hover i {
  color: var(--careox-base, #c32129);
}

.blog-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 31px;
  margin-top: 7px;
  margin-bottom: 22px;
}

.blog-one__title a {
  color: #111;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__title a:hover {
  color: var(--careox-base, #c32129);
}

.blog-one__read-more {
  position: relative;
  display: block;
  padding-top: 8px;
  border-top: 1px solid var(--careox-base, #c32129);
}

.blog-one__read-more a {
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  color: #111;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__read-more a:hover {
  color: var(--careox-base, #c32129);
}

.blog-one__read-more a span {
  color: var(--careox-base, #c32129);
  margin-right: 7px;
}

.blog-one {
    padding: 120px 0 90px;
}

@media (max-width: 767px) {
    .blog-one {
        padding: 80px 0 50px;
    }
}

.blog-one--page {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .blog-one--page {
        padding: 80px 0;
    }
}

.blog-one--home .sec-title {
    text-align: center;
}

@media (min-width: 992px) {
    .blog-one__carousel .owl-nav {
        display: none;
    }
}

.blog-two {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .blog-two {
        padding: 80px 0;
    }
}

.blog-two--home-three {
    position: relative;
}

.blog-two--home-three .blog-card__title {
    text-align: center;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 450px) {
    .blog-two--home-three .blog-card__title {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.blog-two--home-three .blog-card__text {
    text-align: center;
    max-width: 325px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 450px) {
    .blog-two--home-three .blog-card__text {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.blog-two--home-three .blog-card__link {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.blog-two--home-three .text-end {
    margin-top: 68px;
}

@media (max-width: 767px) {
    .blog-two--home-three .text-end {
        margin: -15px 0 45px;
        text-align: left !important;
    }
}

.blog-card-two .blog-card__image {
    margin-bottom: 27px;
}

.blog-card-two .blog-card__meta {
    margin-bottom: 6px;
}

.blog-card-two .blog-card__title {
    font-size: 25px;
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .blog-card-two .blog-card__title {
        font-size: 30px;
    }
}

.blog-card-two .blog-card__date {
    bottom: 0;
}

.blog-card-two__text {
    margin: 0;
    font-size: 15px;
    line-height: 2em;
    margin-top: 12px;
}

.blog-card-list {
    position: relative;
}

.blog-card-list__image {
    position: relative;
    overflow: hidden;
    background-color: var(--careox-black, #122f2a);
    margin-bottom: 30px;
}

.blog-card-list__image img {
    transition: 0.5s;
    background-size: cover;
    max-width: 100%;
    mix-blend-mode: luminosity;
}

.blog-card-list__image img:nth-child(1) {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-card-list__image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

.blog-card-list__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.5);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20%);
    transition: opacity 500ms ease, transform 500ms ease;
}

.blog-card-list__image__link::before,
.blog-card-list__image__link::after {
    content: "";
    width: 32px;
    height: 2px;
    background-color: var(--careox-white, #fff);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-card-list__image__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card-list:hover .blog-card-list__image>a {
    opacity: 1;
    transform: translateY(0);
}

.blog-card-list:hover .blog-card-list__image img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.blog-card-list:hover .blog-card-list__image img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-card-list__content {
    position: relative;
}

.blog-card-list__meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 22px;
}

.blog-card-list__meta li {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    margin: 0 0;
}

.blog-card-list__meta li img {
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    width: 32px !important;
}

.blog-card-list__meta li i {
    color: var(--accent-color);
    font-size: 20px;
    margin-right: 10px;
}

.blog-card-list__meta li a {
    color: inherit;
    transition: all 500ms ease;
}

.blog-card-list__meta li a:hover {
    color: var(--accent-color);
}

.blog-card-list__meta li.blog-card-list__meta__cats {
    position: relative;
}

.blog-card-list__meta li.blog-card-list__meta__cats a {
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
    border-radius: 30px;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
    padding: 0px 30px;
}

.blog-card-list__meta li.blog-card-list__meta__cats a:hover {
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
}

.blog-card-list__title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 11px;
}

.blog-card-list__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-list__title a:hover {
    background-size: 100% 1px;
}

.blog-card-list__title a:hover {
    color: var(--accent-color);
}

.blog-card-list__text {
    line-height: 26px;
    margin: 0 0 32px;
}

@media (min-width: 1200px) {
    .blog-card-list__text {
        padding-right: 50px;
    }
}

.blog-card-list__link {
    display: inline-block;
    font-size: 16px;
    color: var(--careox-black, #122f2a);
    font-weight: 700;
    text-align: center;
    height: 40px;
    max-width: 145px;
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.blog-card-list__link__front {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
    perspective: 300px;
    transition: transform 500ms ease;
    transform-origin: top center;
    transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.blog-card-list__link__back {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 700ms ease, top 700ms ease;
    transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
    perspective: 300px;
    transform-origin: bottom center;
    width: 100%;
}

.blog-card-list__link__back span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
    margin-right: 11px;
    transition: all 500ms ease;
}

.blog-card-list__link:hover {
    color: var(--accent-color);
}

.blog-card-list:hover .blog-card-list__link__front {
    transform-origin: bottom center;
    transform: translateY(-100%) translateZ(150px) scaleY(0) rotateX(90deg);
}

.blog-card-list:hover .blog-card-list__link__back {
    transition: transform 500ms ease, top 500ms ease;
    transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

/*--------------------------------------------------------------
# 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__control {
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    position: relative;
}

.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: 5px;
    border: none;
    outline: none !important;
    color: var(--careox-text-dark, #727472);
    font-size: 16px;
}

.form-one .bootstrap-select>.dropdown-toggle::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    font-size: 16px;
    color: var(--careox-text-dark, #727472);
    border: none;
    margin: auto 0;
    display: flex;
    align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one input[type=tel],
.form-one select,
.form-one textarea {
    display: block;
    width: 100%;
    height: 58px;
    background-color: transparent;
    color: var(--careox-text-dark, #727472);
    font-size: 16px;
    font-weight: 400;
    border: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.15);
    border-radius: 5px;
    outline: none;
    padding-left: 30px;
    padding-right: 30px;
}

.form-one textarea {
    height: 150px;
    padding-top: 20px;
    margin-bottom: 10px;
}

.form-one .bootstrap-select>.dropdown-toggle {
    display: flex;
    align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/

.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--careox-base, #c32129);
    -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(--careox-base, #c32129);
    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(--careox-base, #c32129);
    opacity: 0.4;
}

.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-cta {
    position: relative;
}

.footer-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
}

.footer-cta__top {
    position: relative;
    border-bottom: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.1);
    padding: 50px 0;
    margin-bottom: 49px;
}

.footer-cta__top__left {
    position: relative;
    min-height: 74px;
    padding: 11px 0 0 94px;
}

.footer-cta__top__left__icon {
    font-size: 74px;
    color: var(--careox-secondary);
    line-height: 1;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
}

.footer-cta__top__left__title {
    color: var(--careox-white, #fff);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.33px;
    margin: 0;
}

.footer-cta__top__left__text {
    font-size: 16px;
    color: var(--careox-text-gray, #bcbcbc);
    letter-spacing: 0.24px;
    margin: 0;
}

.footer-cta__newsletter {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .footer-cta__newsletter {
        margin: 35px 0 0;
    }
}

.footer-cta__newsletter input[type=text] {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    height: 60px;
    background-color: var(--careox-white, #fff);
    color: var(--careox-text-gray, #bcbcbc);
    font-size: 16px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease;
    border-radius: 5px;
}

.footer-cta__newsletter input[type=text]:focus {
    color: var(--careox-black, #122f2a);
}

.footer-cta__newsletter button[type=submit] {
    background-color: transparent;
    width: auto;
    height: auto;
    border: none;
    outline: none;
    color: var(--careox-secondary);
    font-size: 16px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.footer-cta__newsletter button[type=submit]:hover {
    color: var(--careox-base, #c32129);
}

.footer-cta .container {
    position: relative;
}

.footer-cta__bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-cta__bottom__inner {
    padding: 25px 0;
    border-top: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.1);
}

.footer-cta__copyright {
    margin: 0;
    font-size: 16px;
    color: var(--careox-text-gray, #bcbcbc);
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget__logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-widget__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--careox-white, #fff);
    text-transform: capitalize;
    margin: 0;
    margin-top: 21px;
    margin-bottom: 34px;
}

.footer-widget--links-two {
    padding-left: 45px;
}

@media (max-width: 1199px) {
    .footer-widget--links-two {
        padding-left: 0;
    }
}

.footer-widget__links {
    margin-top: -10px;
    margin-bottom: -13px;
}

.footer-widget__links li {
    font-size: 16px;
    color: var(--careox-text-gray, #bcbcbc);
    font-weight: 400;
    line-height: 41px;
}

.footer-widget__links li a {
    color: inherit;
    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(--careox-white, #fff);
}

.footer-widget__info {
    margin-top: -4px;
    margin-bottom: -13px;
}
.footer-widget--contact .footer-widget__info li{
    font-size: 22px;
}
.footer-widget--contact .footer-widget__info li i{
    font-size: 27px;
    margin-right: 10px;
}
.footer-widget--contact .footer-widget__info li a{
    padding-left: 15px;
}
.footer-widget__info li {
    font-size: 16px;
    color: var(--careox-text-gray, #bcbcbc);
    font-weight: 400;
    line-height: 28px;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.footer-widget__info li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.footer-widget__info li a:hover {
    background-size: 100% 1px;
}

.footer-widget__info li a:hover {
    color: var(--careox-white, #fff);
}

.footer-widget__info__icon {
    font-size: 17px;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

.footer-widget__text {
    font-size: 16px;
    color: var(--careox-text-gray, #bcbcbc);
    letter-spacing: 0.24px;
    line-height: 29px;
    margin: 0;
    margin-bottom: 23px;
    max-width: 319px;
}

.footer-widget__box {
    display: flex;
    align-items: center;
    position: relative;
    gap: 16px;
}

.footer-widget__box__icon {
    font-size: 34px;
    color: var(--careox-secondary);
    line-height: 1;
    display: flex;
    align-items: center;
}

.footer-widget__box__text {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    color: var(--careox-white, #fff);
    letter-spacing: 0.24px;
    margin: 0;
}

.footer-widget__box__text a {
    display: block;
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.footer-widget__box__text a:hover {
    background-size: 100% 1px;
}

.footer-widget__box__text a:hover {
    color: var(--careox-base, #c32129);
}

.footer-widget__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 33px;
}

.footer-widget__social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.2);
    font-size: 15px;
    color: var(--careox-text-gray, #bcbcbc);
    transition: all 500ms ease;
    border-radius: 50%;
}

.footer-widget__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.footer-widget__social a:hover {
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
}

.footer-widget__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-one {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

@media (max-width: 767px) {
    .contact-one {
        padding: 80px 0;
    }
}

.contact-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.contact-one__bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(11, 11, 11, 0.8);
}

.contact-one__shape {
    position: absolute;
    left: -20px;
    bottom: 155px;
    width: 323px;
    height: 186px;
    animation: shrinkAnim 4s ease 0s infinite;
    display: none;
}

@media (min-width: 1600px) {
    .contact-one__shape {
        display: block;
    }
}

.contact-one__image {
    position: relative;
    margin-right: 20px;
    margin-top: 5px;
    max-width: 665px;
    float: right;
    z-index: 2;
}

@media (max-width: 1400px) {
    .contact-one__image {
        margin-right: 0;
    }
}

@media (max-width: 1199px) {
    .contact-one__image {
        float: left;
        margin-bottom: 50px;
    }
}

.contact-one__image__shape {
    position: absolute;
    left: -145px;
    right: 0;
    top: 26px;
    margin: auto;
    width: 91px;
    height: 91px;
    z-index: -1;
    opacity: 0.65;
    animation: blinkAnim 3s ease 0s infinite;
}

.contact-one__image img {
    max-width: inherit;
}

@media (max-width: 767px) {
    .contact-one__image img {
        max-width: 100%;
    }
}

.contact-one__image__icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 198px;
    height: 198px;
    background-color: #d3cfc8;
    border: 10px solid var(--careox-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: treeMove2 4s linear 0s infinite;
}

@media (max-width: 767px) {
    .contact-one__image__icon {
        display: none;
    }
}

.contact-one__image__icon img {
    width: 105px;
}

.contact-one__image__info {
    position: absolute;
    right: 15px;
    bottom: 75px;
    padding: 0 0 0 76px;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .contact-one__image__info {
        position: relative;
        right: auto;
        bottom: 0;
        transform: none;
        margin: 30px 0 0;
    }
}

.contact-one__image__info__icon {
    color: var(--careox-base, #c32129);
    font-size: 56px;
    position: absolute;
    left: 0;
    top: -2px;
    line-height: 56px;
}

.contact-one__image__info__title {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.1;
    color: var(--careox-base, #c32129);
}

.contact-one__image__info__text {
    font-size: 22px;
    color: var(--careox-white, #fff);
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
}

.contact-one__image__info__text a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.contact-one__image__info__text a:hover {
    background-size: 100% 1px;
}

.contact-one__image__info__text a:hover {
    color: var(--careox-base, #c32129);
}

.contact-one__content {
    position: relative;
    padding: 0;
}

.contact-one .sec-title {
    position: relative;
    padding-bottom: 20px;
}

.contact-one .sec-title__title {
    color: var(--careox-white, #fff);
}

.contact-one__text {
    margin: 0;
    color: var(--careox-white, #fff);
    max-width: 490px;
    margin-bottom: 34px;
    position: relative;
}

.contact-one__form {
    position: relative;
}

.contact-one--page {
    position: relative;
}

.contact-one--page .sec-title__title {
    color: var(--careox-black, #122f2a);
}

.contact-one--page .contact-one__image__info__text {
    color: var(--careox-black, #122f2a);
}

.contact-one--page .contact-one__text {
    color: var(--careox-text, #636363);
}

.form-one .bootstrap-select>.dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one input[type=tel],
.form-one select,
.form-one textarea {
    border-color: var(--careox-border-color, #dddddd);
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/

.topbar-one {
    background-color: var(--careox-gray);
    position: relative;
    z-index: 1;
    /*background-image: url(../images/backgrounds/slider-1-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
}

.topbar-one::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 165px;
    height: 100%;
    background-color: var(--careox-base, #c32129);
    content: "";
    clip-path: polygon(0 0, 100% 0, 42% 100%, 0% 100%);
}

@media (max-width: 1500px) {
    .topbar-one::after {
        display: none;
    }
}

.topbar-one__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.topbar-one__info {
    text-transform: uppercase;
    color: var(--careox-text-dark, #727472);
    letter-spacing: 0.24px;
    margin: 0;
}

.topbar-one__info span {
    color: var(--careox-base, #c32129);
}

.topbar-one__social {
    display: flex;
    align-items: center;
    line-height: 1em;
}

.topbar-one__social__text {
    margin: 0 19px 0 0;
    color: var(--careox-text-dark, #727472);
    letter-spacing: 0.24px;
}

@media (max-width: 767px) {
    .topbar-one__social__text {
        display: none;
    }
}

.topbar-one__social a {
    width: 36px;
    height: 32px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--careox-white, #fff);
    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 {
    color: var(--careox-white, #fff);
}

.topbar-one__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

@keyframes iconTranslateY {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

.topbar-one__bottom {
    position: relative;
    z-index: 1;
    overflow: hidden;
    /*background-color: #fff;*/
    
    background-image: url(../images/backgrounds/slider-1-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*.topbar-one__bottom::after {
    position: absolute;
    left: 88px;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--careox-black, #122f2a);
    content: "";
    z-index: -1;
    clip-path: polygon(6.7% 0, 100% 0, 100% 100%, 0% 100%);
}*/

@media (max-width: 1700px) {
    .topbar-one__bottom::after {
        clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    }
}

@media (max-width: 1500px) {
    .topbar-one__bottom::after {
        display: none;
    }
}

.topbar-one__bottom__inner {
    position: relative;
    display: flex;
    align-items: center;
    /*background-color: var(--careox-white, #fff);*/
    padding: 5px 0;
}

.topbar-one__bottom__inner::after {
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    background-color: inherit;
    border-radius: 20px 0 0 20px;
    width: 24px;
    height: 80px;
}

.topbar-one__bottom__logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .topbar-one__bottom__logo img {
        max-width: 170px;
    }
}

@media (max-width: 767px) {
    .topbar-one__bottom__logo {
        width: 100%;
        justify-content: center;
    }
    .topbar-one__bottom__logo img {
        max-width: 150px;
    }
}

.topbar-one__bottom__right {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 60px;
}

@media (max-width: 1199px) {
    .topbar-one__bottom__right {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .topbar-one__bottom__right {
        display: none;
    }
}

.topbar-one__bottom__info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 0;
}

@media (max-width: 991px) {
    .topbar-one__bottom__info:nth-child(3) {
        display: none;
    }
}

.topbar-one__bottom__info__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 52px;
    background-color: var(--accent-color);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52.000000 51.000000"><g transform="translate(0.000000,51.000000) scale(0.050000,-0.050000)"><path d="M291 938 c-51 -32 -108 -85 -127 -118 -19 -33 -41 -60 -49 -60 -8 0 -15 -12 -15 -28 0 -15 -13 -38 -28 -51 -41 -33 -59 -201 -33 -297 71 -263 451 -444 667 -317 109 63 343 353 286 353 -6 0 -1 25 9 55 100 294 -431 640 -710 463z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52.000000 51.000000"><g transform="translate(0.000000,51.000000) scale(0.050000,-0.050000)"><path d="M291 938 c-51 -32 -108 -85 -127 -118 -19 -33 -41 -60 -49 -60 -8 0 -15 -12 -15 -28 0 -15 -13 -38 -28 -51 -41 -33 -59 -201 -33 -297 71 -263 451 -444 667 -317 109 63 343 353 286 353 -6 0 -1 25 9 55 100 294 -431 640 -710 463z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    font-size: 24px;
    color: var(--careox-white, #fff);
    transition: all 500ms ease;
}

.topbar-one__bottom__info__icon::after {
    position: absolute;
    content: "";
    background-color: var(--careox-black, #122f2a);
    width: 100%;
    height: 0%;
    left: 50%;
    top: 50%;
    border-radius: 25px;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all 500ms ease;
}

.topbar-one__bottom__info__icon span {
    display: block;
    transition: all 500ms ease;
    transform: scale(1);
}

.topbar-one__bottom__info:hover .topbar-one__bottom__info__icon::after {
    height: 100%;
}

.topbar-one__bottom__info:hover .topbar-one__bottom__info__icon span {
    transform: scale(0.9);
}

.topbar-one__bottom__info__text {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
}

.topbar-one__bottom__info__text a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.topbar-one__bottom__info__text a:hover {
    background-size: 100% 1px;
}

.topbar-one__bottom__info__text a:hover {
    color: var(--careox-base, #c32129);
}

.topbar-one__bottom__info__title {
    margin: 0;
    color: var(--careox-text-dark, #727472);
    font-size: 17px;
    line-height: 1.1;
}

.topbar-one__bottom__button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    /*background-color: var(--careox-white, #fff);*/
    width: 50%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    padding-right: 28px;
}

.topbar-one__bottom__button img {
    width: 65px;
    height: 66px;
    overflow: hidden;
    display: none;
    animation: shrinkAnim 3s ease 0s infinite;
}

@media (min-width: 1800px) {
    .topbar-one__bottom__button img {
        display: inline-block;
    }
}

.topbar-one__bottom__button .careox-btn {
    padding: 13px 34px;
    display: none;
}

@media (min-width: 1700px) {
    .topbar-one__bottom__button .careox-btn {
        display: inline-block;
    }
}

.topbar-two {
    position: relative;
    background-color: var(--careox-black2, #121212);
}

.topbar-two::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 14%;
    height: 101%;
    content: "";
    background-color: var(--careox-secondary);
    clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
}

@media (max-width: 1700px) {
    .topbar-two::before {
        width: 10%;
    }
}

@media (max-width: 1400px) {
    .topbar-two::before {
        display: none;
    }
}

.topbar-two::after {
    position: absolute;
    right: 0;
    top: 0;
    width: 14%;
    height: 101%;
    content: "";
    background-color: var(--careox-secondary);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 18% 100%);
}

@media (max-width: 1700px) {
    .topbar-two::after {
        width: 10%;
    }
}

@media (max-width: 1400px) {
    .topbar-two::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .topbar-two {
        display: none;
    }
}

.topbar-two__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
}

.topbar-two__info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-two__info li {
    color: var(--careox-gray);
    font-size: 14px;
}

.topbar-two__info li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.topbar-two__info li a:hover {
    background-size: 100% 1px;
}

.topbar-two__info li a:hover {
    color: var(--careox-base, #c32129);
}

.topbar-two__info__icon {
    color: var(--careox-base, #c32129);
    margin-right: 5px;
}

.topbar-two__nav {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-two__nav li {
    color: var(--careox-gray);
    font-size: 14px;
}

.topbar-two__nav li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.topbar-two__nav li a:hover {
    background-size: 100% 1px;
}

.topbar-two__nav li a:hover {
    color: var(--careox-base, #c32129);
}

.topbar-two__nav li:not(:first-of-type)::before {
    content: "";
    position: relative;
    margin-left: 6px;
    margin-right: 6px;
    display: inline-block;
    content: "/";
    color: inherit;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/

.main-header {
    position: absolute;
    background-color: transparent;
    left: 0;
    width: 100%;
    z-index: 9;
}

.main-header__inner {
    display: flex;
    align-items: center;
    background-color: var(--careox-black, #122f2a);
    padding: 0 40px;
    position: relative;
    /*! border-radius: 50px; */
}

@media (max-width: 1199px) {
    .main-header__inner {
        padding: 10px 25px;
    }
}

.main-header__right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

@media (max-width: 1199px) {
    .main-header__right {
        width: 100%;
        margin: 0;
        justify-content: space-between;
    }
}

.main-header__cart,
.main-header__search {
    font-size: 22px;
    color: var(--careox-text-gray, #bcbcbc);
    transition: all 500ms ease;
    margin-left: 20px;
    line-height: 1em;
}

.main-header__cart:hover,
.main-header__search:hover {
    color: var(--careox-secondary);
}

.main-header__cart {
    margin-left: 50px;
    position: relative;
}

@media (max-width: 1199px) {
    .main-header__cart {
        margin-left: 32px;
    }
}

.main-header__cart::after {
    position: absolute;
    left: -25px;
    top: -6px;
    width: 1px;
    height: 35px;
    content: "";
    background-color: rgba(var(--careox-text-gray-rgb, 188, 188, 188), 0.52);
}

@media (max-width: 1199px) {
    .main-header__cart::after {
        left: -16px;
    }
}

.main-header__cart__count {
    width: 17px;
    height: 17px;
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: var(--careox-secondary);
    border-radius: 50%;
    font-size: 8px;
    color: var(--careox-white, #fff);
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header__nav {
    position: relative;
}

.main-header--two {
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    width: 100%;
    /*border-bottom: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.2);*/
    /*border-bottom: 1px solid rgba(91, 91, 91, 0.2);*/
}

.main-header--two.sticky-header--cloned {
    background-color: var(--careox-gray);
    border: none;
}

.main-header--two.sticky-header--cloned .main-menu .main-menu__list>li {
    padding-top: 35.25px;
    padding-bottom: 35.25px;
}

@media (max-width: 500px) {
    .main-header--two .main-header__logo img {
        max-width: 180px;
    }
}

@media (max-width: 1199px) {
    .main-header--two .mobile-nav__btn {
        margin-left: auto;
        margin-right: 0;
    }
}

.main-header--two .mobile-nav__btn span {
    background-color: var(--careox-white, #fff);
}

.main-header--two .main-header__btn:hover {
    color: var(--careox-black, #122f2a);
}

.main-header--two .container-fluid {
    max-width: 100%;
}

.main-header--two.sticky-header--cloned .main-header__inner,
.main-header--two .main-header__inner {
    background-color: transparent;
    padding: 0 135px;
}

@media (max-width: 1899px) {
    .main-header--two.sticky-header--cloned .main-header__inner,
    .main-header--two .main-header__inner {
        padding: 0 85px;
    }
}

@media (max-width: 1799px) {
    .main-header--two.sticky-header--cloned .main-header__inner,
    .main-header--two .main-header__inner {
        padding: 0 25px;
    }
}

@media (max-width: 1599px) {
    .main-header--two.sticky-header--cloned .main-header__inner,
    .main-header--two .main-header__inner {
        padding: 0 15px;
    }
}

@media (max-width: 1199px) {
    .main-header--two.sticky-header--cloned .main-header__inner,
    .main-header--two .main-header__inner {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .main-header--two.sticky-header--cloned .main-header__inner,
    .main-header--two .main-header__inner {
        padding-left: 0;
        padding-right: 0;
    }
}

.main-header--two .main-menu {
    margin-left: auto;
}

.main-header--two .main-menu .main-menu__list>li {
    padding-top: 34px;
    padding-bottom: 34px;
}

.main-header--two .main-menu .main-menu__list>li>a {
    color: var(--thm-black);
}

.main-header--two .main-header__right {
    margin-left: 0;
}

@media (min-width: 1400px) {
    .main-header--two .main-header__right {
        margin-left: 40px;
    }
}

.main-header--two .main-header__cart,
.main-header--two .main-header__search {
    color: var(--careox-white, #fff);
}

@media (max-width: 1499px) {
    .main-header--two .main-header__cart,
    .main-header--two .main-header__search {
        margin-left: 30px;
    }
}

.main-header--two .main-header__cart:hover,
.main-header--two .main-header__search:hover {
    color: var(--careox-secondary);
}

.main-header--two .main-header__cart::after {
    background-color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.2);
}

@media (max-width: 1499px) {
    .main-header--two .main-header__cart::after {
        left: -15px;
    }
}

.main-header--two .careox-btn {
    margin-left: 60px;
}

@media (max-width: 1499px) {
    .main-header--two .careox-btn {
        margin-left: 25px;
        padding: 13px 25px;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .main-header--two .careox-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .main-header--two .careox-btn {
        display: none;
    }
}

.main-header--two .careox-btn::before {
    background-color: var(--careox-base, #c32129);
}

.main-header--three {
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    width: 100%;
}

.main-header--three::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 26.3%;
    height: 170px;
    content: "";
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 103.000000"><g transform="translate(0.000000,103.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M0 1573 l0 -486 315 -152 c1022 -493 2240 -846 3162 -916 1390 -106 2286 544 2481 1801 13 83 28 170 33 195 l10 45 -3001 0 -3000 0 0 -487z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 103.000000"><g transform="translate(0.000000,103.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M0 1573 l0 -486 315 -152 c1022 -493 2240 -846 3162 -916 1390 -106 2286 544 2481 1801 13 83 28 170 33 195 l10 45 -3001 0 -3000 0 0 -487z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: bottom right;
    mask-position: bottom right;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--careox-white, #fff);
    z-index: -1;
    transition: 500ms ease;
}

@media (min-width: 1330px) and (max-width: 1700px) {
    .main-header--three::before {
        width: 23.3%;
    }
}

@media (max-width: 1199px) {
    .main-header--three::before {
        width: 330px;
        height: 128px;
    }
}

@media (max-width: 490px) {
    .main-header--three::before {
        width: 226px;
        height: 98px;
    }
}

.main-header--three::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 25.8%;
    height: 160px;
    content: "";
    background-image: url(../images/shapes/header-border.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: -1;
    transition: 500ms ease;
}

@media (min-width: 1330px) and (max-width: 1700px) {
    .main-header--three::after {
        width: 22.8%;
    }
}

@media (max-width: 1199px) {
    .main-header--three::after {
        width: 318px;
        height: 116px;
        background-size: cover;
    }
}

@media (max-width: 490px) {
    .main-header--three::after {
        display: none;
    }
}

.main-header--three.sticky-header--cloned {
    background-color: var(--careox-black, #122f2a);
}

.main-header--three.sticky-header--cloned::before,
.main-header--three.sticky-header--cloned::after {
    display: none;
}

.main-header--three.sticky-header--cloned .main-header__logo__sticky {
    opacity: 1;
}

.main-header--three.sticky-header--cloned .main-menu .main-menu__list>li {
    padding-top: 35.25px;
    padding-bottom: 35.25px;
}

@media (max-width: 500px) {
    .main-header--three .main-header__logo img {
        max-width: 170px;
    }
}

.main-header--three .main-header__logo {
    position: relative;
}

.main-header--three .main-header__logo__sticky {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

@media (max-width: 1199px) {
    .main-header--three .mobile-nav__btn {
        margin-left: auto;
        margin-right: 0;
    }
}

.main-header--three .mobile-nav__btn span {
    background-color: var(--careox-white, #fff);
}

.main-header--three .main-header__btn:hover {
    color: var(--careox-black, #122f2a);
}

.main-header--three .container-fluid {
    max-width: 100%;
}

.main-header--three.sticky-header--cloned .main-header__inner,
.main-header--three .main-header__inner {
    background-color: transparent;
    padding: 0 135px;
}

@media (max-width: 1899px) {
    .main-header--three.sticky-header--cloned .main-header__inner,
    .main-header--three .main-header__inner {
        padding: 0 85px;
    }
}

@media (max-width: 1799px) {
    .main-header--three.sticky-header--cloned .main-header__inner,
    .main-header--three .main-header__inner {
        padding: 0 25px;
    }
}

@media (max-width: 1599px) {
    .main-header--three.sticky-header--cloned .main-header__inner,
    .main-header--three .main-header__inner {
        padding: 0 15px;
    }
}

@media (max-width: 1199px) {
    .main-header--three.sticky-header--cloned .main-header__inner,
    .main-header--three .main-header__inner {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .main-header--three.sticky-header--cloned .main-header__inner,
    .main-header--three .main-header__inner {
        padding-left: 0;
        padding-right: 0;
    }
}

.main-header--three .main-menu {
    margin-left: auto;
}

.main-header--three .main-menu .main-menu__list>li {
    padding-top: 51.25px;
    padding-bottom: 51.25px;
}

@media (max-width: 1599px) {
    .main-header--three .main-menu .main-menu__list>li {
        margin-left: 40px;
    }
}

.main-header--three .main-menu .main-menu__list>li>a {
    color: var(--careox-white, #fff);
}

.main-header--three .main-header__right {
    margin-left: 0;
}

@media (min-width: 1400px) {
    .main-header--three .main-header__right {
        margin-left: 40px;
    }
}

.main-header--three .main-header__cart,
.main-header--three .main-header__search {
    color: var(--careox-white, #fff);
}

@media (max-width: 1499px) {
    .main-header--three .main-header__cart,
    .main-header--three .main-header__search {
        margin-left: 30px;
    }
}

.main-header--three .main-header__cart:hover,
.main-header--three .main-header__search:hover {
    color: var(--careox-secondary);
}

.main-header--three .main-header__cart::after {
    background-color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.2);
}

@media (max-width: 1499px) {
    .main-header--three .main-header__cart::after {
        left: -15px;
    }
}

.main-header--three .careox-btn {
    margin-left: 60px;
}

@media (max-width: 1499px) {
    .main-header--three .careox-btn {
        margin-left: 25px;
        padding: 13px 20px;
    }
}

@media (min-width: 1200px) and (max-width: 1360px) {
    .main-header--three .careox-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .main-header--three .careox-btn {
        display: none;
    }
}

.main-header--three .careox-btn::before {
    background-color: var(--careox-base, #c32129);
}

.main-header--four {
    position: relative;
    padding: 0 0 0 60px;
    background-color: var(--careox-white, #fff);
}

@media (max-width: 1500px) {
    .main-header--four {
        padding-left: 15px;
    }
}

@media (max-width: 1300px) {
    .main-header--four {
        padding-left: 0;
    }
    .main-header--four .main-menu .main-menu__list>li+li {
        margin-left: 35px;
    }
}

.main-header--four.sticky-header--cloned {
    background-color: var(--careox-white, #fff);
    box-shadow: 0px 3px 18px rgba(var(--careox-black-rgb, 18, 47, 42), 0.07);
}

.main-header--four .container-fluid {
    padding-right: 0;
}

.main-header--four .main-header__inner {
    padding: 0;
    background-color: transparent;
}

@media (max-width: 767px) {
    .main-header--four .main-header__inner {
        padding: 18px 20px 18px 0;
    }
}

.main-header--four .main-menu {
    margin-left: auto;
}

.main-header--four .main-menu .main-menu__list>li>a {
    color: var(--careox-black, #122f2a);
}

.main-header--four .mobile-nav__btn span {
    background-color: var(--careox-black, #122f2a);
}

.main-header--four .main-header__right {
    margin-left: 50px;
}

@media (max-width: 1199px) {
    .main-header--four .main-header__right {
        margin-left: auto;
        justify-content: flex-end;
    }
}

@media (max-width: 1199px) {
    .main-header--four .mobile-nav__btn {
        margin-right: 0;
    }
}

@media (max-width: 500px) {
    .main-header--four .main-header__logo img {
        max-width: 170px;
    }
}

.main-header--four .careox-btn {
    margin-right: 25px;
}

@media (max-width: 1500px) {
    .main-header--four .careox-btn {
        display: none;
    }
}

.main-header--four .careox-btn::before {
    background-color: var(--careox-base, #c32129);
}

.main-header--four .main-header__cart,
.main-header--four .main-header__search {
    color: var(--careox-black, #122f2a);
}

.main-header--four .main-header__cart:hover,
.main-header--four .main-header__search:hover {
    color: var(--careox-base, #c32129);
}

.main-header--four .main-header__cart__count {
    background-color: var(--careox-base, #c32129);
}

.main-header--four__toggler {
    width: 52px;
    height: 52px;
    border: 0;
    outline: 0;
    /*background-color: var(--careox-gray);*/
    padding: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-left: 10px;
}

@media (max-width: 1300px) {
    .main-header--four__toggler {
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    .main-header--four__toggler {
        display: none;
    }
}

.main-header--four__toggler__wrapper {
    width: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    grid-gap: 5px;
}

.main-header--four__toggler span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    display: block;
    border-radius: 50%;
    transition: all 500ms ease;
}

.main-header--four__toggler:hover span {
    background-color: var(--careox-black, #122f2a);
}

.sticky-header--cloned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    background-color: #123770;
    transform: translateY(-100%);
    box-shadow: 0px 3px 18px rgba(var(--careox-white-rgb, 255, 255, 255), 0.07);
    transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
    visibility: hidden;
    transition: transform 500ms ease, visibility 500ms ease;
}

@media (min-width: 1200px) {
    .sticky-header--cloned .main-header__inner {
        padding: 0;
    }
}

.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;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .mobile-nav__btn {
        display: none;
    }
}

.mobile-nav__btn span {
    width: 100%;
    height: 2px;
    background-color: var(--careox-white, #fff);
}

.mobile-nav__btn span:nth-child(2) {
    margin-top: 4px;
    margin-bottom: 4px;
}

.main-menu {
    /* after third level no menu */
}
.sticky-header {
    z-index: 9999;
    transition: all 0.3s ease;
}

.sticky-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff; /* or your desired bg */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* optional */
}

.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 ul {
        display: flex;
    }
    .main-menu .main-menu__list {
        display: inline-flex;
    }
    /*.main-header__inner {
        display: block;
        align-items: center;
        background-color: #123770;
        padding: 0 40px;
        position: relative;
        text-align: center;
        margin: 0px auto;
    }*/
    .main-menu .main-menu__list li ul li>a {
        text-align: left;
    }
}

.main-menu .main-menu__list>li {
    padding-top: 27px;
    padding-bottom: 27px;
    position: relative;
}

.main-menu .main-menu__list>li.dropdown>a {
    position: relative;
}

.main-menu .main-menu__list>li+li {
    margin-left: 20px;
}

.main-menu .main-menu__list>li>a {
    font-size: 14px;
    display: flex;
    align-items: center;
    font-family: var(--careox-body-font);
    color: #f7efef;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.4px;
    position: relative;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li>a::after {
    position: absolute;
    content: "";
    left: auto;
    bottom: 5px;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
    color: var(--careox-secondary);
    text-shadow: 0 0 0.5px currentColor;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after {
    width: 100%;
    left: 0;
    right: auto;
}

.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(--careox-white, #fff);
    box-shadow: 0px 10px 60px 0px RGBA(var(--careox-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(--careox-text, #111);
    font-weight: 600;
    letter-spacing: 0.4px;
    font-family: var(--body-font);
    display: flex;
    padding: 8px 10px;
    transition: 500ms;
    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: 700;
    font-family: "Font Awesome 5 Free";
    content: "\f111";
    color: var(--careox-secondary);
    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 {
    color: var(--accent-color);
}

.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(--careox-white, #fff);
    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(--careox-black, #122f2a);
}

@media (min-width: 1300px) {
    .megamenu-popup .megamenu-clickable--close {
        top: 38px;
        right: 40px;
    }
}

.megamenu-popup .megamenu-clickable--close:hover {
    color: var(--careox-base, #c32129);
}

.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(--careox-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(var(--careox-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: 16px;
    color: var(--careox-black, #122f2a);
    font-weight: 700;
    letter-spacing: 0.45px;
}

.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__title a:hover {
    color: var(--careox-secondary);
}

.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(--careox-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: 10px;
    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 {
    font-size: 14px;
    padding: 10px 20px;
    min-width: 135px;
    text-align: center;
    justify-content: center;
}

.demo-one__btn:hover {
    color: var(--careox-white, #fff);
}

@media (min-width: 768px) {
    .demo-one__btn {
        display: inline-flex;
    }
}

.demo-one__title {
    padding-top: 30.5px;
    padding-bottom: 30.5px;
}

.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(--careox-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(var(--careox-black3-rgb, 0, 0, 0), 0.07);
}

.home-showcase .demo-one__card {
    box-shadow: none;
}

.home-showcase .demo-one__title {
    padding: 0;
    font-size: 14px;
    margin-top: 15px;
    padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/

.why-choose-one {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .why-choose-one {
        padding: 80px 0;
    }
}

.why-choose-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--careox-black, #122f2a);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.why-choose-one__bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.6);
}

.why-choose-one__shape {
    position: absolute;
    right: 10%;
    top: 75px;
    width: 189px;
    height: 189px;
    background-position: top left;
    background-repeat: no-repeat;
    animation: treeMove 4s linear 0s infinite;
    opacity: 0.22;
}

@media (max-width: 1500px) {
    .why-choose-one__shape {
        right: 5%;
    }
}

@media (max-width: 1300px) {
    .why-choose-one__shape {
        display: none;
    }
}

.why-choose-one .container {
    position: relative;
}

.why-choose-one .sec-title {
    padding-bottom: 20px;
}

.why-choose-one .sec-title__title {
    color: var(--careox-white, #fff);
}

.why-choose-one__text {
    color: var(--careox-white, #fff);
    max-width: 504px;
    margin: 0 0 34px;
}

.why-choose-one__box {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.18);
    border-radius: 20px;
    min-height: 181px;
    padding: 37px 100px 36px 173px;
    transition: all 0.4s;
    overflow: hidden;
    margin-top: 30px;
}
.why-choose-one__box p{
    color: #eee;
}
@media (max-width: 991px) {
    .why-choose-one__box {
        padding: 37px 90px 36px 150px;
    }
}

@media (max-width: 767px) {
    .why-choose-one__box {
        padding: 37px 25px;
    }
}

.why-choose-one__box::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--careox-black3, #000);
    opacity: 0;
    transition: all 0.4s;
    transform: scale(1, 0);
    z-index: -1;
}

.why-choose-one__box:hover {
    border-color: var(--careox-black3, #000);
}

.why-choose-one__box:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}

.why-choose-one__box__icon {
    position: absolute;
    left: 51px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 93px;
    height: 93px;
    border-radius: 50%;
    overflow: hidden;
    font-size: 48px;
    color: var(--careox-white, #fff);
    background-color: var(--accent-color);
}

@media (max-width: 991px) {
    .why-choose-one__box__icon {
        left: 30px;
    }
}

@media (max-width: 767px) {
    .why-choose-one__box__icon {
        position: relative;
        left: 0;
        margin: 0 0 25px;
    }
}

.why-choose-one__box__icon span {
    transform: scale(1);
    transition: 500ms ease;
}

.why-choose-one__box:hover .why-choose-one__box__icon span {
    transform: scale(0.9);
}

.why-choose-one__box__title {
    color: var(--careox-white, #fff);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 17px;
}

.why-choose-one__box__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.why-choose-one__box__list li {
    position: relative;
    padding-left: 25px;
    margin-top: 5px;
    color: var(--careox-white, #fff);
}

.why-choose-one__box__list__icon {
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 0;
    line-height: 1;
    margin: auto;
    display: flex;
    align-items: center;
    color: var(--accent-color);
    font-size: 15px;
}

.why-choose-one__box__rm {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    background-color: transparent;
    position: absolute;
    z-index: 2;
    font-size: 20px;
    right: 39px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 400ms ease;
    transform: rotate(-45deg);
}

@media (max-width: 991px) {
    .why-choose-one__box__rm {
        right: 30px;
    }
}

@media (max-width: 767px) {
    .why-choose-one__box__rm {
        position: relative;
        right: 0;
        margin: 25px 0 0;
    }
}

.why-choose-one__box__rm::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--accent-color);
    opacity: 0.23;
    transition: 400ms ease;
    z-index: -1;
}

.why-choose-one__box__rm:hover {
    transform: rotate(90deg);
    color: var(--careox-white, #fff);
}

.why-choose-one__box__rm:hover::after {
    opacity: 1;
}

.why-choose-two {
    padding-top: 100px;
    background-color: var(--careox-white, #fff);
}

.why-choose-two__image {
    position: relative;
    display: inline-block;
    margin-bottom: 110px;
}

@media (min-width: 992px) {
    .why-choose-two__image {
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .why-choose-two__image {
        margin-left: 120px;
    }
}

.why-choose-two__image img {
    max-width: 100%;
}

.why-choose-two__image__two {
    position: absolute;
    bottom: -50px;
    left: 0px;
    z-index: 10;
}

@media (min-width: 992px) {
    .why-choose-two__image__two {
        bottom: 0;
        left: -120px;
    }
}

.why-choose-two__image__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 11;
    animation: shapeMove 4s linear 0s infinite;
}

@media (min-width: 992px) {
    .why-choose-two__image__shape {
        bottom: auto;
        top: 200px;
        right: auto;
        left: -100px;
    }
}

.why-choose-two__image__icon {
    width: 96px;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--careox-base, #c32129);
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

@media (min-width: 992px) {
    .why-choose-two__image__icon {
        left: -48px;
    }
}

@media (min-width: 1200px) {
    .why-choose-two__content {
        padding-left: 70px;
    }
}

.why-choose-two__highlight {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: var(--careox-base, #c32129);
    margin: 0;
    margin-top: -10px;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .why-choose-two__highlight {
        margin: 0;
        font-size: 20px;
        line-height: 34px;
        margin-top: -20px;
        margin-bottom: 32px;
    }
}

.why-choose-two__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.875em;
}

@media (min-width: 992px) {
    .why-choose-two__text {
        font-size: 16px;
    }
}

.why-choose-two__progress {
    margin-top: 30px;
    margin-bottom: 37px;
}

.why-choose-two__progress__title {
    text-transform: uppercase;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.why-choose-two__progress__bar {
    width: 100%;
    height: 17px;
    border: 1px solid var(--careox-border-color, #dddddd);
    box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    position: relative;
}

.why-choose-two__progress__inner {
    position: absolute;
    height: calc(100% - 6px);
    left: 4px;
    top: 3px;
    background-color: var(--careox-base, #c32129);
    transition: all 700ms linear;
    width: 0px;
}

.why-choose-two__progress__number {
    position: absolute;
    bottom: calc(100% + 5px);
    right: 0;
    font-size: 14px;
    font-weight: 400;
}

.why-choose-two__link:hover {
    color: var(--careox-white, #fff);
}

.why-choose-two__link::after {
    background-color: var(--careox-black, #122f2a);
}

.why-choose-two__link::before {
    background-color: var(--careox-base, #c32129);
}

.why-choose-three {
    position: relative;
    padding: 120px 0 220px;
    background-color: var(--careox-black, #122f2a);
    margin-bottom: -100px;
    z-index: 1;
}

@media (max-width: 767px) {
    .why-choose-three {
        padding: 80px 0 180px;
    }
}

.why-choose-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--careox-black, #122f2a);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.why-choose-three__content {
    position: relative;
}

.why-choose-three__content__text {
    font-size: 15px;
    line-height: 30px;
    color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.6);
    margin: 0;
}

.why-choose-three .sec-title__title {
    color: var(--careox-white, #fff);
}

.why-choose-three .sec-title {
    padding-bottom: 26px;
}

.why-choose-three__list {
    position: relative;
    background-color: var(--careox-black2, #121212);
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    row-gap: 0;
}

@media (max-width: 991px) {
    .why-choose-three__list {
        margin: 50px 0 0;
    }
}

.why-choose-three__item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px 40px 36px;
}

.why-choose-three__item:nth-child(1),
.why-choose-three__item:nth-child(3) {
    border-right: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.1);
}

.why-choose-three__item:nth-child(1),
.why-choose-three__item:nth-child(2) {
    border-bottom: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.1);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .why-choose-three__item {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 767px) {
    .why-choose-three__item {
        flex: 0 0 100%;
        max-width: 100%;
        border-bottom: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.1);
    }
}

.why-choose-three__item:hover .why-choose-three__item__icon span {
    transform: scale(0.8);
}

.why-choose-three__item__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.why-choose-three__item__icon {
    width: 57px;
    height: 57px;
    background-color: var(--careox-base, #c32129);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--careox-white, #fff);
    font-size: 21px;
    margin-right: 18px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .why-choose-three__item__icon {
        margin-right: 12px;
    }
}

.why-choose-three__item__icon span {
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0s;
    transition-delay: 0s;
    transition-delay: 0.1s;
    transform: scale(1);
}

.why-choose-three__item__title {
    color: var(--careox-white, #fff);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

.why-choose-three__item__text {
    color: var(--careox-text-dark, #727472);
    font-size: 15px;
    line-height: 30px;
    margin: 0;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/

.funfact-one {
    position: relative;
    z-index: 2;
    margin-bottom: -116px;
}

.funfact-one__list.list-unstyled {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: space-between;
    background-color: var(--careox-white, #fff);
    border-radius: 117px;
    padding-top: 81px;
    padding-bottom: 81px;
}

@media (min-width: 1360px) {
    .funfact-one__list.list-unstyled {
        margin: 0 -90px;
        padding-left: 90px;
        padding-right: 90px;
    }
}

@media (max-width: 1359px) {
    .funfact-one__list.list-unstyled {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 991px) {
    .funfact-one__list.list-unstyled {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.funfact-one__item {
    display: flex;
    align-items: center;
    position: relative;
}

.funfact-one__item:hover .funfact-one__icon i {
    transform: scale(0.9);
}

.funfact-one__item:hover .funfact-one__content::before {
    left: -23px;
    opacity: 1;
    width: 23px;
}

.funfact-one__item:hover .funfact-one__content::after {
    height: 50%;
}

.funfact-one__item:hover .funfact-one__text {
    background-size: 100% 1px;
}

.funfact-one__icon {
    width: 70px;
    height: 70px;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--accent-color);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-size: 35px;
    color: var(--careox-white, #fff);
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.funfact-one__icon i {
    display: inline-block;
    transition: all 0.5s ease;
    transform: scale(1);
}

.funfact-one__content {
    position: relative;
    border-left: 3px solid var(--careox-border-color, #dddddd);
    padding-left: 18px;
}

.funfact-one__content::after {
    position: absolute;
    left: -3px;
    bottom: 0;
    width: 3px;
    height: 0;
    background-color: var(--accent-color);
    content: "";
    transition: all 0.5s ease;
}

.funfact-one__content::before {
    position: absolute;
    left: -3px;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    content: "";
    transition: all 0.7s ease;
    opacity: 0;
}

.funfact-one__count {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.54px;
    display: flex;
    align-items: center;
}

.funfact-one__text {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    margin-top: 6px;
    line-height: 1.3;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.funfact-one--home-three {
    padding: 0 0 120px;
    margin: 0;
}

@media (max-width: 767px) {
    .funfact-one--home-three {
        padding-bottom: 80px;
    }
}

.funfact-one--home-three .funfact-one__list.list-unstyled {
    margin: 0;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.funfact-one--about {
    padding: 82px 0 120px;
    margin: 0;
}

@media (max-width: 767px) {
    .funfact-one--about {
        padding-bottom: 80px;
    }
}

.funfact-one--about .funfact-one__list.list-unstyled {
    margin: 0;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.funfact-one--team-details {
    padding: 0;
    margin: 0;
}

.funfact-one--team-details .funfact-one__list.list-unstyled {
    margin: 0;
    padding: 120px 0;
    background-color: transparent;
    border-radius: 0;
    border-bottom: 1px solid var(--careox-border-color, #dddddd);
    border-top: 1px solid var(--careox-border-color, #dddddd);
}

@media (max-width: 767px) {
    .funfact-one--team-details .funfact-one__list.list-unstyled {
        padding: 80px 0;
    }
}

.funfact-two {
    position: relative;
    background-color: var(--careox-base, #c32129);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 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(--careox-white, #fff);
}

.funfact-two__list {
    position: relative;
    background-color: var(--careox-white, #fff);
    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(--careox-base, #c32129);
    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(--careox-base, #c32129);
}

.funfact-two__item:nth-child(1),
.funfact-two__item:nth-child(2) {
    border-bottom: 1px solid var(--careox-base, #c32129);
}

@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(--careox-base, #c32129);
    }
}

.funfact-two__count {
    margin: 0;
    color: var(--careox-black, #122f2a);
    font-size: 40px;
    font-family: var(--body-font, "Aleo", sans-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(--careox-white, #fff);
}

@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(--careox-gray);
    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(--careox-border-color, #dddddd);
    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(--careox-base, #c32129);
    font-size: 60px;
    color: var(--careox-white, #fff);
    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(--careox-black, #122f2a);
    font-family: var(--body-font, "Aleo", sans-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(--careox-text, #636363);
    font-size: 16px;
    margin-top: 9px;
    margin-bottom: -6px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials-one {
    position: relative;
    padding: 120px 0 0;
}

@media (max-width: 767px) {
    .testimonials-one {
        padding: 80px 0 0;
    }
}

.testimonials-one__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(--careox-gray);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 58%);
}

.testimonials-one .sec-title {
    padding-bottom: 19px;
}

.testimonials-one__text {
    position: relative;
    margin: 0 0 42px;
}

.testimonials-one__wrapper {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 80px;
    border-radius: 50px;
}

@media (min-width: 1350px) {
    .testimonials-one__wrapper {
        margin-left: 50px;
        margin-right: -120px;
        padding-right: 45px;
    }
}

@media (max-width: 991px) {
    .testimonials-one__wrapper {
        margin-left: 80px;
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .testimonials-one__wrapper {
        padding: 0 0 0;
        margin: 0;
        background-image: none !important;
    }
}

.testimonials-one__carousel {
    margin-left: -80px;
}

@media (max-width: 767px) {
    .testimonials-one__carousel {
        margin-left: 0;
    }
}

.testimonials-one__image {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
}

.testimonials-one__image .slick-list {
    margin-top: 160px;
    padding: 10px 0 !important;
    transform: rotate(12deg);
    margin-left: -170px;
}

@media (max-width: 1400px) {
    .testimonials-one__image .slick-list {
        margin-left: 0;
    }
}

@media (max-width: 1199px) {
    .testimonials-one__image .slick-list {
        transform: rotate(21deg);
        margin-left: -10px;
    }
}

@media (max-width: 991px) {
    .testimonials-one__image .slick-list {
        display: none;
    }
}

.testimonials-one__image .slick-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--careox-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
    border: none;
    outline: none;
    box-shadow: none;
    color: var(--careox-black, #122f2a);
    transition: all 400ms ease;
}

.testimonials-one__image .slick-arrow.next {
    position: absolute;
    left: 60px;
    top: 0;
}

.testimonials-one__image .slick-arrow:hover {
    background-color: var(--careox-secondary);
    color: var(--careox-white, #fff);
}

.testimonials-one__image__item {
    width: 126px;
    height: 126px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--careox-white, #fff);
    transition: all 400ms ease;
    transform: scale(1);
    cursor: pointer;
}

@media (max-width: 1199px) {
    .testimonials-one__image__item {
        width: 106px;
        height: 106px;
    }
}

.testimonials-one__image__item img {
    width: 100%;
    height: 100%;
}

.testimonials-one__image .slick-current.slick-active.slick-center {
    transition: all 400ms ease;
}

.testimonials-one__image .slick-current.slick-active.slick-center .testimonials-one__image__item {
    border-color: var(--accent-color);
    transition: all 400ms ease;
    transform: scale(1.1);
}

.testimonials-card {
    position: relative;
    background-color: var(--careox-white, #fff);
    transition: all 500ms ease;
    padding: 60px 60px 45px 99px;
    border-radius: 0 30px 30px 0;
    margin-left: 79px;
    margin-bottom: 39px;
}

@media (max-width: 767px) {
    .testimonials-card {
        border-radius: 30px;
        padding: 40px 30px;
        margin: 40px 0;
    }
}

.testimonials-card:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-card__image {
    width: 161px;
    height: 161px;
    border: 12px solid var(--careox-white, #fff);
    border-radius: 50%;
    transition: all 500ms ease;
    position: absolute;
    left: -80px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .testimonials-card__image {
        position: relative;
        left: 0;
        margin: 0 0 25px;
        border: none;
        width: 131px;
        height: 131px;
    }
}

.testimonials-card__image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid var(--accent-color);
}

.testimonials-card__rating {
    display: flex;
    align-items: center;
    margin-bottom: 11px;
}

.testimonials-card__rating i {
    color: var(--accent-color);
    font-size: 22px;
    letter-spacing: 6px;
}

.testimonials-card__rating i:last-child {
    color: var(--careox-border-color, #dddddd);
}

.testimonials-card__content {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonials-card__name {
    margin: 0;
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.testimonials-card__designation {
    margin: 0;
    line-height: 1;
}

.testimonials-card__quote {
    font-size: 55px;
    color: var(--careox-border-color, #dddddd);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--careox-border-color, #dddddd);
    position: absolute;
    right: 92px;
    bottom: 50px;
    line-height: 1;
}

.testimonials-two {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .testimonials-two {
        padding: 80px 0;
    }
}

.testimonials-two__shape-one {
    position: absolute;
    left: 90px;
    top: 85px;
    width: 139px;
    height: 255px;
    animation: treeMove 4s linear 0s infinite;
}

@media (max-width: 1300px) {
    .testimonials-two__shape-one {
        display: none;
    }
}

.testimonials-two__shape-two {
    position: absolute;
    left: 99px;
    bottom: 100px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    animation: zoomsIn 4s linear 0s infinite;
}

@media (max-width: 1300px) {
    .testimonials-two__shape-two {
        display: none;
    }
}

.testimonials-two__shape-three {
    position: absolute;
    right: 99px;
    top: 100px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    animation: zoomsIn 4s linear 0s infinite;
}

@media (max-width: 1300px) {
    .testimonials-two__shape-three {
        display: none;
    }
}

.testimonials-two__shape-four {
    position: absolute;
    right: 120px;
    bottom: 0;
    width: 93px;
    height: 221px;
    animation: treeMove 4s linear 0s infinite;
}

@media (max-width: 1300px) {
    .testimonials-two__shape-four {
        display: none;
    }
}

.testimonials-two__wrapper {
    max-width: 835px;
    margin: 57px auto 0;
    position: relative;
    border: 1px solid var(--careox-border-color, #dddddd);
    border-radius: 80px;
    padding: 0 0 38px;
}

.testimonials-two__carousel {
    position: relative;
    text-align: center;
}

.testimonials-two__carousel .slick-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--careox-black, #122f2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--careox-white, #fff);
    font-size: 18px;
    border-radius: 50%;
    transition: all 500ms ease;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    z-index: 3;
}

.testimonials-two__carousel .slick-arrow:hover {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
}

.testimonials-two__carousel .slick-arrow.prev {
    position: absolute;
    left: -25px;
    top: 51px;
}

@media (max-width: 767px) {
    .testimonials-two__carousel .slick-arrow.prev {
        left: -15px;
    }
}

.testimonials-two__carousel .slick-arrow.next {
    position: absolute;
    right: -25px;
    top: 51px;
}

@media (max-width: 767px) {
    .testimonials-two__carousel .slick-arrow.next {
        right: -15px;
    }
}

.testimonials-two__item {
    position: relative;
    margin: 0;
    text-align: center;
    padding: 0 25px;
}

.testimonials-two__item__name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonials-two__item__designation {
    font-size: 16px;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}

.testimonials-two__item__quote {
    margin: 0 0 22px;
}

@media (max-width: 767px) {
    .testimonials-two__item__quote {
        padding: 0 30px;
    }
    .testimonials-two__item__quote br {
        display: none;
    }
}

.testimonials-two__item__ratings {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--careox-secondary);
    font-size: 23px;
    letter-spacing: 5px;
}

.testimonials-two__item__ratings i:last-child {
    color: var(--careox-border-color, #dddddd);
}

.testimonials-two__carousel-thumb {
    max-width: 210px;
    padding: 0;
    margin: -60px auto 26px;
    position: relative;
    text-align: center;
}

.testimonials-two__carousel-thumb .slick-slide {
    position: relative;
    text-align: center;
    display: inline-block;
    padding: 25px 0;
}

.testimonials-two__carousel-thumb .slick-slide .testimonials-two__meta-thumb {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    position: relative;
    transition: 500ms ease;
    transform: scale(1);
    padding: 5px;
}
.testimonials-two__carousel-thumb .slick-slide .testimonials-two__meta-thumb img{
    width: 60px;
    height: 60px;
}
.testimonials-two__carousel-thumb .slick-slide .testimonials-two__meta-thumb::after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    margin: auto;
    width: 100%;
    height: 100%;
    content: "";
    border: 3px solid var(--careox-secondary);
    visibility: hidden;
    opacity: 0;
    transition: 500ms ease;
    
}

.testimonials-two__carousel-thumb .slick-slide .testimonials-two__meta-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials-two__carousel-thumb .slick-active.slick-center {
    position: relative;
    z-index: 9;
}

.testimonials-two__carousel-thumb .slick-active.slick-center .testimonials-two__meta-thumb {
    transform: scale(1.6);
}

.testimonials-two__carousel-thumb .slick-active.slick-center .testimonials-two__meta-thumb::after {
    visibility: visible;
    opacity: 1;
}


.testimonials-three {
    position: relative;
    padding: 175px 0 90px;
    z-index: 1;
}

@media (max-width: 767px) {
    .testimonials-three {
        padding: 380px 0 40px;
    }
}
.testimonials-three .video-popup {
    width: 68px;
    height: 68px;
    background-color: var(--careox-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 37px;
    color: var(--careox-black, #122f2a);
    transition: all 500ms ease;
    position: relative;
    z-index: 10;
}

.testimonials-three .video-popup .ripple,
.testimonials-three .video-popup .ripple:before,
.testimonials-three .video-popup .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.25);
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.testimonials-three .video-popup .ripple:before {
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}
.testimonials-three .container{
    margin-top: 2%;
}
.testimonials-three .video-popup .ripple::after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.testimonials-three .video-popup:hover {
    color: var(--careox-secondary);
}
.testimonials-three__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 500px;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonials-three__bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.76);
}

.testimonials-three__bg__shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: 1;
}

.testimonials-three__wrapper {
    position: relative;
    background-color: #26221b;
    border-radius: 20px;
    z-index: 2;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 81px 0 73px;
}

@media (max-width: 767px) {
    .testimonials-three__wrapper {
        padding: 60px 20px 50px;
    }
}

.testimonials-three__wrapper .sec-title {
    padding-bottom: 31px;
}

.testimonials-three__wrapper .sec-title__title,
.testimonials-three__wrapper .sec-title__tagline {
    color: var(--careox-white, #fff);
}

.testimonials-three__wrapper .sec-title__tagline__border {
    background-color: var(--careox-white, #fff);
}

.testimonials-three__carousel {
    position: relative;
    text-align: center;
}

.testimonials-three__carousel .slick-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--careox-black, #122f2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--careox-white, #fff);
    font-size: 18px;
    border-radius: 50%;
    transition: all 500ms ease;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    z-index: 3;
}

.testimonials-three__carousel .slick-arrow:hover {
    background-color: var(--careox-secondary);
    color: var(--careox-white, #fff);
}

.testimonials-three__carousel .slick-arrow.prev {
    position: absolute;
    left: -25px;
    top: -56px;
}

@media (max-width: 767px) {
    .testimonials-three__carousel .slick-arrow.prev {
        left: -25px;
        top: 0;
    }
}

.testimonials-three__carousel .slick-arrow.next {
    position: absolute;
    right: -25px;
    top: -56px;
}

@media (max-width: 767px) {
    .testimonials-three__carousel .slick-arrow.next {
        right: -25px;
        top: 0;
    }
}

.testimonials-three__item {
    position: relative;
    margin: 0;
    text-align: center;
}

.testimonials-three__item__name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: var(--careox-white, #fff);
    margin-bottom: 15px;
}

.testimonials-three__item__designation {
    font-size: 16px;
    line-height: 1;
    color: var(--careox-white, #fff);
    display: block;
    margin-bottom: 20px;
}

.testimonials-three__item__ratings {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--careox-secondary);
    font-size: 23px;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.testimonials-three__item__ratings i:last-child {
    color: var(--careox-border-color, #dddddd);
}

.testimonials-three__item__quote {
    color: var(--careox-white, #fff);
    margin: 0;
}
.testimonials-three__item__quote{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767px) {
    .testimonials-three__item__quote br {
        display: none;
    }
}

.testimonials-three__carousel-thumb {
    max-width: 530px;
    padding: 0;
    margin: 0px auto 26px;
    position: relative;
    text-align: center;
}

.testimonials-three__carousel-thumb .slick-slide {
    position: relative;
    text-align: center;
    display: inline-block;
    padding: 25px 0;
}

.testimonials-three__carousel-thumb .slick-slide .testimonials-three__meta-thumb {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    position: relative;
    transition: 500ms ease;
    transform: scale(1);
    margin: auto;
}

.testimonials-three__carousel-thumb .slick-slide .testimonials-three__meta-thumb::after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    margin: auto;
    width: 100%;
    height: 100%;
    content: "";
    border: 7px solid var(--careox-secondary);
    visibility: hidden;
    opacity: 0;
    transition: 500ms ease;
}

.testimonials-three__carousel-thumb .slick-slide .testimonials-three__meta-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials-three__carousel-thumb .slick-active.slick-center {
    position: relative;
    z-index: 9;
}

.testimonials-three__carousel-thumb .slick-active.slick-center .testimonials-three__meta-thumb {
    transform: scale(1.58);
}

.testimonials-three__carousel-thumb .slick-active.slick-center .testimonials-three__meta-thumb::after {
    visibility: visible;
    opacity: 1;
}

.testimonials-page {
    position: relative;
    padding: 90px 0;
}

@media (max-width: 767px) {
    .testimonials-page {
        padding: 80px 0;
    }
}
.donations-three__carousel .testimonials-page__card{
    background-color: var(--careox-gray);
}
.testimonial__2__single {
    padding: 40px;
    background: #ECECEC;
    position: relative;
    border-radius: 8px;
}
@media (max-width: 767px) {
    .testimonial__2__single {
        padding: 20px;
    }
}
.testimonial__2__author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.testimonial__2__author__img {
    margin-right: 30px;
}
.testimonial__2__author__img img{
    width: 70px;
    height: 70px;
}
.testimonial__2__author__name h6 {
    margin: 0;
}
.testimonial__2__author__name h6 a {
    color: var(--thm-black);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}
@media (max-width: 767px) {
    .testimonial__2__author__name h6 a {
        font-size: 18px;
    }
}
.testimonial__2__author__name h6 a:hover {
    color: var(--thm-primary);
}
.testimonial__2__icon {
    position: absolute;
    bottom: 36px;
    right: 41px;
}
.testimonial__2__icon img{
    width: 70px;
    height: 72px;
}
@media (max-width: 767px) {
    .testimonial__2__icon {
        bottom: 0;
        right: 5px;
    }
}
.testimonial__2__small__icon {
    position: absolute;
    top: 20px;
    left: -20px;
    animation: dot-anim-2 3s linear 0s infinite alternate;
}
.testimonial__text--2 {
    border-bottom: 1px dashed #868080;
    padding-bottom: 30px;
}
@media (max-width: 767px) {
    .testimonial__2__small__icon {
        display: none;
    }
}

.testimonials-page__card {
    position: relative;
    background-color: var(--careox-gray);
    transition: all 500ms ease;
    padding: 45px 50px 44px 60px;
    border-radius: 20px;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .testimonials-page__card {
        padding: 113px 30px 44px 30px;
    }
}

.testimonials-page__card__image {
    width: 136px;
    height: 136px;
    border: 11px solid var(--careox-white, #fff);
    border-radius: 50%;
    transition: all 500ms ease;
    position: absolute;
    left: 60px;
    top: -55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .testimonials-page__card__image {
        left: 30px;
    }
}

.testimonials-page__card__image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid var(--accent-color);
}

.testimonials-page__card__rating {
    display: flex;
    align-items: center;
    margin-bottom: 11px;
}

.testimonials-page__card__rating i {
    color: var(--accent-color);
    font-size: 22px;
    letter-spacing: 6px;
}

/*.testimonials-page__card__rating i:last-child {
    color: var(--careox-border-color, #dddddd);
}*/

.testimonials-page__card__content {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonials-page__card__name {
    margin: 0;
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 14px;
}

.testimonials-page__card__designation {
    margin: 0;
    line-height: 1;
}

.testimonials-page__card__quote {
    font-size: 55px;
    color: var(--careox-border-color, #dddddd);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--careox-border-color, #dddddd);
    position: absolute;
    right: 92px;
    bottom: 50px;
    line-height: 1;
}

@media (max-width: 991px) {
    .testimonials-page__card__quote {
        right: 40px;
    }
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.why_choose_us.hm-five {
    position: inherit;
    /*background: #f1f1f1;*/
    margin: 0;
}

.why_choose_us.hm-five .why_choose_us_outer {
    background: #fff;
    position: relative;
    box-shadow: 0px 13px 22px -10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 13px 22px -10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 13px 22px -10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    margin-top: -100px;
    z-index: 100;
}
.why_choose_us.hm-five .why_choose_us_details{
    margin-left: 25px;
    position: relative;
    z-index: 99;
}
.why_choose_us.hm-five .why_choose_us_details .choose_icon {
    float: left;
    font-size: 50px;
    line-height: 60px;
    color: var(--careox-secondary);
    margin-top: 10px;
}

.why_choose_us.hm-five .why_choose_us_details.last:before {
    display: none;
}
.why_choose_us_details .careox-btn{
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    font-family: var(--body-font);
    letter-spacing: 0.25px;
    padding: 7px 30px;
    margin-left: 70px;
}
.why_choose_us.hm-five .why_choose_us_details:before {
    position: absolute;
    background: #eaeaea;
    content: "";
    top: 51px;
    right: -9px;
    width: 1px;
    height: 165px;
}

.why_choose_us.hm-five .why_choose_us_details {
    background: transparent;
    position: relative;
    text-align: inherit;
    border: 0px;
    padding: 50px 25px 50px;
}

.why_choose_us.hm-five .why_choose_us_details h2 a {
    font-size: 22px;
    line-height: 30px;
    color: #2b2b2b;
    font-weight: 700;
}

.why_choose_us.hm-five .why_choose_us_details h2 {
    margin-left: 70px;
}

.why_choose_us.hm-five .why_choose_us_details p {
    margin-left: 70px;
    font-size: 16px;
    padding-bottom: 0px;
}

.why_choose_us.hm-five .why_choose_us_details:hover {
    box-shadow: none;
}

.why_choose_us.hm-five .why_choose_us_outer:before {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    z-index: 0;
}

.why_choose_us.hm-five .why_choose_us_outer:hover:before {
    -webkit-transition: 0.2s -webkit-transform linear, 0.2s height linear 0.2s;
    transition: 0.2s transform linear, 0.2s height linear 0.2s;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    height: 100%;
    border-color: var(--careox-secondary);
}

.why_choose_us.hm-five .why_choose_us_outer:hover:after {
    -webkit-transition: 0.2s -webkit-transform linear 0.4s, 0.2s height linear 0.6s;
    transition: 0.2s transform linear 0.4s, 0.2s height linear 0.6s;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    height: 100%;
    border-color: var(--careox-secondary);
}

.why_choose_us.hm-five .why_choose_us_outer:after {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    z-index: 0;
}
.why_choose_us_details .btn {
    text-decoration: none;
    font-size: 17px;
    user-select: none;
    color: #C84D4D;
    display: flex;
    align-items: center;
    padding-left: 0px;
    font-weight: 700;
}

.why_choose_us_details .btn .arrow {
  margin-right: 1rem;
  height: 0.1rem;
  width: 2.5rem;

  position: relative;
  background: #EA7878;

  transition: width 0.2s ease;
}

.why_choose_us_details .btn .arrow::before,
.why_choose_us_details .btn .arrow::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;

  background: #EA7878;

  height: 0.1rem;
  width: 0.6rem;
}

.why_choose_us_details .btn .arrow::before {
  transform: rotate(45deg);
  transform-origin: right bottom;
}

.why_choose_us_details .btn .arrow::after {
  transform: rotate(-45deg);
  transform-origin: right top;
}

.why_choose_us_details .btn:hover .arrow {
  width: 4rem;
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery-one {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .gallery-one {
        padding: 80px 0;
    }
}

.gallery-one .container-fluid {
    width: 100%;
    max-width: 1572px;
}

.gallery-one .row {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}

@media (min-width: 992px) {
    .gallery-one__carousel .owl-nav {
        display: none;
    }
}

.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: 14px;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    background-color: var(--careox-gray);
    transition: all 500ms ease;
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px 20px;
    line-height: 1.2em;
}

.gallery-one__filter__list li.active span,
.gallery-one__filter__list li:hover span {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
}

.gallery-one__card {
    position: relative;
    overflow: hidden;
    background-color: var(--careox-black, #122f2a);
}

.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(var(--careox-secondary-rgb, 255, 164, 21), 0.9);
    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;
}

.gallery-one__card:hover img {
    transform: scale(1.05);
    opacity: 0.9;
    mix-blend-mode: screen;
}

.gallery-one__card:hover .gallery-one__card__hover {
    transform-origin: top center;
    transform: scale(1, 1);
}

.gallery-one__card__icon {
    width: 32px;
    height: 32px;
    display: block;
    position: relative;
}

.gallery-one__card__icon::after,
.gallery-one__card__icon::before {
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--careox-white, #fff);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-one__card__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar {
    position: relative;
}

.sidebar__single {
    background-color: var(--careox-gray2);
    border-radius: 20px;
    padding: 40px 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sidebar__single {
        padding-left: 22px;
        padding-right: 20px;
    }
}

.sidebar__single--tags .sidebar__title::after {
    width: 100%;
}

.sidebar__single--search {
    padding: 0;
    border: none;
    border-radius: 50px;
}

.sidebar__single+.sidebar__single {
    margin-top: 50px;
}

.sidebar__title {
    text-transform: capitalize;
    margin: 0 0 36px;
    line-height: 1em;
    font-size: 20px;
    letter-spacing: 0.33px;
    font-weight: 700;
    position: relative;
    top: -3px;
    display: inline-block;
}

@media (min-width: 768px) {
    .sidebar__title {
        font-size: 22px;
    }
}

.sidebar__title::after {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 77px;
    height: 3px;
    content: "";
    background-color: var(--careox-base, #c32129);
}

.sidebar__search {
    position: relative;
}

.sidebar__search input[type=search],
.sidebar__search input[type=text] {
    outline: none;
    width: 100%;
    height: 55px;
    background-color: transparent;
    font-size: 16px;
    color: var(--careox-text, #636363);
    border-radius: 50px;
    border: none;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease;
}

.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}

.sidebar__search button[type=submit] {
    border: none;
    outline: none;
    background-color: var(--careox-base, #c32129);
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: auto;
    font-size: 16px;
    line-height: 47px;
    color: var(--careox-white, #fff);
    border-radius: 50%;
    width: 47px;
    height: 47px;
    transition: all 500ms ease;
}

.sidebar__search button[type=submit]:hover {
    background-color: var(--careox-black, #122f2a);
    color: var(--careox-white, #fff);
}

.sidebar__categories {
    margin-bottom: -16px;
    margin-top: -9px;
}

.sidebar__categories li {
    position: relative;
    font-size: 16px;
    color: var(--careox-text, #636363);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 500ms ease;
    padding: 0 0 0 26px;
    margin: 0 0 10px;
}

.sidebar__categories li::before {
    position: absolute;
    left: -3px;
    content: "\ea94";
    font-family: IcoFont !important;
    transition: all 500ms ease;
    font-weight: normal;
    font-size: 25px;
}

.sidebar__categories li a {
    color: #2E3233;
}

.sidebar__categories li a:hover {
    color: #2E91C1;
}
.sidebar__categories li:hover {
    padding: 0 5px 0 31px;
    color: var(--careox-base, #c32129);
}

.sidebar__categories li:hover::before {
    left: 2px;
    color: var(--careox-base, #c32129);
}

.sidebar__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sidebar__tags a {
    background-color: transparent;
    text-transform: capitalize;
    border: 1px solid var(--careox-border-color, #dddddd);
    font-size: 15px;
    font-weight: 400;
    border-radius: 30px;
    color: var(--careox-text, #636363);
    transition: all 500ms ease;
    display: inline-flex;
    line-height: 22px;
    padding: 5px 17px;
}

.sidebar__tags a:hover {
    color: var(--careox-white, #fff);
    border-color: var(--careox-base, #c32129);
    background-color: var(--careox-base, #c32129);
}

.sidebar__posts {
    margin-bottom: 0;
}

.sidebar__posts__item {
    display: flex;
    align-items: center;
}

.sidebar__posts__item:not(:last-of-type) {
    margin-bottom: 30px;
}

.sidebar__posts__image {
    flex-shrink: 0;
    margin-right: 15px;
    max-width: 110px;
}

.sidebar__posts__image img {
    max-width: 100%;
    object-fit: cover;
}

.sidebar__posts__meta {
    margin: 0;
    line-height: 1em;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--careox-text, #636363);
    font-size: 14px;
    margin-bottom: 7px;
}

.sidebar__posts__meta i {
    font-size: 13px;
}

.sidebar__posts__title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 23px;
}

.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__posts__title a:hover {
    color: var(--careox-base, #c32129);
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/

.blog-details {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .blog-details {
        padding: 80px 0;
    }
}

.blog-details__content {
    position: relative;
}

.blog-details__image {
    position: relative;
    margin-bottom: 30px;
}

.blog-details__image img {
    max-width: 100%;
    height: auto;
}

.blog-details__top-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 24px;
}

.blog-details__top-meta li {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    margin: 0 0;
}

.blog-details__top-meta li img {
    border: 2px solid var(--careox-secondary);
    border-radius: 50%;
    margin-right: 10px;
    width: 32px !important;
}

.blog-details__top-meta li i {
    color: var(--careox-secondary);
    font-size: 20px;
    margin-right: 10px;
}

.blog-details__top-meta li a {
    color: inherit;
    transition: all 500ms ease;
}

.blog-details__top-meta li a:hover {
    color: var(--careox-secondary);
}

.blog-details__top-meta li.blog-details__top-meta__cats {
    position: relative;
}

.blog-details__top-meta li.blog-details__top-meta__cats a {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
    border-radius: 30px;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
    padding: 0px 30px;
}

.blog-details__top-meta li.blog-details__top-meta__cats a:hover {
    background-color: var(--careox-secondary);
    color: var(--careox-white, #fff);
}

.blog-details__title {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 22px;
}

.blog-details__text {
    margin: 0 0 15px;
}
.blog-details__text ul{
    list-style: disc;
    padding-left: 15px;
}
.blog-details__text ol{
    list-style: decimal;
    padding-left: 15px;
}
.blog-details__text h2,
.blog-details__text h3,
.blog-details__text h4,
.blog-details__text h5,
.blog-details__text h6{
    font-weight: 700;
}
.blog-details__text p,
.blog-details__text h2,
.blog-details__text h3,
.blog-details__text h4,
.blog-details__text h5,
.blog-details__text h6,
.blog-details__text ul,
.blog-details__text ol{
    margin: 0 0 15px;
}
@media (min-width: 1200px) {
    .blog-details__text {
        padding-right: 50px;
    }
}

.blog-details__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--careox-border-color, #dddddd);
    border-bottom: 1px solid var(--careox-border-color, #dddddd);
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 46px;
    margin-bottom: 55px;
}

.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: bold;
    margin-top: -4px;
    margin-bottom: -4px;
}

@media (min-width: 768px) {
    .blog-details__tags__title {
        font-size: 22px;
    }
}

.blog-details__tags .sidebar__tags a {
    border: none;
    background-color: var(--careox-gray);
}

.blog-details__tags .sidebar__tags a:hover {
    background-color: var(--careox-base, #c32129);
}

.blog-details__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-details__social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--careox-gray);
    font-size: 14px;
    color: var(--careox-black, #122f2a);
    transition: all 500ms ease;
    border-radius: 50%;
}

.blog-details__social a:hover {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/

.comments-one {
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .comments-one {
        margin-top: 55px;
    }
}

.comments-one__title {
    margin: 0;
    text-transform: capitalize;
    font-size: 25px;
    font-weight: bold;
    margin-top: -4px;
    margin-bottom: -4px;
}

@media (min-width: 992px) {
    .comments-one__title {
        font-size: 30px;
    }
}

.comments-one__list {
    margin: 0;
    margin-top: 35px;
}

@media (min-width: 768px) {
    .comments-one__card {
        display: flex;
        align-items: flex-start;
    }
}

.comments-one__card:not(:first-of-type) {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--careox-border-color, #dddddd);
}

@media (min-width: 1200px) {
    .comments-one__card:not(:first-of-type) {
        margin-top: 50px;
        padding-top: 50px;
    }
}

@media (min-width: 768px) {
    .comments-one__card__image {
        margin-right: 30px;
    }
}

@media (min-width: 1200px) {
    .comments-one__card__image {
        margin-right: 45px;
    }
}

.comments-one__card__image img {
    border-radius: 50%;
}

.comments-one__card__title {
    margin: 0;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

@media (min-width: 1200px) {
    .comments-one__card__title {
        margin-bottom: 21px;
    }
}

.comments-one__card__date {
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-size: 16px;
    margin-left: 20px;
    color: var(--careox-text, #636363);
}

.comments-one__card__text {
    margin: 0;
    margin-bottom: 20px;
    max-width: 560px;
}

@media (min-width: 768px) {
    .comments-one__card__text {
        margin-bottom: 0;
    }
}

.comments-one__card__reply {
    padding: 6px 20px;
    font-size: 12px;
}

@media (min-width: 768px) {
    .comments-one__card__reply {
        position: absolute;
        top: 0;
        right: 0;
    }
}

.comments-one__card__content {
    position: relative;
}

.comments-form {
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .comments-form {
        margin-top: 55px;
    }
}

.comments-form__title {
    margin: 0;
    text-transform: capitalize;
    font-size: 25px;
    color: var(--careox-black, #122f2a);
    font-weight: bold;
    margin-top: -4px;
    margin-bottom: -4px;
}

@media (min-width: 992px) {
    .comments-form__title {
        font-size: 30px;
    }
}

.comments-form__form {
    margin-top: 45px;
}

.comments-form .form-one .bootstrap-select>.dropdown-toggle,
.comments-form .form-one input[type=text],
.comments-form .form-one input[type=email],
.comments-form .form-one input[type=tel],
.comments-form .form-one textarea {
    border: 1px solid var(--careox-border-color, #dddddd);
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/

.product {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .product {
        padding: 80px 0;
    }
}

.product__sidebar {
    position: relative;
}

.product__sidebar--title {
    position: relative;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: bold;
    margin-top: -5px;
}

.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: 64px;
    background-color: transparent;
    padding-left: 30px;
    padding-right: 30px;
    font-family: var(--body-font, "Aleo", sans-serif);
    font-size: 14px;
    color: var(--careox-text, #636363);
    border: 1px solid var(--careox-border-color, #dddddd);
    outline: none;
    font-weight: 500;
    border-radius: 0;
}

.product__price-ranger {
    background-color: var(--careox-gray);
    padding: 30px;
    margin-bottom: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .product__price-ranger {
        padding: 30px 20px;
    }
}

.product__price-ranger #slider-range {
    margin: 22px 0 0 0px;
    background: var(--careox-white, #fff);
    border: none;
    height: 5px;
    border-radius: 0;
    position: relative;
}

.product__price-ranger #slider-range .ui-slider-range {
    height: 100%;
    background: var(--careox-base, #c32129);
}

.product__price-ranger #slider-range .ui-slider-handle {
    position: absolute;
    top: -5px;
    background: var(--careox-base, #c32129);
    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(--careox-text, #636363);
    font-size: 14px;
    font-weight: 500;
    width: 40px;
    line-height: 30px;
    border: none;
    outline: none;
    font-family: var(--body-font, "Aleo", sans-serif);
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.product__price-ranger .ranger-min-max-block span {
    position: relative;
    display: inline-block;
    color: var(--careox-text, #636363);
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    left: -2px;
}

.product__price-ranger .ranger-min-max-block input[type=submit] {
    position: relative;
    display: block;
    background-color: var(--careox-white, #fff);
    font-family: var(--body-font, "Aleo", sans-serif);
    float: right;
    text-align: center;
    border: none;
    color: var(--careox-black, #122f2a);
    font-size: 10px;
    letter-spacing: var(--careox-letter-space, 0.1em);
    font-weight: 600;
    line-height: 38px;
    margin: 0;
    cursor: pointer;
    padding: 0 20px;
    height: 38px;
    border-radius: 0;
    box-shadow: 0px 10px 30px 0px rgba(var(--careox-black-rgb, 18, 47, 42), 0.07);
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .product__price-ranger .ranger-min-max-block input[type=submit] {
        padding: 0 15px;
    }
}

.product__price-ranger .ranger-min-max-block input[type=submit]:hover {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
}

.product__categories {
    background-color: var(--careox-gray);
    padding: 30px;
}

.product__categories ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -20px;
}

.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: 15px;
    text-transform: capitalize;
    color: var(--careox-text, #636363);
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 1;
    padding: 9px 15px 11px;
}

.product__categories ul li a::before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    transition: all 500ms ease;
    font-size: 16px;
    margin-right: 10px;
    color: var(--careox-base, #c32129);
}

.product__categories ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--careox-white, #fff);
    z-index: -1;
    transform: scale(1, 0);
    perspective: 400px;
    visibility: hidden;
    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(--careox-black, #122f2a);
    padding-left: 27px;
}

.product__categories ul li:hover a::after,
.product__categories ul li.active a::after {
    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(--careox-base, #c32129);
}

.product__categories ul li.active a {
    font-weight: 600;
}

.product__info-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .product__info-top {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .product__info-top {
        display: block;
        margin-top: 40px;
    }
}

.product__showing-text {
    margin: 0;
    font-weight: 500;
    font-size: 17px;
}

@media (max-width: 767px) {
    .product__showing-text {
        margin-bottom: 20px;
    }
}

.product__showing-sort {
    margin: 0;
    font-size: 18px;
}

.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 340px !important;
    font-family: var(--body-font, "Aleo", sans-serif);
}

@media (max-width: 360px) {
    .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        width: 300px !important;
    }
}

.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: 64px;
    outline: none !important;
    border-radius: 0;
    border: 0;
    background-color: var(--careox-gray) !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--careox-text, #636363) !important;
    font-size: 14px;
    line-height: 64px;
    font-weight: 500;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
    text-transform: capitalize;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    font-size: 16px;
    color: var(--careox-text, #636363);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid var(--careox-border-color, #dddddd);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li>a {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 30px;
    color: var(--careox-text, #636363);
    background-color: var(--careox-gray);
    text-transform: capitalize;
    -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(--careox-base, #c32129);
    color: var(--careox-white, #fff);
    border-color: var(--careox-base, #c32129);
}

.product__item {
    position: relative;
    background-color: var(--careox-white, #fff);
    border: 1px solid var(--careox-border-color, #dddddd);
    transition: all 500ms ease;
}

.product__item:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.product__item__img {
    background-color: var(--careox-white, #fff);
    position: relative;
    overflow: hidden;
}

.product__item__img img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    transition: all 500ms ease;
    transform: scale(1);
}

.product__item__btn {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2;
}

.product__item__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--careox-gray);
    border-radius: 50%;
    color: var(--careox-black, #122f2a);
    font-size: 14px;
    visibility: hidden;
    opacity: 0;
}

.product__item__btn a:hover {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
}

.product__item__btn a:nth-child(1) {
    -webkit-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    -moz-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    -ms-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    -o-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -webkit-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    -o-transform: translate3d(30px, 0, 0);
}

.product__item__btn a:nth-child(2) {
    -webkit-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    -moz-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    -ms-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    -o-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -webkit-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    -o-transform: translate3d(30px, 0, 0);
}

.product__item__btn a+a {
    margin-top: 10px;
}

.product__item:hover .product__item__img img {
    transform: scale(1.05);
}

.product__item:hover .product__item__btn a {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

.product__item__content {
    position: relative;
    text-align: center;
    padding: 30px 20px;
}

.product__item__ratings {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--careox-base, #c32129);
    letter-spacing: 4.5px;
    margin-bottom: 4px;
}

.product__item__title {
    font-size: 20px;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: bold;
    margin: 0;
    margin-bottom: 6px;
}

.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__title a:hover {
    color: var(--careox-base, #c32129);
}

.product__item__price {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: var(--careox-text, #636363);
    line-height: 1em;
    font-weight: 400;
    margin-bottom: 20px;
}

.product__item__price__offer {
    text-decoration: line-through;
    color: var(--careox-border-color, #dddddd);
    margin-left: 10px;
}

.product__item__link {
    padding: 6px 24px;
    font-size: 13px;
}

.product__item__link::before {
    background-color: var(--careox-base, #c32129);
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/

.product-details {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .product-details {
        padding: 80px 0;
    }
}

.product-details__img {
    position: relative;
    border: 1px solid var(--careox-border-color, #dddddd);
}

.product-details__img img {
    width: 100%;
    height: auto;
}

.product-details__img-search {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 2;
    line-height: 1;
}

.product-details__img-search a {
    display: inline-block;
    font-size: 21px;
    color: var(--careox-black, #122f2a);
    transition: all 500ms ease;
}

.product-details__img-search a:hover {
    color: var(--careox-base, #c32129);
}

.product-details__content {
    position: relative;
    margin: -8px 0 0 0;
}

@media (max-width: 991px) {
    .product-details__content {
        margin: 50px 0 0;
    }
}

.product-details__top {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-bottom: 17px;
}

.product-details__title {
    font-size: 34px;
    text-transform: capitalize;
    font-weight: 700;
    margin: 0;
}

.product-details__price {
    font-size: 24px;
    line-height: 26px;
    color: var(--careox-base, #c32129);
    font-weight: 500;
    margin: 0 0 0 28px;
}

.product-details__review {
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 3px;
    font-size: 16px;
    color: var(--careox-base, #c32129);
}

.product-details__review a {
    display: inline-block;
    color: var(--careox-text, #636363);
    font-size: 15px;
    letter-spacing: 0;
    margin-left: 16px;
    font-weight: 500;
    transition: all 500ms ease;
}

.product-details__review a:hover {
    color: var(--careox-base, #c32129);
}

.product-details__divider {
    width: 100%;
    height: 1px;
    background-color: var(--careox-border-color, #dddddd);
    margin: 22px 0 21px;
}

.product-details__excerpt {
    margin: 0;
}

.product-details__excerpt-text1 {
    margin: 0 0 31px;
}

.product-details__excerpt-text2 {
    margin: 0;
}

@media (max-width: 767px) {
    .product-details__excerpt-text2 br {
        display: block;
    }
}

.product-details__quantity {
    position: relative;
    display: flex;
    align-items: center;
    margin: 20px 0 30px;
}

.product-details__quantity-title {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    margin-right: 35px;
    font-weight: 700;
}

.product-details__quantity .quantity-box {
    position: relative;
    width: 98px;
    height: 50px;
}

.product-details__quantity .quantity-box input {
    width: 98px;
    height: 50px;
    border: 1px solid var(--careox-border-color, #dddddd);
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    font-family: var(--body-font, "Aleo", sans-serif);
    color: var(--careox-text, #636363);
    padding-left: 30px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    background-color: transparent;
}

.product-details__quantity .quantity-box button {
    width: 24px;
    height: 24px;
    color: var(--careox-text, #636363);
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: transparent;
    border: none;
    border-left: 1px solid var(--careox-border-color, #dddddd);
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: all 500ms ease;
}

.product-details__quantity .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top: 1px solid var(--careox-border-color, #dddddd);
}

.product-details__quantity .quantity-box button:hover {
    color: var(--careox-base, #c32129);
}

.product-details__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-details__socials {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.product-details__socials__title {
    font-size: 20px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 700;
    margin-right: 10px;
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .product-details__socials__title {
        flex: 0 0 auto;
    }
}

.product-details__socials a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--careox-gray);
    font-size: 14px;
    color: var(--careox-black, #122f2a);
    transition: all 500ms ease;
    border-radius: 50%;
}

.product-details__socials a:hover {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
}

.product-details__description {
    position: relative;
    margin: 52px 0 0;
}

.product-details__description__title {
    font-size: 30px;
    text-transform: capitalize;
    margin-bottom: 24px;
    font-weight: bold;
}

.product-details__description__text {
    margin-bottom: 30px;
}

.product-details__description__lists {
    margin: 0 0 30px;
    padding: 0;
}

.product-details__description__lists li {
    display: block;
    position: relative;
    padding: 0 0 0 36px;
    font-weight: 500;
    color: var(--careox-black, #122f2a);
}

.product-details__description__lists li span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
    color: var(--careox-base, #c32129);
}

.product-details__comment {
    border-top: 1px solid var(--careox-border-color, #dddddd);
    margin: 55px 0 0;
    padding: 52px 0 0;
    position: relative;
}

.product-details__review-title {
    font-size: 30px;
    text-transform: capitalize;
    margin-bottom: 44px;
    font-weight: 700;
}

.product-details__comment-box {
    position: relative;
    padding: 15px 0 64px 212px;
    margin-bottom: 50px;
    min-height: 166px;
    border-bottom: 1px solid var(--careox-border-color, #dddddd);
}

@media (max-width: 767px) {
    .product-details__comment-box {
        padding-left: 0;
    }
}

.product-details__comment-box__thumb {
    width: 166px;
    height: 166px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    margin: 0;
    border: none;
}

@media (max-width: 767px) {
    .product-details__comment-box__thumb {
        position: relative;
        margin: 0 0 20px;
    }
}

.product-details__comment-box__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.product-details__comment-box__meta {
    font-size: 22px;
    line-height: 30px;
    text-transform: capitalize;
    margin: 0 0 20px;
    font-weight: bold;
    color: var(--careox-black, #122f2a);
}

.product-details__comment-box__date {
    font-size: 15px;
    line-height: 26px;
    display: inline-block;
    text-transform: inherit;
    color: var(--careox-base, #c32129);
    font-family: var(--body-font, "Aleo", sans-serif);
    font-weight: 500;
    letter-spacing: 0;
    margin: 0 0 0 7px;
    text-transform: capitalize;
}

.product-details__comment-box__text {
    margin: 0;
}

.product-details__comment-box__ratings {
    position: absolute;
    right: 0;
    top: 13px;
    display: flex;
    align-items: center;
    letter-spacing: 6px;
    font-size: 16px;
    color: var(--careox-base, #c32129);
}

@media (max-width: 767px) {
    .product-details__comment-box__ratings {
        position: relative;
        top: 0;
        margin: 0 0 22px;
    }
}

.product-details__form {
    position: relative;
    margin: 51px 0 0;
}

.product-details__form .row {
    --bs-gutter-x: 20px;
}

.product-details__form-title {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}

.product-details__form-ratings {
    display: flex;
    align-items: center;
    letter-spacing: 6px;
    font-size: 16px;
    color: var(--careox-base, #c32129);
    margin: 0 0 25px;
}

.product-details__form-ratings__label {
    display: inline-block;
    font-size: 18px;
    letter-spacing: 0;
    color: var(--careox-text, #636363);
    margin: 0 17px 0 0;
}

.product-details__form__form {
    margin-top: 0;
}

.product-details__form__form .bootstrap-select>.dropdown-toggle,
.product-details__form__form input[type=text],
.product-details__form__form input[type=email],
.product-details__form__form input[type=tel],
.product-details__form__form textarea {
    border-color: var(--careox-border-color, #dddddd);
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/

.cart-page {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .cart-page {
        padding: 80px 0;
    }
}

.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: 30px;
    }
}

.cart-page__table {
    position: relative;
    width: 100%;
    border: none;
    margin: 0 0 60px;
}

@media (max-width: 1199px) {
    .cart-page__table {
        min-width: 1170px;
    }
}

.cart-page__table thead tr th {
    color: var(--careox-black, #122f2a);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    padding: 0 0 24px;
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
    text-transform: capitalize;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--careox-border-color, #dddddd) !important;
    box-shadow: none;
}

.cart-page__table thead tr th:last-child {
    text-align: right;
}

.cart-page__table tbody tr td {
    font-size: 18px;
    font-weight: 500;
    color: var(--careox-text, #636363);
    vertical-align: middle;
    border: none;
    box-shadow: none;
    background-color: transparent;
    border-top: 1px solid var(--careox-border-color, #dddddd);
    border-bottom: 1px solid var(--careox-border-color, #dddddd);
    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-img {
    width: 110px;
    height: 107px;
    background-color: var(--careox-white, #fff);
    border: 1px solid var(--careox-border-color, #dddddd);
    margin-right: 34px;
}

.cart-page__table__meta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.cart-page__table__meta-title {
    font-size: 20px;
    text-transform: capitalize;
    margin: 0;
    font-weight: bold;
    color: var(--careox-black, #122f2a);
}

.cart-page__table__meta-title a {
    color: inherit;
}

.cart-page__table__meta-title a:hover {
    color: var(--careox-base, #c32129);
}

.cart-page__table__remove {
    display: block;
    color: var(--careox-black, #122f2a);
    font-size: 24px;
}

.cart-page__table__remove:hover {
    color: var(--careox-base, #c32129);
}

.cart-page__coupone-form {
    position: relative;
    display: flex;
}

@media (max-width: 767px) {
    .cart-page__coupone-form {
        display: block;
    }
}

.cart-page__coupone-form input[type=text] {
    height: 58px;
    width: 375px;
    border: none;
    background-color: var(--careox-gray);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 15px;
    color: var(--careox-text, #636363);
    font-family: var(--body-font, "Aleo", sans-serif);
    display: block;
    font-weight: 400;
    margin-right: 10px;
    border-radius: 30px;
}

@media (max-width: 1199px) {
    .cart-page__coupone-form input[type=text] {
        width: 290px;
    }
}

@media (max-width: 767px) {
    .cart-page__coupone-form input[type=text] {
        width: 100%;
        margin: 0 0 10px;
    }
}

.cart-page__cart-total {
    position: relative;
    text-align: right;
    margin: -8px 0 24px;
    padding: 0;
}

@media (max-width: 991px) {
    .cart-page__cart-total {
        text-align: left;
        margin-top: 45px;
    }
}

.cart-page__cart-total li {
    display: block;
    font-size: 20px;
    color: var(--careox-black, #122f2a);
    text-transform: capitalize;
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
    font-weight: 700;
    margin: 0 0 0px;
}

@media (max-width: 991px) {
    .cart-page__cart-total li span {
        display: inline-block;
        min-width: 172px;
    }
}

.cart-page__cart-total-amount {
    font-size: 16px;
    color: var(--careox-text, #636363);
    font-weight: 500;
    text-transform: inherit;
    font-family: var(--body-font, "Aleo", sans-serif);
    display: inline-block;
    min-width: 172px;
}

.cart-page__buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

@media (max-width: 991px) {
    .cart-page__buttons {
        justify-content: flex-start;
    }
}

.cart-page__buttons .checkout::before {
    background-color: var(--careox-base, #c32129);
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/

.checkout-page {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .checkout-page {
        padding: 80px 0;
    }
}

.checkout-page .bs-gutter-x-20 {
    --bs-gutter-x: 20px;
}

.checkout-page__notice {
    line-height: 26px;
    margin: 0 0 16px;
}

.checkout-page__notice a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.checkout-page__notice a:hover {
    background-size: 100% 1px;
}

.checkout-page__notice a:hover {
    color: var(--careox-base, #c32129);
}

.checkout-page__billing-address {
    position: relative;
}

.checkout-page__billing-address__title {
    font-size: 30px;
    text-transform: capitalize;
    margin: 0 0 34px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .checkout-page__billing-address__title {
        font-size: 28px;
    }
}

.checkout-page__shipping-address {
    position: relative;
}

@media (max-width: 991px) {
    .checkout-page__shipping-address {
        margin: 50px 0 0;
    }
}

.checkout-page__shipping-address__title {
    font-size: 30px;
    text-transform: capitalize;
    margin: 0 0 34px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .checkout-page__shipping-address__title {
        font-size: 28px;
    }
}

.checkout-page__shipping-address__title input[type=checkbox] {
    display: none;
}

.checkout-page__shipping-address__title label {
    position: relative;
    display: inline-block;
    padding-right: 29px;
    cursor: pointer;
}

.checkout-page__shipping-address__title label span:before {
    position: absolute;
    top: 0;
    left: 6px;
    line-height: 20px;
    display: inline-block;
    color: var(--careox-white, #fff);
    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__shipping-address__title input[type=checkbox]+label span {
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 19px;
    height: 19px;
    background-color: var(--careox-base, #c32129);
    border-radius: 50%;
    border: none;
    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__shipping-address__title input[type=checkbox]:checked+label span:before {
    opacity: 1;
}

.checkout-page__input-box {
    position: relative;
    line-height: 1;
    margin: 0 0 20px;
}

.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel] {
    height: 58px;
    width: 100%;
    border: none;
    background-color: var(--careox-gray);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 15px;
    color: var(--careox-text, #636363);
    font-family: var(--body-font, "Aleo", sans-serif);
    display: block;
    font-weight: 400;
}

.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(--body-font, "Aleo", sans-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: var(--careox-gray) !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--careox-text, #636363) !important;
    font-size: 15px;
    line-height: 58px;
    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: 30px;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    font-size: 12px;
    color: var(--careox-text, #636363);
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid var(--careox-border-color, #dddddd);
}

.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 30px;
    color: var(--careox-text, #636363);
    background-color: var(--careox-gray);
    -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(--careox-base, #c32129);
    color: var(--careox-white, #fff);
    border-color: var(--careox-base, #c32129);
}

.checkout-page__input-box textarea {
    font-size: 15px;
    font-weight: 400;
    color: var(--careox-text, #636363);
    height: 123px;
    width: 100%;
    background-color: var(--careox-gray);
    font-family: var(--body-font, "Aleo", sans-serif);
    padding: 20px 30px 30px;
    border: none;
    outline: none;
    margin-bottom: 0px;
}

.checkout-page__check-box {
    position: relative;
    display: block;
    margin-top: -6px;
}

.checkout-page__check-box input[type=checkbox] {
    display: none;
}

.checkout-page__check-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--careox-text, #636363);
    font-size: 15px;
    line-height: 24px;
    text-transform: none;
    cursor: pointer;
}

.checkout-page__check-box label span:before {
    position: absolute;
    top: 0;
    left: 6px;
    line-height: 20px;
    display: inline-block;
    color: var(--careox-white, #fff);
    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: 19px;
    height: 19px;
    background-color: var(--careox-base, #c32129);
    border-radius: 50%;
    border: none;
    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__your-order {
    position: relative;
    margin: 32px 0 0;
}

.checkout-page__your-order__title {
    font-size: 30px;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: bold;
}

.checkout-page__your-order .careox-btn {
    padding: 16px 49.5px 17px;
}

.checkout-page__order-table {
    position: relative;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--careox-border-color, #dddddd);
    margin: 0 0 0;
}

.checkout-page__order-table thead tr th {
    font-size: 20px;
    color: var(--careox-black, #122f2a);
    text-transform: capitalize;
    font-weight: 700;
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
    margin: 0;
    padding: 15.5px 0;
    border: none;
    border-top: 1px solid var(--careox-border-color, #dddddd);
    border-bottom: 1px solid var(--careox-border-color, #dddddd);
    font-weight: bold;
}

.checkout-page__order-table thead tr th:last-child {
    text-align: right;
}

.checkout-page__order-table tbody tr td {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--careox-text, #636363);
    margin: 0;
    padding: 0 0 24px;
    border: none;
}

.checkout-page__order-table tbody tr td:last-child {
    text-align: right;
}

.checkout-page__order-table tbody tr:first-child td {
    padding-top: 25px;
}

.checkout-page__order-table tbody tr:last-child td {
    padding-bottom: 26px;
}

.checkout-page__payment {
    background-color: var(--careox-gray);
    padding: 45px 50px 17px;
    min-height: 295px;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .checkout-page__payment {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .checkout-page__payment {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.checkout-page__payment__item {
    position: relative;
}

.checkout-page__payment__title {
    display: flex;
    font-size: 20px;
    text-transform: capitalize;
    margin: 0;
    align-items: center;
    margin-bottom: 28px;
    cursor: pointer;
    font-weight: bold;
    color: var(--careox-black, #122f2a);
}

.checkout-page__payment__title::before {
    content: "";
    width: 19px;
    height: 19px;
    background-color: var(--careox-white, #fff);
    border: 2px solid var(--careox-border-color, #dddddd);
    border-radius: 50%;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 14px;
    position: relative;
    top: 0;
    line-height: 19px;
    transition: all 500ms ease;
}

.checkout-page__payment__title img {
    margin-left: 15px;
}

.checkout-page__payment__item--active .checkout-page__payment__title::before {
    background-color: var(--careox-base, #c32129);
    border-color: var(--careox-base, #c32129);
    content: "\f00c";
    color: var(--careox-white, #fff);
}

.checkout-page__payment__content {
    margin-left: 35px;
    margin-bottom: 39px;
    font-size: 15px;
    line-height: 30px;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/

.login-page {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .login-page {
        padding: 80px 0;
    }
}

.login-page__wrap {
    position: relative;
    max-width: 970px;
    padding: 60px;
    background-color: var(--careox-gray);
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .login-page__wrap {
        padding: 50px 40px;
    }
}

@media (max-width: 767px) {
    .login-page__wrap {
        padding: 50px 25px;
    }
}

.login-page__wrap__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

.login-page__form {
    position: relative;
    z-index: 1;
    display: block;
}

.login-page__form-input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.login-page__form-input-box input[type=text],
.login-page__form-input-box input[type=email],
.login-page__form-input-box input[type=password] {
    height: 58px;
    width: 100%;
    border: 1px solid var(--careox-border-color, #dddddd);
    background-color: var(--careox-white, #fff);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--careox-text, #636363);
    display: block;
    font-weight: 400;
    border-radius: 5px;
    transition: all 400ms ease;
}

.login-page__form-input-box input[type=text]:focus,
.login-page__form-input-box input[type=email]:focus,
.login-page__form-input-box input[type=password]:focus {
    border-color: var(--careox-secondary);
}

.login-page__check-forgot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 27px;
}

@media (max-width: 767px) {
    .login-page__check-forgot {
        display: block;
    }
}

.login-page__checked-box {
    position: relative;
}

.login-page__checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 45px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--careox-text, #636363);
    font-size: 16px;
    text-transform: none;
    cursor: pointer;
}

.login-page__checked-box label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--careox-border-color, #dddddd);
    border-right: 2px solid var(--careox-border-color, #dddddd);
    content: "";
    width: 8px;
    height: 12px;
    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: 0;
    left: 0;
    width: 25px;
    height: 25px;
    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(--careox-border-color, #dddddd);
}

.login-page__checked-box input[type=checkbox]:checked+label span:before {
    opacity: 1;
}

.login-page__form-forgot-password {
    position: relative;
}

@media (max-width: 767px) {
    .login-page__form-forgot-password {
        margin-top: 20px;
    }
}

.login-page__form-forgot-password a {
    font-size: 16px;
    color: var(--careox-secondary);
    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(--careox-base, #c32129);
}

.login-page .careox-btn {
    border-radius: 5px;
}

.login-page .careox-btn::after,
.login-page .careox-btn::before {
    border-radius: 5px;
}

.register-page {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .register-page {
        padding: 80px 0;
    }
}

.register-page__wrap {
    position: relative;
    max-width: 970px;
    padding: 60px;
    background-color: var(--careox-gray);
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .register-page__wrap {
        padding: 50px 40px;
    }
}

@media (max-width: 767px) {
    .register-page__wrap {
        padding: 50px 25px;
    }
}

.register-page__wrap__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

.register-page__form {
    position: relative;
    z-index: 1;
    display: block;
}

.register-page__form-input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.register-page__form-input-box input[type=text],
.register-page__form-input-box input[type=email],
.register-page__form-input-box input[type=password] {
    height: 58px;
    width: 100%;
    border: 1px solid var(--careox-border-color, #dddddd);
    background-color: var(--careox-white, #fff);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--careox-text, #636363);
    display: block;
    font-weight: 400;
    border-radius: 5px;
    transition: all 400ms ease;
}

.register-page__form-input-box input[type=text]:focus,
.register-page__form-input-box input[type=email]:focus,
.register-page__form-input-box input[type=password]:focus {
    border-color: var(--careox-secondary);
}

.register-page__checked-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 27px;
}

.register-page__checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 45px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--careox-text, #636363);
    font-size: 16px;
    text-transform: none;
    cursor: pointer;
}

.register-page__checked-box label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--careox-border-color, #dddddd);
    border-right: 2px solid var(--careox-border-color, #dddddd);
    content: "";
    width: 8px;
    height: 12px;
    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;
}

.register-page__checked-box input[type=checkbox] {
    display: none;
}

.register-page__checked-box input[type=checkbox]+label span {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    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(--careox-border-color, #dddddd);
}

.register-page__checked-box input[type=checkbox]:checked+label span:before {
    opacity: 1;
}

.register-page .careox-btn {
    border-radius: 5px;
}

.register-page .careox-btn::after,
.register-page .careox-btn::before {
    border-radius: 5px;
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/

.error-404 {
    position: relative;
    padding: 120px 0;
    text-align: center;
}

@media (max-width: 767px) {
    .error-404 {
        padding: 80px 0;
    }
}

.error-404__image {
    position: relative;
    margin-bottom: 45px;
}

.error-404__image img {
    max-width: 100%;
    height: auto;
    animation: leafMove 4s linear 0s infinite;
}

.error-404__title {
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.45px;
    margin-bottom: 15px;
    position: relative;
}

.error-404__text {
    margin: 0;
    margin-bottom: 40px;
}

.error-404__search {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    max-width: 550px;
}

.error-404__search input[type=text] {
    border: none;
    outline: none;
    display: block;
    background-color: var(--careox-gray);
    color: var(--careox-text, #636363);
    font-size: 16px;
    width: 100%;
    max-width: 550px;
    padding-left: 30px;
    height: 58px;
}

.error-404__search__btn {
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 20px;
}

@media (min-width: 768px) {
    .error-404__search__btn {
        font-size: 22px;
    }
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/

.faq-one {
    position: relative;
    padding: 70px 0;
    counter-reset: count;
}

@media (max-width: 767px) {
    .faq-one {
        padding: 80px 0;
    }
}

.faq-one--page {
    padding: 120px 0 90px;
}

@media (max-width: 767px) {
    .faq-one--page {
        padding: 80px 0 50px;
    }
}

.faq-one__content {
    position: relative;
}

@media (max-width: 991px) {
    .faq-one__content {
        margin-bottom: 35px;
    }
}

.faq-one__content .sec-title {
    padding-bottom: 20px;
}

.faq-one__content__text {
    max-width: 504px;
    margin: 0 0 34px;
}

.faq-one__accordion {
    position: relative;
}

.faq-one__accordion .accrodion {
    position: relative;
    background-color: var(--careox-gray);
    margin-bottom: 30px;
    border-radius: 10px;
    counter-increment: count;
}

.faq-one__accordion .accrodion-title {
    padding: 25px 30px 28px;
    padding-right: 45px;
    cursor: pointer;
}

.faq-one__accordion .accrodion-title h4 {
    font-weight: 600;
    color: var(--careox-black, #122f2a);
    font-size: 20px;
    margin: 0;
    transition: all 500ms ease;
    position: relative;
}
.accrodion-content {
    display: none;
}
.faq-one__accordion .accrodion-title__number {
    display: inline-block;
    position: relative;
    color: var(--accent-color);
    width: 35px;
    height: 20px;
    top: 4px;
}

.faq-one__accordion .accrodion-title__number::before {
    content: counters(count, ".", decimal-leading-zero);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-one__accordion .accrodion-title__number::after {
    content: ".";
    position: absolute;
    top: -2px;
    right: -3px;
    bottom: 0;
    margin: auto;
}

.faq-one__accordion .accrodion-title__icon {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: -33px;
    transform: translateY(-50%);
}

.faq-one__accordion .accrodion-title__icon::after {
    position: absolute;
    top: 8px;
    right: 0;
    content: "\eab2";
    font-family: IcoFont !important;
    font-size: 26px;
    font-weight: normal;
    color: var(--accent-color);
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.faq-one__accordion .active .accrodion-title__icon::after {
    content: "\eab9";
}

.faq-one__accordion .accrodion-content .inner {
    padding: 0px 30px 24px;
    margin-top: 03px;
}
.faq-one__accordion .accrodion-content .inner ul{
    padding-left: 15px;
}
.faq-one__accordion .accrodion-content .inner ul li{
    font-size: 16px;
}
.faq-one__accordion .accrodion-content p {
    margin: 0;
    font-size: 15px;
    line-height: 30px;
}

.faq-one__image {
    position: relative;
    z-index: 1;
    text-align: right;
    max-width: 570px;
    margin: 90px 0 0;
}

@media (max-width: 767px) {
    .faq-one__image {
        margin: 10px 0 0;
    }
}

.faq-one__image>img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /*clip-path: polygon(0 0, 100% 23%, 100% 100%, 0% 100%);*/
}

.faq-one__image__left {
    position: absolute;
    left: 0;
    bottom: -85px;
    max-width: 233px;
}

@media (max-width: 767px) {
    .faq-one__image__left {
        display: none;
    }
}

.faq-one__image__left img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 10px solid var(--careox-white, #fff);
    animation: movebounce2 3s linear 0s infinite;
}

.faq-one__image__right {
    position: absolute;
    right: -140px;
    top: -99px;
    max-width: 285px;
}

@media (max-width: 767px) {
    .faq-one__image__right {
        display: none;
    }
}

.faq-one__image__right img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 10px solid var(--careox-white, #fff);
    animation: movebounce3 4s linear infinite;
}

.faq-one__image__shape-top {
    position: absolute;
    right: 45px;
    top: 0;
    z-index: -1;
}

@media (max-width: 767px) {
    .faq-one__image__shape-top {
        display: none;
    }
}

.faq-one__image__shape-top img {
    max-width: 100%;
    height: auto;
    animation: rotated 10s infinite linear;
}

.faq-one__image__shape-bottom {
    position: absolute;
    right: -50px;
    bottom: -50px;
    z-index: -1;
}

@media (max-width: 767px) {
    .faq-one__image__shape-bottom {
        display: none;
    }
}

.faq-one__image__shape-bottom img {
    max-width: 100%;
    height: auto;
    opacity: 0.3;
    animation: zoomsIn 3s linear 0s infinite;
}

.faq-one__text {
    font-size: 24px;
    color: var(--careox-black, #122f2a);
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 33px;
}

@media (max-width: 1199px) {
    .faq-one__text {
        margin-top: 120px;
    }
}

@media (max-width: 767px) {
    .faq-one__text {
        margin-top: 20px;
        display: block;
        text-align: center;
    }
}

.faq-one__text>span {
    color: var(--careox-base, #c32129);
    margin-right: 7px;
}

.faq-one__text .careox-btn {
    margin-left: 16px;
    padding: 3px 32px;
}

.faq-one__text .careox-btn::before {
    background-color: var(--careox-base, #c32129);
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/

.pricing-one {
    position: relative;
    padding: 30px 0 120px;
}

.pricing-one--page {
    padding: 120px 0;
}

@media (max-width: 767px) {
    .pricing-one--page {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .pricing-one {
        padding: 80px 0;
    }
}

.pricing-one__card {
    position: relative;
    z-index: 2;
    background-color: var(--careox-white, #fff);
    border: 1px solid #ecf2fc;
    border-top: none;
    border-radius: 100px 100px 0 0;
    padding: 0 0 48px;
    transition: 500ms ease;
}

@media (max-width: 1199px) {
    .pricing-one__card {
        max-width: 370px;
        margin: auto;
    }
}

.pricing-one__card:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.pricing-one__card__top {
    position: relative;
    z-index: 2;
    background-color: var(--careox-gray);
    border-radius: 100px;
    padding: 52px 20px 52px 175px;
    overflow: hidden;
    margin-bottom: 45px;
    text-align: left;
}

.pricing-one__card__top__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    transition: all 500ms ease;
    height: 0;
    z-index: -1;
}

.pricing-one__card__top__bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--careox-black, #122f2a);
    opacity: 0.7;
    content: "";
}

.pricing-one__card:hover .pricing-one__card__top__bg {
    height: 100%;
}

.pricing-one__card__icon {
    width: 102px;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 54px;
    color: var(--accent-color);
    margin: auto;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 45px;
    bottom: 0;
    transition: 500ms ease;
}

.pricing-one__card__icon::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    opacity: 0.13;
    content: "";
    transition: 500ms ease;
    z-index: -1;
}

.pricing-one__card:hover .pricing-one__card__icon {
    color: var(--careox-white, #fff);
}

.pricing-one__card:hover .pricing-one__card__icon::after {
    opacity: 1;
}

.pricing-one__card__title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 12px;
    font-family: var(--body-font, "Aleo", sans-serif);
    transition: 300ms ease;
}

.pricing-one__card__price {
    font-size: 43px;
    font-weight: 700;
    margin: 0;
    transition: 300ms ease;
}

.pricing-one__card__price span {
    display: inline-block;
    font-size: 16px;
    margin-left: 5px;
}

.pricing-one__card:hover .pricing-one__card__price,
.pricing-one__card:hover .pricing-one__card__title {
    color: var(--careox-white, #fff);
}

.pricing-one__card__list {
    margin: 0 0 44px;
    padding: 0;
    list-style: none;
    transition: all 0.5s;
}

.pricing-one__card__list li {
    list-style: none;
    font-size: 16px;
    transition: 300ms ease;
    margin-bottom: 17px;
}

.pricing-one__card__list li i {
    font-size: 14px;
    margin-right: 7px;
}

.pricing-one__card .careox-btn::before {
    background-color: var(--accent-color);
}

.pricing-one__card .careox-btn::after {
    border-color: var(--accent-color);
}

.pricing-one__card .careox-btn:hover {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Benefit
--------------------------------------------------------------*/

.benefit-one {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .benefit-one {
        padding: 80px 0;
    }
}

.benefit-one__content {
    position: relative;
}

.benefit-one__content .sec-title {
    padding-bottom: 19px;
}

.benefit-one__content__text {
    margin: 0 0 30px;
}

@media (min-width: 1200px) {
    .benefit-one__content__text {
        padding-right: 70px;
    }
}

.benefit-one__content__image {
    position: relative;
}

.benefit-one__content__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.benefit-one__right {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    border: 1px solid var(--careox-border-color, #dddddd);
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991px) {
    .benefit-one__right {
        margin-top: 40px;
    }
}

@media (max-width: 530px) {
    .benefit-one__right {
        grid-template-columns: repeat(1, 1fr);
    }
}

.benefit-one__right::after {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    content: "";
    background-color: var(--careox-border-color, #dddddd);
}

@media (max-width: 530px) {
    .benefit-one__right::after {
        display: none;
    }
}

.benefit-one__right::before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 100%;
    content: "";
    background-color: var(--careox-border-color, #dddddd);
}

@media (max-width: 530px) {
    .benefit-one__right::before {
        display: none;
    }
}

.benefit-one__fact {
    position: relative;
    text-align: center;
    margin: 10px;
    padding: 30px 20px;
    overflow: hidden;
}

.benefit-one__fact:first-child {
    border-radius: 10px 0 0 0;
}

@media (max-width: 530px) {
    .benefit-one__fact:first-child {
        border-radius: 10px 10px 0 0;
    }
}

.benefit-one__fact:nth-child(2) {
    border-radius: 0 10px 0 0;
}

@media (max-width: 530px) {
    .benefit-one__fact:nth-child(2) {
        border-radius: 0;
    }
}

.benefit-one__fact:nth-child(3) {
    border-radius: 0 0 0 10px;
}

@media (max-width: 530px) {
    .benefit-one__fact:nth-child(3) {
        border-radius: 0;
    }
}

.benefit-one__fact:nth-child(4) {
    border-radius: 0 0 10px 0;
}

@media (max-width: 530px) {
    .benefit-one__fact:nth-child(4) {
        border-radius: 0 0 10px 10px;
    }
}

.benefit-one__fact__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.benefit-one__fact__bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.72);
}

.benefit-one__fact:hover .benefit-one__fact__bg {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

.benefit-one__fact__icon {
    width: 70px;
    height: 70px;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--accent-color);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-size: 35px;
    color: var(--careox-white, #fff);
    margin-right: 20px;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
    transition: all 0.5s ease;
}

.benefit-one__fact__icon i {
    display: inline-block;
    transition: all 0.5s ease;
    transform: scale(1);
}

.benefit-one__fact:hover .benefit-one__fact__icon i {
    transform: scale(0.9);
}

.benefit-one__fact__count {
    margin: 36px auto 6px;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 400ms ease;
    position: relative;
}

.benefit-one__fact__count::after {
    width: 70px;
    height: 3px;
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    margin: auto;
    content: "";
    background-color: var(--careox-border-color, #dddddd);
    transition: all 400ms ease;
    border-radius: 10px;
}

.benefit-one__fact:hover .benefit-one__fact__count {
    color: var(--careox-white, #fff);
}

.benefit-one__fact:hover .benefit-one__fact__count::after {
    background-color: var(--accent-color);
}

.benefit-one__fact__text {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    transition: all 400ms ease;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}

.benefit-one__fact:hover .benefit-one__fact__text {
    color: var(--careox-white, #fff);
    background-size: 100% 1px;
}

/*--------------------------------------------------------------
# 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 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 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 zumpX {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: 100%;
    }
}

@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 fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    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;
}

/*--------------------------------------------------------------
# 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(--careox-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(--careox-white, #fff);
}

.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(--careox-black, #122f2a);
    opacity: 0.3;
    cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
    width: 300px;
    background-color: #918b8b;
    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(--careox-white, #fff);
    cursor: pointer;
}

.mobile-nav__close:hover {
    color: var(--careox-base, #c32129);
}

.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(--careox-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(--careox-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(--careox-white, #fff);
    font-size: 12px;
    font-family: var(--body-font, "Aleo", sans-serif);
    text-transform: uppercase;
    font-weight: 500;
    height: 46px;
    letter-spacing: var(--careox-letter-space, 0.1em);
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--careox-base, #c32129);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--careox-base, #c32129);
    border: none;
    outline: none;
    color: var(--careox-white, #fff);
    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(--careox-white, #fff);
    color: var(--careox-black, #122f2a);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--careox-white, #fff);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 20px;
}

.mobile-nav__social a:hover {
    color: var(--careox-base, #c32129);
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--careox-white, #fff);
    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(--careox-base, #c32129);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--careox-base, #c32129);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    margin-right: 10px;
    color: var(--careox-white, #fff);
}

.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;
    overflow: hidden;
    border-radius: 10px;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
    width: 100%;
    background-color: var(--careox-white, #fff);
    font-size: 15px;
    color: var(--careox-text, #636363);
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__form .careox-btn {
    padding: 0;
    width: 66px;
    height: 66px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
}

.search-popup__form .careox-btn::before {
    border-radius: 0;
}

.search-popup__form .careox-btn::after {
    border-radius: 0;
    border: none;
    background-color: var(--careox-base, #c32129);
}

.search-popup__form .careox-btn:hover {
    color: var(--careox-white, #fff);
}

.search-popup__form .careox-btn i {
    margin: 0;
}

.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;
}

/*--------------------------------------------------------------
# Sidebar Popup
--------------------------------------------------------------*/

.sidebar-one {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(100%);
    transform-origin: right center;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.sidebar-one.active {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.sidebar-one.active .sidebar-one__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.sidebar-one__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--careox-black3, #000);
    opacity: 0.5;
    cursor: url(../images/close.png), auto;
}

.sidebar-one__close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 24px;
    color: var(--careox-white, #fff);
    transition: all 0.4s ease;
    cursor: pointer;
}

.sidebar-one__close:hover {
    color: var(--careox-base, #c32129);
}

.sidebar-one__content {
    width: 350px;
    background-color: var(--careox-black, #122f2a);
    z-index: 10;
    position: relative;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow-y: auto;
    padding-top: 40px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    scrollbar-width: none;
}

.sidebar-one__text {
    color: var(--careox-text-gray, #bcbcbc);
    margin: 35px 0 30px;
    line-height: 30px;
}

.sidebar-one__title {
    color: var(--careox-white, #fff);
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 18px;
}

.sidebar-one__info {
    margin: 0;
    padding: 0;
    list-style: none;
    
}

.sidebar-one__info li {
    position: relative;
    padding: 0 0 0 0px;
    margin-bottom: 10px;
    color: var(--careox-text-gray, #bcbcbc);
}

.sidebar-one__info li span {
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 15px;
    color: var(--careox-base, #c32129);
    line-height: inherit;
}

.sidebar-one__info li a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    color: inherit;
}

.sidebar-one__info li a:hover {
    background-size: 100% 1px;
}

.sidebar-one__info li a:hover {
    color: var(--careox-base, #c32129);
}

.sidebar-one__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0 40px;
}

.sidebar-one__social a {
    width: 37px;
    height: 37px;
    background-color: RGBA(var(--careox-white-rgb, 255, 255, 255), 0.08);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent-color);
}

.sidebar-one__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.sidebar-one__social a:hover {
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
}

.sidebar-one__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.sidebar-one__newsletter {
    position: relative;
}

.sidebar-one__newsletter input[type=text] {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    height: 60px;
    background-color: RGBA(var(--careox-white-rgb, 255, 255, 255), 0.08);
    color: var(--careox-text-gray, #bcbcbc);
    font-size: 16px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 50px;
    transition: all 500ms ease;
    border-radius: 5px;
}

.sidebar-one__newsletter button[type=submit] {
    background-color: transparent;
    width: auto;
    height: auto;
    border: none;
    outline: none;
    color: var(--careox-white, #fff);
    font-size: 16px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.sidebar-one__newsletter button[type=submit]:hover {
    color: var(--careox-base, #c32129);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
    /*background-color: var(--careox-black, #122f2a);*/
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-size: cover;
    background-position: center;
    z-index: 1;
    background-color: #fff;
}

@media (min-width: 992px) {
    .page-header {
        padding-top: 140px;
        padding-bottom: 40px;
    }
}
/*.page-header::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #f2f2f2;
    opacity: 0.65;
}*/
.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/*.page-header__bg::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
}*/

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header__title {
    margin: 0;
    font-size: 40px;
    line-height: 50px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .page-header__title {
        font-size: 52px;
        line-height: 61px;
    }
}

.careox-breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.careox-breadcrumb li {
    font-size: 18px;
    color: var(--careox-white, #fff);
    text-transform: capitalize;
    letter-spacing: 0.27px;
    display: flex;
    align-items: center;
}

.careox-breadcrumb li:not(:last-of-type)::after {
    content: "/";
    position: relative;
    top: -1px;
    margin-left: 10px;
    margin-right: 10px;
}

.careox-breadcrumb li span,
.careox-breadcrumb li a {
    color: inherit;
    display: inline-flex;
    line-height: 1.1;
}

.careox-breadcrumb li a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.careox-breadcrumb li a:hover {
    background-size: 100% 1px;
}

.careox-breadcrumb li a:hover {
    color: var(--careox-base, #c32129);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/

.google-map {
    position: relative;
    background-color: var(--careox-gray);
}

.google-map iframe {
    position: relative;
    display: block;
    border: none;
    height: 456px;
    width: 100%;
    mix-blend-mode: luminosity;
}

.google-map__contact {
    overflow: hidden;
    background-color: var(--careox-gray);
}

.contact-map {
    position: relative;
}

.contact-map .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/

.client-carousel {
    position: relative;
    border-top: 1px solid var(--careox-border-color, #dddddd);
    padding: 70px 0;
}

@media (max-width: 767px) {
    .client-carousel {
        padding: 40px 0;
    }
}

.client-carousel--home-two {
    border-top: none;
    border-bottom: 1px solid var(--careox-border-color, #dddddd);
}

.client-carousel--about {
    border: none;
}

.client-carousel__one {
    position: relative;
}

.client-carousel__one__item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    position: relative;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 50px;
    max-width: 206px;
    height: 58px;
}

.client-carousel__one__item:hover .client-carousel__one__item__hover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(70%);
}

.client-carousel__one__item:hover {
    border-color: var(--careox-base, #c32129);
}

.client-carousel__one__item:hover .client-carousel__one__item__normal {
    visibility: hidden;
    opacity: 0;
    transform: translateY(100%);
}

.client-carousel__one__item img {
    transition: 500ms;
    max-width: 122px;
    width: auto;
    transition: all 500ms ease;
}

.client-carousel__one__item__hover {
    transition: all 500ms ease;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    visibility: hidden;
    opacity: 0;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/

.main-slider-one {
    position: relative;
}

.main-slider-one__carousel {
    position: relative;
    width: 100%;
}

.main-slider-one__carousel .owl-dots {
    left: 60px;
    margin: auto 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1400px) {
    .main-slider-one__carousel .owl-dots {
        width: 60px;
        left: 40px;
    }
}

@media (max-width: 1300px) {
    .main-slider-one__carousel .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        margin: auto;
        left: 0;
        right: 0;
        top: auto;
        bottom: 30px;
    }
}

.main-slider-one__carousel .owl-dots .owl-dot {
    display: block;
    margin: 10px 0;
}

@media (max-width: 1300px) {
    .main-slider-one__carousel .owl-dots .owl-dot {
        margin: 0 5px;
    }
}

.main-slider-one__carousel .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--careox-base, #c32129);
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider-one__carousel .owl-dots .owl-dot:hover span,
.main-slider-one__carousel .owl-dots .owl-dot.active span {
    background-color: var(--careox-base, #c32129);
}

.main-slider-one__item {
    background-color: var(--careox-gray);
    position: relative;
    z-index: 3;
    padding-top: 150px;
    padding-bottom: 140px;
}

@media (max-width: 991px) {
    .main-slider-one__item {
        padding-top: 200px;
        padding-bottom: 150px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__item {
        padding-top: 160px;
        padding-bottom: 130px;
    }
}

.main-slider-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.main-slider-one__content {
    position: relative;
    z-index: 3;
}

.main-slider-one__image {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 17px;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.main-slider-one__image img {
    max-width: 100%;
    width: auto !important;
}

.main-slider-one__image img:nth-child(1) {
    animation: shrinkAnim 3s ease 0s infinite;
}

.main-slider-one__title {
    font-size: 58px;
    font-weight: 800;
    line-height: 71px;
    /*text-transform: capitalize;*/
    display: inline-block;
    overflow: hidden;
    margin: 0 0 5px;
}

@media (max-width: 767px) {
    .main-slider-one__title {
        font-size: 50px;
        line-height: 60px;
    }
}

.main-slider-one__text {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.27px;
    margin: 0 0 51px;
    opacity: 1;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 767px) {
    .main-slider-one__text {
        margin-bottom: 30px;
    }
}

.main-slider-one__btn {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
    z-index: 5;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.main-slider-one__btn .video-popup {
    width: 50px;
    height: 50px;
    background-color: var(--careox-black, #122f2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--careox-white, #fff);
    transition: all 500ms ease;
    position: relative;
    z-index: 10;
}

.main-slider-one__btn .video-popup .ripple,
.main-slider-one__btn .video-popup .ripple:before,
.main-slider-one__btn .video-popup .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(var(--careox-black-rgb, 18, 47, 42), 0.25);
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.main-slider-one__btn .video-popup .ripple:before {
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.main-slider-one__btn .video-popup .ripple::after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.main-slider-one__btn .video-popup:hover {
    color: var(--careox-white, #fff);
    background-color: var(--careox-secondary);
}

.main-slider-one__shape-one {
    position: absolute;
    left: 30px;
    bottom: 0;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateX(-100%);
}

@media (max-width: 1199px) {
    .main-slider-one__shape-one {
        display: none;
    }
}

.main-slider-one__shape-one img {
    width: auto !important;
    max-width: 100%;
    opacity: 0.27;
    animation: movebounce2 3s linear 0s infinite;
}

.main-slider-one__shape-two {
    position: absolute;
    left: 44.7%;
    top: 39.7%;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(-300px);
}

@media (max-width: 1500px) {
    .main-slider-one__shape-two {
        left: 43%;
    }
}

@media (max-width: 1199px) {
    .main-slider-one__shape-two {
        left: 52%;
    }
}

@media (max-width: 991px) {
    .main-slider-one__shape-two {
        left: 70%;
    }
}

@media (max-width: 767px) {
    .main-slider-one__shape-two {
        display: none;
    }
}

.main-slider-one__shape-two img {
    width: auto !important;
    max-width: 100%;
    animation: treeMove 4s linear 0s infinite;
}

.main-slider-one__shape-three {
    position: absolute;
    left: 45%;
    bottom: 160px;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(200px);
}

@media (max-width: 767px) {
    .main-slider-one__shape-three {
        display: none;
    }
}

.main-slider-one__shape-three img {
    width: auto !important;
    max-width: 100%;
    animation: vibrant 3s ease 0s infinite;
}

.main-slider-one__shape-four {
    position: absolute;
    right: 8%;
    top: 25%;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(-300px);
}

@media (max-width: 1500px) {
    .main-slider-one__shape-four {
        right: 5%;
    }
}

@media (max-width: 1199px) {
    .main-slider-one__shape-four {
        display: none;
    }
}

.main-slider-one__shape-four img {
    width: auto !important;
    max-width: 100%;
    animation: blinkAnim 3s ease 0s infinite;
}

.main-slider-one__layer {
    position: absolute;
    right: 7%;
    top: 45px;
    bottom: 0;
    margin: auto;
    width: 651px;
    height: 651px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 1500px) {
    .main-slider-one__layer {
        right: -2%;
        width: 650px;
        height: 550px;
    }
}

@media (max-width: 1199px) {
    .main-slider-one__layer {
        display: none;
    }
}


.main-slider-one__layer__inner img {
    width: 100%;
    height: 100%;
    border-radius: 50% 0 0 50%;
}
.main-slider-one__layer__inner{
    width: 100%;
}
.main-slider-one svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.main-slider-one circle {
    stroke: var(--careox-black, #122f2a);
    fill: none;
    transition: 0.5s;
}

.main-slider-one .steap {
    stroke-width: 0;
}

.main-slider-one #svg2 circle {
    transition-timing-function: linear;
}

.main-slider-one .circle1 {
    transition-delay: 0.05s;
}

.main-slider-one .circle2 {
    transition-delay: 0.1s;
}

.main-slider-one .circle3 {
    transition-delay: 0.15s;
}

.main-slider-one .circle4 {
    transition-delay: 0.2s;
}

.main-slider-one .circle5 {
    transition-delay: 0.25s;
}

.main-slider-one .circle6 {
    transition-delay: 0.3s;
}

.main-slider-one .circle7 {
    transition-delay: 0.35s;
}

.main-slider-one .circle8 {
    transition-delay: 0.4s;
}

.main-slider-one .circle9 {
    transition-delay: 0.45s;
}

.main-slider-one .active .steap {
    animation: dash 0.5s linear;
}

@keyframes dash {
    0% {
        stroke-width: 0;
    }
    100% {
        stroke-width: 200px;
    }
}

.main-slider-one .active .main-slider-one__image {
    opacity: 1;
    animation-delay: 1.2s;
}

.main-slider-one .active .main-slider-one__title {
    opacity: 1;
    animation-delay: 1.3s;
    animation-name: rotateInUpRight;
}

/*.main-slider-one .active .main-slider-one__text {
    opacity: 1;
    animation-delay: 1.5s;
    animation-name: rotateInUpLeft;
}*/

.main-slider-one .active .main-slider-one__btn {
    opacity: 1;
    animation-delay: 1.6s;
    animation-name: slideInLeft;
}

.main-slider-one .active .main-slider-one__shape-one {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2000ms;
}

.main-slider-one .active .main-slider-one__shape-two {
    opacity: 1;
    transition-delay: 2000ms;
    transform: translateY(0);
}

.main-slider-one .active .main-slider-one__shape-three {
    opacity: 1;
    transition-delay: 2000ms;
    transform: translateY(0);
}

.main-slider-one .active .main-slider-one__shape-four {
    opacity: 1;
    transition-delay: 2000ms;
    transform: translateY(0);
}

.main-slider-one .active .main-slider-one__layer {
    opacity: 1;
    /*animation-delay: 1.8s;
    animation-name: fadeInRight;*/
    background-image: none !important;
}

.main-slider-two {
    position: relative;
}

.main-slider-two__carousel {
    position: relative;
    width: 100%;
}

.main-slider-two__carousel .owl-dots {
    left: 60px;
    margin: auto 0;
    position: absolute;
    text-align: left;
    width: 60px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1400px) {
    .main-slider-two__carousel .owl-dots {
        left: 40px;
    }
}

@media (max-width: 1300px) {
    .main-slider-two__carousel .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        margin: auto;
        left: 0;
        right: 0;
        top: auto;
        bottom: 30px;
    }
}

.main-slider-two__carousel .owl-dots .owl-dot {
    display: block;
    margin: 10px 0;
}

@media (max-width: 1300px) {
    .main-slider-two__carousel .owl-dots .owl-dot {
        margin: 0 5px;
    }
}

.main-slider-two__carousel .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #605e5e;
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider-two__carousel .owl-dots .owl-dot:hover span,
.main-slider-two__carousel .owl-dots .owl-dot.active span {
    background-color: #3c3b3b;
}

.main-slider-two__item {
    background-color: var(--careox-gray);
    position: relative;
    z-index: 3;
    padding-top: 225px;
    padding-bottom: 220px;
}

@media (max-width: 991px) {
    .main-slider-two__item {
        padding-top: 180px;
        padding-bottom: 150px;
    }
}

@media (max-width: 767px) {
    .main-slider-two__item {
        padding-top: 150px;
        padding-bottom: 110px;
    }
}

.main-slider-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transform: scale(1);
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
    overflow: hidden;
}

.main-slider-two__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--careox-black3-rgb, 0, 0, 0), 0.46);
}

.main-slider-two__content {
    position: relative;
    z-index: 3;
    padding: 0;
}

.main-slider-two__title {
    color: var(--careox-white, #fff);
    font-size: 58px;
    font-weight: 700;
    line-height: 65px;
    margin: 0 0 7px;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(200px);
}

@media (max-width: 991px) {
    .main-slider-two__title {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .main-slider-two__title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
    }
}

.main-slider-two__title__text {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.main-slider-two__title__text::after {
    content: "";
    width: 101%;
    height: 100%;
    position: absolute;
    top: 0;
    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-two__title__text span {
    color: var(--careox-secondary);
    text-decoration: underline;
}

.main-slider-two__text {
    color: var(--careox-white, #fff);
    font-size: 18px;
    margin: 0 0 48px;
    letter-spacing: 0.27px;
    /*opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateX(-100px);*/
}

@media (max-width: 767px) {
    .main-slider-two__text {
        font-size: 16px;
    }
}

.main-slider-two__btn {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    z-index: 5;
    overflow: hidden;
}

@media (max-width: 767px) {
    .main-slider-two__btn {
        gap: 15px;
    }
}

.main-slider-two__btn .careox-btn {
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 1500ms ease;
}

.main-slider-two__volunter {
    position: relative;
    display: flex;
    align-items: center;
}

.main-slider-two__volunter img {
    width: 53px;
    height: 53px;
    border: 3px solid var(--careox-white, #fff);
    border-radius: 50%;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(100px);
}

.main-slider-two__volunter img+img {
    margin-left: -16px;
}

.main-slider-two__shape-one {
    position: absolute;
    left: 0;
    top: 0;
    width: 130px;
    height: 213px;
    opacity: 0;
    transition: transform 1000ms ease, -webkit-transform 1000ms ease;
    transform: translateX(-100%);
}

@media (max-width: 1199px) {
    .main-slider-two__shape-one {
        display: none;
    }
}

.main-slider-two__shape-two {
    position: absolute;
    left: 40px;
    bottom: 40px;
    width: 205px;
    height: 193px;
    opacity: 0;
    transition: transform 1000ms ease, -webkit-transform 1000ms ease;
    transform: translateY(100%);
}

.main-slider-two__shape-two img {
    width: 100%;
    transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(-200px);
}

@media (max-width: 1299px) {
    .main-slider-two__shape-two {
        display: none;
    }
}

.main-slider-two__shape-three {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 214px;
    height: auto;
    opacity: 0;
    transition: transform 1000ms ease, -webkit-transform 1000ms ease;
    transform: translateY(100%);
}

.main-slider-two__shape-three img {
    width: 100%;
    height: auto;
    animation: movebounce3 4s linear infinite;
}

@media (max-width: 1299px) {
    .main-slider-two__shape-three {
        display: none;
    }
}

.main-slider-two .video-popup {
    width: 90px;
    height: 90px;
    background-color: var(--careox-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 45px;
    color: var(--careox-black, #122f2a);
    transition: all 500ms ease;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 767px) {
    .main-slider-two .video-popup {
        display: none;
    }
}

.main-slider-two .video-popup .ripple,
.main-slider-two .video-popup .ripple:before,
.main-slider-two .video-popup .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.25);
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.main-slider-two .video-popup .ripple:before {
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.main-slider-two .video-popup .ripple::after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.main-slider-two .video-popup:hover {
    color: var(--careox-secondary);
}

.main-slider-two .active .main-slider-two__shape-one {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1700ms;
}

.main-slider-two .active .main-slider-two__shape-two {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1800ms;
}

.main-slider-two .active .main-slider-two__shape-three {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1900ms;
}

.main-slider-two .active .video-popup {
    opacity: 1;
    animation-delay: 1.8s;
    animation-name: zoomIn;
}

/*.main-slider-two .active .main-slider-two__bg {
    transform: scale(1.15);
}*/

.main-slider-two .active .main-slider-two__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1200ms;
}

.main-slider-two .active .main-slider-two__title__text::after {
    transform: translateX(1%);
    transition-delay: 1300ms;
}

.main-slider-two .active .main-slider-two__text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1400ms;
}

.main-slider-two .active .main-slider-two__btn .careox-btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1600ms;
}

.main-slider-two .active .main-slider-two__volunter img {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1700ms;
}

.main-slider-two .active .main-slider-two__volunter img:nth-child(2) {
    transition-delay: 1800ms;
}

.main-slider-two .active .main-slider-two__volunter img:nth-child(3) {
    transition-delay: 1800ms;
}

.main-slider-three {
    position: relative;
    overflow: hidden;
}

.main-slider-three__carousel.owl-carousel {
    position: relative;
    width: 100%;
}

.main-slider-three__carousel.owl-carousel .owl-nav {
    margin: auto 0;
    position: absolute;
    left: 60px;
    text-align: left;
    top: 55%;
    transform: translateY(-50%);
    z-index: 99;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 1700px) {
    .main-slider-three__carousel.owl-carousel .owl-nav {
        left: 30px;
    }
}

@media (max-width: 1500px) {
    .main-slider-three__carousel.owl-carousel .owl-nav {
        flex-direction: row;
        transform: none;
        top: auto;
        bottom: 40px;
        left: 0;
        right: 0;
        margin: 0 auto;
        justify-content: center;
    }
}

.main-slider-three__carousel.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background-color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
    color: var(--careox-white, #fff);
    transition: all 400ms ease;
}

.main-slider-three__carousel.owl-carousel .owl-nav button:hover {
    background-color: var(--careox-base, #c32129);
}

.main-slider-three__item {
    position: relative;
    padding-top: 267px;
    padding-bottom: 227px;
    background-color: var(--careox-black, #122f2a);
}

@media (max-width: 1199px) {
    .main-slider-three__item {
        padding-top: 223px;
        padding-bottom: 180px;
    }
}

@media (max-width: 767px) {
    .main-slider-three__item {
        padding-top: 160px;
        padding-bottom: 130px;
    }
}

.main-slider-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    background-color: var(--careox-gray);
}

.main-slider-three__bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(24, 24, 24, 0.91);
}

.main-slider-three__shape-two {
    opacity: 0;
    position: absolute;
    right: 4%;
    top: 170px;
    width: 160px;
    height: 160px;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
    z-index: 1;
    display: none;
}

.main-slider-three__shape-two img {
    animation: zoomsIn 3s linear 0s infinite;
}

@media (min-width: 1400px) {
    .main-slider-three__shape-two {
        display: block;
    }
}

.main-slider-three__shape-three {
    opacity: 0;
    position: absolute;
    right: -15px;
    bottom: 0;
    width: 637px;
    height: 250px;
    opacity: 0;
    transform: scale(0.9);
    transition: transform 1000ms ease, -webkit-transform 1000ms ease;
    transform: translateY(100%);
    z-index: 1;
    display: none;
}

.main-slider-three__shape-three img {
    animation: movebounce2 3s linear 0s infinite;
}

@media (min-width: 1400px) {
    .main-slider-three__shape-three {
        display: block;
    }
}

.main-slider-three .container {
    position: relative;
    z-index: 3;
}

.main-slider-three__content {
    position: relative;
    z-index: 3;
    overflow: hidden;
}

@media (min-width: 1300px) and (max-width: 1500px) {
    .main-slider-three__content {
        padding-left: 40px;
        margin-right: -40px;
    }
}

.main-slider-three__sub-title {
    color: var(--careox-secondary);
    font-size: 31px;
    font-weight: 700;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    text-transform: capitalize;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 22px;
    line-height: 1;
    opacity: 0;
    margin: 0 0 14px;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateY(200px);
}

.main-slider-three__sub-title img {
    width: 65px !important;
    animation: zoomsIn 3s linear 0s infinite;
}

@media (max-width: 500px) {
    .main-slider-three__sub-title {
        letter-spacing: 0;
    }
}

.main-slider-three__sub-title__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.main-slider-three__title {
    color: var(--careox-white, #fff);
    font-size: 65px;
    font-weight: 900;
    line-height: 81px;
    text-transform: capitalize;
    margin: 0 0 25px;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateY(200px);
}

.main-slider-three__title span {
    color: var(--careox-base, #c32129);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .main-slider-three__title {
        font-size: 50px;
        line-height: 62px;
    }
}

@media (max-width: 767px) {
    .main-slider-three__title {
        font-size: 40px;
        line-height: 45px;
    }
}

.main-slider-three__title__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.main-slider-three__text {
    font-size: 18px;
    color: var(--careox-white, #fff);
    letter-spacing: 0.27px;
    margin: 0 0 47px;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateY(200px);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .main-slider-three__text br {
        display: none;
    }
}

.main-slider-three__text__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.main-slider-three__btn {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 1500ms ease;
}

.main-slider-three__layer {
    position: absolute;
    left: 10.5%;
    bottom: 0;
    width: 701px;
    height: 673px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 23px 0;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 1750px) {
    .main-slider-three__layer {
        left: 3%;
    }
}

@media (max-width: 1500px) {
    .main-slider-three__layer {
        left: 2%;
    }
}

@media (max-width: 1400px) {
    .main-slider-three__layer {
        left: 0%;
    }
}

@media (max-width: 1300px) {
    .main-slider-three__layer {
        left: 1%;
        width: 470px;
        height: 500px;
    }
}

@media (max-width: 991px) {
    .main-slider-three__layer {
        display: none;
    }
}

.main-slider-three__layer__inner {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 325.000000"><g transform="translate(0.000000,325.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M937 3223 c-29 -7 -64 -10 -78 -7 -33 6 -146 -40 -224 -92 -82 -54 -207 -174 -262 -253 -56 -80 -105 -186 -140 -300 -24 -79 -26 -100 -25 -247 1 -88 6 -181 11 -205 14 -66 57 -218 75 -268 9 -25 23 -72 32 -105 21 -81 152 -437 168 -456 7 -8 30 -46 51 -85 21 -38 46 -78 57 -88 18 -18 18 -19 -11 -40 -328 -240 -494 -419 -535 -578 -15 -55 -46 -213 -46 -231 0 -20 34 -2 41 22 l7 25 1 -27 c1 -22 6 -28 24 -28 20 0 26 10 45 76 51 173 184 349 367 483 59 44 215 141 265 165 l35 17 -25 -21 c-14 -12 -72 -50 -129 -85 -57 -35 -109 -69 -115 -76 -8 -9 -8 -10 1 -5 31 17 7 -11 -69 -82 -79 -75 -138 -145 -138 -165 0 -5 7 -3 17 4 14 13 14 11 -1 -21 -17 -33 -15 -32 31 16 56 61 166 154 179 154 5 0 122 56 259 125 143 72 267 128 290 131 22 3 67 16 100 29 96 36 275 93 335 106 30 6 93 27 140 45 47 19 94 34 104 34 58 0 471 195 611 288 109 72 272 217 359 318 75 88 178 273 213 381 31 100 43 265 21 291 -9 9 -25 48 -37 86 -27 83 -57 129 -145 218 -66 67 -171 136 -247 163 -78 28 -212 39 -306 26 -127 -18 -299 -74 -433 -141 -66 -33 -124 -60 -129 -60 -5 0 -20 17 -32 38 -50 81 -168 183 -245 212 -15 6 -24 13 -21 16 6 7 85 -32 112 -56 11 -9 34 -25 50 -35 l30 -17 -27 25 c-16 14 -28 29 -28 32 0 12 78 -35 108 -66 17 -18 35 -29 39 -26 3 4 17 -3 30 -15 13 -12 23 -17 23 -11 0 14 -76 107 -121 149 -19 18 -45 46 -59 63 -32 41 -142 100 -250 136 -71 24 -103 28 -193 29 -60 1 -132 -4 -160 -11z m703 -288 c19 -19 32 -35 29 -35 -3 0 -20 16 -39 35 -19 19 -32 35 -29 35 3 0 20 -16 39 -35z m-1525 -2456 c-14 -30 -25 -48 -25 -42 0 15 42 104 47 99 2 -2 -8 -27 -22 -57z m-34 -90 c-5 -13 -10 -19 -10 -12 -1 15 10 45 15 40 3 -2 0 -15 -5 -28z m-14 -61 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z"/><path d="M362 680 c-37 -35 -49 -50 -39 -50 2 0 23 20 47 45 55 56 50 59 -8 5z"/><path d="M30 30 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 325.000000"><g transform="translate(0.000000,325.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M937 3223 c-29 -7 -64 -10 -78 -7 -33 6 -146 -40 -224 -92 -82 -54 -207 -174 -262 -253 -56 -80 -105 -186 -140 -300 -24 -79 -26 -100 -25 -247 1 -88 6 -181 11 -205 14 -66 57 -218 75 -268 9 -25 23 -72 32 -105 21 -81 152 -437 168 -456 7 -8 30 -46 51 -85 21 -38 46 -78 57 -88 18 -18 18 -19 -11 -40 -328 -240 -494 -419 -535 -578 -15 -55 -46 -213 -46 -231 0 -20 34 -2 41 22 l7 25 1 -27 c1 -22 6 -28 24 -28 20 0 26 10 45 76 51 173 184 349 367 483 59 44 215 141 265 165 l35 17 -25 -21 c-14 -12 -72 -50 -129 -85 -57 -35 -109 -69 -115 -76 -8 -9 -8 -10 1 -5 31 17 7 -11 -69 -82 -79 -75 -138 -145 -138 -165 0 -5 7 -3 17 4 14 13 14 11 -1 -21 -17 -33 -15 -32 31 16 56 61 166 154 179 154 5 0 122 56 259 125 143 72 267 128 290 131 22 3 67 16 100 29 96 36 275 93 335 106 30 6 93 27 140 45 47 19 94 34 104 34 58 0 471 195 611 288 109 72 272 217 359 318 75 88 178 273 213 381 31 100 43 265 21 291 -9 9 -25 48 -37 86 -27 83 -57 129 -145 218 -66 67 -171 136 -247 163 -78 28 -212 39 -306 26 -127 -18 -299 -74 -433 -141 -66 -33 -124 -60 -129 -60 -5 0 -20 17 -32 38 -50 81 -168 183 -245 212 -15 6 -24 13 -21 16 6 7 85 -32 112 -56 11 -9 34 -25 50 -35 l30 -17 -27 25 c-16 14 -28 29 -28 32 0 12 78 -35 108 -66 17 -18 35 -29 39 -26 3 4 17 -3 30 -15 13 -12 23 -17 23 -11 0 14 -76 107 -121 149 -19 18 -45 46 -59 63 -32 41 -142 100 -250 136 -71 24 -103 28 -193 29 -60 1 -132 -4 -160 -11z m703 -288 c19 -19 32 -35 29 -35 -3 0 -20 16 -39 35 -19 19 -32 35 -29 35 3 0 20 -16 39 -35z m-1525 -2456 c-14 -30 -25 -48 -25 -42 0 15 42 104 47 99 2 -2 -8 -27 -22 -57z m-34 -90 c-5 -13 -10 -19 -10 -12 -1 15 10 45 15 40 3 -2 0 -15 -5 -28z m-14 -61 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z"/><path d="M362 680 c-37 -35 -49 -50 -39 -50 2 0 23 20 47 45 55 56 50 59 -8 5z"/><path d="M30 30 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: cover;
    mask-size: cover;
    width: 100%;
    height: 100%;
}

.main-slider-three__layer__inner img {
    width: 100%;
    height: 100%;
}

.main-slider-three .active .main-slider-three__sub-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1000ms;
}

.main-slider-three .active .main-slider-three__title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1200ms;
}

.main-slider-three .active .main-slider-three__text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1400ms;
}

.main-slider-three .active .main-slider-three__btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1500ms;
}

.main-slider-three .active .main-slider-three__shape-two {
    opacity: 1;
    /*animation-delay: 1.8s;
    animation-name: fadeInRight;*/
}

.main-slider-three .active .main-slider-three__shape-three {
    opacity: 1;
    transform: scale(1);
    transform: translateY(0);
    transition-delay: 1800ms;
}

.main-slider-three .active .main-slider-three__layer {
    opacity: 1;
    animation-delay: 1.8s;
    animation-name: rollIn;
}

.main-slider-four {
    position: relative;
}

.main-slider-four__carousel {
    position: relative;
    width: 100%;
}

.main-slider-four__carousel .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 130px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 767px) {
    .main-slider-four__carousel .owl-dots {
        bottom: 80px;
    }
}

.main-slider-four__carousel .owl-dots .owl-dot {
    display: block;
    margin: 0;
}

.main-slider-four__carousel .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--careox-base, #c32129);
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider-four__carousel .owl-dots .owl-dot:hover span,
.main-slider-four__carousel .owl-dots .owl-dot.active span {
    background-color: var(--careox-base, #c32129);
}

.main-slider-four__item {
    position: relative;
    z-index: 3;
    padding-top: 142px;
    padding-bottom: 170px;
}

@media (max-width: 767px) {
    .main-slider-four__item {
        padding-top: 100px;
        padding-bottom: 150px;
    }
}

.main-slider-four__bg {
    position: absolute;
    width: calc(100% + 1px);
    height: 100%;
    top: 0;
    left: -1px;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.main-slider-four__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    background-size: cover;
}

.main-slider-four__bg img {
    height: 600px;
}

.main-slider-four__bg img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

.main-slider-four__bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--careox-black2-rgb, 18, 18, 18), 0.69);
}

.main-slider-four__content {
    position: relative;
    z-index: 3;
    padding: 0;
}

.main-slider-four__heart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 113px;
    margin: auto;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.main-slider-four__heart img {
    animation: treeMove 4s linear 0s infinite;
}

.main-slider-four__title {
    color: var(--careox-white, #fff);
    font-size: 65px;
    font-weight: 600;
    line-height: 81px;
    text-transform: capitalize;
    margin: 18px 0 14px;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 991px) {
    .main-slider-four__title {
        font-size: 52px;
        line-height: 70px;
    }
}

@media (max-width: 767px) {
    .main-slider-four__title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
    }
}

.main-slider-four__text {
    color: var(--careox-white, #fff);
    font-size: 18px;
    margin: 0 0 46px;
    letter-spacing: 0.27px;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 767px) {
    .main-slider-four__text {
        font-size: 16px;
    }
}

.main-slider-four__btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    z-index: 5;
}

.main-slider-four__btn .careox-btn {
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.main-slider-four__btn .video-popup {
    width: 50px;
    height: 50px;
    background-color: var(--careox-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--careox-secondary);
    transition: all 500ms ease;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.main-slider-four__btn .video-popup .ripple,
.main-slider-four__btn .video-popup .ripple:before,
.main-slider-four__btn .video-popup .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.25);
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.main-slider-four__btn .video-popup .ripple:before {
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.main-slider-four__btn .video-popup .ripple::after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.main-slider-four__btn .video-popup:hover {
    color: var(--careox-white, #fff);
    background-color: var(--careox-secondary);
}

.main-slider-four .active .main-slider-four__bg img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.main-slider-four .active .main-slider-four__bg img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.main-slider-four .active .main-slider-four__heart {
    opacity: 1;
    animation-delay: 1s;
    animation-name: backInUp;
}

.main-slider-four .active .main-slider-four__title {
    opacity: 1;
    animation-delay: 1.2s;
    animation-name: backInUp;
}

.main-slider-four .active .main-slider-four__text {
    opacity: 1;
    animation-delay: 1.5s;
    animation-name: backInUp;
}

.main-slider-four .active .main-slider-four__btn .careox-btn {
    opacity: 1;
    animation-delay: 1.7s;
    animation-name: bounceInLeft;
}

.main-slider-four .active .main-slider-four__btn .video-popup {
    opacity: 1;
    animation-delay: 1.7s;
    animation-name: bounceInRight;
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/

.feature-one {
    position: relative;
    background-color: var(--careox-black, #122f2a);
    padding: 470px 0 120px;
    margin-top: -305px;
    counter-reset: count;
}

@media (max-width: 991px) {
    .feature-one {
        padding: 400px 0 120px;
    }
}

@media (max-width: 767px) {
    .feature-one {
        padding: 380px 0 80px;
    }
}

.feature-one--about {
    background-color: transparent;
    padding: 180px 0 120px;
    margin-top: 0;
}

@media (max-width: 767px) {
    .feature-one--about {
        padding: 80px 0;
    }
}

.feature-one--about .feature-one__item__number,
.feature-one--about .feature-one__item {
    background-color: var(--careox-gray);
}

.feature-one__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.feature-one .container {
    position: relative;
}

.feature-one__shape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -34px;
    margin: auto;
    width: 100%;
    height: 298px;
    background-position: center center;
    background-repeat: no-repeat;
    animation: shapeMove 4s linear 0s infinite;
}

@media (max-width: 1199px) {
    .feature-one__shape {
        display: none;
    }
}

.feature-one__item {
    position: relative;
    z-index: 1;
    max-width: 352px;
    background-color: var(--careox-white, #fff);
    min-height: 117px;
    border-radius: 58px;
    counter-increment: count;
    padding: 24px 30px 20px 119px;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .feature-one__item {
        margin-right: 10px;
    }
}

.feature-one__item__inner {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.feature-one__item::after {
    background-color: var(--careox-black, #122f2a);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    content: "";
    opacity: 0;
    visibility: hidden;
    border-radius: 58px;
    transition: all 700ms ease;
    z-index: -1;
}

.feature-one__item:hover::after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.feature-one__item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--accent-color);
    position: absolute;
    left: 39px;
    top: 0;
    margin: auto;
    bottom: 0;
    z-index: 1;
    transition: 400ms ease;
}

.feature-one__item__icon::after {
    position: absolute;
    left: 0;
    top: -20px;
    margin: auto;
    bottom: 0;
    width: 38px;
    height: 33px;
    content: "";
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--accent-color);
    opacity: 0.13;
    transition: 400ms ease;
}

.feature-one__item__icon span {
    transform: scale(1);
    transition: 500ms ease;
    position: relative;
    z-index: 1;
}

.feature-one__item:hover .feature-one__item__icon {
    color: var(--accent-color);
}

.feature-one__item:hover .feature-one__item__icon::after {
    background-color: var(--careox-white, #fff);
}

.feature-one__item:hover .feature-one__item__icon span {
    transform: scale(0.9);
}

.feature-one__item__title {
    font-size: 24px;
    font-weight: 600;
    transition: 300ms ease;
    margin: 0 0 9px;
}

.feature-one__item:hover .feature-one__item__title {
    color: var(--careox-white, #fff);
}

.feature-one__item__text {
    transition: 300ms ease;
    margin: 0;
}

.feature-one__item:hover .feature-one__item__text {
    color: var(--careox-white, #fff);
}

.feature-one__item__rm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--careox-white, #fff);
    background-color: var(--accent-color);
    position: absolute;
    font-size: 16px;
    right: -18px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 400ms ease;
}

.feature-one__item__rm:hover {
    transform: rotate(90deg);
}

.feature-one__item__shape {
    position: absolute;
    right: 27px;
    bottom: 0;
    width: 215px;
    height: 0;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.09;
    visibility: visible;
    transition: 600ms ease;
}

.feature-one__item:hover .feature-one__item__shape {
    height: 100px;
    visibility: visible;
}

.feature-one__item__number {
    width: 75px;
    height: 60px;
    background-color: var(--careox-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    margin: auto;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    color: var(--accent-color);
    font-size: 34px;
    font-weight: 700;
    z-index: 2;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
}

.feature-one__item__number::after {
    content: counters(count, ".", decimal-leading-zero);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 9px;
    left: -4px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-one__item__number::before {
    background-color: var(--accent-color);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: all 700ms ease;
    z-index: -1;
}

.feature-one__item:hover .feature-one__item__number {
    color: var(--careox-white, #fff);
}

.feature-one__item:hover .feature-one__item__number::before {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.feature-one__item--reverse {
    position: relative;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .feature-one__item--reverse {
        margin-bottom: 60px;
    }
}

.feature-one__item--reverse .feature-one__item__number {
    bottom: auto;
    top: -60px;
    border-radius: 50px 50px 0 0;
}

@media (max-width: 767px) {
    .feature-one__item--reverse .feature-one__item__number {
        top: auto;
        bottom: -60px;
        border-radius: 0 0 50px 50px;
    }
}

.feature-one__item--reverse .feature-one__item__number::after {
    bottom: 0;
}

@media (max-width: 767px) {
    .feature-one__item--reverse .feature-one__item__number::after {
        bottom: 5px;
    }
}

.feature-one__item--reverse .feature-one__item__rm {
    transform: rotate(180deg);
}

.feature-one__item--reverse .feature-one__item__rm:hover {
    transform: rotate(90deg);
}

@media (max-width: 767px) {
    .feature-one__item--reverse .feature-one__item__rm:hover {
        transform: rotate(90deg);
    }
}

@media (max-width: 767px) {
    .feature-one__item--reverse .feature-one__item__rm {
        transform: rotate(0);
    }
}

.feature-two {
    position: relative;
    z-index: 2;
    margin-top: -95px;
    counter-reset: count;
}

@media (max-width: 1300px) {
    .feature-two {
        margin-top: 0;
        padding-top: 80px;
    }
}

.feature-two__item {
    position: relative;
    z-index: 1;
    counter-increment: count;
    padding: 64px 0 21px;
}

.feature-two__item__inner {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    overflow: hidden;
    min-height: 117px;
    width: 100%;
    background-color: var(--careox-gray);
    border-radius: 58px;
    padding: 24px 30px 20px 119px;
}

.feature-two__item__inner::after {
    background-color: var(--accent-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    content: "";
    opacity: 0;
    visibility: hidden;
    border-radius: 58px;
    transition: all 700ms ease;
    z-index: -1;
}

.feature-two__item:hover .feature-two__item__inner:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.feature-two__item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--accent-color);
    position: absolute;
    left: 39px;
    top: 0;
    margin: auto;
    bottom: 0;
    z-index: 1;
    transition: 400ms ease;
}

.feature-two__item__icon::after {
    position: absolute;
    left: 0;
    top: -20px;
    margin: auto;
    bottom: 0;
    width: 38px;
    height: 33px;
    content: "";
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--accent-color);
    opacity: 0.13;
    transition: 400ms ease;
}

.feature-two__item__icon span {
    transform: scale(1);
    transition: 500ms ease;
    position: relative;
    z-index: 1;
}

.feature-two__item:hover .feature-two__item__icon {
    color: var(--careox-white, #fff);
}

.feature-two__item:hover .feature-two__item__icon::after {
    background-color: var(--careox-white, #fff);
}

.feature-two__item:hover .feature-two__item__icon span {
    transform: scale(0.9);
}

.feature-two__item__title {
    font-size: 24px;
    font-weight: 600;
    transition: 300ms ease;
    margin: 0 0 9px;
}

.feature-two__item:hover .feature-two__item__title {
    color: var(--careox-white, #fff);
}

.feature-two__item__text {
    transition: 300ms ease;
    margin: 0;
}

.feature-two__item:hover .feature-two__item__text {
    color: var(--careox-white, #fff);
}

.feature-two__item__rm {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--careox-white, #fff);
    background-color: var(--accent-color);
    position: absolute;
    font-size: 16px;
    top: auto;
    right: 0;
    left: 0;
    bottom: -21px;
    margin: 0 auto;
    transform: rotate(90deg);
    transition: 400ms ease;
}

.feature-two__item__rm:hover {
    transform: rotate(0);
}

.feature-two__item__shape {
    position: absolute;
    right: 27px;
    bottom: 0;
    width: 215px;
    height: 0;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.11;
    visibility: visible;
    transition: 600ms ease;
}

.feature-two__item:hover .feature-two__item__shape {
    height: 100px;
    visibility: visible;
}

.feature-two__item__number {
    width: 75px;
    height: 60px;
    background-color: var(--careox-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 117px;
    margin: auto;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    color: var(--accent-color);
    font-size: 34px;
    font-weight: 700;
    z-index: 2;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .feature-two__item__number {
        top: 166px;
    }
}

.feature-two__item__number::after {
    content: counters(count, ".", decimal-leading-zero);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 9px;
    left: -4px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-two__item__number::before {
    background-color: var(--careox-white, #fff);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: all 700ms ease;
    z-index: -1;
}

.feature-two__item:hover .feature-two__item__number {
    color: var(--accent-color);
}

.feature-two__item:hover .feature-two__item__number::before {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.feature-two__item__image {
    position: relative;
}

.feature-two__item__image img {
    width: 100%;
    height: auto;
    border-radius: 0 0 20px 20px;
}

.feature-three {
    position: relative;
    overflow: hidden;
}

.feature-three .col-xl-3 {
    padding: 0;
}

.feature-three__item {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 47px 70px 50px 85px;
    background-color: var(--accent-color);
}

@media (max-width: 1700px) {
    .feature-three__item {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1500px) {
    .feature-three__item {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 1199px) {
    .feature-three__item {
        padding-left: 50px;
        padding-right: 45px;
    }
}

@media (max-width: 400px) {
    .feature-three__item {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.feature-three__item__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition-timing-function: ease-in-out;
    transition-duration: 0.4s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.feature-three__item__hover::after {
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--accent-color);
    opacity: 0.87;
    content: "";
    width: 100%;
    height: 100%;
}

.feature-three__item:hover .feature-three__item__hover {
    transform: scaleY(1);
}

.feature-three__item__top {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    border-bottom: 1px solid var(--careox-white, #fff);
    padding-bottom: 16px;
    margin: 0 0 23px;
}

.feature-three__item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--careox-white, #fff);
    z-index: 1;
    transition: 400ms ease;
}

.feature-three__item__icon::after {
    position: absolute;
    left: 0;
    top: -20px;
    margin: auto;
    bottom: 0;
    width: 38px;
    height: 33px;
    content: "";
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--careox-white, #fff);
    opacity: 0.13;
    transition: 400ms ease;
}

.feature-three__item__icon span {
    transform: scale(1);
    transition: 500ms ease;
    position: relative;
    z-index: 1;
}

.feature-three__item:hover .feature-three__item__icon span {
    transform: scale(0.9);
}

.feature-three__item__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--careox-white, #fff);
    transition: 300ms ease;
    margin: 0;
}

.feature-three__item__text {
    transition: 300ms ease;
    line-height: 24px;
    color: var(--careox-white, #fff);
    text-transform: uppercase;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    margin: 0 0 10px;
}

.feature-three__item__list {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.feature-three__item__list li {
    position: relative;
    padding-left: 25px;
    margin-top: 6px;
    color: var(--careox-white, #fff);
}

.feature-three__item__list__icon {
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 0;
    line-height: 1;
    margin: auto;
    display: flex;
    align-items: center;
    font-size: 17px;
}

.feature-three__item .careox-btn {
    padding: 7px 32px;
    color: var(--careox-black, #122f2a);
}

.feature-three__item .careox-btn:hover {
    color: var(--careox-white, #fff);
}

.feature-three__item .careox-btn::before {
    background-color: var(--careox-white, #fff);
}

.feature-three__item .careox-btn::after {
    border-color: var(--careox-white, #fff);
}

.feature-three__item__shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 240px;
    height: 151px;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.1;
    transition: 600ms ease;
    z-index: -1;
}

.feature-four {
    position: relative;
    z-index: 2;
    margin-top: -83px;
    counter-reset: count;
}

.feature-four__item {
    position: relative;
    z-index: 1;
    counter-increment: count;
    min-height: 416px;
    margin-bottom: 23px;
}

.feature-four__item__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-radius: 200px 200px 0 0;
    transition: all ease 0.4s;
}

.feature-four__item__bg::after {
    background-color: var(--accent-color);
    opacity: 0.67;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.feature-four__item:hover .feature-four__item__bg {
    transform: scale(1.01);
}

.feature-four__item__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -22px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.feature-four__item__number {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    color: var(--careox-white, #fff);
    font-size: 35px;
    font-weight: 700;
    z-index: 2;
    overflow: hidden;
}

.feature-four__item__number::after {
    content: counters(count, ".", decimal-leading-zero);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-four__item__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--careox-white, #fff);
    transition: 300ms ease;
    margin: 2px 0 6px;
}

.feature-four__item__text {
    transition: 300ms ease;
    color: var(--careox-white, #fff);
    margin: 0 0 31px;
}

.feature-four__item__rm {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--careox-white, #fff);
    background-color: var(--accent-color);
    font-size: 16px;
    transition: 400ms ease;
}

.feature-four__item__rm span {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.feature-four__item__rm:hover {
    background-color: var(--careox-black, #122f2a);
    color: var(--accent-color);
}

.feature-four__item__rm:hover span {
    animation: iconTranslateX 0.4s forwards;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-one {
    position: relative;
    padding: 120px 0 35px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .about-one {
        padding: 80px 0 0;
    }
}

.about-one__shape {
    position: absolute;
    right: 3%;
    bottom: 0;
    display: none;
}

@media (min-width: 1600px) {
    .about-one__shape {
        display: block;
    }
}

.about-one__shape img {
    max-width: 100%;
    height: auto;
    animation: movebounce3 4s linear infinite;
}

.about-one__image {
    position: relative;
    z-index: 2;
    padding-left: 76px;
    padding-bottom: 76px;
}

@media (max-width: 767px) {
    .about-one__image {
        padding: 0;
    }
}

.about-one__image__one {
    position: relative;
}

.about-one__image__one img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}

.about-one__image__shape-one {
    position: absolute;
    left: 12px;
    top: 5px;
}

@media (max-width: 767px) {
    .about-one__image__shape-one {
        display: none;
    }
}

.about-one__image__shape-one img {
    max-width: 100%;
    height: auto;
    animation: movebounce3 3s linear infinite;
}

.about-one__image__shape-two {
    position: absolute;
    left: -42px;
    bottom: -40px;
    z-index: -1;
}

@media (max-width: 1199px) {
    .about-one__image__shape-two {
        display: none;
    }
}

.about-one__image__shape-two img {
    max-width: 100%;
    height: auto;
    animation: zoomsIn 3s linear 0s infinite;
}

.about-one__image__shape-three {
    position: absolute;
    left: 232px;
    bottom: -45px;
    z-index: -1;
}

@media (max-width: 767px) {
    .about-one__image__shape-three {
        display: none;
    }
}

.about-one__image__shape-three img {
    max-width: 100%;
    height: auto;
    animation: movebounce2 3s linear 0s infinite;
}

.about-one__image__two {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: end;
}

@media (max-width: 767px) {
    .about-one__image__two {
        display: block;
        position: relative;
    }
}

.about-one__image__two img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    border: 10px solid var(--careox-white, #fff);
    border-left: none;
}

.about-one__image__video {
    display: flex;
    align-items: center;
    color: var(--careox-white, #fff);
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-size: 22px;
    font-weight: 700;
    background-color: var(--careox-base, #c32129);
    min-width: 246px;
    margin-bottom: 28px;
    gap: 15px;
}

@media (max-width: 767px) {
    .about-one__image__video {
        max-width: 246px;
    }
}

.about-one__image__video .video-popup {
    width: 53px;
    height: 48px;
    color: var(--careox-white, #fff);
    background-color: var(--careox-secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 500ms ease;
}

.about-one__image__video .video-popup:hover {
    background-color: var(--careox-black, #122f2a);
    color: var(--careox-white, #fff);
}

.about-one__content {
    position: relative;
    padding-top: 33px;
}

@media (max-width: 1199px) {
    .about-one__content {
        padding-top: 40px;
    }
}

.about-one__content .sec-title {
    padding-bottom: 20px;
}

.about-one__content__text {
    margin: 0 0 23px;
}

@media (min-width: 1200px) {
    .about-one__content__text {
        padding-right: 70px;
    }
}

.about-one__content__box {
    position: relative;
}

.about-one__content__box__top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-one__content__box__icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    font-size: 31px;
    color: var(--careox-white, #fff);
    overflow: hidden;
}

.about-one__content__box__icon span {
    display: inline-block;
    transform: scale(1);
    transition: 500ms ease;
}

.about-one__content__box:hover .about-one__content__box__icon span {
    transform: scale(0.9);
}

.about-one__content__box__title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    /*background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;*/
    transition: all 500ms ease;
}

.about-one__content__box:hover .about-one__content__box__title {
    background-size: 100% 2px;
}

.about-one__content__box__text {
    margin: 13px 0 0;
    position: relative;
    padding-left: 25px;
}

.about-one__content__box__text__icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    line-height: 1;
    margin: auto;
    display: flex;
    align-items: center;
    color: var(--careox-secondary);
    font-size: 17px;
}

.about-one__content__border {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--careox-border-color, #dddddd);
    margin: 30px 0 24px;
}

.about-one__content__border::after {
    width: 7px;
    height: 7px;
    content: "";
    background-color: var(--careox-base, #c32129);
    border-radius: 50%;
    left: 0;
    top: -3px;
    position: absolute;
    /*animation: zumpX 15s linear infinite;*/
}

.about-one__content__list {
    margin: 0 0 45px;
    padding: 0;
    list-style: none;
}

.about-one__content__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}

.about-one__content__list li a {
    color: inherit;
    font-weight: 500;
    border-bottom: 2px solid currentColor;
}

.about-one__content__list li a:hover {
    color: var(--careox-secondary);
}

.about-one__content__list__icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    line-height: 1;
    margin: auto;
    display: flex;
    align-items: center;
    color: var(--careox-secondary);
    font-size: 15px;
}

.about-one__text {
    font-size: 24px;
    color: var(--careox-black, #122f2a);
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 84px;
}

@media (max-width: 767px) {
    .about-one__text {
        margin-top: 44px;
        display: block;
        text-align: center;
    }
}

.about-one__text>span {
    color: var(--careox-base, #c32129);
    margin-right: 7px;
}

.about-one__text .careox-btn {
    margin-left: 16px;
    padding: 7px 32px;
}

.about-one__text .careox-btn::before {
    background-color: var(--careox-base, #c32129);
}

.about-one--about {
    position: relative;
}

.about-one--about .about-one__image {
    padding-left: 0;
}

.about-one--about .about-one__image__two {
    left: 30px;
}

@media (max-width: 767px) {
    .about-one--about .about-one__image__two {
        left: 0;
    }
}

.about-one--about .about-one__image__two img {
    max-width: 223px;
    border: 10px solid var(--careox-white, #fff);
}

.about-one--about .about-one__image__shape-three {
    left: 215px;
}

.about-one--about .about-one__image__shape-two {
    left: -29px;
    bottom: 45px;
}

.about-two {
    position: relative;
    padding: 80px 0 80px;
    overflow: hidden;
    
}
.about-two::after{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgb(242 241 238 / .97);
    z-index: -1;
}
@media (max-width: 767px) {
    .about-two {
        padding: 80px 0;
    }
}

.about-two__shape {
    position: absolute;
    right: 45px;
    bottom: 0;
    display: none;
}

@media (min-width: 1500px) {
    .about-two__shape {
        display: block;
    }
}

.about-two__shape img {
    max-width: 100%;
    height: auto;
    animation: movebounce2 4s linear infinite;
    opacity: 0.25;
}

.about-two__image {
    position: relative;
    z-index: 2;
    text-align: right;
}

@media (min-width: 1200px) {
    .about-two__image {
        padding-right: 20px;
    }
}

@media (max-width: 991px) {
    .about-two__image {
        max-width: 570px;
    }
}

@media (max-width: 767px) {
    .about-two__image {
        padding: 0;
    }
}

.about-two__image>img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}

.about-two__image__text {
    display: flex;
    align-items: center;
    color: var(--careox-white, #fff);
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-size: 22px;
    font-weight: 700;
    background-color: var(--careox-base, #c32129);
    max-width: 246px;
    margin-left: auto;
    z-index: 2;
    position: relative;
    margin-top: -48px;
    gap: 15px;
    border-radius: 0 0 30px 0;
}

.about-two__image__text .video-popup {
    width: 53px;
    height: 48px;
    color: var(--careox-white, #fff);
    background-color: var(--careox-secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 500ms ease;
}

.about-two__image__text .video-popup:hover {
    background-color: var(--careox-black, #122f2a);
    color: var(--careox-white, #fff);
}

.about-two__image__left {
    position: absolute;
    left: 0;
    top: 59px;
    max-width: 223px;
}

@media (min-width: 1300px) {
    .about-two__image__left {
        left: -40px;
    }
}

@media (max-width: 767px) {
    .about-two__image__left {
        display: none;
    }
}

.about-two__image__left img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 10px solid var(--careox-white, #fff);
    animation: movebounce3 3s linear infinite;
}

.about-two__image__shape-one {
    position: absolute;
    left: -20px;
    bottom: 150px;
    z-index: -1;
}

@media (max-width: 767px) {
    .about-two__image__shape-one {
        display: none;
    }
}

.about-two__image__shape-one img {
    max-width: 100%;
    height: auto;
    animation: movebounce3 3s linear infinite;
}

.about-two__image__shape-two {
    position: absolute;
    left: 50px;
    bottom: -22px;
    z-index: -1;
}

@media (max-width: 767px) {
    .about-two__image__shape-two {
        display: none;
    }
}

.about-two__image__shape-two img {
    max-width: 100%;
    height: auto;
    animation: zoomsIn 3s linear 0s infinite;
    opacity: 0.3;
}

.about-two__content {
    position: relative;
}

@media (max-width: 991px) {
    .about-two__content {
        padding-top: 40px;
    }
}

.about-two__content .sec-title {
    padding-bottom: 25px;
}

.about-two__content__text {
    margin: 0 0 50px;
}
.about-two__content__text h2,
.about-two__content__text h3{
    font-weight: 700;
    margin-bottom: 15px;
}
.about-two__content__text ul,
.about-two__content__text ol{
    padding-left: 15px;
}
.about-two__content__text h3,
.about-two__content__text h4,
.about-two__content__text h5,
.about-two__content__text h6{
    font-weight: 600;
}
@media (min-width: 1200px) {
    .about-two__content__text {
        padding-right: 70px;
    }
}

.about-two__wrapper {
    margin: 0 0 40px;
    padding: 0 0 36px;
    border-bottom: 1px solid var(--careox-border-color, #dddddd);
}

.about-two__donate {
    width: 100%;
    text-align: center;
    position: relative;
}

.about-two__donate__icon {
    margin-bottom: 18px;
    transition: transform 400ms ease;
    font-size: 50px;
    line-height: 50px;
    color: var(--accent-color);
}

.about-two__donate:hover .about-two__donate__icon {
    transform: scale(1.1);
}

.about-two__donate__title {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-two__donate__text {
    text-align: center;
    font-size: 26px;
    color: var(--accent-color);
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    margin: 0;
}

.about-two__author {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .about-two__author {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.about-two__author>img {
    max-width: 242px;
    height: auto;
}

@media (max-width: 1199px) {
    .about-two__author>img {
        max-width: 200px;
    }
}

.about-two__author__left {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-two__author__image {
    width: 73px;
    height: 73px;
    border-radius: 50%;
    overflow: hidden;
    padding: 6px;
    position: relative;
}

.about-two__author__image::after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    content: "";
    border-style: dashed;
    border-width: 1px;
    border-color: var(--careox-base, #c32129);
    border-radius: 50%;
    animation-duration: 1500ms;
    animation: rotated 10s infinite linear;
    transition: 500ms all ease;
    animation-play-state: running;
}

.about-two__author__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-two__author__name {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 5px;
}

.about-two__author__designation {
    margin: 0;
}

.about-three {
    position: relative;
    padding: 100px 0 100px;
}

@media (max-width: 991px) {
    .about-three {
        padding-top: 120px;
    }
}

@media (max-width: 767px) {
    .about-three {
        padding: 60px 0 60px;
    }
}

.about-three__content {
    position: relative;
}
.about-three__content ul{
    padding-left: 15px;
}
.about-three__content h2,
.about-three__content h3{
    margin-bottom: 10px;
    font-weight: 700;
}
.about-three__content .sec-title {
    padding-bottom: 20px;
}
.about-three__content__text ul{
    padding-left: 15px;
}
.about-three__content__text {
    margin: 0 0 21px;
}

@media (min-width: 1199px) {
    .about-three__content__text {
        padding-right: 50px;
    }
}

.about-three__content__text-two {
    margin: 22px 0 45px;
}

@media (min-width: 1200px) {
    .about-three__content__text-two {
        padding-right: 70px;
    }
}

.about-three__content__list {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.about-three__content__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}

.about-three__content__list li a {
    color: inherit;
    font-weight: 500;
    border-bottom: 2px solid currentColor;
}

.about-three__content__list li a:hover {
    color: var(--careox-secondary);
}

.about-three__content__list__icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    line-height: 1;
    margin: auto;
    display: flex;
    align-items: center;
    color: var(--careox-secondary);
    font-size: 15px;
}

.about-three__content__box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-three__content__box__icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    font-size: 31px;
    color: var(--careox-white, #fff);
    overflow: hidden;
}

.about-three__content__box__icon span {
    display: inline-block;
    transform: scale(1);
    transition: 500ms ease;
}

.about-three__content__box:hover .about-three__content__box__icon span {
    transform: scale(0.9);
}

.about-three__content__box__title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.about-three__content__box:hover .about-three__content__box__title {
    background-size: 100% 2px;
}

.about-three__image {
    position: relative;
    text-align: right;
    max-width: 525px;
    margin-left: auto;
    padding-top: 99px;
}

@media (max-width: 1340px) {
    .about-three__image {
        margin-left: 0;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .about-three__image {
        padding-top: 45px;
    }
}

.about-three__image>img {
    max-width: 100%;
    height: auto;
    border-radius: 10px 10px 10px 200px;
}

.about-three__image__right {
    max-width: 243px;
    position: absolute;
    right: 0;
    top: -55px;
}

@media (min-width: 1200px) and (max-width: 1340px) {
    .about-three__image__right {
        right: -35px;
    }
}

@media (min-width: 1341px) {
    .about-three__image__right {
        right: -85px;
    }
}

@media (max-width: 767px) {
    .about-three__image__right {
        display: none;
    }
}

.about-three__image__right img {
    width: 100%;
    height: auto;
    border: 5px solid var(--careox-white, #fff);
    border-radius: 50px;
}

.about-three__image__shape-one {
    position: absolute;
    right: 175px;
    top: -15px;
}

.about-three__image__shape-one img {
    max-width: 100%;
    height: auto;
    animation: zoomsIn 4s linear 0s infinite;
}

@media (max-width: 767px) {
    .about-three__image__shape-one {
        display: none;
    }
}

.about-three__image__shape-two {
    position: absolute;
    left: 0;
    bottom: -25px;
}

.about-three__image__shape-two img {
    max-width: 100%;
    height: auto;
    animation: treeMove 4s linear 0s infinite;
}

.about-four {
    position: relative;
    padding: 150px 0 110px;
}

@media (max-width: 767px) {
    .about-four {
        padding: 80px 0;
    }
}

.about-four__shape {
    position: absolute;
    right: 2%;
    bottom: 60px;
    opacity: 0.09;
}

.about-four__shape img {
    max-width: 100%;
    height: auto;
    animation: rotated 15s infinite linear;
}

@media (max-width: 1600px) {
    .about-four__shape {
        display: none;
    }
}

.about-four__image {
    position: relative;
    text-align: right;
    padding-top: 40px;
    padding-bottom: 95px;
}

@media (max-width: 1199px) {
    .about-four__image {
        max-width: 570px;
    }
}

@media (min-width: 1340px) {
    .about-four__image {
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .about-four__image {
        padding-top: 0;
    }
}

.about-four__image>img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}

.about-four__image__one {
    position: absolute;
    left: -22px;
    top: -43px;
    max-width: 225px;
}

.about-four__image__one img {
    max-width: 100%;
    height: auto;
    border: 10px solid var(--careox-white, #fff);
    border-radius: 30px;
}

@media (max-width: 767px) {
    .about-four__image__one {
        display: none;
    }
}

.about-four__image__two {
    position: absolute;
    left: -208px;
    top: 197px;
    max-width: 208px;
}

.about-four__image__two img {
    max-width: 100%;
    height: auto;
    border: 10px solid var(--careox-white, #fff);
    border-radius: 30px;
}

@media (max-width: 1499px) {
    .about-four__image__two {
        display: none;
    }
}

.about-four__image__three {
    display: flex;
    align-items: end;
    position: absolute;
    left: 15px;
    bottom: 0;
}

.about-four__image__three img {
    max-width: 262px;
    height: auto;
    border: 10px solid var(--careox-white, #fff);
    border-radius: 30px;
}

@media (max-width: 767px) {
    .about-four__image__three img {
        display: none;
    }
}

.about-four__image__text {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 23px;
    margin-bottom: 24px;
}

.about-four__image__text span {
    display: inline-block;
    font-size: 27px;
}

.about-four__content {
    position: relative;
}

@media (max-width: 1199px) {
    .about-four__content {
        padding-top: 40px;
    }
}

.about-four__content .sec-title {
    padding-bottom: 20px;
}

.about-four__content__text {
    margin: 0 0 23px;
}

@media (min-width: 1200px) {
    .about-four__content__text {
        padding-right: 70px;
    }
}

.about-four__content__highlight {
    position: relative;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-weight: 700;
    border-left: 6px solid var(--careox-secondary);
    text-transform: uppercase;
    padding: 4px 0 2px 16px;
    margin-bottom: 35px;
}

.about-four__content__border {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--careox-border-color, #dddddd);
    margin: 0 0 74px;
}

.about-four__content__border::after {
    width: 7px;
    height: 7px;
    content: "";
    background-color: var(--careox-base, #c32129);
    border-radius: 50%;
    left: 0;
    top: -3px;
    position: absolute;
    /*animation: zumpX 15s linear infinite;*/
}

.about-four__content__progress {
    position: relative;
    margin-bottom: 42px;
}

.about-four__content__progress__bar {
    width: 100%;
    height: 12px;
    background-color: var(--careox-border-color, #dddddd);
    border-radius: 20px;
    position: relative;
    margin-bottom: 13px;
}

.about-four__content__progress__inner {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--careox-base, #c32129);
    transition: all 1500ms linear;
    border-radius: 20px;
    width: 0px;
    z-index: 1;
}

.about-four__content__progress__number {
    width: 40px;
    height: 31px;
    position: absolute;
    z-index: 1;
    background-color: var(--careox-base, #c32129);
    bottom: calc(100% + 18px);
    right: -16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.21px;
    color: var(--careox-white, #fff);
}

.about-four__content__progress__number::after {
    z-index: -1;
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 22px;
    height: 32px;
    content: "";
    background-color: inherit;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.about-four__content__progress__text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 700;
    color: var(--careox-black, #122f2a);
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.service-one {
    position: relative;
    background-color: var(--careox-gray);
    padding: 135px 0 120px;
}

.service-one__shape-one {
    position: absolute;
    left: 60px;
    top: 114px;
    width: 248px;
    height: 248px;
    background-position: top left;
    background-repeat: no-repeat;
    animation: treeMove 4s linear 0s infinite;
}

@media (max-width: 1300px) {
    .service-one__shape-one {
        display: none;
    }
}

.service-one__shape-two {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: right bottom;
    background-repeat: no-repeat;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .service-one {
        padding: 190px 0 80px;
    }
}

.service-one__item {
    position: relative;
    background-color: var(--careox-white, #fff);
    z-index: 2;
    border-radius: 20px;
    padding: 40px 25px 35px;
    transition: all 500ms ease;
}

.service-one__item::after {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 82px);
    border: 1px dashed var(--careox-border-color, #dddddd);
    content: "";
    border-radius: 20px;
    transition: all 500ms ease;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transform: scale(0.9);
}

.service-one__item:hover {
    box-shadow: 0px 10px 60px 0px rgba(var(--careox-black3-rgb, 0, 0, 0), 0.07);
}

.service-one__item:hover::after {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.service-one__item:hover .service-one__item__rm {
    border-color: transparent;
}

.service-one__item__icon {
    font-size: 42px;
    line-height: 1;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 23px;
    background-color: transparent;
    width: 105px;
    height: 105px;
    transition: 300ms ease;
}

.service-one__item__icon::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--accent-color);
    opacity: 0.14;
    transition: 500ms ease;
    z-index: -1;
}

.service-one__item__icon::before {
    position: absolute;
    left: 6px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    content: "";
    border-style: dashed;
    border-width: 1px;
    border-color: var(--accent-color);
    border-radius: 50%;
    animation-duration: 1500ms;
    animation: rotated 10s infinite linear;
    transition: 500ms all ease;
    animation-play-state: running;
}

.service-one__item__icon span {
    display: inline-block;
    transition: all 500ms linear;
    transform: scale(1);
    color: var(--accent-color);
    margin-left: 5px;
}

.service-one__item:hover .service-one__item__icon::after {
    opacity: 1;
}

.service-one__item:hover .service-one__item__icon::before {
    border-color: var(--careox-white, #fff);
}

.service-one__item:hover .service-one__item__icon span {
    transform: scale(0.9);
    color: var(--careox-white, #fff);
}

.service-one__item__title {
    font-size: 24px;
    font-weight: 600;
    transition: all 300ms ease;
    position: relative;
    margin-bottom: 10px;
}

.service-one__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}

.service-one__item__title a:hover {
    color: var(--careox-base, #c32129);
    background-size: 100% 1px;
}

.service-one__item__text {
    margin: 0 0 23px;
}

.service-one__item__rm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 auto;
    max-width: 151px;
    border-top: 1px solid var(--careox-border-color, #dddddd);
    font-size: 16px;
    color: var(--careox-text, #636363);
    text-transform: capitalize;
    line-height: 1.1;
    padding-top: 17px;
    transition: all 500ms ease;
}

.service-one__item__rm a {
    display: inline-block;
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.service-one__item__rm a:hover {
    background-size: 100% 1px;
}

.service-one__item__rm a:hover {
    color: var(--accent-color);
}

.service-one__item__rm i {
    color: var(--accent-color);
    font-size: 20px;
    position: relative;
    top: 1px;
}

.service-two {
    position: relative;
    background-color: #fff;
    padding: 90px 0 100px;
}

@media (max-width: 767px) {
    .service-two {
        padding: 80px 0;
    }
}

.service-two__shape {
    position: absolute;
    left: 88px;
    bottom: 140px;
    width: 154px;
    height: 129px;
    background-position: bottom left;
    background-repeat: no-repeat;
    animation: treeMove 4s linear 0s infinite;
}

@media (max-width: 1300px) {
    .service-two__shape {
        display: none;
    }
}

.service-two__item {
    position: relative;
    background-color: #f9f7f7;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px 10px 0;
    transition: all 500ms ease;
}
.service-two__item:hover p{
    color: #eee;
}
.service-two__item::after {
    position: absolute;
    top: 0;
    bottom: -2px;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--accent-color);
    border-radius: 20px;
    transition: all 500ms ease;
    transform: translate3d(0px, 100%, 0px);
    z-index: -1;
}

.service-two__item__shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    opacity: 0.09;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 500ms ease;
}

.service-two__item:hover::after {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.service-two__item:hover .service-two__item__shape {
    width: 165px;
    height: 153px;
}

.service-two__item:hover .service-two__item__rm a,
.service-two__item:hover .service-two__item__text,
.service-two__item:hover .service-two__item__title,
.service-two__item:hover .service-two__item__rm,
.service-two__item:hover .service-two__item__rm p{
    color: var(--careox-white, #fff);
}
.service-two__item:hover .service-two__item__rm{
    font-weight: 700;
}
.service-two__item:hover .service-two__item__rm {
    border-color: rgba(var(--careox-border-color-rgb, 221, 221, 221), 0.31);
}

.service-two__item:hover .service-two__item__rm i {
    color: var(--careox-white, #fff);
}

.service-two__item__image {
    position: relative;
}

.service-two__item__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.service-two__item__icon {
    font-size: 42px;
    line-height: 1;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -52px auto 23px;
    background-color: transparent;
    width: 105px;
    height: 105px;
    transition: 300ms ease;
}

.service-two__item__icon::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--accent-color);
    z-index: -1;
    transition: 500ms ease;
}

.service-two__item__icon::before {
    position: absolute;
    left: 6px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    content: "";
    border-style: dashed;
    border-width: 1px;
    border-color: var(--careox-white, #fff);
    border-radius: 50%;
    animation-duration: 1500ms;
    animation: rotated 10s infinite linear;
    transition: 500ms all ease;
    animation-play-state: running;
}

.service-two__item__icon span {
    display: inline-block;
    transition: all 500ms linear;
    transform: scale(1);
    color: var(--careox-white, #fff);
    margin-left: 5px;
}

.service-two__item:hover .service-two__item__icon::after {
    background-color: var(--careox-white, #fff);
}

.service-two__item:hover .service-two__item__icon::before {
    border-color: var(--accent-color);
}

.service-two__item:hover .service-two__item__icon span {
    transform: scale(0.9);
    color: var(--accent-color);
}

.service-two__item__title {
    font-size: 22px;
    font-weight: 700;
    transition: all 300ms ease;
    position: relative;
    margin-bottom: 10px;
}

.service-two__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}

.service-two__item__title a:hover {
    color: var(--careox-base, #c32129);
    background-size: 100% 1px;
}

.service-two__item__text {
    position: relative;
    z-index: 2;
    transition: all 300ms ease;
    padding: 0 20px;
    margin: 0 0 15px;
    color: var(--careox-text, #636363);
}

.service-two__item__text p{
    position: relative;
    z-index: 2;
    transition: all 300ms ease;
    padding: 0 5px;
    margin: 0 0 15px;
    color: var(--careox-text, #636363);
}
.service-two__item__rm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 20px;
    border-top: 1px solid var(--careox-border-color, #dddddd);
    font-size: 16px;
    color: var(--careox-text, #636363);
    text-transform: capitalize;
    line-height: 1.1;
    padding: 16px 0;
    transition: all 300ms ease;
}

.service-two__item__rm a {
    display: inline-block;
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    transition: all 300ms ease;
}

.service-two__item__rm a:hover {
    background-size: 100% 1px;
}

.service-two__item__rm a:hover {
    color: inherit;
}

.service-two__item__rm i {
    color: var(--accent-color);
    font-size: 20px;
    position: relative;
    top: 1px;
    transition: all 300ms ease;
}

.service-three {
    position: relative;
    background-color: var(--careox-gray);
    padding: 120px 0 110px;
}

@media (max-width: 767px) {
    .service-three {
        padding: 80px 0;
    }
}

.service-three__shape-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto;
}

.service-three__shape-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
}

.service-three__item {
    position: relative;
    background-color: transparent;
    border: 1px solid var(--careox-border-color, #dddddd);
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    padding: 9px 9px 0;
    transition: all 500ms ease;
}

.service-three__item:hover {
    background-color: var(--careox-white, #fff);
    border-color: var(--careox-white, #fff);
}

.service-three__item__normal {
    position: relative;
    z-index: 1;
}

.service-three__item__image {
    position: relative;
}

.service-three__item__image img {
    width: 100%;
    height: 242px;
    object-position: top;
    object-fit: cover;
    border-radius: 10px;
}

.service-three__item__icon {
    font-size: 42px;
    line-height: 1;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -52px auto 23px;
    background-color: transparent;
    width: 105px;
    height: 105px;
    transition: 300ms ease;
}

.service-three__item__icon::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--accent-color);
    z-index: -1;
    transition: 500ms ease;
}

.service-three__item__icon::before {
    position: absolute;
    left: 6px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    content: "";
    border-style: dashed;
    border-width: 1px;
    border-color: var(--careox-white, #fff);
    border-radius: 50%;
    animation-duration: 1500ms;
    animation: rotated 10s infinite linear;
    transition: 500ms all ease;
    animation-play-state: running;
}

.service-three__item__icon span {
    display: inline-block;
    transition: all 500ms linear;
    transform: scale(1);
    color: var(--careox-white, #fff);
    margin-left: 5px;
}

.service-three__item__title {
    font-size: 24px;
    font-weight: 600;
    transition: all 300ms ease;
    position: relative;
    margin-bottom: 10px;
}

.service-three__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}

.service-three__item__title a:hover {
    color: var(--careox-base, #c32129);
    background-size: 100% 1px;
}

.service-three__item__text {
    position: relative;
    z-index: 2;
    transition: all 300ms ease;
    padding: 0 20px;
    margin: 0 0 15px;
}

.service-three__item__rm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 20px;
    border-top: 1px solid var(--careox-border-color, #dddddd);
    font-size: 16px;
    color: var(--careox-text, #636363);
    text-transform: capitalize;
    line-height: 1.1;
    padding: 16px 0;
    transition: all 300ms ease;
}

.service-three__item__rm a {
    display: inline-block;
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    transition: all 300ms ease;
}

.service-three__item__rm a:hover {
    background-size: 100% 1px;
}

.service-three__item__rm a:hover {
    color: inherit;
}

.service-three__item__rm i {
    color: var(--accent-color);
    font-size: 20px;
    position: relative;
    top: 1px;
    transition: all 300ms ease;
}

.service-three__item__hover {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    margin: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 700ms ease, top 700ms ease;
    transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
    perspective: 300px;
    transform-origin: center center;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--careox-white, #fff);
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
}

.service-three__item__hover::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    width: 100%;
    height: 368px;
    z-index: -1;
    background-image: url(../images/shapes/overlay-service.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    transition: all ease 0.5s;
}

.service-three__item__hover__icon {
    font-size: 42px;
    line-height: 1;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -52px auto 23px;
    color: var(--careox-white, #fff);
    width: 105px;
    height: 105px;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--accent-color);
}

.service-three__item__hover__icon::after {
    position: absolute;
    left: 17px;
    top: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    content: "";
    border-style: dashed;
    border-width: 1px;
    border-color: var(--careox-white, #fff);
    border-radius: 50%;
    animation-duration: 1500ms;
    animation: rotated 10s infinite linear;
    animation-play-state: running;
    z-index: 1;
}

.service-three__item__hover__icon span {
    position: relative;
    left: 4px;
    z-index: 2;
}

.service-three__item__hover__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--careox-white, #fff);
    transition: all 300ms ease;
    position: relative;
    margin-bottom: 10px;
}

.service-three__item__hover__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}

.service-three__item__hover__title a:hover {
    color: var(--careox-base, #c32129);
    background-size: 100% 1px;
}

.service-three__item__hover__text {
    position: relative;
    z-index: 2;
    color: var(--careox-white, #fff);
    padding: 0 20px;
    margin: 0 0 15px;
}

.service-three__item__hover__rm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: calc(100% - 60px);
    border-top: 1px solid var(--careox-white, #fff);
    font-size: 16px;
    color: var(--careox-white, #fff);
    text-transform: capitalize;
    line-height: 1.1;
    padding: 16px 0;
    transition: all 300ms ease;
}

.service-three__item__hover__rm a {
    display: inline-block;
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    transition: all 300ms ease;
}

.service-three__item__hover__rm a:hover {
    background-size: 100% 1px;
}

.service-three__item__hover__rm a:hover {
    color: inherit;
}

.service-three__item__hover__rm i {
    font-size: 20px;
    position: relative;
    top: 1px;
    transition: all 300ms ease;
}

.service-three__item:hover .service-three__item__hover {
    transition: transform 500ms ease, top 500ms ease;
    transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.service-three__text {
    font-size: 24px;
    color: var(--careox-black, #122f2a);
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 73px;
}

@media (max-width: 767px) {
    .service-three__text {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .service-three__text {
        margin-top: 20px;
        display: block;
        text-align: center;
    }
}

.service-three__text>span {
    color: var(--careox-base, #c32129);
    margin-right: 7px;
}

.service-three__text .careox-btn {
    margin-left: 16px;
    padding: 3px 32px;
}

.service-three__text .careox-btn::before {
    background-color: var(--careox-base, #c32129);
}

/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/

.service-details {
    padding: 120px 0;
    padding-top: 100px;
    background-color: var(--careox-white, #fff);
}

@media (max-width: 767px) {
    .service-details {
        padding: 80px 0;
        padding-top: 60px;
    }
}

.service-details__thumbnail {
    margin-bottom: 20px;
}

.service-details img {
    max-width: 100%;
}

.service-details__image__circle img {
    border-radius: 50%;
}

.service-details__title {
    margin: 0;
    text-transform: uppercase;
    color: var(--careox-black, #122f2a);
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .service-details__title {
        font-size: 30px;
    }
}

@media (min-width: 992px) {
    .service-details__title {
        font-size: 36px;
    }
}

.service-details__sub-title {
    margin: 0;
    text-transform: uppercase;
    color: var(--careox-black, #122f2a);
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .service-details__sub-title {
        font-size: 26px;
    }
}

@media (min-width: 992px) {
    .service-details__sub-title {
        font-size: 30px;
    }
}

.service-details__text {
    margin: 0;
    font-size: 15px;
    line-height: 2em;
}

.service-details__text+.service-details__title {
    margin-top: 40px;
}

.service-details__text+.service-details__list {
    margin-top: 40px;
}

.service-details__text+.service-details__text {
    margin-top: 35px;
}

.service-details__list {
    margin-bottom: 0;
    margin-bottom: 40px;
}

.service-details__list li {
    position: relative;
    font-size: 16px;
    line-height: 1.5em;
    padding-left: 27px;
    color: var(--careox-black, #122f2a);
    text-shadow: 0 0 0.5px currentColor;
}

@media (min-width: 768px) {
    .service-details__list li {
        line-height: 2.125em;
    }
}

.service-details__list li+li {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .service-details__list li+li {
        margin-top: 0;
    }
}

.service-details__list li>i {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--careox-base, #c32129);
}

@media (min-width: 768px) {
    .service-details__process {
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
        margin-top: 20px;
    }
}

.service-details__process li+li {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .service-details__process li+li {
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .service-details__process__top {
        display: flex;
        align-items: center;
    }
}

.service-details__process__icon {
    width: 57px;
    height: 57px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
    font-size: 21px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 500ms ease;
    margin-bottom: 20px;
}

.service-details__process__icon::before {
    transform: scale(1);
    transition: transform 500ms ease;
}

@media (min-width: 768px) {
    .service-details__process__icon {
        margin-bottom: 0;
    }
}

.service-details__process__icon:hover {
    background-color: var(--careox-black, #122f2a);
    color: var(--careox-white, #fff);
}

.service-details__process__icon:hover::before {
    transform: scale(0.9);
}

.service-details__process__title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    color: var(--careox-black, #122f2a);
}

@media (min-width: 768px) {
    .service-details__process__title {
        font-size: 20px;
    }
}

.service-details__process__text {
    margin: 0;
    font-size: 15px;
    line-height: 2em;
    max-width: 220px;
    margin-top: 10px;
}

.service-details__post {
    margin-bottom: 0;
}

.service-details__post li+li {
    margin-top: 10px;
}

.service-details__post__date {
    text-transform: uppercase;
    letter-spacing: var(--careox-letter-space-xl, 0.2em);
    color: var(--careox-base, #c32129);
    font-size: 14px;
    margin: 0;
    line-height: 2.1428571429em;
}

.service-details__post__title {
    margin: 0;
    line-height: 1.875em;
    color: var(--careox-black, #122f2a);
    text-shadow: 0 0 0.5px currentColor;
}

.service-details__post__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.service-details__post__title a:hover {
    background-size: 100% 1px;
}

.service-details__post__title a:hover {
    color: var(--careox-black, #122f2a);
}

.service-details__info {
    border-top: 1px solid var(--careox-border-color, #dddddd);
    padding-top: 55px;
    margin-top: 60px;
}

.service-details__info__title {
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    color: var(--careox-black, #122f2a);
    font-size: 20px;
    margin-bottom: 24px;
}

.service-details__info__list {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .service-details__info__list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.service-details__info__list li+li {
    border-top: 1px solid var(--careox-border-color, #dddddd);
    margin-top: 20px;
    padding-top: 20px;
}

.service-details__info__list__date {
    color: var(--careox-black, #122f2a);
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.service-details__info__list__date>i {
    color: var(--careox-base, #c32129);
    font-size: 22px;
    margin-right: 10px;
}

.service-details__info__list__space {
    font-size: 16px;
    line-height: 24px;
    color: var(--careox-text, #636363);
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .service-details__info__list__space {
        margin-bottom: 0;
        margin-top: 0;
    }
}

.service-details__info__list__btn {
    font-size: 10px;
    padding: 10.75px 30px;
}

/*--------------------------------------------------------------
# Donation
--------------------------------------------------------------*/

.donations-one {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .donations-one {
        padding: 80px 0;
    }
}

.donations-one__carousel.owl-carousel {
    position: relative;
}

.donations-one__carousel.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -168px;
    flex-direction: column;
    display: flex;
    margin: 0;
    gap: 10px;
}

@media (max-width: 767px) {
    .donations-one__carousel.owl-carousel .owl-nav {
        flex-direction: row;
        top: 0;
        position: relative;
        justify-content: center;
        margin-top: 30px;
    }
}

.donations-one__carousel.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background-color: var(--careox-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
    color: var(--careox-black, #122f2a);
    transition: all 400ms ease;
}

.donations-one__carousel.owl-carousel .owl-nav button:hover {
    background-color: var(--careox-secondary);
    color: var(--careox-white, #fff);
}

.donations-one__item {
    position: relative;
}

.donations-one__item__image {
    position: relative;
}

.donations-one__item__image img {
    width: 100%;
    height: auto;
}

.donations-one__item__image__link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: var(--accent-color);
    opacity: 0.3;
    transition: all 900ms ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform: scale(0, 1);
    transform-origin: right center;
    background-position: center center;
    z-index: 1;
}

.donations-one__item:hover .donations-one__item__image__link {
    transform: scale(1, 1);
    transform-origin: left center;
}

.donations-one__item__category {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
    background-color: var(--careox-white, #fff);
    color: var(--accent-color);
    font-size: 20px;
    letter-spacing: 0.25px;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    border-radius: 30px;
    text-transform: capitalize;
    padding: 0 25px;
    height: 32px;
    transition: 400ms ease;
    line-height: 30px;
}

.donations-one__item:hover .donations-one__item__category {
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
}

.donations-one__item__content {
    position: relative;
    padding: 26px 30px 24px;
    border: 1px solid var(--careox-border-color, #dddddd);
    border-bottom: none;
    border-top: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donations-one__item__content {
        padding: 26px 20px 24px;
    }
}

.donations-one__item__title {
    margin: 0;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 3px;
}

.donations-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;
}

.donations-one__item__title a:hover {
    background-size: 100% 1px;
}

.donations-one__item__title a:hover {
    color: var(--accent-color);
}

.donations-one__item__text {
    margin: 0;
    padding-right: 10px;
}

.donations-one__item__rm {
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
    position: absolute;
    right: 0;
    bottom: -42px;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms linear;
}

.donations-one__item__rm i {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes iconTranslateX {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    51% {
        opacity: 1;
    }
}

.donations-one__item__rm:hover {
    background-color: var(--careox-black, #122f2a);
    color: var(--careox-white, #fff);
}

.donations-one__item__rm:hover i {
    animation: iconTranslateX 0.4s forwards;
}

.donations-one__item:hover .donations-one__item__rm {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.donations-one__item__bottom {
    position: relative;
    background-color: var(--careox-gray);
    padding: 70px 30px 14px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donations-one__item__bottom {
        padding: 70px 20px 14px;
    }
}

.donations-one__item__bottom__shape {
    position: absolute;
    left: 0;
    top: 0;
    background-position: left top;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0.12;
}

.donations-one__item__bottom__progress {
    width: 100%;
    height: 7px;
    background-color: var(--careox-border-color, #dddddd);
    border-radius: 10px;
    position: relative;
    margin-bottom: 3px;
}

.donations-one__item__bottom__progress__inner {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--accent-color);
    transition: all 1500ms linear;
    border-radius: 10px;
    width: 0px;
    z-index: 1;
}

.donations-one__item__bottom__progress__number {
    width: 40px;
    height: 31px;
    position: absolute;
    z-index: 1;
    background-color: var(--accent-color);
    bottom: calc(100% + 18px);
    right: -16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.21px;
    color: var(--careox-white, #fff);
}

.donations-one__item__bottom__progress__number::after {
    z-index: -1;
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 22px;
    height: 32px;
    content: "";
    background-color: inherit;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.donations-one__item__bottom__text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 700;
    color: var(--careox-black, #122f2a);
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
}

.donations-two {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .donations-two {
        padding: 80px 0;
    }
}

.donations-two__item {
    position: relative;
}

.donations-two__item__image {
    position: relative;
    overflow: hidden;
}

.donations-two__item__image img {
    width: 100%;
    height: auto;
    transition: all 400ms ease;
    transform: scale(1);
}

.donations-two__item:hover .donations-two__item__image img {
    transform: scale(1.05);
}

.donations-two__item__btn {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.donations-two__item__btn a {
    font-size: 22px;
    color: var(--careox-white, #fff);
    display: inline-block;
}

.donations-two__item__btn a:hover {
    color: var(--accent-color);
}

.donations-two__item__rm {
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
    position: absolute;
    overflow: hidden;
    right: 0;
    top: -42px;
    transition: all 300ms linear;
    visibility: hidden;
    opacity: 0;
}

.donations-two__item__rm i {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.donations-two__item__rm:hover {
    background-color: var(--careox-black, #122f2a);
    color: var(--careox-white, #fff);
}

.donations-two__item__rm:hover i {
    animation: iconTranslateX 0.4s forwards;
}

.donations-two__item:hover .donations-two__item__rm {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.donations-two__item__content {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 25px 16px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donations-two__item__content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.donations-two__item__content::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    opacity: 0;
    background-image: url(../images/shapes/overlay-event.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    visibility: hidden;
    transition: all ease 0.5s;
}

.donations-two__item:hover .donations-two__item__content::after {
    opacity: 1;
    visibility: visible;
    height: 285px;
}

.donations-two__item__title {
    margin: 0;
    font-size: 24px;
    line-height: 30px;
    color: var(--careox-white, #fff);
    font-weight: 600;
    margin-bottom: 15px;
}

.donations-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;
}

.donations-two__item__title a:hover {
    background-size: 100% 1px;
}

.donations-two__item__title a:hover {
    color: var(--accent-color);
}

.donations-two__item__category {
    display: inline-block;
    position: relative;
    background-color: var(--careox-white, #fff);
    color: var(--thm-color-3);
    font-size: 20px;
    letter-spacing: 0.25px;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    border-radius: 30px;
    text-transform: capitalize;
    padding: 0 25px;
    height: 32px;
    transition: 400ms ease;
    line-height: 30px;
    margin-bottom: 15px;
}

.donations-two__item__bottom {
    position: relative;
}

.donations-two__item__bottom__progress {
    width: 100%;
    height: 7px;
    background-color: var(--careox-border-color, #dddddd);
    border-radius: 10px;
    position: relative;
    margin-bottom: 3px;
}

.donations-two__item__bottom__progress__inner {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--accent-color);
    transition: all 1500ms linear;
    border-radius: 10px;
    width: 0px;
    z-index: 1;
}

.donations-two__item__bottom__progress__number {
    width: 40px;
    height: 31px;
    position: absolute;
    z-index: 1;
    background-color: var(--accent-color);
    bottom: calc(100% + 18px);
    right: -16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.21px;
    color: var(--careox-white, #fff);
}

.donations-two__item__bottom__progress__number::after {
    z-index: -1;
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 22px;
    height: 32px;
    content: "";
    background-color: inherit;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.donations-two__item__bottom__text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 700;
    color: var(--careox-white, #fff);
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
}

.donations-three {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .donations-three {
        padding: 80px 0;
    }
}

.donations-three__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 560px;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}

.donations-three__bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.88);
}

.donations-three .sec-title__title {
    color: var(--careox-white, #fff);
}

.donations-three--page {
    position: relative;
}

.donations-three--page .sec-title__title {
    color: var(--careox-black, #122f2a);
}

.donations-three__carousel.owl-carousel {
    position: relative;
    z-index: 2;
}

.donations-three__carousel.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -168px;
    flex-direction: column;
    display: flex;
    margin: 0;
    gap: 10px;
}

@media (max-width: 767px) {
    .donations-three__carousel.owl-carousel .owl-nav {
        flex-direction: row;
        top: 0;
        position: relative;
        justify-content: center;
        margin-top: 30px;
    }
}

.donations-three__carousel2.owl-carousel .owl-nav button:hover {
    background-color: var(--careox-secondary, #eb9f2b) !important;
    color: var(--careox-white, #fff);
}
.donations-three__carousel2.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background-color: var(--careox-gray) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
    color: var(--careox-black, #122f2a);
    transition: all 400ms ease;
}

.donations-three__carousel2.owl-carousel {
    position: relative;
    z-index: 2;
}

.donations-three__carousel2.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -168px;
    flex-direction: column;
    display: flex;
    margin: 0;
    gap: 10px;
}

@media (max-width: 767px) {
    .donations-three__carousel2.owl-carousel .owl-nav {
        flex-direction: row;
        top: 0;
        position: relative;
        justify-content: center;
        margin-top: 30px;
    }
}



.donations-three__item {
    position: relative;
    background-color: var(--careox-white, #fff);
    border: 1px solid var(--careox-border-color, #dddddd);
}

.donations-three__item__image {
    position: relative;
    margin: 9px;
    overflow: hidden;
}

.donations-three__item__image img {
    width: 100%;
    height: auto;
}

.donations-three__item__image__link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: var(--accent-color);
    opacity: 0.3;
    transition: all 900ms ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform: scale(0, 1);
    transform-origin: right center;
    background-position: center center;
    z-index: 1;
}

.donations-three__item:hover .donations-three__item__image__link {
    transform: scale(1, 1);
    transform-origin: left center;
}

.donations-three__item__rm {
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: -42px;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms linear;
}

.donations-three__item__rm i {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.donations-three__item__rm:hover {
    background-color: var(--careox-black, #122f2a);
    color: var(--careox-white, #fff);
}

.donations-three__item__rm:hover i {
    animation: iconTranslateX 0.4s forwards;
}

.donations-three__item:hover .donations-three__item__rm {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.donations-three__item__category {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2;
    background-color: var(--careox-white, #fff);
    color: var(--accent-color);
    font-size: 20px;
    letter-spacing: 0.25px;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    border-radius: 30px;
    text-transform: capitalize;
    padding: 0 25px;
    height: 32px;
    transition: 400ms ease;
    line-height: 30px;
}

.donations-three__item:hover .donations-three__item__category {
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
}

.donations-three__item__content {
    position: relative;
    padding: 18px 25px 24px;
    text-align: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donations-three__item__content {
        padding: 18px 20px 24px;
    }
}

.donations-three__item__title {
    margin: 0;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.donations-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;
}

.donations-three__item__title a:hover {
    background-size: 100% 1px;
}

.donations-three__item__title a:hover {
    color: var(--accent-color);
}

.donations-three__item__text {
    margin: 0;
    padding-right: 10px;
}

.donations-three__item__border {
    position: relative;
    background-position: left top;
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;
    background-color: var(--careox-border-color, #dddddd);
    transition: all 300ms linear;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 300.000000 41.000000" ><g transform="translate(0.000000,41.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M4050 799 c-615 -41 -1218 -226 -1660 -510 -524 -337 -1066 -334 -1825 10 -203 91 -455 228 -510 277 -19 17 -42 24 -49 16 -37 -37 486 -326 784 -432 641 -230 1137 -204 1600 82 713 442 1523 601 2590 509 312 -27 821 -108 948 -151 61 -21 93 -12 61 17 -11 10 -113 36 -229 60 -606 124 -1129 161 -1710 122z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 300.000000 41.000000" ><g transform="translate(0.000000,41.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M4050 799 c-615 -41 -1218 -226 -1660 -510 -524 -337 -1066 -334 -1825 10 -203 91 -455 228 -510 277 -19 17 -42 24 -49 16 -37 -37 486 -326 784 -432 641 -230 1137 -204 1600 82 713 442 1523 601 2590 509 312 -27 821 -108 948 -151 61 -21 93 -12 61 17 -11 10 -113 36 -229 60 -606 124 -1129 161 -1710 122z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top left;
    mask-position: top left;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.donations-three__item__bottom {
    margin: -49px 0 0;
    position: relative;
    background-color: var(--careox-white, #fff);
    padding: 82px 25px 14px;
    transition: all 300ms linear;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 370 137"><path d="m0 13c0 0 86.5 61.7 144.9 22 89.2-60.6 225.1-22 225.1-22v124h-370z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 370 137"><path d="m0 13c0 0 86.5 61.7 144.9 22 89.2-60.6 225.1-22 225.1-22v124h-370z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top left;
    mask-position: top left;
    -webkit-mask-size: cover;
    mask-size: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donations-three__item__bottom {
        padding: 82px 20px 14px;
    }
}

.donations-three__item__bottom__progress {
    width: 100%;
    height: 7px;
    background-color: var(--careox-border-color, #dddddd);
    border-radius: 10px;
    position: relative;
    margin-bottom: 3px;
}

.donations-three__item__bottom__progress__inner {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--accent-color);
    transition: all 1500ms linear;
    border-radius: 10px;
    width: 0px;
    z-index: 1;
}

.donations-three__item__bottom__progress__number {
    width: 40px;
    height: 31px;
    position: absolute;
    z-index: 1;
    background-color: var(--accent-color);
    bottom: calc(100% + 18px);
    right: -16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.21px;
    color: var(--careox-white, #fff);
}

.donations-three__item__bottom__progress__number::after {
    z-index: -1;
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 22px;
    height: 32px;
    content: "";
    background-color: inherit;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.donations-three__item__bottom__text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 700;
    color: var(--careox-black, #122f2a);
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
    transition: all 300ms linear;
}

.donations-three__item:hover .donations-three__item__border,
.donations-three__item:hover .donations-three__item__bottom {
    background-color: var(--careox-black, #122f2a);
}

.donations-three__item:hover .donations-three__item__bottom {
    background-color: var(--careox-black, #122f2a);
    margin-left: -1px;
    margin-right: -1px;
    margin-bottom: -1px;
}

.donations-three__item:hover .donations-three__item__bottom__text {
    color: var(--careox-white, #fff);
}

.donations-three__text {
    font-size: 24px;
    color: var(--careox-black, #122f2a);
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 84px;
}

@media (max-width: 767px) {
    .donations-three__text {
        margin-top: 44px;
        display: block;
        text-align: center;
    }
}

.donations-three__text>span {
    color: var(--careox-base, #c32129);
    margin-right: 7px;
}

.donations-three__text .careox-btn {
    margin-left: 16px;
    padding: 3px 32px;
}

.donations-three__text .careox-btn::before {
    background-color: var(--careox-base, #c32129);
}

.donation-details {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .donation-details {
        padding: 80px 0;
    }
}

.donation-details__content {
    position: relative;
}

.donation-details__image {
    position: relative;
    background-color: var(--careox-gray);
    border-radius: 20px 20px 0 0;
    margin-bottom: 42px;
}

.donation-details__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.donation-details__image__bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 85px 35px 40px;
}

.donation-details__image__progress {
    width: 100%;
    height: 12px;
    background-color: var(--careox-border-color, #dddddd);
    border-radius: 20px;
    position: relative;
    margin-bottom: 12px;
}

.donation-details__image__progress__inner {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--careox-base, #c32129);
    transition: all 1500ms linear;
    border-radius: 20px;
    width: 0px;
    z-index: 1;
}

.donation-details__image__progress__number {
    width: 40px;
    height: 31px;
    position: absolute;
    z-index: 1;
    background-color: var(--careox-base, #c32129);
    bottom: calc(100% + 18px);
    right: -16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.21px;
    color: var(--careox-white, #fff);
}

.donation-details__image__progress__number::after {
    z-index: -1;
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 22px;
    height: 32px;
    content: "";
    background-color: inherit;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.donation-details__image__text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: var(--careox-black, #122f2a);
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
}

.donation-details__image__border {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--careox-border-color, #dddddd);
    margin-top: 26px;
    margin-bottom: 40px;
}

.donation-details__image__border::after {
    width: 7px;
    height: 7px;
    content: "";
    background-color: var(--careox-base, #c32129);
    border-radius: 50%;
    left: 0;
    bottom: -3.5px;
    position: absolute;
    /*animation: zumpX 15s linear infinite;*/
}

.donation-details__title {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 18px;
}

@media (max-width: 767px) {
    .donation-details__title {
        font-size: 30px;
    }
}

.donation-details__text {
    margin: 0 0 25px;
}

@media (min-width: 1200px) {
    .donation-details__text {
        padding-right: 42px;
    }
}

.donation-details__image-two {
    position: relative;
}

.donation-details__image-two img {
    width: 100%;
    height: auto;
}

.donation-details__list {
    margin: 27px 0 45px;
    padding: 0;
    list-style: none;
}

.donation-details__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}

.donation-details__list li a {
    color: inherit;
    font-weight: 500;
    border-bottom: 2px solid currentColor;
}

.donation-details__list li a:hover {
    color: var(--careox-secondary);
}

.donation-details__list__icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    line-height: 1;
    margin: auto;
    display: flex;
    align-items: center;
    color: var(--careox-secondary);
    font-size: 15px;
}

.donation-details .contact-one__form {
    position: relative;
    border-top: 1px solid var(--careox-border-color, #dddddd);
    padding-top: 72px;
    margin-top: 80px;
}

.donation-details .contact-one__form__title {
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 35px;
}

.donation-details .contact-one__form .bootstrap-select>.dropdown-toggle,
.donation-details .contact-one__form input[type=text],
.donation-details .contact-one__form input[type=email],
.donation-details .contact-one__form input[type=tel],
.donation-details .contact-one__form textarea {
    border-color: var(--careox-border-color, #dddddd);
}

.donation-details__author {
    position: relative;
    background-color: var(--careox-gray);
    border-radius: 20px;
    border-top: 5px solid var(--careox-base, #c32129);
    padding: 45px 60px 43px;
    margin-bottom: 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donation-details__author {
        padding: 35px 22px;
    }
}

@media (max-width: 991px) {
    .donation-details__author {
        margin-top: 50px;
    }
}

.donation-details__author__top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid var(--careox-border-color, #dddddd);
    padding-bottom: 30px;
    margin-bottom: 25px;
}

.donation-details__author__top img {
    width: 71px;
    height: 71px;
    border-radius: 50%;
}

.donation-details__author__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.donation-details__author__designation {
    margin: 0;
    font-size: 17px;
}

.donation-details__author__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.donation-details__author__list li {
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.donation-details__author__list li i {
    color: var(--careox-secondary);
}

.donation-details__author__list li+li {
    margin-top: 13px;
}

.donation-details__posts {
    position: relative;
    background-color: var(--careox-gray);
    border-radius: 20px;
    border-top: 5px solid var(--careox-base, #c32129);
    padding: 45px 45px 50px;
    margin-bottom: 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donation-details__posts {
        padding: 35px 22px;
    }
}

.donation-details__share {
    position: relative;
    background-color: var(--careox-gray);
    border-radius: 20px;
    border-top: 5px solid var(--careox-base, #c32129);
    padding: 45px 45px 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donation-details__share {
        padding: 35px 22px;
    }
}

.donation-details__share__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.donation-details__share__social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--careox-white, #fff);
    font-size: 15px;
    color: var(--careox-text-gray, #bcbcbc);
    transition: all 500ms ease;
    border-radius: 50%;
}

.donation-details__share__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.donation-details__share__social a:hover {
    background-color: var(--accent-color);
    color: var(--careox-white, #fff);
}

.donation-details__share__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

/*--------------------------------------------------------------
# Donate
--------------------------------------------------------------*/

.donate-one {
    position: relative;
}

.donate-one__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: top right;
    background-repeat: no-repeat;
    min-height: 742px;
    background-color: var(--careox-black, #122f2a);
    clip-path: polygon(0 0, 100% 42%, 100% 100%, 0 100%);
}

.donate-one__bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.78);
}

.donate-one__image {
    position: relative;
    z-index: 1;
    display: inline-block;
    background-color: var(--careox-white, #fff);
    margin-left: 145px;
    margin-bottom: 25px;
    margin-top: -114px;
    padding: 0 23px;
}

@media (max-width: 1599px) {
    .donate-one__image {
        margin-left: 20px;
    }
}

@media (max-width: 1199px) {
    .donate-one__image {
        margin-top: 0;
        padding: 0 15px;
    }
}

.donate-one__image::after {
    position: absolute;
    left: -20px;
    bottom: 0;
    width: 20px;
    height: 83.8%;
    content: "";
    background-color: var(--careox-base, #c32129);
}

.donate-one__image::before {
    position: absolute;
    left: -20px;
    bottom: -25px;
    width: 40%;
    height: 25px;
    content: "";
    background-color: var(--careox-base, #c32129);
    z-index: -1;
}

.donate-one__image img {
    max-width: 100%;
    height: auto;
    margin-bottom: -25px;
}

.donate-info {
    position: relative;
}

.donate-info__shape {
    position: absolute;
    width: 225px;
    height: 212px;
    right: 30px;
    bottom: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    animation: treeMove 4s linear 0s infinite;
    display: none;
}

@media (min-width: 1600px) {
    .donate-info__shape {
        display: block;
    }
}

.donate-info__left {
    position: relative;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 0 0 50px;
    overflow: hidden;
    padding: 103px 30px 107px 190px;
    margin-right: -30px;
}

@media (max-width: 1199px) {
    .donate-info__left {
        padding: 103px 25px 107px 150px;
    }
}

@media (max-width: 991px) {
    .donate-info__left {
        margin-right: 0;
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.donate-info__left::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.88);
}

.donate-info__left__icon {
    width: 108px;
    height: 108px;
    background-color: var(--careox-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 57px;
    color: var(--careox-secondary);
    overflow: hidden;
    position: absolute;
    left: 52px;
    top: 0;
    bottom: 0;
    z-index: 1;
    margin: auto;
    transition: all 0.3s 0s ease-out;
}

@media (max-width: 1199px) {
    .donate-info__left__icon {
        left: 22px;
    }
}

.donate-info__left__icon::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 0;
    content: "";
    background-color: var(--careox-secondary);
    border-radius: 50%;
    transition: all 0.3s 0s ease-out;
    z-index: -1;
}

.donate-info__left:hover .donate-info__left__icon {
    color: var(--careox-white, #fff);
}

.donate-info__left:hover .donate-info__left__icon::after {
    height: 100%;
}

.donate-info__left__title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.48px;
    margin: 0 0 6px;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    position: relative;
    z-index: 1;
}

.donate-info__left__text {
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
}

.donate-info__area {
    position: relative;
    z-index: 2;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px 50px 50px 0;
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.08);
    padding: 78px 70px 70px;
    margin-top: -312px;
}

@media (max-width: 1340px) {
    .donate-info__area {
        padding: 78px 40px 70px;
    }
}

@media (max-width: 1199px) {
    .donate-info__area {
        padding: 60px 40px 40px;
        margin-top: -241px;
    }
}

@media (min-width: 1300px) {
    .donate-info__area {
        margin-right: -70px;
    }
}

@media (max-width: 991px) {
    .donate-info__area {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .donate-info__area {
        padding: 60px 25px 40px;
    }
}

.donate-info__area__date {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    gap: 10px;
    position: absolute;
    right: 65px;
    top: 150px;
}

@media (max-width: 767px) {
    .donate-info__area__date {
        position: relative;
        right: auto;
        top: 0;
        margin: -40px 0 30px;
    }
}

.donate-info__area__date i {
    color: var(--careox-secondary);
}

.donate-info__area .sec-title {
    padding-bottom: 58px;
}

.donate-info__area__progress {
    position: relative;
    border-bottom: 1px solid var(--careox-border-color, #dddddd);
    padding-bottom: 24px;
    margin-bottom: 33px;
}

.donate-info__area__progress::after {
    width: 7px;
    height: 7px;
    content: "";
    background-color: var(--careox-base, #c32129);
    border-radius: 50%;
    left: 0;
    bottom: -4px;
    position: absolute;
    /*animation: zumpX 15s linear infinite;*/
}

.donate-info__area__progress__bar {
    width: 100%;
    height: 12px;
    background-color: var(--careox-border-color, #dddddd);
    border-radius: 20px;
    position: relative;
    margin-bottom: 13px;
}

.donate-info__area__progress__inner {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--careox-base, #c32129);
    transition: all 1500ms linear;
    border-radius: 20px;
    width: 0px;
    z-index: 1;
}

.donate-info__area__progress__number {
    width: 40px;
    height: 31px;
    position: absolute;
    z-index: 1;
    background-color: var(--careox-base, #c32129);
    bottom: calc(100% + 18px);
    right: -16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.21px;
    color: var(--careox-white, #fff);
}

.donate-info__area__progress__number::after {
    z-index: -1;
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 22px;
    height: 32px;
    content: "";
    background-color: inherit;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.donate-info__area__progress__text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 700;
    color: var(--careox-black, #122f2a);
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
}

.donate-info__form {
    position: relative;
    width: 100%;
}

.donate-info__form__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 1199px) {
    .donate-info__form__top {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.donate-info__form__amount {
    position: relative;
    max-width: 250px;
}

@media (max-width: 1199px) {
    .donate-info__form__amount {
        max-width: 100%;
    }
}

.donate-info__form__amount__sign {
    position: absolute;
    text-transform: uppercase;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    color: var(--careox-black, #122f2a);
    font-size: 30px;
    display: flex;
    align-items: center;
    font-weight: 900;
}

.donate-info__form input {
    display: block;
    width: 100%;
    height: 55px;
    background-color: var(--careox-border-color, #dddddd);
    color: var(--careox-black, #122f2a);
    font-size: 22px;
    font-weight: 500;
    text-align: right;
    border: none;
    outline: none;
    border-radius: 50px;
    padding-left: 100px;
    padding-right: 30px;
}

.donate-info__form__buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.donate-info__form__buttons__item {
    height: 48px;
    background-color: var(--careox-border-color, #dddddd);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--careox-text, #636363);
    font-weight: 500;
    font-family: var(--body-font, "Aleo", sans-serif);
    border: none;
    outline: none;
    padding: 0 24px;
    transition: all 0.4s ease;
}

.donate-info__form__buttons__item.active,
.donate-info__form__buttons__item:hover {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
}

.donate-info__form__submit {
    display: flex;
    align-items: baseline;
    position: relative;
    margin-top: 30px;
}

.donate-info__form__submit .careox-btn::before {
    background-color: var(--careox-base, #c32129);
}

.donate-info__form__submit img {
    width: 54px;
    height: 80px;
    position: absolute;
    left: 200px;
    bottom: 0;
    animation: shrinkAnim2 3s ease 0s infinite;
}

.donate-two {
    position: relative;
    padding: 60px 0 0;
}

@media (max-width: 767px) {
    .donate-two {
        padding-top: 80px;
    }
}

.donate-two__inner {
    position: relative;
    z-index: 2;
    padding: 9px;
    border: 1px solid var(--careox-border-color, #dddddd);
    background-color: var(--careox-white, #fff);
    border-radius: 30px;
    margin-bottom: -290px;
}

.donate-two__content {
    position: relative;
    padding: 35px 40px 40px;
}

@media (max-width: 767px) {
    .donate-two__content {
        padding: 60px 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donate-two__content {
        padding-left: 20px;
        padding-right: 10px;
    }
}

.donate-two__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 27px;
}

.donate-two__text {
    font-size: 16px;
    line-height: 25px;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--careox-border-color, #dddddd);
    border-radius: 10px;
    padding: 12px 30px 12px 40px;
    position: relative;
    margin-bottom: 26px;
}

.donate-two__text span {
    color: var(--careox-secondary);
}

.donate-two__text::after {
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    width: 3px;
    height: 39px;
    background-color: var(--careox-base, #c32129);
}

.donate-two__donate-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.donate-two__form {
    position: relative;
    width: 100%;
}

.donate-two__form__amount {
    position: relative;
}

.donate-two__form__amount__sign {
    position: absolute;
    text-transform: uppercase;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    color: var(--careox-white, #fff);
    font-size: 30px;
    display: flex;
    align-items: center;
    font-weight: 900;
}

.donate-two__form input {
    display: block;
    width: 100%;
    height: 60px;
    background-color: var(--careox-secondary);
    color: var(--careox-white, #fff);
    font-size: 25px;
    font-weight: 500;
    text-align: right;
    border: none;
    outline: none;
    border-radius: 50px;
    padding-left: 100px;
    padding-right: 30px;
}

.donate-two__form__buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 45px;
}

@media (max-width: 767px) {
    .donate-two__form__buttons {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.donate-two__form__buttons__item {
    height: 48px;
    background-color: var(--careox-border-color, #dddddd);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--careox-text, #636363);
    font-weight: 500;
    font-family: var(--body-font, "Aleo", sans-serif);
    border: none;
    outline: none;
    padding: 0 24px;
    transition: all 0.4s ease;
}

.donate-two__form__buttons__item.active,
.donate-two__form__buttons__item:hover {
    background-color: var(--careox-secondary);
    color: var(--careox-white, #fff);
}

.donate-two__form__submit {
    display: flex;
    align-items: baseline;
    position: relative;
}

.donate-two__form__submit img {
    width: 54px;
    height: 80px;
    position: absolute;
    left: 200px;
    bottom: 0;
    animation: shrinkAnim2 3s ease 0s infinite;
}

.donate-two__image {
    position: relative;
}

@media (min-width: 992px) {
    .donate-two__image {
        margin-left: -10px;
    }
}

@media (max-width: 991px) {
    .donate-two__image {
        text-align: center;
    }
}

.donate-two__image img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--careox-black, #122f2a);
    border-radius: 30px;
}

.donate-three {
    position: relative;
    padding: 0 0 120px;
}

@media (max-width: 767px) {
    .donate-three {
        padding: 0 0 80px;
    }
}

.donate-three__support {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.donate-three__support img {
    width: 100%;
    height: auto;
}

.donate-three__support__content {
    position: relative;
    padding: 30px 20px 30px;
    background-color: var(--careox-gray);
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.donate-three__support__content::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--careox-base, #c32129);
    z-index: -1;
    position: absolute;
    top: 100%;
    left: 100%;
    transition: all 400ms ease;
}

.donate-three__support:hover .donate-three__support__content::after {
    top: 0%;
    left: 0%;
}

.donate-three__support__title {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all 300ms linear;
}

.donate-three__support:hover .donate-three__support__title {
    color: var(--careox-white, #fff);
}

.donate-three__support__collected {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--careox-secondary);
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    color: var(--careox-white, #fff);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    border-radius: 100px;
    transition: all 300ms linear;
}

.donate-three__content {
    position: relative;
    padding-top: 25px;
}

@media (min-width: 1200px) {
    .donate-three__content {
        padding-left: 15px;
    }
}

@media (max-width: 991px) {
    .donate-three__content {
        padding-top: 40px;
    }
}

.donate-three__content .sec-title {
    padding-bottom: 30px;
}

.donate-three__form {
    position: relative;
    width: 100%;
}

.donate-three__form__amount {
    position: relative;
}

.donate-three__form__amount__sign {
    position: absolute;
    text-transform: uppercase;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    color: var(--careox-white, #fff);
    font-size: 30px;
    display: flex;
    align-items: center;
    font-weight: 900;
}

.donate-three__form input {
    display: block;
    width: 100%;
    height: 60px;
    background-color: var(--careox-secondary);
    color: var(--careox-white, #fff);
    font-size: 25px;
    font-weight: 500;
    text-align: right;
    border: none;
    outline: none;
    border-radius: 50px;
    padding-left: 100px;
    padding-right: 30px;
}

.donate-three__form__buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 45px;
}

@media (max-width: 767px) {
    .donate-three__form__buttons {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.donate-three__form__buttons__item {
    height: 48px;
    background-color: var(--careox-border-color, #dddddd);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--careox-text, #636363);
    font-weight: 500;
    font-family: var(--body-font, "Aleo", sans-serif);
    border: none;
    outline: none;
    padding: 0 24px;
    transition: all 0.4s ease;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donate-three__form__buttons__item {
        padding: 0 20px;
    }
}

.donate-three__form__buttons__item.active,
.donate-three__form__buttons__item:hover {
    background-color: var(--careox-secondary);
    color: var(--careox-white, #fff);
}

.donate-three__form__submit {
    display: flex;
    align-items: center;
    position: relative;
    gap: 25px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donate-three__form__submit .careox-btn {
        padding: 13px 22px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donate-three__form__submit {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .donate-three__form__submit {
        flex-direction: column;
        align-items: flex-start;
    }
}

.donate-three__form__volunter {
    position: relative;
    display: flex;
    align-items: center;
}

.donate-three__form__volunter img {
    width: 53px;
    height: 53px;
    border: 3px solid var(--careox-gray);
    border-radius: 50%;
}

.donate-three__form__volunter img+img {
    margin-left: -16px;
}

.donate-three__form__volunter__total {
    width: 53px;
    height: 53px;
    border: 3px solid var(--careox-gray);
    background-color: var(--careox-white, #fff);
    border-radius: 50%;
    color: var(--careox-black, #122f2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-weight: 700;
    margin-left: -16px;
}

.donate-three__form__volunter__active {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 0 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .donate-three__form__volunter__active {
        margin: 0 0 0 10px;
    }
}

.donate-page {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .donate-page {
        padding: 80px 0;
    }
}

.donate-page__content {
    position: relative;
}

.donate-page__notice {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    background-color: var(--careox-gray);
    overflow: hidden;
    padding: 16px 15px;
    border-radius: 5px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .donate-page__notice {
        display: block;
        padding: 16px 25px;
    }
}

.donate-page__notice::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 38px;
    content: "";
    z-index: -1;
    background-color: var(--careox-secondary);
}

@media (max-width: 767px) {
    .donate-page__notice::after {
        display: none;
    }
}

.donate-page__notice span {
    font-weight: 500;
    color: var(--careox-black, #122f2a);
}

.donate-page__notice__icon {
    width: 41px;
    height: 41px;
    background-color: var(--careox-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--careox-secondary);
    font-size: 22px;
    margin-right: 19px;
}

@media (max-width: 767px) {
    .donate-page__notice__icon {
        margin: 0 0 15px;
    }
}

.donate-page__form {
    position: relative;
    width: 100%;
}

.donate-page__form__amount {
    position: relative;
    width: 100%;
    margin: 0 0 30px;
}

.donate-page__form__amount__sign {
    position: absolute;
    text-transform: uppercase;
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
    left: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
    color: var(--careox-white, #fff);
    font-size: 57px;
    display: flex;
    align-items: center;
    font-weight: 700;
}

@media (max-width: 767px) {
    .donate-page__form__amount__sign {
        left: 30px;
    }
}

.donate-page__form__amount input {
    display: block;
    width: 100%;
    height: 125px;
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
    font-size: 57px;
    font-weight: 700;
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
    text-align: right;
    border: none;
    outline: none;
    border-radius: 10px;
    padding-left: 100px;
    padding-right: 39px;
}

@media (max-width: 767px) {
    .donate-page__form__amount input {
        padding-right: 30px;
    }
}

.donate-page__form__buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 53px;
}

@media (max-width: 767px) {
    .donate-page__form__buttons {
        margin-bottom: 33px;
    }
}

.donate-page__form__buttons__item {
    height: 74px;
    background-color: var(--careox-gray);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--careox-text, #636363);
    font-weight: 500;
    font-family: var(--body-font, "Aleo", sans-serif);
    border: none;
    outline: none;
    padding: 0 27px;
    transition: all 0.4s ease;
}

.donate-page__form__buttons__item.active,
.donate-page__form__buttons__item:hover {
    background-color: var(--careox-base, #c32129);
    color: var(--careox-white, #fff);
}

.donate-page__form__title {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 19px;
}

.donate-page__form__payment {
    position: relative;
    margin-bottom: 20px;
}

.donate-page__form__payment__method {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.donate-page__form__payment__method__item {
    position: relative;
}

.donate-page__form__payment__method__item label {
    position: relative;
    display: inline-block;
    padding-left: 28px;
    margin-right: 0px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: var(--careox-text, #636363);
    font-size: 16px;
    cursor: pointer;
}

.donate-page__form__payment__method__item label span:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    background-color: var(--careox-base, #c32129);
    content: "";
    width: 7px;
    height: 7px;
    pointer-events: none;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.donate-page__form__payment__method__item input[type=radio] {
    display: none;
}

.donate-page__form__payment__method__item input[type=radio]+label span {
    position: absolute;
    top: 5px;
    left: 0;
    width: 17px;
    height: 17px;
    vertical-align: middle;
    background-color: var(--careox-gray);
    cursor: pointer;
    transition: all 300ms ease;
}

.donate-page__form__payment__method__item input[type=radio]:checked+label span:before {
    opacity: 1;
}

.donate-page__form .bootstrap-select>.dropdown-toggle,
.donate-page__form .form-one input[type=text],
.donate-page__form input[type=email],
.donate-page__form input[type=tel],
.donate-page__form textarea {
    border-color: var(--careox-border-color, #dddddd);
}

.donate-page__form__donate-amount {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    color: var(--careox-black, #122f2a);
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
    margin: 24px 0 20px;
}

.donate-page__form .careox-btn::before {
    background-color: var(--careox-base, #c32129);
}

.donate-page__sidebar {
    position: relative;
}

@media (max-width: 991px) {
    .donate-page__sidebar {
        margin-top: 50px;
    }
}

.donate-page__sidebar .donations-one__carousel.owl-carousel .owl-nav.disabled {
    display: none;
}

.donate-page__sidebar .donation-details__author {
    margin: 50px 0 0;
}

/*--------------------------------------------------------------
# Instagram
--------------------------------------------------------------*/

.instagram-one {
    position: relative;
    padding: 0 5px 20px;
}

.instagram-one--about {
    padding-top: 20px;
}

.instagram-one__sub-title {
    font-size: 22px;
    color: var(--careox-white, #fff);
    font-weight: 600;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    transition: all 800ms ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-80px);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 57px;
    margin: auto;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.instagram-one__title {
    font-size: 24px;
    color: var(--careox-white, #fff);
    font-weight: 600;
    transition: all 800ms ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(80px);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    margin: auto;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.instagram-one a {
    overflow: hidden;
    transition: all 0.3s ease-out;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.instagram-one a:hover .instagram-one__sub-title {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.instagram-one a:hover .instagram-one__title {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.instagram-one a::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    width: 100%;
    height: 0;
    z-index: 1;
    opacity: 0;
    background-image: url(../images/shapes/overlay.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    visibility: hidden;
    transition: all ease 0.4s;
}

.instagram-one a:hover::after {
    opacity: 1;
    visibility: visible;
    height: 165px;
}

.instagram-one a img {
    width: 100%;
    height: auto;
    transition: all ease 0.3s;
}

.instagram-one a:hover img {
    transform: scale(1.1) rotate(1.5deg);
    transition: all 0.3s ease-out;
}

.instagram-two {
    position: relative;
    background-color: var(--careox-white, #fff);
    padding: 0 0;
    margin-bottom: -120px;
}

.instagram-two .container {
    max-width: 1670px;
    position: relative;
    z-index: 5;
}

.instagram-two a {
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.instagram-two a::before {
    position: absolute;
    content: "\f16d";
    font-family: "Font Awesome 5 Brands";
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 55%;
    transform: translateY(-50%);
    z-index: 3;
    color: var(--careox-white, #fff);
    font-size: 40px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
    transition-delay: 0s;
}

.instagram-two a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 1;
    opacity: 0;
    background: rgba(var(--careox-base-rgb, 255, 85, 40), 0.9);
    visibility: hidden;
    transition: all ease 0.4s;
}

.instagram-two a:hover::after {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.instagram-two a:hover::before {
    top: 50%;
    visibility: visible;
    opacity: 1;
    transition-delay: 0.4s;
}

.instagram-two a img {
    width: 100%;
    height: auto;
    transition: all ease 0.3s;
}

.instagram-two a:hover img {
    transform: scale(1.1) rotate(1.5deg);
    -moz-transform: scale(1.1) rotate(1.5deg);
    -webkit-transform: scale(1.1) rotate(1.5deg);
    -ms-transform: scale(1.1) rotate(1.5deg);
    -o-transform: scale(1.1) rotate(1.5deg);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

/*--------------------------------------------------------------
# Info
--------------------------------------------------------------*/

.info {
    position: relative;
    margin-bottom: -74px;
}

.info__wrapper {
    background-color: var(--careox-white, #fff);
    border-radius: 75px;
    filter: drop-shadow(0 0 19px rgba(0, 0, 0, 0.08));
    position: relative;
    z-index: 2;
    padding: 42px 40px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .info__wrapper {
        flex-wrap: wrap;
        gap: 30px 0;
    }
}

@media (max-width: 767px) {
    .info__wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 42px 25px;
        align-items: flex-start;
    }
}

.info__wrapper li {
    position: relative;
    display: flex;
    gap: 28px;
    align-items: center;
}

@media (max-width: 1199px) {
    .info__wrapper li {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .info__wrapper li {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .info__wrapper li {
        flex: 0 0 100%;
    }
}

.info__wrapper li:hover .info__icon span {
    transform: scale(1.1);
    transition: all 300ms ease;
    color: var(--careox-white, #fff);
}

.info__wrapper li:hover .info__icon::after {
    opacity: 1;
}

.info__wrapper li:not(:first-of-type)::before {
    content: "";
    width: 3px;
    height: 80px;
    background-color: var(--careox-border-color, #dddddd);
    position: absolute;
    top: 50%;
    left: -74px;
    transform: translateY(-50%);
    border-radius: 5px;
}

@media (max-width: 1199px) {
    .info__wrapper li:not(:first-of-type)::before {
        display: none;
    }
}

.info__icon {
    width: 66px;
    height: 66px;
    font-size: 31px;
    background-color: transparent;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.info__icon span {
    position: relative;
    z-index: 2;
    display: inline-block;
    transform: scale(1);
    color: var(--accent-color);
}

.info__icon::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--accent-color);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    opacity: 0.16;
    z-index: -1;
    transition: all 500ms ease;
}

.info__title {
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.35px;
    margin: 0 0 11px;
    position: relative;
}

.info__text {
    display: block;
    font-size: 21px;
    line-height: 1;
    letter-spacing: 0.33px;
    margin: 0;
}

.info__text a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.info__text a:hover {
    background-size: 100% 1px;
}

.info__text a:hover {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/

body.boxed-wrapper {
    position: relative;
}

body.boxed-wrapper .page-wrapper {
    max-width: 1530px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--careox-white, #fff);
    box-shadow: 0px 0px 100px 0px rgba(var(--careox-black3-rgb, 0, 0, 0), 0.08);
}

body.boxed-wrapper .about-one__shape,
body.boxed-wrapper .topbar-one__bottom__button img,
body.boxed-wrapper .topbar-one__bottom__button .careox-btn,
body.boxed-wrapper .main-slider-one__shape-two {
    display: none;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/

.work-process-one {
    position: relative;
    counter-reset: count;
    padding: 120px 0 90px;
    background-color: var(--careox-white, #fff);
}

@media (max-width: 767px) {
    .work-process-one {
        padding: 80px 0 50px;
    }
}

.work-process-one .sec-title {
    text-align: center;
}

.work-process-one__border {
    width: 100%;
    height: 2px;
    background-color: var(--careox-base, #c32129);
    top: 103px;
    position: relative;
}

@media (max-width: 767px) {
    .work-process-one__border {
        display: none;
    }
}

.work-process-one__border::after {
    position: absolute;
    left: 0;
    top: -5px;
    width: 11px;
    height: 11px;
    background-color: var(--careox-black, #122f2a);
    border-radius: 50%;
    content: "";
}

.work-process-one__border::before {
    position: absolute;
    right: 0;
    top: -5px;
    width: 11px;
    height: 11px;
    background-color: var(--careox-black, #122f2a);
    border-radius: 50%;
    content: "";
}

.work-process-one__gradiant-left {
    height: 100%;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 5%;
    border-width: 1px;
    border-style: solid;
    border-image: linear-gradient(-45deg, rgba(var(--careox-base-rgb, 255, 85, 40), 1) 0%, rgba(var(--careox-black-rgb, 18, 47, 42), 1) 100%) 1;
}

.work-process-one__gradiant-right {
    height: 100%;
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 5%;
    border-width: 1px;
    border-style: solid;
    border-image: linear-gradient(-45deg, rgba(var(--careox-black-rgb, 18, 47, 42), 1) 0%, rgba(var(--careox-base-rgb, 255, 85, 40), 1) 100%) 1;
}

.work-process-one__item {
    position: relative;
    counter-increment: count;
    margin-bottom: 30px;
}

.work-process-one__item__thumb {
    display: inline-block;
    width: 202px;
    height: 202px;
    border: 2px solid var(--careox-base, #c32129);
    background-color: var(--careox-white, #fff);
    border-radius: 50%;
    padding: 5px;
    position: relative;
    margin-bottom: 30px;
}

.work-process-one__item__thumb-wrap {
    background-color: var(--careox-black, #122f2a);
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.work-process-one__item__thumb-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    background: rgba(var(--careox-white-rgb, 255, 255, 255), 0.2);
    border-radius: 50%;
    transition: all 500ms linear;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
}

.work-process-one__item__thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.3;
}

.work-process-one__item__thumb__number {
    width: 67px;
    height: 67px;
    background-color: var(--careox-base, #c32129);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--careox-white, #fff);
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    right: -9px;
    top: 5px;
    transition: all 500ms linear;
    transition-delay: 0s;
    transition-delay: 0s;
    transition-delay: 0.1s;
    transform: scale(1);
}

.work-process-one__item__thumb__number::before {
    content: counters(count, ".", decimal-leading-zero);
    position: absolute;
    top: -6px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-process-one__item__thumb__icon {
    width: 60px;
    height: 60px;
    font-size: 60px;
    color: var(--careox-base, #c32129);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.work-process-one__item:hover .work-process-one__item__thumb-wrap::after {
    -webkit-animation: zoom-hover 0.95s;
    animation: zoom-hover 0.95s;
}

.work-process-one__item:hover .work-process-one__item__thumb__number {
    transform: scale(0.95);
}

.work-process-one__item__content {
    position: relative;
    box-shadow: 0px 0px 60px 0px rgba(var(--careox-black3-rgb, 0, 0, 0), 0.07);
    background-color: var(--careox-white, #fff);
    border-radius: 100px;
    padding: 24px 20px 26px;
}

.work-process-one__item__content::after {
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    content: "";
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 10px 25px;
    border-color: transparent transparent var(--careox-white, #fff) transparent;
}

.work-process-one__item__title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.work-process-one__item__text {
    font-size: 15px;
    line-height: 26px;
    margin: 0;
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/

.tab-one {
    padding-top: 120px;
    position: relative;
}

@media (max-width: 767px) {
    .tab-one {
        padding-top: 80px;
    }
}

.tab-one__wrapper {
    position: relative;
}

.tab-one__list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    list-style: none;
    gap: 30px;
    margin: 0 0 45px;
}

@media (max-width: 991px) {
    .tab-one__list {
        flex-direction: column;
        gap: 15px;
    }
}

.tab-one__list li {
    display: flex;
    align-items: center;
    background-color: var(--careox-gray);
    transition: all 300ms linear;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
    color: var(--careox-black, #122f2a);
    width: 100%;
    padding: 20px 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.tab-one__list li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--accent-color);
    transform: scaley(0);
    transform-style: preserve-3d;
    transition: transform 0.4s ease-in-out;
    transform-origin: top center;
    z-index: -1;
}

.tab-one__list li:hover,
.tab-one__list li.active-btn {
    color: var(--careox-white, #fff);
}

.tab-one__list li:hover .tab-one__list__icon,
.tab-one__list li.active-btn .tab-one__list__icon {
    color: var(--careox-white, #fff);
}

.tab-one__list li:hover .tab-one__list__icon::after,
.tab-one__list li.active-btn .tab-one__list__icon::after {
    background-color: var(--careox-white, #fff);
    opacity: 0.25;
}

.tab-one__list li:hover::after,
.tab-one__list li.active-btn::after {
    transform: scaley(1);
    transform-origin: bottom center;
}

.tab-one__list__icon {
    border-right: 2px solid var(--careox-border-color, #dddddd);
    font-size: 60px;
    color: var(--accent-color);
    height: 69px;
    display: flex;
    align-items: center;
    padding-right: 25px;
    margin-right: 25px;
    transition: all 300ms linear;
    position: relative;
}

@media (max-width: 400px) {
    .tab-one__list__icon {
        padding-right: 15px;
        margin-right: 15px;
    }
}

.tab-one__list__icon::after {
    position: absolute;
    left: 2px;
    top: 16px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    content: "";
    background-color: var(--accent-color);
    opacity: 0.1;
    transition: all 300ms linear;
}

.tab-one__content {
    position: relative;
    border: 1px solid var(--careox-border-color, #dddddd);
    border-radius: 10px;
    overflow: hidden;
    padding: 9px;
}

.tab-one__content__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.58;
}

.tab-one__content__image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.tab-one__content__image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.tab-one__content__image__shape {
    position: absolute;
    left: -10px;
    bottom: 0;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
    animation: shapeMove 3s linear 0s infinite;
}

.tab-one__content__right {
    position: relative;
    padding: 30px 69px 30px 0;
    width: 100%;
}

@media (max-width: 1199px) {
    .tab-one__content__right {
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .tab-one__content__right {
        padding: 30px 30px;
    }
}

@media (max-width: 767px) {
    .tab-one__content__right {
        padding: 30px 15px;
    }
}

.tab-one__content__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 50px;
}

@media (max-width: 1199px) {
    .tab-one__content__title {
        margin: 0 0 30px;
    }
}

.tab-one__content__box {
    position: relative;
    min-height: 44px;
    padding: 0 0 25px 64px;
    margin-top: 40px;
    border-bottom: 1px solid var(--careox-border-color, #dddddd);
    transition: all 500ms ease;
}

.tab-one__content__box:hover {
    border-color: var(--accent-color);
}

.tab-one__content__box__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 21px;
    color: var(--careox-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

.tab-one__content__box__icon i {
    display: inline-block;
    transition: all 500ms ease;
    transform: scale(1);
}

.tab-one__content__box:hover .tab-one__content__box__icon i {
    transform: scale(1.1);
}

.tab-one__content__box__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
}

.tab-one__content__box__text {
    margin: 0;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/

.event-one {
    position: relative;
    overflow: hidden;
    padding: 120px 0 0;
}

@media (max-width: 767px) {
    .event-one {
        padding-top: 80px;
    }
}

.event-one::before {
    position: absolute;
    right: -140px;
    top: -140px;
    width: 280px;
    height: 280px;
    background-color: var(--careox-base, #c32129);
    border-radius: 50%;
    content: "";
    animation: zoomsIn 4s linear 0s infinite;
    z-index: 1;
}

@media (max-width: 1199px) {
    .event-one::before {
        display: none;
    }
}

.event-one::after {
    position: absolute;
    right: -125px;
    top: -125px;
    width: 280px;
    height: 280px;
    background-color: var(--careox-base, #c32129);
    border-radius: 50%;
    opacity: 0.27;
    content: "";
    animation: zoomsIn 3s linear 0s infinite;
}

@media (max-width: 1199px) {
    .event-one::after {
        display: none;
    }
}

.event-one__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 747px;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 747"><path d="m0 0h1920v747c0 0-209.7-7.2-393.4-103.7-262.5-137.8-411.6-358.8-562.2-157.4-77 103.1-274.4-72.1-594.6 81.1-171.2 81.9-369.8-70-369.8-70z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 747"><path d="m0 0h1920v747c0 0-209.7-7.2-393.4-103.7-262.5-137.8-411.6-358.8-562.2-157.4-77 103.1-274.4-72.1-594.6 81.1-171.2 81.9-369.8-70-369.8-70z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.event-one__bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(11, 11, 11, 0.85);
}

.event-one .sec-title__title {
    color: var(--careox-white, #fff);
}

.event-one--page {
    padding: 120px 0;
}

@media (max-width: 767px) {
    .event-one--page {
        padding: 80px 0;
    }
}

.event-one--page::after,
.event-one--page::before {
    display: none;
}

.event-one--page .sec-title__title {
    color: var(--careox-black, #122f2a);
}

.event-one .container {
    max-width: 1450px;
    position: relative;
}

.event-one__carousel {
    position: relative;
}

.event-one__carousel .event-one__item img {
    height: 315px;
    object-fit: cover;
    object-position: top;
}

.event-one__item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.event-one__item img {
    width: 100%;
    height: auto;
}

.event-one__item__rm {
    width: 55px;
    height: 55px;
    background-color: var(--careox-base, #c32129);
    text-align: center;
    line-height: 53px;
    font-size: 22px;
    color: var(--careox-white, #fff);
    border-radius: 0 0 30px 30px;
    position: absolute;
    right: 30px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transform: rotate(90deg);
    transform-origin: 100% 100%;
    transition: all 0.5s;
}

.event-one__item__rm i {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.event-one__item__rm:hover {
    background-color: var(--careox-secondary);
    color: var(--careox-white, #fff);
}

.event-one__item__rm:hover i {
    animation: iconTranslateX 0.4s forwards;
}

.event-one__item:hover .event-one__item__rm {
    visibility: visible;
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: 100% 100%;
}

.event-one__item__content {
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    z-index: 1;
    padding: 0 20px 15px;
}

.event-one__item__content::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    opacity: 0;
    background-image: url(../images/shapes/overlay.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    visibility: hidden;
    transition: all ease 0.4s;
}

.event-one__item:hover .event-one__item__content:after {
    opacity: 1;
    visibility: visible;
    height: 165px;
}

.event-one__item__title {
    font-size: 24px;
    color: var(--careox-white, #fff);
    font-weight: 600;
    margin: 0 0 8px;
    opacity: 0;
    transform: translateX(-100%) skewX(5deg);
    transition: transform 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.event-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;
}

.event-one__item__title a:hover {
    background-size: 100% 1px;
}

.event-one__item__title a:hover {
    color: inherit;
}

.event-one__item:hover .event-one__item__meta,
.event-one__item:hover .event-one__item__title {
    opacity: 1;
    transform: translateX(0px) skewX(0deg);
}

.event-one__item__meta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    opacity: 0;
    transform: translateX(100%) skewX(5deg);
    transition: transform 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.event-one__item__meta li {
    font-size: 18px;
    font-weight: 600;
    color: var(--careox-white, #fff);
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
}

.event-one__item__meta li i {
    font-size: 16px;
    margin-right: 7px;
}

.event-details {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .event-details {
        padding: 80px 0;
    }
}
.event-details .event-details__content ul,
.event-details .event-details__content ol{
    padding-left: 15px;
}
.event-details .more_para ul,
.event-details .more_para ol{
    padding-left: 15px;
}
.event-details__content {
    position: relative;
}
.event-details .more_para h2,
.event-details .more_para h3,
.event-details .more_para h4,
.event-details .more_para h5,
.event-details .more_para h6{
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}
.event-details__image {
    position: relative;
    margin-bottom: 40px;
}

.event-details__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.event-details__title {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 18px;
}

@media (max-width: 767px) {
    .event-details__title {
        font-size: 30px;
    }
}

.event-details__text {
    margin: 0 0 25px;
}

@media (min-width: 1200px) {
    .event-details__text {
        padding-right: 42px;
    }
}

.event-details .careox-btn {
    margin-top: 32px;
}

.event-details .careox-btn::before {
    background-color: var(--careox-base, #c32129);
}

.event-details__info {
    position: relative;
    background-color: var(--careox-gray);
    border-radius: 20px;
    border-top: 5px solid var(--careox-base, #c32129);
    padding: 45px 38px;
    margin-bottom: 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .event-details__info {
        padding: 35px 22px;
    }
}

@media (max-width: 991px) {
    .event-details__info {
        margin-top: 50px;
    }
}

.event-details__info__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.event-details__info__list li {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.event-details__info__list li span {
    font-weight: 400;
}

.event-details__info__list li+li {
    margin-top: 37px;
}

.event-details__map {
    position: relative;
}

.event-details__map .google-map iframe {
    height: 475px;
    width: 100%;
}

/*--------------------------------------------------------------
# Countries
--------------------------------------------------------------*/

.country-one {
    position: relative;
    background-color: var(--careox-gray);
    padding: 90px 0;
}

@media (max-width: 767px) {
    .country-one {
        padding: 80px 0;
    }
}

.country-one__carousel.owl-carousel.v2 {
    position: relative;
}
.country-one__carousel.owl-carousel.v2 .owl-nav {
    position: relative;
    right: 0;
    top: -110px;
    flex-direction: column-reverse;
    display: flex;
    margin: 0;
    margin-bottom: 15px;
    gap: 10px;
    transform: rotate(90deg);
    text-align: center;
}


@media (max-width: 767px) {
    .country-one__carousel.owl-carousel.v2 .owl-nav {
        flex-direction: row;
        top: 0;
        position: relative;
        justify-content: center;
        margin-top: 30px;
    }
}

.country-one__carousel.owl-carousel.v2 .owl-nav button {
    width: 50px;
    height: 50px;
    background-color: var(--careox-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
    color: var(--careox-black, #122f2a);
    transition: all 400ms ease;
}

.country-one__carousel.owl-carousel.v2 .owl-nav button:hover {
    background-color: var(--careox-secondary);
    color: var(--careox-white, #fff);
}


.country-one__carousel.owl-carousel {
    position: relative;
}

.country-one__carousel.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -118px;
    flex-direction: unset;
    display: flex;
    margin: 0;
    gap: 10px;
}

@media (max-width: 767px) {
    .country-one__carousel.owl-carousel .owl-nav {
        flex-direction: row;
        top: 0;
        position: relative;
        justify-content: center;
        margin-top: 30px;
    }
}

.country-one__carousel.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background-color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
    color: var(--careox-black);
    transition: all 400ms ease;
}

.country-one__carousel.owl-carousel .owl-nav button:hover {
    background-color: var(--careox-secondary);
    color: var(--careox-secondary) !important;
}

.country-one__item {
    position: relative;
    z-index: 2;
    background-color: var(--careox-white, #fff);
    border-radius: 30px;
    padding: 42px 25px 37px;
}

.country-one__item::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    transition: all 400ms ease;
    border: 1px dashed var(--accent-color);
    opacity: 0;
    transform: scale(0.9);
    border-radius: 30px;
    z-index: -1;
}

.country-one__item:hover::after {
    opacity: 1;
    transform: scale(1);
}

.country-one__item__flag {
    position: relative;
    width: 102px;
    height: 102px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 19px;
}

.country-one__item__flag img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.country-one__item__count {
    position: absolute;
    left: -17px;
    bottom: 9px;
    width: 41px;
    height: 41px;
    background-color: var(--careox-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(-4.963px -0.609px 2.5px rgba(0, 0, 0, 0.07));
    border-radius: 50%;
    color: var(--accent-color);
    font-weight: 700;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    transition: all 400ms ease;
}

.country-one__item:hover .country-one__item__count {
    color: var(--careox-white, #fff);
    background-color: var(--accent-color);
}

.country-one__item__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px;
}

.country-one__item__text {
    margin: 0 0 17px;
}

.country-one__item__rm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--careox-text, #636363);
    text-transform: capitalize;
    line-height: 1.1;
    transition: all 500ms ease;
}

.country-one__item__rm a {
    display: inline-block;
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.country-one__item__rm a:hover {
    background-size: 100% 1px;
}

.country-one__item__rm a:hover {
    color: var(--accent-color);
}

.country-one__item__rm i {
    color: var(--accent-color);
    font-size: 20px;
    position: relative;
    top: 1px;
}

/*--------------------------------------------------------------
# Become Volunter
--------------------------------------------------------------*/

.become-volunter {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .become-volunter {
        padding: 80px 0;
    }
}

.become-volunter__content {
    position: relative;
}

.become-volunter__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 24px;
}

.become-volunter__text {
    margin: 0 0 29px;
}

@media (min-width: 1200px) {
    .become-volunter__text {
        padding-right: 70px;
    }
}

.become-volunter__highlight {
    position: relative;
    font-family: var(--careox-special-font, "Old Standard TT", cursive);
    font-weight: 700;
    border-left: 6px solid var(--careox-secondary);
    text-transform: uppercase;
    padding: 4px 0 2px 16px;
    margin-bottom: 32px;
}

.become-volunter__list {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.become-volunter__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}

.become-volunter__list li a {
    color: inherit;
    font-weight: 500;
    border-bottom: 2px solid currentColor;
}

.become-volunter__list li a:hover {
    color: var(--careox-secondary);
}

.become-volunter__list__icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    line-height: 1;
    margin: auto;
    display: flex;
    align-items: center;
    color: var(--careox-secondary);
    font-size: 15px;
}

.become-volunter__image {
    position: relative;
}

@media (max-width: 767px) {
    .become-volunter__image {
        margin-top: 30px;
    }
}

.become-volunter__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.become-volunter .contact-one__form {
    position: relative;
}

@media (max-width: 991px) {
    .become-volunter .contact-one__form {
        margin-top: 40px;
    }
}

.become-volunter .contact-one__form .bootstrap-select>.dropdown-toggle,
.become-volunter .contact-one__form input[type=text],
.become-volunter .contact-one__form input[type=email],
.become-volunter .contact-one__form input[type=tel],
.become-volunter .contact-one__form textarea {
    border-color: var(--careox-border-color, #dddddd);
    border-radius: 30px;
}

.cybersecurity-hero {
    position: relative;
    background-image: url(../images/backgrounds/slider-1-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 150px;
    /*padding-bottom: 150px;*/
}

.cybersecurity-hero::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(244, 241, 241, 0.31);
}

.cybersecurity-hero-text {
    max-width: 680px;
    width: 100%;
    float: right;
    padding-left: 110px;
    position: relative;
    z-index: 1;
}

.cybersecurity-hero-text h1 {
    color: #e2672b;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cybersecurity-hero-text {
        padding-left: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .cybersecurity-hero-text {
        padding-left: 0;
        float: inherit;
        margin: 60px auto 0px;
        text-align: center;
    }
}

.cybersecurity-hero-text h6 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    color: #7abd4b;
}

.cybersecurity-hero-text ul {
    padding-left: 0px;
}

.cybersecurity-hero-text ul li {
    list-style: none;
    color: #312a2a;
    padding-bottom: 10px;
    font-size: 17px;
}

.cybersecurity-hero-text h3 {
    font-weight: 700;
}

.cybersecurity-hero-images {
    position: relative;
}

.inner-img-one {
    position: absolute;
    z-index: -1;
    bottom: 0;
}

@media only screen and (max-width: 767px) {
    .inner-img-one {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
    }
    .inner-img-one img {
        width: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .inner-img-two {
        margin: auto !important;
        text-align: center;
    }
    .inner-img-two img {
        max-width: 254px;
    }
}

.worldRotate {
    -webkit-animation: worldRotate 20s linear infinite;
    animation: worldRotate 20s linear infinite;
}

/*--- spinner keyframe ---*/

@-webkit-keyframes worldRotate {
    0% {
        -webkit-transform: rotate(0deg) translateX(0px) rotate(0deg);
        transform: rotate(0deg) translateX(0px) rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(0deg) translateY(0px) rotate(-360deg);
        transform: rotate(0deg) translateY(0px) rotate(-360deg);
    }
}

@keyframes worldRotate {
    0% {
        -webkit-transform: rotate(0deg) translateX(0px) rotate(0deg);
        transform: rotate(0deg) translateX(0px) rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(0deg) translateY(0px) rotate(-360deg);
        transform: rotate(0deg) translateY(0px) rotate(-360deg);
    }
}

.d-flex {
    display: flex !important;
}


.team-one .single_team {
    border-radius: 10px;
      background: #FDF8F4;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.team-one .single_team:hover{
    background: var(--light);
}
.team-one .single_team::before {
    position: absolute;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 93px;
    height: 150px;
    bottom: 0px;
    left: 1px;
    transform: rotate(47deg);
    opacity: .04;
}

.team-one .single_team_img {
    width: 200px;
    height: 200px;
    border: 10px solid var(--light);
    border-radius: 50%;
    box-shadow: rgba(100, 100, 111, 0.15) 0px 7px 29px 0px;
    ;
    overflow: hidden;
    margin: 0 auto;
    padding: 10px;
    background: var(--primary);
    position: relative;
    z-index: 1;
    transition: all linear .3s;
    -webkit-border-radius: 50%;
}

.team-one .single_team_img img {
    border-radius: 50%;
    transition: all linear .3s;
}

.team-one .single_team_text h4 {
    text-transform: capitalize;
    color: #00a3d9;
    font-size: 20px;
    font-weight: 600;
    display: block;
    text-align: center;
    margin: 30px 0px 5px 0px;
    transition: all linear .3s;
}

.team-one .single_team_text p {
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
}

.team-one .single_team::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 30%;
    background: var(--primary);
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0%, 100% 25%, 50% 100%, 0 25%);
}

.team-one .sec-title .sub-title {
    color: var(--primary);
}

.team-one .sec-title .sub-title {
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    padding-left: 28px;
    padding-right: 28px;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.team-one .sec-title .sub-title:before {
    left: 0px;
}

.team-one .sec-title .sub-title:after {
    right: 0px;
}

.team-one .content-block-one .content-box .sec-title h2 {
    margin-bottom: 21px;
}

.team-one .sec-title h2 {
    position: relative;
    display: block;
    font-size: 47px;
    line-height: 58px;
    font-weight: 700;
}
.single_team:hover .team-one .single_team_img{
}
.single_team:hover img{
    background: var(--secondary);
    transition: all .5s;
    transform: scale(1.1);
}

@media(max-width: 767px) {
    .mb-show {
        display: block !important;
    }
    .topbar-one .topbar-one__inner {
        display: none;
    }
}
@media(min-width: 1199px){
    .service-two__item{
        height: 530px;
    }
    .f-right{
        float: right;
    }
}
@media (min-width: 1300px) and (max-width: 1399px) {
    section.hero_area.style_two {
        height: 781px;
    }
}

@media (min-width: 1300px) and (max-width: 1399px) {
    section.hero_area {
        height: 548px;
    }
}

.blog-style1-area .thm-shape1{
    position: absolute;
    top: 120px;
    right: 10%;
}

.single-blog-style1{
    position: relative;
    display: block;
    margin-bottom: 50px;
}
.single-blog-style1 .img-holder{
    position: relative;
    display: block;
}
.single-blog-style1 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-blog-style1 .img-holder .inner:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-90deg);
    -ms-transform: perspective(400px) rotateX(-90deg);
    transform: perspective(400px) rotateX(-90deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}
.single-blog-style1:hover .img-holder .inner:before{
    opacity: .65;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.single-blog-style1 .img-holder .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    -webkit-transition: .9s;
    -o-transition: .9s;
    transition: .9s;
    transform: perspective(400px) scaleY(0);
    transform-origin: bottom;
}
.single-blog-style1:hover .img-holder .overlay-icon{
    transform: perspective(400px) scaleY(1.0);    
}
.single-blog-style1 .img-holder .overlay-icon a{
    position: relative;
    display: inline-block;
}
.single-blog-style1 .img-holder .overlay-icon span{
    color: #ffffff;
    font-size: 40px;
    line-height: 40px;
}
.single-blog-style1 .img-holder .inner:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0.10;
    background: #000;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
}
.single-blog-style1:hover .img-holder .inner:after{
    opacity: 0.35;
    transform: scaleY(1.0);    
}
.single-blog-style1 .img-holder img{
    width: 100%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-blog-style1:hover .img-holder img {
    transform: scale(1.2);
    transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.single-blog-style1 .img-holder .date-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 80px;
    background: var(--thm-color-3);
    text-align: center;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}
.single-blog-style1 .img-holder .date-box.style2{
    background: var(--thm-color-2);
}
.single-blog-style1 .img-holder .date-box.style3{
    background: var(--thm-color-4);
}
.single-blog-style1 .img-holder .date-box h2 {
    color: #ffffff;
    font-size: 36px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 6px;
}
.single-blog-style1 .img-holder .date-box p{
    color: #ffffff;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.single-blog-style1 .text-holder {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 40px 30px 20px;
    box-shadow: 0px 5px 24px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-blog-style1:hover .text-holder{
    box-shadow: none;
    border-color: #e3e9f4;
}

.single-blog-style1 .text-holder .blog-title {
    font-size: 21px;
    line-height: 31px;
    font-weight: 600;
    text-transform: none;
}
.single-blog-style1 .text-holder .blog-title a{
    color: #222222;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-blog-style1 .text-holder .blog-title a:hover{
    color: var(--thm-primary) ;
}
.single-blog-style1 .text-holder .text {
    position: relative;
    display: block;
    padding-top: 14px;
    padding-bottom: 32px;
}
.single-blog-style1 .text-holder .text p {
    margin: 0;
}


.single-blog-style1 .text-holder .meta-info {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    border-top: 1px solid #e3e9f4;
    padding-top: 23px;
    padding-left: 0px;
}
.single-blog-style1 .text-holder .meta-info li {
    position: relative;
    display: block;
    color: #222222;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
}
.single-blog-style1 .text-holder .meta-info li i {
    position: relative;
    display: inline-block;
    padding-right: 5px;
    color: var(--secondary);
}
.single-blog-style1 .text-holder .meta-info li a {
    color: #222222;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-blog-style1 .text-holder .meta-info li a:hover{
    color: var(--thm-primary);    
}

.job-verticle-list {
    display: block;
    width: 100%;
    margin-top: 30px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    border-radius: 6px;
    padding: 0 25px;
    border: 1px solid var(--careox-base, #c32129);
    box-shadow: 0 4px 10px 0 rgba(41, 128, 185, 0.07);
    -webkit-box-shadow: 0 4px 10px 0 rgba(41, 128, 185, 0.07);
    margin-bottom: 30px;
}

.vertical-job-card {
    width: 100%;
}

.vertical-job-body {
    border-top: 1px solid var(--careox-base, #c32129);
    padding: 5px 0;
    width: 100%;
}

.vertical-job-header {
    display: inline-block;
    width: 100%;
    padding: 12px 0 10px 0;
    align-items: center;
}

.user_job_detail {
    border-left: 1px solid var(--careox-base, #c32129);
}

.vrt-job-cmp-logo {
    max-width: 60px;
    float: left;
    padding: 3px;
    border: 2px solid rgba(0, 0, 0, 0.03);
    border-radius: 40px;
}

.vrt-job-cmp-logo img {
    border-radius: 40px;
    object-fit: cover;
    width: 48px;
}

.btn.btn-light-outlined,
a.btn-light-outlined {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn.btn-light-outlined:hover,
a.btn-light-outlined:hover,
.btn.btn-light-outlined:focus,
a.btn-light-outlined:focus {
    background: rgba(255, 255, 255, 1);
    border: 1px solid #ffffff;
    color: #eb9f2b;
}

.btn.light-btn,
a.light-btn {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #eb9f2b;
}

.btn.light-btn:hover,
.btn.light-btn:focus,
a.light-btn:hover,
a.light-btn:focus {
    background: #eb9f2b;
    border: 1px solid #eb9f2b;
    color: #ffffff;
}
.btn-job{
    padding: 6px 20px;
    display: block;
}
.light-gray-btn {
    background: #eaedf3;
    border: 2px solid #eaedf3;
    border-radius: 4px;
}

.light-gray-btn:hover,
.light-gray-btn:focus {
    color: #ffffff;
    background: #78909C;
    border: 2px solid #78909C;
}
.theme-btn {
    background: #eb9f2b;
    border: 2px solid #eb9f2b;
    color: #ffffff !important;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 500;
    box-shadow: 0 4px 10px 0 rgba(41, 128, 185, 0.2);
    -webkit-box-shadow: 0 4px 10px 0 rgba(41, 128, 185, 0.2);
}

.theme-btn:hover,
.theme-btn:focus {
    color: #eb9f2b !important;
    background: transparent;
    border: 2px solid #eb9f2b;
}

.btn.theme-btn-outlined,
a.theme-btn-outlined {
    background: transparent;
    border: 1px solid #eb9f2b;
    color: #eb9f2b;
}

.btn.theme-btn-outlined:hover,
a.theme-btn-outlined:hover,
.btn.theme-btn-outlined:focus,
a.theme-btn-outlined:focus {
    background: #eb9f2b;
    border-color: #eb9f2b;
    color: #ffffff;
}

.btn.theme-btn-trans-radius,
a.theme-btn-trans-radius {
    background: rgba(255, 58, 114, 0.1);
    color: #eb9f2b;
    border-radius: 2px;
    border: 1px solid #eb9f2b;
}

.btn.theme-btn-trans-radius:hover,
a.theme-btn-trans-radius:hover,
.btn.theme-btn-trans-radius:focus,
a.theme-btn-trans-radius:focus {
    background: #e1662a;
    color: #ffffff;
    border-radius: 2px;
    border: 1px solid #eb9f2b;
}

.btn.theme-btn-trans,
a.theme-btn-trans {
    background: rgba(255, 58, 114, 0.1);
    color: #eb9f2b;
    border-radius: 2px;
    border: 1px solid #eb9f2b;
}

.btn.theme-btn-trans:hover,
a.theme-btn-trans:hover,
.btn.theme-btn-trans:focus,
a.theme-btn-trans:focus {
    background: #e1662a;
    color: #ffffff;
    border-radius: 2px;
    border: 1px solid #eb9f2b;
}

.vertical-job-header h4,
.com-tagline {
    margin-left: 80px;
}

.vertical-job-header h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1;
    margin-top: 7px;
}
.vertical-job-header h4 a{
    color: #111;
}
.vertical-job-header h4 a:hover {
    color: var(--careox-base, #c32129);
}

.vertical-job-header .com-tagline {
    font-size: 13px;
    margin-bottom: 2px;
    display: block;
}

.vertical-job-card ul {
    margin: 0;
    padding: 10px 0px;
}

.vertical-job-card ul li {
    list-style: none;
}

.vertical-job-body ul li {
    padding: 0px 0;
    padding-bottom: 8px;
}

.vrt-job-act {
    text-align: center;
    display: block;
    padding-top: 15px;
}

span.pull-right.vacancy-no {
    position: absolute;
    right: 30px;
    top: 25px;
}

span.pull-right.vacancy-no span.v-count {
    background: var(--careox-base, #c32129);
    color: #ffffff;
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    margin-left: 4px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 28px;
}

.vertical-job-body ul.can-skils li i {
    margin-right: 12px;
    font-size: 20px;
}

span.pull-right.job-type {
    position: absolute;
    right: 40px;
    top: 25px;
    padding: 1px 22px;
    border-radius: 2px;
    border: 1px solid var(--careox-base, #c32129);
    font-size: 11px
}

.footer-widget--contact p{
    color: #fff;
}

@media only screen and (max-width: 1480px) {
  .content-inner {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
.content-inner {
  padding-top: 100px;
  padding-bottom: 70px;
}
.bg-light {
  background-color: rgb(249, 244, 235);
}
.grid-2{
    margin-bottom: 25px;
    display: block;
}
.grid-2 ul {
  display:flex;
  flex-wrap:wrap;
    padding-left: 0px;
}
.grid-2 ul li {
  width:48%;
    list-style: none;
}
@media only screen and (max-width:767px) {
  .grid-2 ul li {
    width:100%
  }
}
.grid-2 li:before {
content: "\e914";
  padding:0;
  -webkit-transition:all 1s;
  -ms-transition:all 1s;
  transition:all 1s;
  transform:translateY(-50%);
    padding-right: 15px;
    color: var(--accent-color);
    
        font-family: 'careox' !important;
}
.grid-2 li:hover:before {
 color:var(--primary);
}
.list-number-circle li {
  padding:0 15px 0 70px;
  position:relative;
  margin-bottom:30px
}
.list-number-circle li:after {
  content:attr(data-text);
  position:absolute;
  left:0;
  top:0;
  height:50px;
  width:50px;
  line-height:50px;
  text-align:center;
  border-radius:50px;
  background:var(--primary);
  color:#fff;
  font-family:var(--font-family-title);
  font-size:24px;
  font-weight:600;
}
.list-number-circle li p {
  margin-bottom:0;
}
.info-widget.style-5 {
  display:inline-flex;
  align-items:center;
  gap:15px;
}
.info-widget.style-5 .widget-media {
  width:35px;
  height:35px;
}
.info-widget.style-5 .widget-media i {
  font-size:35px;
    
  color:var(--primary);
}
.info-widget.style-5 .widget-content .title {
  font-size:14px;
  color:#566593;
  font-weight:400;
  margin-bottom:0;
}
.info-widget.style-5 .widget-content a {
  font-size:18px;
  font-weight:600;
  color:var(--primary);
}
.content-wrapper.style-14 .content-media .img1 img,
.content-wrapper.style-14 .content-media .img2 img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
}
.content-wrapper.style-14 .content-media .img1 {
    position: relative;
}
.content-wrapper.style-14 .content-media .img1 .call-widget {
    height: 52px;
    bottom: 25px;
    left: 20px;
    right: 20px;
}
.content-wrapper.style-14 .content-media .img1 .call-widget .active {
    width: 46px;
    height: 46px;
}
.content-wrapper.style-14 .content-media .img1 .video-bx1 {
    position: absolute;
    top: 61%;
    left: -12%;
    border-radius: 15px 15px 0 15px;
    padding: 12px 20px;
}
.content-wrapper.style-14 .content-media .img1 .video-bx1 span {
    font-size: 14px;
}
.content-wrapper.style-14 .content-media.style-2 .img1 img,
.content-wrapper.style-14 .content-media.style-2 .img2 img {
    border-radius: 30px;
}
.content-wrapper.style-14 .content-media.style-2 .img2 img {
    height: 430px;
}
.content-wrapper.style-14 .content-info {
    padding-right: 50px;
}
.content-wrapper.style-14 .img1 img {
    height: 450px;
}
.content-wrapper.style-14 .img2 img {
    height: 345px;
}
.content-wrapper.style-14 .widget-rating2 {
    margin-top: 50px;
    box-shadow: none;
    width: 100%;
    padding: 25px 25px 55px 25px;
    margin-bottom: -30px;
}
.content-wrapper.style-14 .widget-rating2 img {
    width: 60px;
    min-width: 60px;
}
@media only screen and (max-width: 1199px) {
    .content-wrapper.style-14 .widget-rating2 {
        padding: 20px 20px 50px 20px;
    }
    .content-wrapper.style-14 .widget-rating2 img {
        width: 44px;
        min-width: 45px;
    }
    .content-wrapper.style-14 .content-info {
        padding-right: 0;
    }
    .content-wrapper.style-14 .content-media .img1 .video-bx1 {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .content-wrapper.style-14 .widget-rating2 {
        margin-top: 20px;
    }
    .content-wrapper.style-14 .img2 img {
        height: 255px;
    }
    .content-wrapper.style-14 .img1 img {
        height: 335px;
    }
}
.video-bx1 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 15px 8px 8px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 30px #eee;
}
.widget-area{
    position: relative;
}

/*================================================
Mission Area CSS
=================================================*/
.mission-section {
    background-color: #f8f8f8;
}

.tab .tabs_item {
    display: none;
}

.tab .tabs_item:first-child {
    display: block;
}

.mission-tab {
}

.mission-tab span {
    font-size: 18px;
    color: var(--primary);
    font-weight: 400;
}

.mission-tab span i {
    font-size: 18px;
}

.mission-tab h2 {
    font-size: 38px;
    margin: 10px 0 0 0;
}

.mission-tab .mission-list-tab .tabs {
    border-bottom: 1px solid #eeeeee;
    padding-left: 0;
    margin-bottom: 20px;
    margin-top: 20px;
}

.mission-tab .mission-list-tab .tabs li {
    padding: 0;
    margin-right: 30px;
    padding-bottom: 10px;
    display: inline-block;
}

.mission-tab .mission-list-tab .tabs li.current {
    border-bottom: 2px solid var(--primary);
}

.mission-tab .mission-list-tab .tabs li.current a {
    color: var(--primary);
}

.mission-tab .mission-list-tab .tabs li a {
    position: relative;
    font-size: 20px;
    font-weight: 600;
}

.mission-tab .mission-list-tab .tab_content .tabs_item .default-btn {
    margin-top: 12px;
}

.aw_title{
    font-size: 20px;
    text-align: center;
    color: var(--accent-color);
}
.br-15{
    border-radius: 15px;
}
.br-20{
    border-radius: 20px;
}


.welcome-style1-area{
    position: relative;
    display: block;
    background: #f7f4ef;
    padding-bottom: 90px;
}
.welcome-style1-area .parallax-scene{
    z-index: 1;
}
.welcome-style1-area .shape1 {
    position: absolute !important;
    top: auto !important;
    left: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 577px;
    height: 586px;
    opacity: 1;
    z-index: 1;
}
.welcome-style1-image-box{
    position: relative;
    display: block;
    max-width: 550px;
    width: 100%;
    z-index: 8;
    padding-top: 30px;
}
.welcome-style1-image-box .shape{
    position: absolute;
    left: -150px;
    bottom: -40px;
}
.welcome-style1-image-box .shape img {
    -webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}


.welcome-style1-image-box .inner{
    position: relative;
    display: block;
    /*z-index: 1;*/
}
.welcome-style1-image-box img{
    width: 100%;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    z-index: 2;
}
.welcome-style1-image-box .title{
    position: absolute;
    left: 0;
    top: -80px;
    right: 0;
    height: 80px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.welcome-style1-image-box .title h3{
    color: #ffffff;
    font-size: 24px;
    line-height: 30px;
    font-weight: 800;
}


.welcome-style1-content-box {
    position: relative;
    display: block;
    padding: 30px 0px 0px;
    z-index: 2;
}
.welcome-style1-content-box .sec-title {
    padding-bottom: 30px;
}
.welcome-style1-content-box .inner-content {
    position: relative;
    display: block;
}
.welcome-style1-content-box .inner-content ul{
    padding-left: 15px;
}
.welcome-style1-content-box .inner-content .text {
    position: relative;
    display: block;
    margin-bottom: 12px;
}
.welcome-style1-content-box .inner-content .text p{
    color: #11100f;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}
.welcome-style1-content-box .inner-content .bottom-box{
    position: relative;
    display: block;
}
.welcome-style1-content-box .inner-content .bottom-box h3 {
    color: #333029;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}
.welcome-style1-content-box .inner-content .bottom-box h3 a{
    position: relative;
    display: inline-block;
    padding-left: 5px;
    font-size: 30px;
    font-weight: 800;
}
.welcome-style1-content-box .inner-content .bottom-box .button{
    position: relative;
    display: block;
    padding-top: 22px;
}
.welcome-style1-content-box .inner-content .bottom-box .button a{
    line-height: 60px;
    padding: 0 60px;
    border-radius: 50px;
}
.welcome-style1-content-box .inner-content .bottom-box .button a:after{
    border-radius: 50px;    
}
/** info-section **/

.info-section {
    position: relative;
    padding: 80px 0px;
}

.info-section .title-inner {
    position: relative;
    /*padding-left: 250px;*/
    display: flex;
    vertical-align: middle;
    align-items: center;
    min-height: 180px;
}

.info-section .title-inner .year-box {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    max-width: 220px;
    width: 100%;
    text-align: center;
    padding: 27px 15px 29px 15px;
}

.info-section .title-inner .year-box .image-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 220px;
    height: 180px;
    overflow: hidden;
}

.info-section .title-inner .year-box h2 {
    position: relative;
    font-size: 110px;
    line-height: 94px;
    font-weight: 600;
}

.info-section .title-inner .year-box h3 {
    font-size: 22px;
    line-height: 30px;
    color: #204669;
    text-transform: uppercase;
    font-weight: 400;
}

.info-section .title-inner .title h2 {
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 42px;
    font-weight: 600;
    color: #204669;
}

.info-section .title-inner .title h2 span {
    color: var(--primary);
}

.info-section .text-column .text p {
    margin-bottom: 22px;
}
.info-section .text-column .text h5{
    line-height: 29px;
}
.info-section .text-column .text a {
    position: relative;
    display: inline-block;
}

.info-section .text-column .text a i {
    position: relative;
    font-size: 12px;
    margin-right: 10px;
}

.info-section .text-column .text a span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: #222;
    font-weight: 600;
    border-bottom: 1px solid #222;
    transition: all 500ms ease;
}

.info-section .text-column .text a:hover span {
}

.info-section .text-column .text {
    position: relative;
    display: block;
    margin-top: 18px;
}

.tp-event-details__item-2 {
  padding: 50px 20px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.tp-event-details__item-2-logo,
.tp-event-details__item-2-text,
.tp-event-details__button{
    position: relative;
    z-index: 2;
}
.tp-event-details__item-2::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--careox-black, #122f2a);
    opacity: 0.65;
}
.tp-event-details__item-2-title {
  color: var(--white);
  font-size: 24px;
  line-height: 34px;
  padding-bottom: 10px;
    margin-top: 0px;
}
.blog-post-img{
    margin-bottom: 20px;
}
.blog-post-img img{
    border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-event-details__item-2-title br {
    display: none;
  }
}
.tp-event-details__item-2-text {
  padding-bottom: 35px;
}
.tp-event-details__item-2-text span {
  color: var(--white);
}
.donations-two__item::before{
    position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--careox-black, #122f2a);
  opacity: 0.75;
    z-index: 2;
}


.map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
}

.map-pointer {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #dc3545; /* Bootstrap red */
    border-radius: 50%;
    border: 2px solid #fff;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
}

.map-pointer:hover {
    background-color: #bb2d3b;
}

.popup {
    position: absolute;
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 12px 16px;
    border-radius: 6px;
    display: none;
    max-width: 260px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.popup h5 {
    margin-top: 0;
}

.btn-sm {
    font-size: 0.8rem;
}
#map {
      height: 100vh;
      width: 100%;
}
@media(max-width: 767px){
    #map {
        height: 40vh;
        width: 100%;
    }
}
/* Optional: simple marker animation */
.marker-animate {
animation: bounce 0.6s ease;
}

@keyframes bounce {
0%   { transform: translateY(0); }
30%  { transform: translateY(-10px); }
50%  { transform: translateY(0); }
70%  { transform: translateY(-5px); }
100% { transform: translateY(0); }
}





.leaflet-popup-content {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    display: block;
    background-color: var(--thm-extra);
    z-index: 1;
}

.main-slider-two__main-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    mix-blend-mode: multiply;
    opacity: 0.20;
    z-index: -1;
}

.main-slider-two .item {
    position: relative;
    /*! /*! padding-top: 50px; */ /*! **/ \/
    padding-bottom: 50px;
    z-index: 10;
}

/*.main-slider-two .container {
    max-width: 1624px;
}*/

.main-slider-two__content {
    position: relative;
    display: block;
    z-index: 10;
    padding-top: 0px;
    padding-bottom: 115px;
    padding-left: 50px;
    border-radius: 30px;
    overflow: hidden;
}

.main-slider-two__sub-title-box {
    position: absolute;
    top: 238px;
    left: 52px;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateY(-100px) rotate(90deg);
}

.active .main-slider-two__sub-title-box {
    opacity: 1;
    transform: translateY(0) rotate(90deg);
    transition-delay: 800ms;
}

.main-slider-two__sub-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--thm-primary);
    line-height: 30px;
    text-transform: uppercase;
}

.main-slider-two__title {
    position: relative;
    display: block;
    font-size: 100px;
    color: var(--thm-white);
    font-size: 50px;
    line-height: 64px;
    margin-bottom: 17px;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(200px);
}

.main-slider-two__title .icon-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 78px;
    width: 78px;
    background-color: var(--thm-primary);
    border-radius: 50%;
    top: -8px;
}

.main-slider-two__title .icon-box img {
    width: auto !important;
}

.active .main-slider-two__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 800ms;
}

.main-slider-two__text {
    position: relative;
    display: block;
    color: #cbc0c0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(-200px);
}

.active .main-slider-two__text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1200ms;
}

.main-slider-two__btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
    opacity: 0;
    visibility: hidden;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: transform 1200ms ease, opacity 1200ms ease;
}

.active .main-slider-two__btn-box {
    opacity: 1;
    visibility: visible;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1500ms;
}

.main-slider-two__img {
    position: absolute;
    top: 30px;
    right: 50px;
    opacity: 0;
    transform: translateX(300px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='570' height='494' viewBox='0 0 570 494'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='570' height='494'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='570' height='494' viewBox='0 0 570 494'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='570' height='494'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    z-index: -1;
}

.main-slider-two__img img {
    width: auto !important;
}

.active .main-slider-two__img {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1800ms;
}

.main-slider-two__shape-1 {
    position: absolute;
    top: 10px;
    left: 250px;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(-200px);
    z-index: -1;
}

.main-slider-two__shape-1 img {
    width: auto !important;
}

.active .main-slider-two__shape-1 {
    opacity: 0.04;
    transform: translateX(0);
    transition-delay: 2100ms;
}


.main-slider-two__shape-2 {
    position: absolute;
    bottom: -26px;
    left: 30px;
}

.main-slider-two__shape-2 img {
    width: auto !important;
}

.main-slider-two .owl-nav{
    display: none;
}

.about-style-two .content-box{
  margin-right: 60px;
}

#image_block_two .image-box{
  position: relative;
}

#image_block_two .image-box .image{
  position: relative;
  overflow: hidden;
  display: block;
}

#image_block_two .image-box .image:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

#image_block_two .image-box .image:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

#image_block_two .image-box .image img{
  width: 100%;
}

#image_block_two .image-box .content-box{
  position: absolute;
  left: 0px;
  bottom: 45px;
  max-width: 420px;
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 29px 50px 34px 50px;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}

#image_block_two .image-box .content-box i{
  position: absolute;
  left: 30px;
  top: 20px;
  font-size: 90px;
  line-height: 90px;
  color: #e5e5e5;
  z-index: 1;
}

#image_block_two .image-box .content-box h4{
  margin-bottom: 7px;
  z-index: 2;
  position: relative;
    font-weight: 600;
}

#image_block_two .image-box .content-box h5{
  font-size: 18px;
  line-height: 26px;
  color: #222;
  font-weight: 400;
  z-index: 2;
  position: relative;
}

#image_block_two .image-box .content-box h5 a{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

#image_block_two .image-box .content-box h5 a:hover{

}

.about-style-two .pattern-layer{
  position: absolute;
  right: 0px;
  bottom: -150px;
  width: 572px;
  height: 684px;
  background-repeat: no-repeat;
}

.about-style-two .image-box{
  margin-top: 10px;
}
#content_block_three .content-box  .inner-box .single-item .icon-box{
	color: #EB9179;
}
#content_block_three .content-box  .inner-box .single-item:hover .icon-box{
	color: #8182C5;
}
#content_block_three .content-box .sec-title{
  margin-bottom: 27px;
}

#content_block_three .content-box .text{
  position: relative;
  display: block;
  margin-bottom: 36px;
}

#content_block_three .content-box  .inner-box .single-item{
  position: relative;
  display: block;
  padding-left: 50px;
  margin-bottom: 26px;
}

#content_block_three .content-box  .inner-box .single-item .icon-box{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 35px;
  line-height: 35px;
  background-color: inherit;
  width: inherit;
  height: inherit;
}

#content_block_three .content-box  .inner-box .single-item h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

#content_block_three .content-box  .inner-box .single-item h5 a{
  display: inline-block;
  color: #222;
}

#content_block_three .content-box  .inner-box .single-item h5 a:hover{

}

#image_block_two .image-box .content-box {
    border-left: 4px solid #EB9179;
}

.video-one .pattern-layer .pattern-1{
    position: absolute;
    left: 0px;
    top: -15px;
    width: 100%;
    height: 45px;
    background-repeat: repeat-x;
    z-index: 1;
}

.video-one .pattern-layer .pattern-2{
    position: absolute;
    left: 0px;
    bottom: -15px;
    width: 100%;
    height: 45px;
    background-repeat: repeat-x;
    z-index: 1;
}

.rel {
    position: relative;
}

.z-1 {
    z-index: 1;
}
.bgc-dark-blue {
    background-color: #111216;
}
/* Footer Two */
.footer-cta.footer-two .widget_newsletter {
    border-radius: 7px;
    background-image: none;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.footer-cta.footer-two .footer-bottom {
    border-top: none;
    background: #e9e9ec;
}
.bgc-primary {
    background-color:#173972;
}
.align-items-center {
    align-items: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.footer-top-newsletter {
    padding:40px 80px;
}
.footer-newsletter-content .sub-title{
    color: #F2CE80;
}
.footer-cta{
    padding: 70px 0 0px;
}
.footer-newsletter-content .theme-btn i{
    background-color: #fff;
    color: var(--thm-color-2);
}
.wave-shapes {
    position: absolute;
    z-index: -1;
    top: 0;
    left: -100px;
    width: calc(100% + 100px);
    height: 100%;
}
.wave-shapes .shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-animation: leftRightOne 6s infinite;
    animation: leftRightOne 6s infinite;
}
.wave-shapes .shape.two {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}
.row {
    --bs-gutter-x: 30px;
}

.justify-content-center {
    justify-content: center !important;
}
.bgc-primary {
    background-color: #173972;
}
.footer-top-newsletter {
    -webkit-transform: translateY(-250px);
    -ms-transform: translateY(-250px);
    transform: translateY(-250px);
    background-position: bottom;
    margin-bottom: -250px;
    margin-top: 250px;
    border-radius: 10px;
}
@media only screen and (max-width: 767px) {
    .footer-top-newsletter {
        padding-left: 45px;
        padding-right: 45px;
    }
}
@media only screen and (max-width: 479px) {
    .footer-top-newsletter {
        padding-left: 25px;
        padding-right: 25px;
    }
}
@media only screen and (max-width: 375px) {
    .footer-top-newsletter h2 {
        font-size: 26px;
    }
}
.footer-top-newsletter form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    background: white;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 7px;
    padding-left: 30px;
    height: 68px;
}
@media only screen and (max-width: 479px) {
    .footer-top-newsletter form {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-right: 30px;
    }
}
.footer-top-newsletter form label {
    position: absolute;
    left: 0;
    top: 50%;
    margin: 0;
    right: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.footer-top-newsletter form label i {
    color: #696e7b;
}
.footer-top-newsletter form input {
    border: none;
    border-radius: 0;
    font-weight: 500;
    color: #696e7b;
    padding: 0 0 0 30px;
    background: transparent;
}
.footer-top-newsletter form button {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
@media only screen and (max-width: 479px) {
    .footer-top-newsletter form button {
        width: 100%;
    }
}
.footer-top-newsletter .footer-newsletter-image {
    margin-bottom: -130px;
    max-width: 100%;
}
@media only screen and (min-width: 992px) {
    .footer-top-newsletter .footer-newsletter-image {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        margin-left: auto;
    }
}
.footer-top-newsletter .footer-newsletter-image img {
    width: 100%;
    border-radius: 10px;
}

.copyright-area {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright-area .footer-menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*margin-left: -13px;
    margin-right: -13px;*/
    list-style: none;
    padding-top: 10px;
    margin-bottom: 7px;
}
.copyright-area .footer-menu li {
    font-weight: 500;
    margin: 0 13px 5px;
}
.copyright-area .footer-menu li a:hover{
    color: var(--thm-color-4);
}
@media only screen and (max-width: 479px) {
    .copyright-area .footer-menu li {
        font-weight: 400;
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* Footer Widgets */
.footer-widget {
    margin-bottom: 50px;
}

.footer-title {
    margin-bottom: 25px;
}

@media only screen and (min-width: 376px) {
    .widget_nav_menu .list-style-two {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.widget_nav_menu .list-style-two li {
    margin-bottom: 8px;
}
@media only screen and (min-width: 376px) {
    .widget_nav_menu .list-style-two li:nth-child(odd) {
        width: 55%;
    }
    .widget_nav_menu .list-style-two li:nth-child(even) {
        width: 45%;
    }
}
.widget_nav_menu .list-style-two li a:hover {
    text-decoration: underline;
}
.widget_nav_menu .list-style-two li:before {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background: #afafaf;
}
.widget_nav_menu .list-style-two li:hover:before {
    background: #0066ff;
}

.widget_newsletter {
    padding: 35px 40px 45px;
}
@media only screen and (max-width: 375px) {
    .widget_newsletter {
        padding-left: 25px;
        padding-right: 25px;
    }
}
.widget_newsletter .footer-title {
    margin-bottom: 2px;
}
.widget_newsletter form input {
    border: none;
    margin-top: 10px;
    padding: 14px 30px;
    margin-bottom: 15px;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}
.footer-bottom .copyright-text {
    font-size: 18px;
    color: #293043;
}
.footer-bottom .scroll-top {
    position: absolute;
    top: -24px;
    left: calc(50% - 24px);
    width: 48px;
    height: 48px;
    background: #ff8a00;
    line-height: 48px;
    border-radius: 50%;
    text-align: center;
}

.footer-bottom-menu ul {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: -15px;
    margin-right: -15px;
}
.footer-bottom-menu ul li {
    margin: 0 15px 5px;
}
.footer-bottom-menu ul li a {
    color: #293043;
}
.footer-bottom-menu ul li a:hover {
    text-decoration: underline;
}

.copyright_txt{
    padding-bottom: 0px;
    margin-bottom: 0px;
    color: #eee;
    font-size: 14px;
}
.copyright_txt a{
    color: var(--thm-color-4);   
}
.theme-btn.style-two{
    border: none;
    background-color: inherit;
    box-shadow: none;
    color: #eb9f2b !important;
}
.social-links{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding-left: 0px;
}
.footer-cta p{
    padding-top: 10px;
    padding-bottom: 10px;
}
.social-links li a{
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.10);
    font-size: 16px;
    color: #fff;
}
.social-links li a:hover{
    background-color: var(--thm-primary);
}
.footer-cta .links-list li{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 14px;
}

.footer-cta .links-list li:last-child{
    margin-bottom: 0px;
}

.footer-cta .links-list li a{
    display: inline-block;
    color: #fff;
}

.footer-cta .contact-widget p{
    color: #fff;
    margin-bottom: 25px;
}
.sub-title{
     color: var(--thm-color-2);   
}
.blog-two__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
    opacity: 0.6;
}
.blog-two__bg__shape-1, .blog-two__bg__shape-2 {
  max-width: 100%;
  height: auto;
}
.blog-two__bg__shape-1 {
  position: absolute;
  top: 164px;
  left: -22px;
}
.blog-two__bg__shape-2 {
  position: absolute;
  top: -115px;
  right: -58px;
}
.contact-page__left {
    position: relative;
    display: block;
    margin-right: 60px;
}

.contact-page__img {
    position: relative;
    display: block;
    margin-bottom: 19px;
}

.contact-page__img img {
    width: 100%;
    border-radius: 5px;
}

.contact-page__text {
    font-size: 16px;
    margin: 0;
}

.contact-page__contact-info {
    position: relative;
    margin: 0;
    padding-top: 40px;
    padding-right: 140px;
}

.contact-page__contact-list {
    margin: 0;
}

.contact-page__contact-list li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5eeec;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.contact-page__contact-list li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-page__contact-list li .icon {
    height: 55px;
    width: 55px;
    background: #eb9f2b;
    color: #ffffff;
    font-size: 25px;
    text-align: center;
    line-height: 56px;
    border-radius: 50%;
    transition: all 500ms ease;
}

.contact-page__contact-list li:hover .icon {
    background-color: #111;
    color: #fff;
}



.contact-page__contact-list li .text {
    margin-left: 20px;
    text-align: left;
}

.contact-page__contact-list li .text p {
    font-size: 16px;
    margin: 0;
    line-height: 20px;
}

.contact-page__contact-list li .text a {
    font-size: 20px;
    color: #111;
    font-weight: 800;
    line-height: 30px;
    transition: all 500ms ease;
}

.contact-page__contact-list li .text a:hover {
    color: #eb9f2b;
}

.contact-page__contact-list li .text h5 {
    font-size: 18px;
    color: #111;
    font-weight: 600;
    line-height: 30px;
}

.contact-page__form {
    position: relative;
    display: block;
    margin-left: -30px;
}

.contact-page__main-form {
    position: relative;
    display: block;
    /*background: #ececec;*/
    padding: 20px;
    /*background-size: cover;
    background-image: url(../images/home-appointment-contact-bg-image.png);*/
}

.contact-page__main-form .row {
    --bs-gutter-x: 10px;
}

.contact-page__input-box {
    position: relative;
    display: block;
}
.contact-page__input-box input[type="submit"]{
    padding: 10px 20px;
    background-color: var(--careox-secondary);
    color: #fff;
    border:none;
}
.contact-page__input-box input[type="submit"]:hover{
    padding: 10px 20px;
    background-color: var(--thm-primary);
    color: #fff;
    border:none;
    border: 1px solid #dbd2d2;
    border-radius: 5px;
}
.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"],
.contact-page__input-box input[type="tel"] {
    border: 1px solid #dbd2d2;
    border-radius: 5px;
    height: 57px;
    width: 100%;
    border: none;
    padding: 0 30px;
    margin-bottom: 10px;
    border-radius: 0;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    color: #666;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 7px 0px rgb(0, 0, 0, .07);
}

.contact-page__input-box textarea {
    font-size: 16px;
    height: 192px;
    width: 100%;
    padding: 20px 30px 30px;
    border: none;
    border-radius: 0px;
    outline: none;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 7px 0px rgb(0, 0, 0, .07);
    font-weight: 700;
    padding-top: 10px;
    display: block;
    color: #666;

}

.contact-page__btn {
    margin-top: 10px;
}



/*--------------------------------------------------------------
# Feature
--------------------------------------------------------------*/
.feature-five {
    position: relative;
    padding: 90px 0 10px;
}
.feature-five__inner {
    position: relative;
    z-index: 2;
    border-radius: 6px;
    background: var(--thm-white);
    box-shadow: 0px 4px 60px 4px rgba(0, 0, 0, 0.06);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .feature-five__inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .feature-five__inner {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 45px;
    }
    .feature-five__item{
        width: 100% !important;
        text-align: center;
    }
    .feature-five__item__icon{
        margin: 0px auto 19px auto !important;
    }
}
.feature-five__item {
    position: relative;
    border-right: 1px solid var(--thm-primary);
    padding: 50px 50px 42px;
    width: 50%;
}
@media (max-width: 1199px) {
    .feature-five__item {
        padding: 50px 32px 42px;
    }
}
@media (max-width: 767px) {
    .feature-five__item {
        border-right: none;
        border-bottom: 1px solid var(--thm-primary);
    }
}
.feature-five__item:last-child {
    border: none;
}
.feature-five__item__icon {
    width: 80px;
    height: 80px;
    background-color: var(--thm-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-black);
    font-size: 44px;
    transition: 400ms;
    margin: 0 0 17px;
}
.feature-five__item__icon span {
    display: block;
    transition: all 0.5s ease;
}
.feature-five__item:hover .feature-five__item__icon {
    background-color: var(--thm-color-2);
    color: var(--thm-white);
}
.feature-five__item:hover .feature-five__item__icon span {
    transform: rotateY(180deg);
}
.feature-five__item__title {
    font-weight: 700;
    margin: 0 0 14px;
}
.feature-five__item__text {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    display: block;
    
}
.feature-five__item__rm {
    width: 55px;
    height: 55px;
    background-color: var(--thm-white);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -27px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all ease 0.4s;
}
.feature-five__item__rm::after,
.feature-five__item__rm::before {
    content: "";
    width: 3px;
    height: 22px;
    background-color: var(--thm-black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    transition: all ease 0.4s;
}
.feature-five__item__rm::after {
    transform: rotate(360deg);
}
.feature-five__item__rm:hover {
    background-color: var(--thm-color-2);
}
.feature-five__item__rm:hover::after,
.feature-five__item__rm:hover::before {
    background-color: var(--thm-white);
}


.home-section {
	position: relative;
	z-index: 1;
  	padding-top: 140px;
  	padding-bottom: 150px;
    background-repeat: no-repeat;
    background-position: center bottom;
	background-size: cover;
}

.home-section-overlay{
	width: 100%;
	background: #000;
	opacity: 0.55;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.home-section h1{
    line-height: 1.2;
    color: #121111;
    text-shadow: 1px 1px #efe9e3;
    font-size: 61px;
    font-weight: 700;
    margin-bottom: 30px;
}

.home-section p.hero-text{
	margin-bottom: 35px;
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	color: #fff;
	text-shadow: 1px 1px #3e342e;
}

/* -----  Hero Video PopUp ----- */
.popup-gallery-wrapper{
	position: relative;
	margin-top: 25px;
}

.hero-gallery{
	float: left;
}

.video-icon {
	float: left;
	width: 60px;
	height: 60px;
	background: #fff;
	border:2px solid #fff;
	border-radius: 50% 50%;
	display: inline-block;
	transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.video-icon:before {
    content: '';
    width: 60px;
    height: 60px;
    position: absolute;
    border: 1px solid #fff;
    border-radius: 100%;
    left: 50%;
    margin-left: -30px;
    bottom: 10%;
    margin-bottom: -6px;
    -webkit-animation: doublePulsation 1.9s ease infinite;
    animation: doublePulsation 1.9s ease infinite;
    z-index: 0;
}

@-webkit-keyframes doublePulsation {
     0% {-webkit-transform: scale(1.0, 1.0); opacity: 0.0;}
    50% {opacity: 0.55;}
    100% {-webkit-transform: scale(1.3, 1.3); opacity: 0.0;}
}

@keyframes doublePulsation {
     0% {-webkit-transform: scale(1.0, 1.0); opacity: 0.0;}
    50% {opacity: 0.55;}
    100% {-webkit-transform: scale(1.3, 1.3); opacity: 0.0;}
}

.video-icon:hover{
	background: transparent;
}

.video-icon i {
	font-size: 26px;
	line-height: 56px;
	color:#e52a3d;
	margin-left: 18px;
	transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.video-icon:hover i{
	color: #fff;
}

.popup-video-text{
	float: left;
	padding-top: 15px;
	padding-left: 20px;
	font-size: 18px;
	line-height: 28px;
	color: #fff;
	text-decoration: underline;
    text-shadow: 1px 1px #656565;
}
.why_choose_us_details .btn{
    margin-left: 70px;
}
.btn {
    text-decoration: none;
    font-size: 18px;
    user-select: none;
    color: #FFF;
    display: flex;
    align-items: center;
    padding-left: 0px;
    font-weight: 700;
    font-family: var(--careox-heading-font, "Quicksand", sans-serif);
}

.btn .arrow {
  margin-right: 1rem;
  height: 0.1rem;
  width: 2.1rem;

  position: relative;
  background: #FDF3C0;

  transition: width 0.2s ease;
}

.btn .arrow::before,
.btn .arrow::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;

  background: #FDF3C0;

  height: 0.1rem;
  width: 0.6rem;
}

.btn .arrow::before {
  transform: rotate(45deg);
  transform-origin: right bottom;
}

.btn .arrow::after {
  transform: rotate(-45deg);
  transform-origin: right top;
}
.btn:hover{
    color:#111;
}
.btn:hover .arrow {
  width: 4rem;
}

.pbmit-testimonial-style-1 .pbminfotech-post-item {
    position: relative;
}
.pbmit-testimonial-style-1 .pbminfotech-post-item .pbmit-box-content-wrap {
    padding: 45px;
    background-color: var(--thm-white);
    clip-path: polygon(
        6.726% 100%,
        93.274% 100%,
        93.274% 100%,
        94.364% 99.896%,
        95.399% 99.594%,
        96.364% 99.111%,
        97.245% 98.464%,
        98.029% 97.668%,
        98.701% 96.741%,
        99.249% 95.698%,
        99.657% 94.556%,
        99.912% 93.332%,
        100% 92.042%,
        100% 28.912%,
        100% 28.912%,
        99.732% 25.399%,
        98.988% 22.786%,
        97.863% 20.91%,
        96.447% 19.608%,
        94.835% 18.717%,
        93.119% 18.071%,
        91.39% 17.508%,
        89.742% 16.865%,
        88.268% 15.977%,
        87.061% 14.682%,
        87.061% 14.682%,
        86.147% 12.968%,
        85.483% 11.096%,
        84.946% 9.146%,
        84.409% 7.198%,
        83.749% 5.331%,
        82.839% 3.624%,
        81.556% 2.158%,
        79.775% 1.012%,
        77.369% 0.266%,
        74.215% 0%,
        6.726% 0%,
        6.726% 0%,
        5.636% 0.104%,
        4.601% 0.406%,
        3.636% 0.889%,
        2.755% 1.536%,
        1.971% 2.332%,
        1.299% 3.259%,
        0.751% 4.302%,
        0.343% 5.444%,
        0.088% 6.668%,
        0% 7.958%,
        0% 92.042%,
        0% 92.042%,
        0.088% 93.332%,
        0.343% 94.556%,
        0.751% 95.698%,
        1.299% 96.741%,
        1.971% 97.668%,
        2.755% 98.464%,
        3.636% 99.111%,
        4.601% 99.594%,
        5.636% 99.896%,
        6.726% 100%
    );
    position: relative;
    z-index: -1;
}
.pbmit-testimonial-style-1 .pbminfotech-box-title {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}
.pbmit-testimonial-style-1 .pbminfotech-testimonial-detail {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.6px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--thm-primary);
}
.pbmit-testimonial-style-1 .pbmit-featured-wrapper img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.pbmit-testimonial-style-1 .pbminfotech-box-img {
    margin-right: 20px;
}
.demo-seven .pbmit-testimonial-style-1 .pbminfotech-testimonial-text {
    font-size: 20px;
}
.pbmit-testimonial-style-1 .pbminfotech-testimonial-text {
    font-size: 17px;
    line-height: 30px;
    margin: 0;
    padding: 20px 0 2px;
    border: 0;
    font-weight: normal;
}
.pbmit-testimonial-style-1 .pbminfotech-testimonial-text p {
    margin-bottom: 0;
}
.pbmit-testimonial-style-1 .pbminfotech-box-star-ratings {
    color: rgba(3, 27, 78, 0.5);
}
.pbmit-testimonial-style-1 .pbminfotech-box-star-ratings .pbmit-active {
    color: #eb9f2b;
}
.demo-seven .pbmit-testimonial-style-1 .pbminfotech-box-star-ratings .pbmit-active {
    color: #fdcf00;
}
.pbmit-testimonial-style-1 .pbminfotech-box-star-ratings i:before {
    margin: 0;
}
.pbmit-testimonial-style-1 .pbminfotech-star-ratings-text {
    font-size: 30px;
    line-height: 26px;
    font-weight: 600 !important;
    font-style: italic !important;
    color: var(--thm-black);
    letter-spacing: -0.25px;
}
.pbmit-testimonial-secondary-color .pbmit-testimonial-style-1 .pbminfotech-post-item::before {
    background-color: var(--thm-color-4);
}
.pbmit-timelist-list{
    padding-left: 0px;
    list-style: none;
}
.pbmit-ihbox-content{
    margin-bottom: 10px;
    color: #fff;
    line-height: 25px;
    font-size: 17px;
}
.vc_custom_heading{
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.pbmit-bg-color-globalcolor .pbmit-ihbox-style-1 .pbmit-ihbox-icon-wrapper, .pbmit-bg-color-globalcolor .pbmit-ihbox-style-1 h2 {
    color: var(--white);
}

.pbmit-ihbox-style-1 .pbmit-ihbox-icon-wrapper {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 20px;
    color: var(--pbmit-global-color);
}


.pricing-section-three{
	background-image: url(../images/homepage-3/bg/pattern-1.png);
    background-position: center center;
    background-repeat: repeat;
}

.testimonial-section-three{
	background-image: url(../images/backgrounds/slide2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 60px;
    padding-bottom: 50px;
}
.testimonial-section-three::before{
    
}
.testimonial-section-three .swiper-slider{
	margin-left: 60px;
	padding-bottom: 0;
}
.testimonial-section-three .swiper-pagination-bullets {
	text-align: right;
    bottom: 60px;
    right: 40px;
}
.pbmit-testimonial-style-1{
    position: relative;
    margin-top: 50px;
}
.pbmit-testimonial-style-1 .pbminfotech-box-img img{
    border-radius: 50%;
    height: 80px;
    width: 80px;
}
.pbmit-testimonial-style-1 .pbminfotech-box-content{
    background-color: #fff;
    border-radius: 4px;
    padding: 50px 40px 45px;
}
.pbmit-testimonial-style-1 .pbminfotech-box-desc{
    padding-bottom: 10px;
    padding-top: 10px;
}
.pbmit-testimonial-style-1 .pbminfotech-box-star-ratings{
    margin-bottom: 0px;
}
.pbmit-testimonial-style-1 .pbminfotech-box-author {
    position: relative;
    padding-left: 0px;
}
.pbmit-testimonial-style-1 .pbminfotech-box-title{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0;
    margin-top: 15px;
    color: var(--thm-color-4);
    font-style: italic;
}
.pbmit-testimonial-style-1 span.pbmit-designation {
    font-size: 13px;
}
.pbmit-testimonial-style-1 blockquote{
    font-size: 20px;
    line-height: 30px;
    font-weight: normal;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
}
.pbmit-testimonial-style-1 blockquote p{
	margin-bottom: 0;
	font-size: 17px;
}
.pbmit-testimonial-style-1 .pbminfotech-box-desc{
    position: relative;
}
.pbmit-testimonial-style-1:after {
    position: absolute;
    content: "\e906";
    font-family: 'careox' !important;
    font-size: 40px;
    line-height: 85px;
    top: -40px;
    left: 40px;
    color: var(--white);
    text-align: center;
    width: 85px;
    height: 85px;
    border-radius: 50%;
	background-color: var(--primary);
}
.pbmit-testimonial-style-1 .pbminfotech-box-star-ratings i.pbmit-active{
	color: #ffaa01;
	font-size: 15px;
}
.pbmit-testimonial-style-1 .pbminfotech-box-star-ratings i {
    color: #ccc;
    font-size: 15px;
}



.rts-section-gap{
    padding: 90px 0;
}
.left-pd-image-bt-content.small-cn .stratagy-wrapper {
    gap: 50px !important;
}

.left-pd-image-bt-content .title {
    color: var(--primary);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.left-pd-image-bt-content p.dsic {
    color: #74787C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.left-pd-image-bt-content .bottom-content ul{
    padding-left: 15px;
}
.rts-light-mood .left-pd-image-bt-content .bottom-content .title{
    color: #111;
}
.left-pd-image-bt-content .bottom-content h3.title{
    font-size: 30px;
}
.left-pd-image-bt-content .bottom-content .title {
    color: var(--careox-black);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    position: relative;
    max-width: max-content;
    margin-bottom: 20px;
}

.left-pd-image-bt-content .bottom-content .title::after {
    position: absolute;
    left: 0;
    width: 100%;
    content: "";
    height: 1px;
    width: 124px;
    background: #ecebeb;
    bottom: -13px;
}

.left-pd-image-bt-content .bottom-content .stratagy-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .left-pd-image-bt-content .bottom-content .stratagy-wrapper {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 767px) {
    .left-pd-image-bt-content .bottom-content .stratagy-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
}


/*-------------------------
    Profile Details 
--------------------------*/
.instructor-profile-left {
    background: #f5f5f5;
    border-radius: 5px;
    padding: 40px 20px;
}
.instructor-profile-left img {
    border-radius: 10px;
}
.instructor-profile-left .inner {
    text-align: center;
}
.instructor-profile-left .inner .thumbnail {
    width: 230px;
    height: 230px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.instructor-profile-left .inner .thumbnail img {
    border-radius: 100%;
    width: 100%;
    height: 100%;
}
.instructor-profile-left .inner .content .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 2px;
    color: #111;
}
.instructor-profile-left .inner .content .subtitle {
    font-weight: 600;
    line-height: 26px;
    color: #00a2d9;
    display: block;
    margin-bottom: 15px;
}
.instructor-profile-left .inner .content .contact-with-info {
    margin-bottom: 25px;
}
.instructor-profile-left .inner .content .contact-with-info p {
    margin-bottom: 10px;
}
.instructor-profile-left .inner .content .contact-with-info p span {
    font-weight: 600;
    color: var(--primary);
    margin-right: 7px;
}
.instructor-profile-left .inner .content .contact-with-info p a {
    color: var(--thm-black);
}
.instructor-profile-left .inner .content .contact-btn {
    margin-top: 40px;
}
.instructor-profile-left .inner .content .contact-with-info .social-links li a{
    background-color: rgba(19, 19, 19, 0.41);
    width: 40px;
    height: 40px;
    line-height: 42px;
}
.instructor-profile-left .inner .content .contact-with-info .social-links li a:hover{
    background-color: var(--thm-primary);
    width: 40px;
    height: 40px;
    line-height: 42px;
}
@media only screen and (max-width:767px) {
    .course-meta li:after {
        display: none
    }
}

.edu-accordion .accordion-body ul {
    padding-left: 0px;
}
.accordion-body ul{
    list-style: none;
}
.accordion-body ul li {
    font-weight: 600;
    color: var(--primary);
    padding-left: 35px;
    position: relative;
    margin-bottom: 12px;
    margin-top: 12px
}

.accordion-body ul li:before {
    content: "\f14a";
    font-family: var(--fa-style-family,"Font Awesome 6 Pro");
    color: #c32228;
    font-size: 19px;
    position: absolute;
    left: 0;
    top: -3px
}
.course-lesson h3,
.course-lesson h4,
.course-lesson h5,
.course-lesson h6{
    color: var(--primary);
}
.course-tab-content .accordion-body .course-lesson ul li{
    padding: 2px 30px !important;
}
.course-tab-content ul li::before{
    top: inherit !important;
}
.course-meta li:last-child:after {
    display: none
}
.product-description-nav.nav{
    flex-direction: row;
}
.heading-title{
    color: var(--primary);
}
.course-meta li i {
    padding-right: 14px;
    font-size: 24px;
    color: #c32228
}
.product-description-nav {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 35px
}


.sticky-wrapper {
    position: relative; /* default */
    transition: none;
}



.single-team-box .thumb {
    overflow: hidden;
}

.single-team-box .thumb img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.single-team-box .thumb img {
    width: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single-team-box .content {
    text-align: center;
    background: #fff;
    margin-left: 20px;
    margin-right: 20px;
    -webkit-box-shadow: 0 0 20px #acacac54;
    box-shadow: 0 0 20px #acacac54;
    padding: 22px 0;
    margin-top: -65px;
    position: relative;
    z-index: 1;
}

.single-team-box .content .social-links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    visibility: hidden;
    background: #fff;
    padding-top: 35px;
    padding-bottom: 5px;
    opacity: 0;
    visibility: hidden;
    width: 0%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 100%;
}
.single-team-box .content .title{
    margin-bottom: 0px;
}
.single-team-box .content .title a{
    font-size: 20px;
    font-weight: 600;
    color: #223645;
    margin-bottom: 0px;
}

.single-team-box .content .designation {
    color: #B51C16;
    font-weight: 500;
    font-size: 14px;
}

.single-team-box:hover .content {
    border-radius: 0px 0px 10px 10px;
}

.single-team-box:hover .content .social-links {
    opacity: 1;
    visibility: visible;
    top: -50px;
    border-radius: 10px 10px 0px 0px;
}
.section-heading .sub-title {
    font-size: 14px;
    text-transform: uppercase;
    color: #7A8A9E;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.country-one .pbmit-testimonial-style-1 .pbminfotech-post-item {
    position: relative;
}
.country-one .pbmit-testimonial-style-1 .pbminfotech-post-item .pbmit-box-content-wrap {
    padding: 45px;
    background-color: var(--thm-white);
    clip-path: polygon(
        6.726% 100%,
        93.274% 100%,
        93.274% 100%,
        94.364% 99.896%,
        95.399% 99.594%,
        96.364% 99.111%,
        97.245% 98.464%,
        98.029% 97.668%,
        98.701% 96.741%,
        99.249% 95.698%,
        99.657% 94.556%,
        99.912% 93.332%,
        100% 92.042%,
        100% 28.912%,
        100% 28.912%,
        99.732% 25.399%,
        98.988% 22.786%,
        97.863% 20.91%,
        96.447% 19.608%,
        94.835% 18.717%,
        93.119% 18.071%,
        91.39% 17.508%,
        89.742% 16.865%,
        88.268% 15.977%,
        87.061% 14.682%,
        87.061% 14.682%,
        86.147% 12.968%,
        85.483% 11.096%,
        84.946% 9.146%,
        84.409% 7.198%,
        83.749% 5.331%,
        82.839% 3.624%,
        81.556% 2.158%,
        79.775% 1.012%,
        77.369% 0.266%,
        74.215% 0%,
        6.726% 0%,
        6.726% 0%,
        5.636% 0.104%,
        4.601% 0.406%,
        3.636% 0.889%,
        2.755% 1.536%,
        1.971% 2.332%,
        1.299% 3.259%,
        0.751% 4.302%,
        0.343% 5.444%,
        0.088% 6.668%,
        0% 7.958%,
        0% 92.042%,
        0% 92.042%,
        0.088% 93.332%,
        0.343% 94.556%,
        0.751% 95.698%,
        1.299% 96.741%,
        1.971% 97.668%,
        2.755% 98.464%,
        3.636% 99.111%,
        4.601% 99.594%,
        5.636% 99.896%,
        6.726% 100%
    );
    position: relative;
    z-index: -1;
}
.country-one.white-bg .pbmit-testimonial-style-1 .pbminfotech-post-item .pbmit-box-content-wrap {
    padding: 45px;
    background-color: var(--careox-gray);
    clip-path: polygon(
        6.726% 100%,
        93.274% 100%,
        93.274% 100%,
        94.364% 99.896%,
        95.399% 99.594%,
        96.364% 99.111%,
        97.245% 98.464%,
        98.029% 97.668%,
        98.701% 96.741%,
        99.249% 95.698%,
        99.657% 94.556%,
        99.912% 93.332%,
        100% 92.042%,
        100% 28.912%,
        100% 28.912%,
        99.732% 25.399%,
        98.988% 22.786%,
        97.863% 20.91%,
        96.447% 19.608%,
        94.835% 18.717%,
        93.119% 18.071%,
        91.39% 17.508%,
        89.742% 16.865%,
        88.268% 15.977%,
        87.061% 14.682%,
        87.061% 14.682%,
        86.147% 12.968%,
        85.483% 11.096%,
        84.946% 9.146%,
        84.409% 7.198%,
        83.749% 5.331%,
        82.839% 3.624%,
        81.556% 2.158%,
        79.775% 1.012%,
        77.369% 0.266%,
        74.215% 0%,
        6.726% 0%,
        6.726% 0%,
        5.636% 0.104%,
        4.601% 0.406%,
        3.636% 0.889%,
        2.755% 1.536%,
        1.971% 2.332%,
        1.299% 3.259%,
        0.751% 4.302%,
        0.343% 5.444%,
        0.088% 6.668%,
        0% 7.958%,
        0% 92.042%,
        0% 92.042%,
        0.088% 93.332%,
        0.343% 94.556%,
        0.751% 95.698%,
        1.299% 96.741%,
        1.971% 97.668%,
        2.755% 98.464%,
        3.636% 99.111%,
        4.601% 99.594%,
        5.636% 99.896%,
        6.726% 100%
    );
    position: relative;
    z-index: -1;
}
.country-one .pbmit-testimonial-style-1 .pbminfotech-post-item{
    font: "Font Awesome 5 Free" !important;
}
.country-one .pbmit-testimonial-style-1::after {
    content: none;
}
.country-one .pbmit-testimonial-style-1 .pbminfotech-post-item::before {
    font-family: "Font Awesome 5 Free";
    content: "\f5c2";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 15px;
    line-height: 15px;
    color: var(--thm-white);
    background-color: var(--thm-color-2);
    border-radius: 50%;
    padding: 17px 16px;
}
.country-one .pbmit-testimonial-style-1 .pbminfotech-box-title{
    margin-top: 0px;
    margin-bottom: 7px;
}
.cta-two {
    position: relative;
    background-color: #716868;
    padding: 59px 0 48px;
}
.cta-two__shape.v2{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 70px;
    margin: 0 0;
    animation: shapeMove 3s linear 0s infinite;
    background-position: inherit;
    background-repeat: inherit;
}
.cta-two__shape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    animation: shapeMove 3s linear 0s infinite;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .cta-two__shape {
        display: none;
    }
}

.cta-two .sec-title {
    padding: 0;
}

.cta-two .sec-title__tagline {
    color: var(--careox-white, #fff);
}

.cta-two .sec-title__tagline__border {
    background-color: var(--careox-white, #fff);
}

.cta-two .sec-title__title {
    color: var(--careox-white, #fff);
}

@media (max-width: 991px) {
    .cta-two .sec-title__title {
        font-size: 24px;
        line-height: 32px;
    }
}

.cta-two__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    margin-left: auto;
    z-index: 2;
}

@media (max-width: 767px) {
    .cta-two__button {
        margin: 30px 0 0;
        justify-content: flex-start;
    }
}

.cta-two__button img {
    width: 65px;
    height: 66px;
    animation: shrinkAnim 3s ease 0s infinite;
}

@media (max-width: 991px) {
    .cta-two__button img {
        display: none;
    }
}

.cta-two__button .careox-btn {
    color: var(--careox-black, #122f2a);
}

.cta-two__button .careox-btn:hover {
    color: var(--careox-white, #fff);
}

.cta-two__button .careox-btn::before {
    background-color: var(--careox-white, #fff);
}

.cta-two__button .careox-btn::after {
    border-color: var(--careox-white, #fff);
}
.no-bg{
    background: none !important;
}
.instructor-profile-left.v2{
    padding-top: 0px;
    padding-left: 0px;
}

.country-one__carouselv3 {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
}

.country-one__carouselv3 .item {
    margin: 0 10px; /* Adjust this for spacing */
}
.white-bg{
    background-color: var(--careox-white) !important;
}
.grey-bg{
    background-color: var(--careox-gray) !important;
}
.theme_color{
    color: #e2672b;
}
.modal{
    z-index: 9999;
}


.event-details_content {
    position: relative;
    display: block;
    padding-right: 10px;
}

.event-details-image-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.event-details-image-box img {
    width: 100%;
}

.event-details-image-box .category {
    position: absolute;
    left: 50px;
    bottom: 50px;
    background: var(--thm-color-2);
    padding: 10px 20px;
    border-radius: 30px;
}

.event-details-image-box .category h6 {
    color: #ffffff;
    font-size: 13px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0px;
}


.event-details-text-box {
    position: relative;
    display: block;
    padding: 53px 40px 60px;
    box-shadow: 0px 5px 24px 6px rgba(0, 0, 0, 0.06);
}

.event-details-text-box h2 {
    color: #222222;
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
}

.event-details-text-box .event-info {
    position: relative;
    padding-top: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.event-details-text-box .event-info li {
    position: relative;
    display: block;
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
    width: 100%;
    border-right: 1px solid #e3e9f4;
    text-align: center;
}

.event-details-text-box .event-info li:last-child {
    border-right: none;
}

.event-details-text-box .event-info li .icon {
    position: relative;
    display: inline-block;
    height: 75px;
    z-index: 1;
}

.event-details-text-box .event-info li .icon .overlay-icon {
    position: absolute;
    top: 0px;
    left: -10px;
    bottom: -10px;
    right: -20px;
    z-index: -1;
}

.event-details-text-box .event-info li .text {
    position: relative;
    display: block;
    padding-top: 10px;
}

.event-details-text-box .event-info li .text p {
    color: #222222;
    margin: 0;
}

.event-details-text-box .event-info li .text h3 {
    color: #222222;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin: 21px 0 0;
}

.tp-event-details__contact-box {
    box-shadow: 1px 1.732px 40px 0px rgba(23, 19, 4, 0.04);
    padding: 50px;
    position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .tp-event-details__contact-box {
        padding: 50px 20px;
    }
}
.tp-event-details__contact-box::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--thm-color-2);
}
.tp-event-details__contact-box ul li:not(:last-child) {
    padding-bottom: 25px;
}
.tp-event-details__item-2 {
    padding: 50px 20px;
}
.tp-event-details__button {
    line-height: 0;
}
.tp-event-details__item-2-title {
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    padding-bottom: 10px;
}

.tp-event-details__contact-box ul{
    list-style: none;
    padding-left: 15px;
}
.tp-event-details__contact-icon span {
    font-size: 24px;
    color: #087874;
    margin-right: 25px;
    margin-top: 3px;
    display: inline-block;
}



.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #e2672b;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 50px;
    height: 3px;
    background-color: #121111;
}
.community_header{
    margin-top: 20px;
}
/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #e2672b;
    padding-bottom: 10px;
}

.hero-section p {
}
.text-center .section-title::after{
    left: 48%;
}
/* Services Section */
.services-section {
    padding: 5rem 0;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #121111;
    transition: all 0.3s ease;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card:hover .icon-box {
    background: #e2672b;
    color: #fff;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #fff;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 120px;
    z-index: 1;
}

/* Testimonials Section */
.testimonial-card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Appointment Section */
.appointment-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--careox-secondary);
    width: 30px;
}
.contact-info h6{
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    display: block;
}

.testimonials_box h6{
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 5px;
    color: #DD7B61;
    display: block;
}
/* Map Section */
.map-container {
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background-color: #e2672b;
    color: #fff;
    padding: 4rem 0 0;
}

footer h5, footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #121111;
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #121111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.back-to-top:hover {
    background: #e2672b;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

.bg-primary{
    background-color:var(--careox-secondary) !important;
}
.text-primary{
    color:var(--careox-secondary) !important;
}