/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

:root {
    --cilox-font: "Instrument Sans", sans-serif;
    --cilox-heading-font: "Instrument Sans", sans-serif;
    --cilox-text: #797b81;
    --cilox-text-rgb: 121, 123, 129;
    --cilox-text2: #75767a;
    --cilox-text2-rgb: 117, 118, 122;
    --cilox-base: #f5bf3e;
    --cilox-base-rgb: 245, 191, 62;
    --cilox-black: #18191c;
    --cilox-black-rgb: 24, 25, 28;
    --cilox-black2: #000;
    --cilox-black2-rgb: 0, 0, 0;
    --cilox-white: #fff;
    --cilox-white-rgb: 255, 255, 255;
    --cilox-border-color: #e2e4e9;
    --cilox-border-color-rgb: 226, 228, 233;
    --cilox-letter-space: 0.1em;
    --cilox-letter-space-xl: 0.2em;
}


/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cilox-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-white, #fff);
    letter-spacing: 0.1em;
    padding: 21px 38px;
    font-size: 14px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3;
    border-radius: 99rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}

.cilox-btn::before,
.cilox-btn::after {
    --skew: 0.2;
    background: var(--cilox-black, #18191c);
    content: "";
    display: block;
    height: 102%;
    left: calc(-50% - 50% * var(--skew));
    pointer-events: none;
    position: absolute;
    top: -104%;
    transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
    transition: transform 0.2s ease;
    width: 100%;
    z-index: -1;
}

.cilox-btn::after {
    --progress: 0%;
    left: calc(50% + 50% * var(--skew));
    top: 102%;
    z-index: -1;
}

.cilox-btn__container {
    overflow: hidden;
    position: relative;
    display: block;
}

.cilox-btn__text {
    display: block;
    position: relative;
}

.cilox-btn:hover {
    color: var(--cilox-black, #18191c);
}

.cilox-btn:hover .cilox-btn__text {
    -webkit-animation: move-up-alternate 0.4s forwards;
    animation: move-up-alternate 0.4s forwards;
}

.cilox-btn:hover::after {
    --progress: -102%;
}

.cilox-btn:hover::before {
    --progress: 100%;
}

.cilox-btn--white:hover {
    color: var(--cilox-white, #fff);
}

.sec-title {
    position: relative;
    line-height: 1;
    margin-bottom: 50px;
}

.sec-title__image {
    margin-bottom: 10px;
}

.sec-title__image img {
    object-fit: cover;
    display: block;
}

.sec-title__tagline {
    margin: 0;
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.sec-title__title {
    font-size: 40px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 991px) {
    .sec-title__title {
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .sec-title__title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .sec-title__title {
        font-size: 35px;
    }
}

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


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

body {
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    color: var(--cilox-text, #797b81);
    font-size: 16px;
    line-height: 1.875;
    font-weight: 500;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--cilox-base, #f5bf3e);
    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(--cilox-heading-font, "Instrument Sans", sans-serif);
    color: var(--cilox-black, #18191c);
    line-height: 1.2;
}

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

p {
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    color: var(--cilox-text, #797b81);
    font-size: 16px;
    line-height: 1.875;
}

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

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

.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-x-10 {
    --bs-gutter-x: 10px;
}

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

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

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

.section-space {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 767px) {
    .section-space {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 575px) {
    .section-space {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.section-space-top {
    padding-top: 120px;
}

@media (max-width: 767px) {
    .section-space-top {
        padding-top: 100px;
    }
}

@media (max-width: 575px) {
    .section-space-top {
        padding-top: 80px;
    }
}

.section-space-bottom {
    padding-bottom: 120px;
}

@media (max-width: 767px) {
    .section-space-bottom {
        padding-bottom: 100px;
    }
}

@media (max-width: 575px) {
    .section-space-bottom {
        padding-bottom: 80px;
    }
}

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

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

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

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

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

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

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

.preloader {
    position: fixed;
    background-color: var(--cilox-black, #18191c);
    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-percentage {
    position: absolute;
}

.scroll-top {
    height: 60px;
    width: 60px;
    background-color: var(--cilox-white, #fff);
    border-radius: 50%;
    position: fixed;
    bottom: 25px;
    right: 30px;
    transform: scale(0);
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    z-index: 100;
}

.scroll-top.active {
    bottom: 30px;
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    animation: 500ms ease-in-out 0s normal none 1 running scroll-Top;
    transition: 0.3s;
}

.scroll-top-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-white, #fff);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 600;
}

.scroll-top-value i {
    font-size: 20px;
}

@-webkit-keyframes scroll-Top {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes scroll-Top {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}


/* post paginations */

.post-pagination {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

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

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

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

.post-pagination a {
    display: flex;
    width: 50px;
    height: 50px;
    background-color: var(--cilox-white, #fff);
    border: 1px solid var(--cilox-border-color, #e2e4e9);
    align-items: center;
    justify-content: center;
    color: var(--cilox-black, #18191c);
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-size: 20px;
    font-weight: 400;
    border-radius: 50%;
    transition: all 400ms ease;
}

.post-pagination a.active,
.post-pagination a:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-white, #fff);
    border-color: var(--cilox-base, #f5bf3e);
}

.post-pagination .dots {
    color: var(--cilox-black, #18191c);
    font-size: 16px;
    font-weight: 500;
    margin: 0 13px;
}

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

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

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

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

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

.cilox-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
    color: var(--cilox-white, #fff);
    background-color: var(--cilox-base, #f5bf3e);
    border-color: var(--cilox-base, #f5bf3e);
}

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

.cilox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background-color: var(--cilox-text2, #75767a);
    border: none;
    position: relative;
    padding: 0;
    border: none;
    outline: none;
    margin: 0;
    transition: all 300ms ease;
}

.cilox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
    width: 24px;
    height: 24px;
    position: absolute;
    content: "";
    left: -7px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    border: 1px solid var(--cilox-base, #f5bf3e);
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

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

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

.cilox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover::after,
.cilox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
    transform: scale(1);
}

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

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

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


/* progress bar */

.progress-box+.progress-box {
    margin-top: 15px;
}

.progress-box__title {
    margin-bottom: 7px;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 400;
    font-size: 14px;
    color: var(--cilox-black, #18191c);
}

.progress-box__bar {
    position: relative;
    width: 100%;
    height: 6px;
    background-color: var(--cilox-text2, #75767a);
}

.progress-box__bar__inner {
    position: relative;
    position: absolute;
    width: 0%;
    height: 100%;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    background-color: var(--cilox-base, #f5bf3e);
    border-radius: inherit;
    transition: all 800ms linear;
}

.progress-box__number {
    position: absolute;
    bottom: calc(100% + 3px);
    right: 0;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 400;
    font-size: 14px;
    color: var(--cilox-black, #18191c);
}


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

.blog-card {
    position: relative;
    transition: all 0.4s ease-in-out;
}

.blog-card__image {
    position: relative;
    overflow: hidden;
    display: block;
}

.blog-card__image img {
    transition: all 0.4s ease-in-out;
    background-size: cover;
    width: 100%;
    transform: scale(1);
}

.blog-card__image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0;
    left: 50%;
    top: 50%;
    background-color: hsla(0, 0%, 100%, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.blog-card__content {
    background-color: var(--cilox-white, #fff);
    border-top: 4px solid var(--cilox-base, #f5bf3e);
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -45px;
    position: relative;
    z-index: 3;
    padding: 1px 20px 30px;
    position: relative;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .blog-card__content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.blog-card__date {
    margin-left: auto;
    margin-right: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--cilox-base, #f5bf3e);
    font-size: 14px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: -40px;
}

.blog-card__date span {
    display: block;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .blog-card__date {
        width: 50px;
        height: 50px;
        margin-top: -30px;
    }
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.blog-card__meta li {
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    line-height: 1.286;
    text-align: center;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card__meta li a {
    color: inherit;
}

.blog-card__meta li a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.blog-card__meta li i {
    color: var(--cilox-base, #f5bf3e);
    margin-right: 4px;
}

.blog-card__title {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    line-height: 1.68;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 23px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .blog-card__title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

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

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

.blog-card__title a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.blog-card__btn {
    text-align: center;
}

.blog-card__btn .cilox-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #e2e4e9;
    padding: 0 0px 0 30px;
    gap: 20px;
    font-size: 12px;
    color: #797b81;
    font-weight: bold;
    letter-spacing: normal;
    text-transform: uppercase;
    line-height: 1.2;
}

.blog-card__btn .cilox-btn::after,
.blog-card__btn .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.blog-card__btn .cilox-btn i {
    width: 39px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2e4e9;
    color: var(--cilox-text, #797b81);
    font-size: 14px;
    font-weight: 900;
    transition: all 0.4s ease-in-out;
}

.blog-card__btn .cilox-btn:hover {
    border-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.blog-card__btn .cilox-btn:hover i {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-base, #f5bf3e);
}

.blog-card:hover .blog-card__content {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card:hover .blog-card__image::after {
    height: 250%;
    transition: all 0.6s linear;
    background-color: rgba(0, 0, 0, 0);
}

.blog-card.blog-list .blog-card__content {
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .blog-card.blog-list .blog-card__content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.blog-card.blog-list .blog-card__title {
    font-size: 30px;
    line-height: 110%;
}

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

@media (max-width: 575px) {
    .blog-card.blog-list .blog-card__title {
        font-size: 20px;
    }
}

.blog-card.blog-list .blog-card__meta {
    margin-bottom: 15px;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .blog-card.blog-list .blog-card__meta {
        margin-bottom: 15px;
    }
}

.blog-card.blog-list .blog-card__date {
    margin-bottom: 18px;
}

.blog-card-two {
    position: relative;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.blog-card-two__image {
    position: relative;
    overflow: hidden;
    display: block;
}

.blog-card-two__image img {
    transition: all 0.4s ease-in-out;
    background-size: cover;
    width: 100%;
    transform: scale(1);
}

.blog-card-two__image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0;
    left: 50%;
    top: 50%;
    background-color: hsla(0, 0%, 100%, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.blog-card-two__content {
    background-color: var(--cilox-white, #fff);
    border-top: 4px solid var(--cilox-base, #f5bf3e);
    margin-right: 15px;
    margin-top: -45px;
    position: relative;
    z-index: 3;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1499px) and (min-width: 1199px) {
    .blog-card-two__content {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .blog-card-two__content {
        padding: 30px 20px;
    }
}

.blog-card-two__date-box {
    background-color: var(--cilox-white, #fff);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    padding: 0 0px 10px 10px;
}

.blog-card-two__date {
    margin-left: auto;
    margin-right: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--cilox-base, #f5bf3e);
    font-size: 14px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.blog-card-two__date span {
    display: block;
}

.blog-card-two__meta {
    display: flex;
    align-items: start;
    gap: 20px;
    justify-content: start;
    margin-bottom: 20px;
}

.blog-card-two__meta li {
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    line-height: 1.286;
    text-align: center;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-two__meta li a {
    color: inherit;
}

.blog-card-two__meta li a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.blog-card-two__meta li i {
    color: var(--cilox-base, #f5bf3e);
    margin-right: 4px;
}

.blog-card-two__title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.68;
    text-transform: uppercase;
    margin-bottom: 25px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .blog-card-two__title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .blog-card-two__title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

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

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

.blog-card-two__title a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.blog-card-two__btn {
    text-align: start;
}

.blog-card-two__btn .cilox-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #e2e4e9;
    padding: 0 0px 0 30px;
    gap: 20px;
    font-size: 12px;
    color: #797b81;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.blog-card-two__btn .cilox-btn::after,
.blog-card-two__btn .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.blog-card-two__btn .cilox-btn i {
    width: 39px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2e4e9;
    color: var(--cilox-text, #797b81);
    font-size: 14px;
    font-weight: 900;
    transition: all 0.4s ease-in-out;
}

.blog-card-two__btn .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
}

.blog-card-two__btn .cilox-btn:hover i {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-base, #f5bf3e);
}

.blog-card-two:hover .blog-card-two__content {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.blog-card-two:hover .blog-card-two__image img {
    transform: scale(1.1);
}

.blog-card-two:hover .blog-card-two__image::after {
    height: 250%;
    transition: all 0.6s linear;
    background-color: rgba(0, 0, 0, 0);
}

@media (min-width: 1500px) {
    .blog-one--one .container {
        max-width: 1500px;
    }
}

@media (max-width: 991px) and (min-width: 767px),
(max-width: 500px) {
    .blog-one--three .blog-card__content {
        padding: 1px 16px 30px;
    }
    .blog-one--three .blog-card__content .blog-card__title {
        font-size: 17px;
    }
}

.team-card {
    position: relative;
    z-index: 1;
    padding: 0px 30px;
}

.team-card__image {
    position: relative;
    z-index: 1;
}

.team-card__image__item {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-card__image__item img {
    object-fit: cover;
    width: 100%;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
}

.team-card__image__item::before {
    content: "";
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(254, 198, 63, 0) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(254, 198, 63, 0) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(254, 198, 63, 0) 100%);
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    visibility: visible;
    opacity: 1;
}

.team-card__image__item::after {
    content: "";
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(24, 25, 28) 0%, rgba(24, 25, 28, 0) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(24, 25, 28) 0%, rgba(24, 25, 28, 0) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(24, 25, 28) 0%, rgba(24, 25, 28, 0) 100%);
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.team-card__image::after {
    content: "";
    position: absolute;
    left: -30px;
    right: -30px;
    bottom: 20px;
    top: 20px;
    background-color: var(--cilox-black, #18191c);
    clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.team-card__hover__btn {
    position: relative;
    z-index: 2;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cilox-base, #f5bf3e);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    color: var(--cilox-black, #18191c);
    font-size: 18px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.team-card__hover__btn:hover {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.team-card__hover {
    position: relative;
    z-index: 1;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}

.team-card__hover:hover .team-card__hover__social {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0px);
}

.team-card__hover__social {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(-40px);
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--cilox-black, #18191c);
    width: 40px;
    height: auto;
    padding: 15px 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.team-card__hover__social a {
    color: var(--cilox-white, #fff);
    line-height: normal;
    transition: all 0.4s ease-in-out;
}

.team-card__hover__social a i {
    line-height: normal;
}

.team-card__hover__social a:hover {
    color: var(--cilox-base, #f5bf3e);
}

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

.team-card__hover__social::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 17px;
    height: 10px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: var(--cilox-black, #18191c);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.team-card__title {
    font-size: 20px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 5px;
}

.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(--cilox-base, #f5bf3e);
}

.team-card__designation {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 0;
}

.team-card:hover .team-card__image__item::before {
    visibility: hidden;
    opacity: 0;
}

.team-card:hover .team-card__image__item::after {
    visibility: visible;
    opacity: 1;
}

.team-card:hover .team-card__image img {
    transform: scale(1.1);
}

.team-card:hover .team-card__image::after {
    background-color: var(--cilox-base, #f5bf3e);
}

.team-details {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #e2e4e9;
}

.team-details__image img {
    object-fit: cover;
    width: 100%;
}

.team-details__title {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 12px;
}

.team-details__designation {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--cilox-text, #797b81);
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
}

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

.team-details__social a {
    color: var(--cilox-black, #18191c);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f3f6;
    font-size: 16px;
    transition: all 0.4s ease-in-out;
}

.team-details__social a:hover {
    color: var(--cilox-base, #f5bf3e);
    background-color: var(--cilox-white, #fff);
}

.team-details__text {
    margin-bottom: 18px;
}

.team-details__info__title {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 35px;
    font-weight: 700;
}

.team-details__info__list {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
    margin-bottom: 33px;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .team-details__info__list {
        grid-template-columns: auto;
    }
}

.team-details__info__list li {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    line-height: 1.2;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-details__info__list li i {
    color: var(--cilox-base, #f5bf3e);
}

.team-details__skill .progress-box__title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 2.5;
    margin-bottom: 0;
}

.team-details__skill .progress-box__number {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 2.5;
    margin-bottom: 0;
    color: var(--cilox-text, #797b81);
}

.team-details__skill .progress-box__bar {
    height: 10px;
    width: 100%;
    background-color: #f2f3f6;
}

.team-certificates__title {
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2;
    font-size: 30px;
    margin-bottom: 30px;
}

.team-certificates__text {
    margin-bottom: 0;
    font-weight: 600;
}

.team-certificates__img {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-certificates__img img {
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s ease-in-out;
}

.team-certificates__img img:hover {
    filter: grayscale(0%);
}

.team-form-one {
    position: relative;
    z-index: 1;
}

.team-form-one .bootstrap-select>.dropdown-toggle,
.team-form-one textarea,
.team-form-one input {
    background-color: var(--cilox-white, #fff) !important;
    position: relative;
    height: 60px;
    border: 1px solid var(--cilox-white, #fff) !important;
    outline: none;
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    line-height: 1.2;
    font-weight: 500;
}

.team-form-one .bootstrap-select>.dropdown-toggle::placeholder,
.team-form-one textarea::placeholder,
.team-form-one input::placeholder {
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    line-height: 1.2;
    font-weight: 500;
    text-transform: capitalize;
}

.team-form-one .bootstrap-select>.dropdown-toggle:focus,
.team-form-one textarea:focus,
.team-form-one input:focus {
    border: 1px solid var(--cilox-base, #f5bf3e);
}

.team-form-one textarea {
    height: 170px;
}

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


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

.form-one__group {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    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>.dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
    display: block;
    width: 100%;
    height: 60px;
    background-color: #f2f3f6;
    color: var(--cilox-text, #797b81);
    font-weight: 600;
    font-size: 14px;
    line-height: 25px;
    border: none;
    border-radius: 0px;
    outline: none;
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    transition: all 500ms ease;
    padding: 0 20px;
}

.form-one .bootstrap-select>.dropdown-toggle:focus,
.form-one input[type=text]:focus,
.form-one input[type=email]:focus,
.form-one textarea:focus {
    border-color: var(--cilox-base, #f5bf3e);
}

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

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

.form-one .bootstrap-select>.dropdown-toggle {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    outline: none !important;
    color: var(--cilox-text, #797b81);
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
}

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

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

.form-one .bootstrap-select>.dropdown-toggle:after {
    display: none;
}

.form-one .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    content: "\f078";
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
    line-height: 60px;
    font-size: 16px;
    color: var(--cilox-text, #797b81);
}

.form-one .bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid transparent;
}

.form-one .bootstrap-select .dropdown-menu {
    border: none;
    overflow: hidden;
    background-color: var(--cilox-base, #f5bf3e);
}

.form-one .bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    color: var(--cilox-white, #fff);
    background-color: transparent;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.form-one .bootstrap-select .dropdown-menu>li:hover>a,
.form-one .bootstrap-select .dropdown-menu>li.selected>a {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
    border-color: var(--cilox-base, #f5bf3e);
}


/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/

.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--cilox-base, #f5bf3e);
    -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(--cilox-base, #f5bf3e);
    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(--cilox-base, #f5bf3e);
    opacity: 0.4;
}

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


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

.main-footer {
    position: relative;
    z-index: 1;
    background-color: var(--cilox-black, #18191c);
    padding-top: 85px;
    overflow: hidden;
}

.main-footer__bg {
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: totalScallTwo 6s ease-in-out infinite;
}

.main-footer__top {
    margin-bottom: 75px;
}

.main-footer__top .footer-logo {
    display: block;
}

.main-footer__form__newsletter {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--cilox-white, #fff);
    border-radius: 100px;
    position: relative;
    z-index: 1;
}

.main-footer__form__newsletter input {
    width: calc(100% - 178px);
    border: none;
    outline: none;
    box-shadow: none;
    height: 50px;
    background-color: transparent;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    color: #75767a;
    line-height: 1.2;
    padding-left: 40px;
}

.main-footer__form__newsletter .cilox-btn {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    padding: 17px 38px;
    background-color: var(--cilox-white, #fff);
}

.main-footer__form__newsletter .cilox-btn::before,
.main-footer__form__newsletter .cilox-btn::after {
    background-color: var(--cilox-base, #f5bf3e);
}

.main-footer__form__newsletter .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
}

.main-footer__middle {
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    .main-footer__middle {
        margin-bottom: 50px;
    }
}

.main-footer__bottom__inner {
    border-top: 1px solid #353639;
    padding-top: 30px;
    padding-bottom: 30px;
}

.main-footer__copyright {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    line-height: 1.75;
    font-style: normal;
    margin: 0;
    text-align: center;
}

.footer-widget__text {
    font-size: 20px;
    color: var(--cilox-white, #fff);
    text-transform: uppercase;
    line-height: 1.7;
    font-style: normal;
    margin-bottom: 35px;
    font-weight: 400;
}

.footer-widget__text-two {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    line-height: 1.75;
    font-style: normal;
    transition: all 0.4s ease-in-out;
}

.footer-widget__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget__social a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cilox-white, #fff);
    background-color: #000000;
    transition: all 0.4s ease-in-out;
}

.footer-widget__social a:hover {
    transform: translateY(-5px);
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.footer-widget__title {
    font-size: 20px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    font-style: normal;
    margin-bottom: 25px;
}

.footer-widget__inner {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-widget__links {
    margin: 0;
}

.footer-widget__links li a {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    line-height: 2.25;
    font-style: normal;
    transition: all 0.4s ease-in-out;
}

.footer-widget__links li a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.footer-widget__contant {
    margin-bottom: 0;
}

.footer-widget__contant li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--cilox-white, #fff);
    font-weight: 400;
    font-style: normal;
    transition: all 0.4s ease-in-out;
}

.footer-widget__contant li a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.footer-widget__contant li a i {
    color: var(--cilox-base, #f5bf3e);
}

.footer-widget__contant li+li {
    margin-top: 8px;
}

.footer-widget--links {
    margin-right: -30px;
}

@media (max-width: 1199px) {
    .footer-widget--links {
        margin-right: 0;
    }
}


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

.contact-top {
    position: relative;
}

.contact-top__item {
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    background-color: var(--cilox-white, #fff);
    padding: 50px 70px 50px 50px;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 1199px) and (min-width: 768px),
(max-width: 500px) {
    .contact-top__item {
        padding: 30px 50px 30px 20px;
    }
}

.contact-top__item span {
    font-size: 12px;
    color: var(--cilox-base, #f5bf3e);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
    margin-bottom: 3px;
}

.contact-top__item__title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 18px;
}

.contact-top__item__text {
    line-height: 1.75;
    margin-bottom: -4px;
}

.contact-top__item__text a {
    display: block;
    color: inherit;
}

.contact-top__item__text a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.contact-top__item__icon {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.contact-top__item__icon i {
    font-size: 60px;
}

@media (max-width: 1199px) and (min-width: 768px),
(max-width: 500px) {
    .contact-top__item__icon i {
        font-size: 40px;
    }
}

.contact-top__item::after {
    width: 180px;
    height: 160px;
    content: "";
    position: absolute;
    top: -65px;
    right: -58px;
    background-color: #f2f3f6;
    z-index: -1;
    transform: rotate(-35deg);
    transition: all 0.4s ease-in-out;
}

.contact-top__item:hover::after {
    background-color: var(--cilox-black, #18191c);
}

.contact-top__item:hover .contact-top__item__icon {
    color: var(--cilox-base, #f5bf3e);
}

.contact-area {
    padding-top: 65px;
}

.contact-area .form-one__group .bootstrap-select>.dropdown-toggle,
.contact-area .form-one__group textarea,
.contact-area .form-one__group input {
    background-color: #f2f3f6;
    position: relative;
    height: 60px;
    border: 1px solid #f2f3f6;
    outline: none;
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    line-height: 1.2;
    font-weight: 500;
}

.contact-area .form-one__group .bootstrap-select>.dropdown-toggle::placeholder,
.contact-area .form-one__group textarea::placeholder,
.contact-area .form-one__group input::placeholder {
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    line-height: 1.2;
    font-weight: 500;
    text-transform: capitalize;
}

.contact-area .form-one__group .bootstrap-select>.dropdown-toggle:focus,
.contact-area .form-one__group textarea:focus,
.contact-area .form-one__group input:focus {
    border: 1px solid var(--cilox-base, #f5bf3e);
}

.contact-area .form-one__group textarea {
    height: 170px;
}

.contact-area__inner {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.contact-one {
    position: relative;
    z-index: 1;
    background-color: #f1f2f5;
    max-width: 1695px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.contact-one--service {
    margin-bottom: 120px;
}

@media (max-width: 991px) {
    .contact-one--service {
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .contact-one--service {
        margin-bottom: 80px;
    }
}

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

.contact-one__content {
    position: relative;
}

.contact-one__content .sec-title {
    margin-bottom: 10px;
}

.contact-one .contact-one__top__text {
    margin-bottom: 32px;
    max-width: 370px;
    width: 100%;
}

.contact-one .form-one .bootstrap-select>.dropdown-toggle,
.contact-one .form-one textarea,
.contact-one .form-one input {
    background-color: var(--cilox-white, #fff);
}

.contact-one__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: end;
    z-index: -1;
}

.contact-one__shape img {
    animation: LeftToRight 2s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .contact-one__shape img {
        width: 70%;
    }
}

.contact-one__call {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #e2e4e9;
    padding: 25px 50px;
    transition: all 0.4s ease-in-out;
}

.contact-one__call__icon {
    font-size: 40px;
    color: var(--cilox-base, #f5bf3e);
    line-height: 1;
}

.contact-one__call__content {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #e2e4e9;
}

.contact-one__call__content a {
    display: block;
}

.contact-one__call__title {
    font-size: 10px;
    display: block;
    color: var(--cilox-text, #797b81);
    text-transform: uppercase;
}

.contact-one__call__number {
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    text-transform: uppercase;
    margin-bottom: 0;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

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

.contact-one__call__number:hover {
    color: var(--cilox-base, #f5bf3e);
}

.contact-one__call:hover {
    border-color: var(--cilox-base, #f5bf3e);
}

.contact-one__call:hover .contact-one__call__icon {
    animation: flowerRotate 0.5s ease-in-out infinite;
}

.contact-one__shape-one {
    position: absolute;
    bottom: 10%;
    right: 10%;
}

.contact-one__shape-one img {
    animation: totalScallRoted 4s ease-in-out infinite;
}

.contact-one__shape-two {
    position: absolute;
    top: 0%;
    right: 10%;
}

.contact-one__shape-two img {
    animation: LeftToRight 1.5s ease-in-out infinite;
}

.contact-three {
    position: relative;
    z-index: 1;
}

.contact-three .contact-top {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: -100px;
}

@media (max-width: 1199px) {
    .contact-three .contact-top {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .contact-three .contact-top {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.contact-three .contact-top::after {
    content: "";
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 698px;
    height: 698px;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

@media (max-width: 1199px) {
    .contact-three .contact-top::after {
        display: none;
    }
}

.contact-three .contact-top::before {
    content: "";
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(253, 197, 62) 0%, rgba(253, 197, 62, 0.01) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(253, 197, 62) 0%, rgba(253, 197, 62, 0.01) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(253, 197, 62) 0%, rgba(253, 197, 62, 0.01) 100%);
    opacity: 0.702;
    position: absolute;
    top: 5%;
    left: 45%;
    width: 438px;
    height: 438px;
    transform: translateX(-50%);
    z-index: 1;
}

@media (max-width: 1199px) {
    .contact-three .contact-top::before {
        display: none;
    }
}

.contact-three .contact-image {
    position: absolute;
    top: 0;
    display: block;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1199px) {
    .contact-three .contact-image {
        display: none;
    }
}

.contact-three .contact-map {
    max-width: 600px;
    width: 100%;
    height: 600px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 40px;
}

@media (max-width: 1199px) {
    .contact-three .contact-map {
        height: 300px;
        width: 100%;
        border-radius: 0;
        margin-left: 0;
    }
    .contact-three .contact-map iframe {
        height: 300px;
        width: 100%;
    }
}

.contact-three .contact-map iframe {
    height: 600px;
}

.contact-three .contact-heading {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-color: var(--cilox-black, #18191c);
    position: absolute;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .contact-three .contact-heading {
        padding: 30px;
        height: 300px;
        width: 100%;
        position: relative;
        right: 0;
        border-radius: 0;
    }
}

.contact-three .contact-heading::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    top: 50px;
    border: 1px solid rgba(var(--cilox-white-rgb, 255, 255, 255), 0.1);
    right: 50px;
    animation: topToBottom 3s ease-in-out infinite;
}

.contact-three .contact-heading__title {
    font-size: 60px;
    color: var(--cilox-white, #fff);
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    margin-bottom: 35px;
}

@media (max-width: 1199px) {
    .contact-three .contact-heading__title {
        font-size: 30px;
    }
}

.contact-three .contact-heading__title span {
    color: var(--cilox-base, #f5bf3e);
    font-weight: 900;
}

.contact-three .contact-heading .cilox-btn {
    border: 1px solid var(--cilox-base, #f5bf3e);
    background-color: transparent;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--cilox-base, #f5bf3e);
    padding: 16px 40px;
}

.contact-three .contact-heading .cilox-btn::before,
.contact-three .contact-heading .cilox-btn::after {
    background-color: var(--cilox-base, #f5bf3e);
}

.contact-three .contact-heading .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
}

.contact-three__bottom {
    max-width: 1655px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--cilox-base, #f5bf3e);
    position: relative;
    z-index: 1;
}

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

.contact-three__bottom__content .icon {
    font-size: 60px;
    color: var(--cilox-black, #18191c);
    line-height: 1;
}

.contact-three__bottom__link {
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    color: var(--cilox-black, #18191c);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

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

.contact-three__bottom__text {
    margin-bottom: 0;
    color: rgb(24, 25, 28);
    line-height: 1.875;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(var(--cilox-black-rgb, 24, 25, 28), 0.3);
}

.contact-three__bottom__thumb {
    position: absolute;
    bottom: 0;
}

@media (min-width: 992px) {
    .contact-three__bottom__thumb {
        margin-left: -40px;
    }
}

.contact-three__bottom__thumb img {
    animation: LeftToRight 3s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .contact-three__bottom__thumb {
        margin-right: auto;
        text-align: end;
        z-index: -1;
        bottom: 0;
        right: 0;
    }
    .contact-three__bottom__thumb img {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .contact-three__bottom__content {
        margin-right: 70px;
    }
}

.contact-three__bottom__content--two {
    margin-right: auto;
}

@media (min-width: 992px) {
    .contact-three__bottom__content--two {
        margin-left: 70px;
    }
}


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

.topbar-one {
    position: relative;
    background-color: var(--cilox-black, #18191c);
    padding: 8px 0;
}

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

.topbar-one__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-one .container-fluid {
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
}

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

.topbar-one__info__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--cilox-text2, #75767a);
    font-weight: bold;
    line-height: 1.2;
}

.topbar-one__info__item i {
    color: var(--cilox-base, #f5bf3e);
    font-size: 14px;
}

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

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

.topbar-one__info a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.topbar-one__right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.topbar-one__list {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
}

.topbar-one__list__item {
    font-size: 12px;
    color: var(--cilox-text2, #75767a);
    font-weight: bold;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.topbar-one__list__item::after {
    content: "";
    position: absolute;
    top: 0;
    right: -12px;
    transform: rotate(18deg);
    height: 12px;
    width: 1px;
    background-color: var(--cilox-text2, #75767a);
}

.topbar-one__list__item a {
    color: inherit;
}

.topbar-one__list__item a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.topbar-one__list__item:last-child::after {
    display: none;
}

.topbar-one__social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-one__social a {
    font-size: 16px;
    color: var(--cilox-white, #fff);
    transition: all 0.4s ease-in-out;
}

.topbar-one__social a:hover {
    color: var(--cilox-base, #f5bf3e);
}


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

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

.main-header__inner {
    display: flex;
    align-items: center;
    background-color: transparent;
    border-radius: 5px;
    position: relative;
}

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

.main-header__logo {
    display: flex;
    height: 100%;
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: auto;
}

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

.main-header__info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-header__info__text {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    color: var(--cilox-white, #fff);
    display: block;
    margin: 3px 0 0;
}

.main-header__info a {
    color: var(--cilox-white, #fff);
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

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

.main-header__info a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.main-header__info__item {
    font-size: 24px;
    color: var(--cilox-black, #18191c);
    transition: all 500ms ease;
    line-height: 1em;
}

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

.main-header__info__item:hover {
    color: var(--cilox-base, #f5bf3e);
}

.main-header__call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-left: 40px;
    padding-left: 40px;
    border-left: 1px solid rgba(225, 226, 231, 0.3);
}

@media (max-width: 1266px) {
    .main-header__call {
        margin-left: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 575px) {
    .main-header__call {
        display: none;
        padding-left: 0;
        border-left: none;
        margin-left: 0;
    }
}

.main-header__call__icon {
    font-size: 30px;
    color: var(--cilox-base, #f5bf3e);
    line-height: 1;
}

.main-header__call__text {
    display: block;
    font-size: 10px;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    color: var(--cilox-white, #fff);
    text-transform: uppercase;
    line-height: 1.2;
}

.main-header__call a {
    font-size: 16px;
    display: block;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    color: var(--cilox-white, #fff);
    text-transform: uppercase;
    line-height: 1.6;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

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

.main-header__call a:hover {
    color: var(--cilox-base, #f5bf3e);
}

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

@media (max-width: 991px) {
    .main-header__nav {
        margin-left: 0px;
    }
}

.main-header--one {
    margin-bottom: -140px;
}

.main-header--one .main-header__inner {
    border-bottom: 1px solid rgba(225, 226, 231, 0.3);
    border-radius: 0;
}

@media (min-width: 1730px) {
    .main-header--one .container-fluid {
        max-width: 1730px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1466px) {
    .main-header--one .main-header__nav {
        margin-left: 50px;
    }
    .main-header--one .main-menu .main-menu__list>li+li {
        margin-left: 35px;
    }
}

@media (max-width: 575px) {
    .main-header--one .main-header__nav {
        margin-left: 0px;
    }
}

.main-header--two {
    margin-bottom: -140px;
    background-color: transparent;
}

.main-header--two .main-header__nav {
    background-color: #000000;
    border-radius: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 575px) {
    .main-header--two .main-header__nav {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 1730px) {
    .main-header--two .container-fluid {
        max-width: 1730px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1500px) {
    .main-header--two .main-header__nav {
        margin-left: 50px;
    }
    .main-header--two .main-menu .main-menu__list>li+li {
        margin-left: 35px;
    }
}

@media (max-width: 1300px) {
    .main-header--two .main-header__nav {
        margin-left: 50px;
    }
    .main-header--two .main-menu .main-menu__list>li+li {
        margin-left: 25px;
    }
}

@media (max-width: 767px) {
    .main-header--two .main-header__nav {
        margin-left: 0px;
    }
}

.main-header--two .main-menu .main-menu__list>li {
    padding-top: 22px;
    padding-bottom: 22px;
}

.main-header--two .main-header__inner {
    padding-top: 16px;
    padding-bottom: 0px;
}

.main-header--three {
    background-color: var(--cilox-white, #fff);
}

.main-header--three .topbar-one {
    background-color: var(--cilox-black, #18191c);
    padding: 7.5px;
}

.main-header--three .container-fluid {
    max-width: 1750px;
    margin-left: auto;
    margin-right: auto;
}

.main-header--three .main-header__call__text,
.main-header--three .main-menu .main-menu__list>li>a {
    color: var(--cilox-text, #797b81);
}

.main-header--three .main-header__call a,
.main-header--three .main-menu .main-menu__list>li.current>a,
.main-header--three .main-menu .main-menu__list>li:hover>a {
    color: var(--cilox-black, #18191c);
}

.main-header--three .main-menu .main-menu__list>li {
    padding-top: 37px;
    padding-bottom: 37px;
}

.main-header--three .main-header__info a {
    color: var(--cilox-black, #18191c);
}

.main-header--three .main-header__info a i {
    font-weight: 900;
}

.main-header--three .main-header__call {
    border-color: #e7e8e8;
}

.main-header--three .mobile-nav__btn span {
    background-color: var(--cilox-black, #18191c);
}

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

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

.main-header--one.sticky-header--cloned .topbar-one,
.main-header--three.sticky-header--cloned .topbar-one,
.main-header--two.sticky-header--cloned .topbar-one {
    display: none;
}

.main-header--two.sticky-header--cloned .main-header__nav {
    background-color: transparent;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

.main-header--one.sticky-header--cloned .main-header__inner {
    border-bottom: none;
}

.main-header--three.sticky-header--cloned {
    background-color: var(--cilox-white, #fff);
}

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

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

.mobile-nav__btn span {
    width: 100%;
    height: 2px;
    background-color: var(--cilox-white, #fff);
}

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

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

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

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

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

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

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

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

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

.main-menu .main-menu__list>li>a {
    display: flex;
    align-items: center;
    position: relative;
    transition: all 500ms ease;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-size: 14px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

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

.main-menu .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: -25px;
    min-width: 270px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    z-index: 99;
    background-color: var(--cilox-white, #fff);
    box-shadow: 0px 10px 60px 0px RGBA(var(--cilox-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: -15px !important;
    right: -15px !important;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    transition: all 300ms linear 0ms;
    transform: perspective(500px) rotateX(-20deg);
    transform-origin: 50% 0%;
    pointer-events: none;
}

.main-menu .main-menu__list li.megamenu:hover>ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: perspective(500px) rotateX(0);
}

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

.main-menu .main-menu__list li ul li:last-child {
    margin-bottom: 0px;
}

.main-menu .main-menu__list li.megamenu ul li {
    margin: 0;
}

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

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

.main-menu .main-menu__list li ul li.current>a,
.main-menu .main-menu__list li ul li:hover>a {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.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;
}

.main-menu-five .main-menu__list>li.current>a,
.main-menu-five .main-menu__list>li:hover>a {
    color: var(--cilox-black, #18191c) !important;
    text-shadow: 0 0 0.5px currentColor;
}

@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(--cilox-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(--cilox-black, #18191c);
}

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

.megamenu-popup .megamenu-clickable--close:hover {
    color: var(--cilox-base, #f5bf3e);
}

.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(--cilox-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(var(--cilox-black-rgb, 24, 25, 28), 0.1);
    text-align: center;
    transition: 500ms ease;
    transform: translateY(0px);
}

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

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

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

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

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

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

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

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

.demo-one__btns .cilox-btn {
    margin: 0 !important;
}

.demo-one__btns .cilox-btn:hover {
    color: var(--cilox-white, #fff);
}

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

.demo-one__btn {
    text-align: center;
    justify-content: center;
    font-size: 14px;
    width: 160px;
    padding: 16px 0px;
}

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

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

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

.home-showcase__inner {
    max-height: 90vh;
    overflow-y: scroll;
    padding: 40px 40px 21px;
    background-color: var(--cilox-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(var(--cilox-black-rgb, 24, 25, 28), 0.07);
}

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

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


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

.why-choose-one {
    position: relative;
    z-index: 1;
    background-color: var(--cilox-black, #18191c);
}

.why-choose-one::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/shapes/why-choose-1-bg.png);
    background-position: center center;
    z-index: -1;
}

.why-choose-one .container-fluid {
    max-width: 1620px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-one .sec-title {
    margin-bottom: 80px;
}

.why-choose-one .sec-title .sec-title__title {
    color: var(--cilox-white, #fff);
}

@media (max-width: 1199px) {
    .why-choose-one .sec-title {
        margin-bottom: 40px;
    }
}

.why-choose-one__thumb {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 42.5%;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .why-choose-one__thumb {
        position: relative;
        z-index: 1;
        width: 100%;
        text-align: center;
    }
}

.why-choose-one__thumb img {
    object-fit: cover;
}

.why-choose-one__thumb::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 304px;
    height: 223px;
    background-color: var(--cilox-black, #18191c);
}

@media (max-width: 1199px) {
    .why-choose-one__thumb::after {
        display: none;
    }
}

.why-choose-one__right {
    margin-left: 70px;
    margin-bottom: 100px;
}

@media (max-width: 1199px) {
    .why-choose-one__right {
        margin-left: 0px;
        margin-bottom: 40px;
    }
}

.why-choose-one .why-choose-one__list {
    margin: 0;
    display: flex;
    align-items: center;
    margin-left: -333px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1299px) {
    .why-choose-one .why-choose-one__list {
        margin-left: -400px;
    }
}

@media (max-width: 1199px) {
    .why-choose-one .why-choose-one__list {
        margin-left: 0px;
    }
}

@media (max-width: 767px) {
    .why-choose-one .why-choose-one__list {
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 30px;
    }
}

.why-choose-one .why-choose-one__list li+li {
    margin-left: 50px;
    border-left: 1px solid #323336;
    padding-left: 50px;
}

@media (max-width: 1450px) {
    .why-choose-one .why-choose-one__list li+li {
        margin-left: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .why-choose-one .why-choose-one__list li+li {
        margin-left: 0px;
        border-left: 1px solid transparent;
        padding-left: 0px;
    }
}

.why-choose-one .why-choose-one__list .why-choose__item .why-choose__item__top {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin-bottom: 20px;
}

.why-choose-one .why-choose-one__list .why-choose__item .why-choose__item__icon {
    width: 60px;
    border-radius: 50%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #242528;
    color: var(--cilox-base, #f5bf3e);
    font-size: 20px;
    transition: all 0.4s ease;
}

@media (max-width: 991px) and (min-width: 768px) {
    .why-choose-one .why-choose-one__list .why-choose__item .why-choose__item__icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

.why-choose-one .why-choose-one__list .why-choose__item .why-choose__item__title {
    font-size: 20px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.5;
    text-align: left;
    font-style: normal;
    margin: 0;
}

@media (max-width: 991px) and (min-width: 768px) {
    .why-choose-one .why-choose-one__list .why-choose__item .why-choose__item__title {
        font-size: 16px;
    }
}

.why-choose-one .why-choose-one__list .why-choose__item .why-choose__item__text {
    font-size: 15px;
    color: #75767a;
    line-height: 1.733;
    text-align: left;
    margin: 0;
}

.why-choose-one .why-choose-one__list .why-choose__item:hover .why-choose__item__icon {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-white, #fff);
}

.why-choose-one__text-slider__inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: textScrolling 25s linear infinite;
    animation-direction: reverse;
    will-change: transform;
    position: relative;
    white-space: nowrap;
}

.why-choose-one__text-slider__inner:hover {
    animation-play-state: paused;
}

.why-choose-one__text-slider__inner .why-choose-one__text-slider__item {
    font-size: 120px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 0.833;
}

.why-choose-one__text-slider__inner .why-choose-one__text-slider__item .line {
    position: relative;
    z-index: 1;
}

.why-choose-one__text-slider__inner .why-choose-one__text-slider__item .line .under-line {
    width: 100%;
    height: 5px;
    border-top: 1px solid var(--cilox-base, #f5bf3e);
    border-bottom: 1px solid var(--cilox-base, #f5bf3e);
    position: absolute;
    bottom: 10px;
    left: 0;
}

.why-choose-one__text-slider__inner .why-choose-one__text-slider__item .and {
    color: var(--cilox-base, #f5bf3e);
}

.why-choose-one__shape {
    position: absolute;
    top: 0;
    left: 0;
}

.why-choose-one__video {
    position: absolute;
    top: 75px;
    left: 75px;
    z-index: 1;
}

@media (max-width: 1199px) {
    .why-choose-one__video {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.why-choose-one__video .video-popup {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--cilox-white-rgb, 255, 255, 255), 0.302);
    font-size: 22px;
    color: var(--cilox-white, #fff);
    z-index: 1;
}

@media (max-width: 1199px) {
    .why-choose-one__video .video-popup {
        background-color: var(--cilox-base, #f5bf3e);
        color: var(--cilox-black, #18191c);
    }
}

.why-choose-one__video .image {
    position: absolute;
    top: -20px;
    left: -18px;
    animation: textRotate 6s ease-in-out infinite;
    z-index: -1;
}

.why-choose-three {
    position: relative;
    z-index: 2;
    padding-bottom: 1px;
}

.why-choose-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

.why-choose-three__thumb {
    position: relative;
    z-index: 1;
}

.why-choose-three__thumb__item {
    position: relative;
    z-index: 1;
}

.why-choose-three__thumb__item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    background-color: #f0f1f4;
}

@media (max-width: 575px) {
    .why-choose-three__thumb__item::after {
        display: none;
    }
}

@media (min-width: 1200px) {
    .why-choose-three__thumb__item {
        margin-right: -30px;
    }
}

.why-choose-three__thumb__item img {
    object-fit: cover;
    width: 100%;
}

.why-choose-three__thumb__box {
    background-color: #f0f1f4;
    padding: 22px;
    position: absolute;
    bottom: -72px;
    z-index: 1;
    right: 30px;
}

@media (max-width: 575px) {
    .why-choose-three__thumb__box {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-top: 20px;
    }
}

.why-choose-three__thumb__exprince {
    max-width: 305px;
    width: 100%;
    background-color: var(--cilox-white, #fff);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 35px 40px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
}

@media (max-width: 575px) {
    .why-choose-three__thumb__exprince {
        max-width: 100%;
        width: 100%;
    }
}

.why-choose-three__thumb__icon {
    font-size: 62px;
    color: var(--cilox-base, #f5bf3e);
    line-height: 1;
}

.why-choose-three__thumb__exprince__title {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: -2px;
}

.why-choose-three .sec-title {
    margin-bottom: 18px;
}

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

.why-choose-three__text {
    margin-bottom: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid #e2e4e9;
    margin-bottom: 25px;
}

.why-choose-three__list {
    margin-bottom: 0;
}

.why-choose-three__list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 2.5;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .why-choose-three__list li {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .why-choose-three__list li {
        font-size: 16px;
        line-height: 1.3;
    }
}

.why-choose-three__list li:hover .why-choose-three__list__icon {
    color: var(--cilox-white, #fff);
    background-color: var(--cilox-black, #18191c);
}

@media (max-width: 575px) {
    .why-choose-three__list li+li {
        margin-top: 13px;
    }
}

.why-choose-three__list__icon {
    max-width: 32px;
    height: 32px;
    width: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cilox-base, #f5bf3e);
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .why-choose-three__list__icon {
        height: 25px;
        max-width: 25px;
        width: 100%;
    }
}

.why-choose-three__list__icon i {
    font-weight: 900;
}

.services-overview {
    position: relative;
    z-index: 3;
    margin-bottom: -100px;
}

.services-overview__list {
    margin: 0;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    background-color: var(--cilox-white, #fff);
    border-top: 5px solid var(--cilox-base, #f5bf3e);
    padding: 50px;
    display: flex;
    align-items: start;
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 500px) {
    .services-overview__list {
        gap: 20px;
        padding: 40px 20px;
    }
}

@media (max-width: 991px),
(max-width: 500px) {
    .services-overview__list {
        flex-wrap: wrap;
    }
}

@media (max-width: 500px) {
    .services-overview__list {
        padding: 40px 20px;
    }
}

.services-overview__list__item {
    width: 33.33%;
    flex: 33.33%;
    display: flex;
    align-items: start;
    gap: 20px;
}

@media (max-width: 991px) {
    .services-overview__list__item {
        width: 47%;
        flex: 47%;
    }
}

@media (max-width: 500px) {
    .services-overview__list__item {
        width: 100%;
        flex: 100%;
    }
}

.services-overview__list__item:hover .services-overview__icon {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.services-overview__list__item:hover .services-overview__icon i {
    animation: gelatine 0.5s ease-in-out 1;
}

.services-overview .services-overview__icon {
    max-width: 70px;
    width: 100%;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.services-overview .services-overview__title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 500px) {
    .services-overview .services-overview__title {
        font-size: 17px;
    }
}

.services-overview .services-overview__text {
    margin-bottom: 0;
}


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

.funfact-one {
    position: relative;
    z-index: 1;
    max-width: 1695px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1500px) {
    .funfact-one .container-fluid {
        max-width: 1500px;
    }
}

.funfact-one .funfact-one__top {
    margin-bottom: -37px;
}

.funfact-one .funfact-one__top__text {
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.875;
    background-color: var(--cilox-base, #f5bf3e);
    padding: 20px 60px;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 0;
}

.funfact-one__inner {
    padding: 58px 60px;
    background-color: var(--cilox-base, #f5bf3e);
}

@media (max-width: 1600px) {
    .funfact-one__inner {
        padding: 40px 30px;
    }
}

@media (max-width: 1199px) {
    .funfact-one__inner {
        padding: 40px 0px;
    }
}

.funfact-one__list {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

@media (max-width: 1400px) {
    .funfact-one__list {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .funfact-one__list {
        flex-wrap: wrap;
    }
}

.funfact-one__list__item {
    width: 100%;
    flex: 25%;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .funfact-one__list__item {
        flex: 40%;
    }
}

@media (max-width: 575px) {
    .funfact-one__list__item {
        flex: 100%;
    }
}

.funfact-one__list__item:hover .funfact-one__list__icon {
    color: var(--cilox-white, #fff);
}

.funfact-one__list__item:hover .funfact-one__list__icon::before {
    transform: rotate(30deg) translateX(0%);
}

.funfact-one__list__item:hover .funfact-one__list__icon::after {
    transform: rotate(30deg) translateX(0%);
}

.funfact-one__list__item+.funfact-one__list__item {
    position: relative;
    z-index: 1;
}

.funfact-one__list__item+.funfact-one__list__item::after {
    content: "";
    position: absolute;
    left: -40px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #d0a338;
}

@media (max-width: 1400px) {
    .funfact-one__list__item+.funfact-one__list__item::after {
        left: -20px;
    }
}

@media (max-width: 575px) {
    .funfact-one__list__item+.funfact-one__list__item::after {
        display: none;
    }
}

.funfact-one__list__icon {
    max-width: 100px;
    width: 100%;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.102);
    font-size: 50px;
    color: var(--cilox-black, #18191c);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1400px) {
    .funfact-one__list__icon {
        max-width: 70px;
        height: 70px;
        font-size: 35px;
    }
}

.funfact-one__list__icon::after,
.funfact-one__list__icon::before {
    content: "";
    position: absolute;
    top: -27%;
    left: 0;
    width: 50%;
    height: 140%;
    background-color: var(--cilox-black, #18191c);
    transform: rotate(30deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.funfact-one__list__icon::before {
    transform: rotate(30deg) translateX(-101%);
}

.funfact-one__list__icon::after {
    left: auto;
    right: 0;
    width: 50%;
    height: 140%;
    top: -14%;
    transform: rotate(30deg) translateX(101%);
}

.funfact-one .funfact-one__list__count {
    font-size: 50px;
    text-transform: uppercase;
    line-height: 0.6;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

@media (max-width: 1400px) {
    .funfact-one .funfact-one__list__count {
        font-size: 35px;
    }
}

.funfact-one .funfact-one__list__text {
    color: var(--cilox-black, #18191c);
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: normal;
}


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

.testimonials-one {
    position: relative;
    z-index: 1;
    background-color: var(--cilox-white, #fff);
}

.testimonials-one__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.testimonials-one .sec-title {
    margin-bottom: 30px;
}

.testimonials-one__carousel-box {
    margin-right: -180px;
}

@media (max-width: 1466px) {
    .testimonials-one__carousel-box {
        margin-right: 0;
    }
}

.testimonials-one__content {
    position: relative;
    z-index: 1;
}

.testimonials-one__top__text {
    font-size: 16px;
    color: rgb(121, 123, 129);
    line-height: 1.875;
    text-align: left;
    margin-bottom: 30px;
    font-weight: 500;
    max-width: 390px;
    margin-left: 0;
}

.testimonials-one__custome-navs {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.testimonials-one__custome-navs button {
    border: none;
    outline: none;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    width: 56px;
    height: 56px;
    background-color: var(--cilox-white, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--cilox-black, #18191c);
    border: 1px solid transparent;
    transition: all 400ms ease;
}

.testimonials-one__custome-navs button:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
    border-color: transparent;
}

.testimonials-one__custome-navs button span {
    border: none;
    outline: none;
    color: inherit;
}

.testimonials-one__custome-navs button:first-child {
    transform: rotate(180deg);
}

.testimonials-one__shape {
    position: absolute;
    top: 37%;
    right: 6%;
}

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

.testimonials-one__shape img {
    animation: LeftToRight 4s ease-in-out infinite;
}

.testimonials-card {
    position: relative;
    padding: 40px 40px 1px;
    background-color: var(--cilox-white, #fff);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1), inset 0px 5px 0px 0px rgba(254, 198, 63, 0.004);
    border-top: 5px solid var(--cilox-base, #f5bf3e);
    margin-bottom: 35px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .testimonials-card {
        padding: 20px 20px 1px;
    }
}

.testimonials-card__rating {
    font-size: 16px;
    color: var(--cilox-base, #f5bf3e);
    margin-bottom: 20px;
    transition: all 0.4s ease-in-out;
}

.testimonials-card__text {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    line-height: 1.75;
    text-align: left;
    font-style: normal;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
}

.testimonials-card__author {
    font-size: 18px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: -5px;
}

.testimonials-card__desgreption {
    font-size: 11px;
    color: var(--cilox-base, #f5bf3e);
    text-transform: uppercase;
    font-style: normal;
    font-weight: normal;
}

.testimonials-card__autor-img {
    width: 65px;
    height: 65px;
    border-radius: 100px;
    overflow: hidden;
    border: 4px solid var(--cilox-black, #18191c);
    margin-left: auto;
    margin-right: 0;
    margin-bottom: -35px;
    transition: all 0.43s ease-in-out;
}

.testimonials-card__autor-img img {
    width: 100%;
    object-fit: cover;
}

.testimonials-card:hover .testimonials-card__autor-img {
    border-color: var(--cilox-base, #f5bf3e);
}

.testimonials-card:hover .testimonials-card__rating {
    color: var(--cilox-black, #18191c);
}

.testimonials-two {
    max-width: 1700px;
    width: 100%;
    background-color: var(--cilox-black, #18191c);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.testimonials-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    mix-blend-mode: luminosity;
}

.testimonials-two::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgba(253, 197, 62, 0.6) 0%, rgba(253, 197, 62, 0) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgba(253, 197, 62, 0.6) 0%, rgba(253, 197, 62, 0) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgba(253, 197, 62, 0.6) 0%, rgba(253, 197, 62, 0) 100%);
    opacity: 0.702;
    right: 100px;
    top: 100px;
    width: 538px;
    height: 538px;
}

.testimonials-two__top {
    padding-bottom: 50px;
}

.testimonials-two .sec-title {
    margin-bottom: 0;
}

.testimonials-two .sec-title .sec-title__title {
    color: var(--cilox-white, #fff);
}

.testimonials-two__top__right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonials-two__top__text {
    font-size: 16px;
    color: #797b81;
    line-height: 1.75;
    text-align: left;
    margin-bottom: 0;
}

.testimonials-two__top__video {
    position: relative;
    z-index: 1;
}

.testimonials-two__top__video .video-popup {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--cilox-white-rgb, 255, 255, 255), 0.302);
    font-size: 22px;
    color: var(--cilox-white, #fff);
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.testimonials-two__top__video .video-popup:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.testimonials-two__top__video .image {
    position: absolute;
    top: -20px;
    left: -18px;
    animation: textRotate 6s ease-in-out infinite;
    z-index: -1;
}

.testimonials-two__item-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 29px 60px 30px;
    padding-right: 45px;
    background-color: var(--cilox-white, #fff);
}

@media (max-width: 1199px) {
    .testimonials-two__item-box {
        padding: 40px 40px 0px;
        padding-right: 35px;
    }
}

@media (max-width: 767px) {
    .testimonials-two__item-box {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 20px;
    }
}

.testimonials-two__carousel-box {
    position: relative;
    z-index: 1;
}

.testimonials-two__carousel-box .quite-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonials-two__carousel-box .quite {
    font-size: 70px;
    color: var(--cilox-base, #f5bf3e);
    line-height: 1;
}

.testimonials-two__carousel-box .quite-top__start {
    font-size: 22px;
    color: var(--cilox-black, #18191c);
}

.testimonials-two__text {
    font-size: 22px;
    color: #797b81;
    font-style: italic;
    line-height: 1.727;
}

@media (max-width: 1199px) {
    .testimonials-two__text {
        font-size: 17px;
    }
}

.testimonials-two .testimonials-two__thumb__item-two {
    margin-top: -55px;
}

.testimonials-two__bottom {
    position: relative;
    z-index: 1;
    background-color: var(--cilox-base, #f5bf3e);
    padding: 20px 40px 20px 80px;
}

@media (max-width: 767px) {
    .testimonials-two__bottom {
        width: 100%;
        padding: 20px;
    }
}

.testimonials-two__bottom::before {
    width: 60px;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    background-color: var(--cilox-black, #18191c);
}

@media (max-width: 767px) {
    .testimonials-two__bottom::before {
        display: none;
    }
}

.testimonials-two__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonials-two__author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonials-two__author-image img {
    object-fit: cover;
    width: 100%;
    border-radius: 50%;
}

.testimonials-two__author-name {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.143;
    margin-bottom: 5px;
    letter-spacing: -0.04em;
}

.testimonials-two__author-dec {
    display: block;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.143;
    color: var(--cilox-black, #18191c);
    margin-bottom: 0;
}

.testimonials-two__slick-button {
    border: none;
    outline: none;
    background-color: var(--cilox-white, #fff);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.testimonials-two__slick-button:first-child {
    transform: rotateY(180deg);
}

.testimonials-two__slick-button:hover {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.testimonials-two__count-bar {
    display: flex;
    align-items: center;
    gap: 175px;
    position: absolute;
    bottom: 17px;
    right: 40px;
}

@media (max-width: 767px) {
    .testimonials-two__count-bar {
        gap: 30px;
        right: 20px;
    }
}

.testimonials-two__count-bar .testimonials-two__custom-dots .slick-dots {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

@media (max-width: 500px) {
    .testimonials-two__count-bar .testimonials-two__custom-dots .slick-dots {
        display: none;
    }
}

.testimonials-two__count-bar .testimonials-two__custom-dots .slick-dots li button {
    padding: 0;
    border: none;
    outline: none;
    margin: 0;
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    background-color: transparent;
    line-height: 0.99;
    position: relative;
    z-index: 1;
}

.testimonials-two__count-bar .testimonials-two__custom-dots .slick-dots li button::after {
    content: "";
    width: 1px;
    height: 100%;
    width: 1px;
    position: absolute;
    background-color: var(--cilox-black, #18191c);
    right: -5px;
    top: 0;
    transform: rotate(15deg);
}

.testimonials-two__count-bar .testimonials-two__custom-dots .slick-dots li:last-child button::after {
    display: none;
}

.testimonials-two__count-bar .testimonials-two__custom-dots .slick-dots li.slick-active button {
    color: var(--cilox-white, #fff);
}

.testimonials-two__count-bar .testimonials-two__custom-dots .slick-dots li.slick-active button::after {
    background-color: var(--cilox-white, #fff);
}

.testimonials-two__count-bar .testimonials-two__arrow-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 375px) {
    .testimonials-two__count-bar .testimonials-two__arrow-wrap {
        display: none;
    }
}

.testimonials-two__count-bar::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55px;
    height: 1px;
    background-color: var(--cilox-black, #18191c);
    opacity: 0.3;
    right: 130px;
}

@media (max-width: 767px) {
    .testimonials-two__count-bar::after {
        display: none;
    }
}

.testimonials-three {
    position: relative;
    z-index: 1;
    background-color: #18191c;
    padding-top: 215px;
}

.testimonials-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.7;
}

.testimonials-three .sec-title {
    margin-bottom: 0;
    padding-bottom: 40px;
    margin-bottom: 45px;
    border-bottom: 1px solid rgba(var(--cilox-white-rgb, 255, 255, 255), 0.1);
}

.testimonials-three .sec-title .sec-title__title {
    color: var(--cilox-white, #fff);
}

.testimonials-three__thumb {
    position: relative;
    z-index: 1;
}

.testimonials-three__thumb::after {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 438px;
    height: 438px;
    content: "";
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.702;
    z-index: -1;
}

.testimonials-three__thumb__image {
    background-color: var(--cilox-base, #f5bf3e);
    border-radius: 1000px 1000px 0 0;
}

.testimonials-three__thumb__image img {
    border-radius: 1000px 1000px 0 0;
    object-fit: cover;
    width: 100%;
}

.testimonials-three__thumb__shape {
    height: 20px;
    width: 100%;
    background-color: var(--cilox-base, #f5bf3e);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
}

.testimonials-three__thumb__logo {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 1;
}

.testimonials-three__thumb__logo img {
    animation: topToBottom 2s ease-in-out infinite;
}

.testimonials-three__carousel {
    margin-bottom: 50px;
}

.testimonials-three__carousel__thumb {
    max-width: 156px;
    width: 100%;
}

.testimonials-three__carousel__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.testimonials-three__carousel__box::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 175px;
    right: 135px;
    height: 1px;
    background-color: #2c2d31;
}

.testimonials-three .custom-arrow-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonials-three__slick-button {
    border: none;
    outline: none;
    background-color: var(--cilox-white, #fff);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.testimonials-three__slick-button:first-child {
    transform: rotateY(180deg);
}

.testimonials-three__slick-button:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.testimonials-three__item {
    position: relative;
    z-index: 1;
}

.testimonials-three__item__rating {
    font-size: 18px;
    color: var(--cilox-base, #f5bf3e);
    margin-bottom: 30px;
}

.testimonials-three__item__text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 0;
}

.slick-current.slick-active+.slick-active .testimonials-three__thumb-item img {
    border: 3px solid var(--cilox-base, #f5bf3e);
}

.testimonials-three__thumb-item img {
    object-fit: cover;
    width: auto;
    border-radius: 50%;
    border: 3_px solid var(--cilox-white, #fff);
}


/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/

.showcase-one {
    position: relative;
    background-color: var(--cilox-black, #18191c);
    z-index: 1;
    overflow: hidden;
}

.showcase-one__text-slider {
    position: relative;
    background-color: var(--cilox-base, #f5bf3e);
}

.showcase-one__text-inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: textScrolling 25s linear infinite;
    animation-direction: reverse;
    will-change: transform;
    position: relative;
    gap: 30px;
    white-space: nowrap;
}

.showcase-one__text-item {
    font-size: 20px;
    color: #18191c;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 3.5;
    letter-spacing: 0.1em;
}

.showcase-one .showcase-one__text {
    font-size: 60px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 36px;
    position: relative;
    max-width: 1030px;
    width: 100%;
}

.showcase-one .showcase-one__text .showcase {
    background-color: var(--cilox-black, #18191c);
    border-radius: 100px;
    padding: 5px 20px;
}

@media (max-width: 1199px) {
    .showcase-one .showcase-one__text {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .showcase-one .showcase-one__text {
        font-size: 35px;
    }
}

.showcase-one__count {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cilox-base, #f5bf3e);
    flex-direction: column;
    text-align: center;
    position: absolute;
    right: 0px;
    top: -70px;
}

.showcase-one__count::after {
    content: "";
    width: 15px;
    height: 15px;
    background-color: var(--cilox-base, #f5bf3e);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    bottom: 0px;
    left: 20px;
    transform: rotate(40deg);
}

.showcase-one .showcase-one__count__funfact {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    font-weight: bold;
    margin-bottom: 0;
}

.showcase-one .showcase-one__count__text {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    margin-bottom: 0;
}

.showcase-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.3;
}

.showcase-one__btn {
    font-size: 14px;
    color: var(--cilox-base, #f5bf3e);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 18px 40px;
    border-radius: 100px;
    border: 1px solid var(--cilox-base, #f5bf3e);
    background-color: transparent;
}

.showcase-one__btn::before,
.showcase-one__btn::after {
    background-color: var(--cilox-base, #f5bf3e);
}

.showcase-one__btn:hover {
    color: var(--cilox-black, #18191c);
}

.showcase-one__shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

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

.showcase-one__shape img {
    opacity: 0.7;
    object-fit: cover;
    width: 100%;
    animation: name duration timing-function delay iteration-count direction fill-mode;
}

.cta-one {
    position: relative;
    z-index: 1;
    max-width: 1695px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1px;
    margin-top: 85px;
    margin-bottom: 120px;
}

@media (max-width: 991px) {
    .cta-one {
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .cta-one {
        margin-bottom: 80px;
    }
}

.cta-one__top {
    position: relative;
    margin-top: -85px;
    margin-right: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.cta-one__user {
    width: 175px;
    height: 175px;
    border-radius: 50%;
}

@media (max-width: 575px) {
    .cta-one__user {
        width: 150px;
        height: 150px;
    }
}

.cta-one__user img {
    object-fit: cover;
    width: 100%;
    border-radius: 50%;
}

.cta-one__top__btn {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    position: absolute;
    transform: translateX(130px);
    background-color: var(--cilox-base, #f5bf3e);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cilox-white, #fff);
}

@media (max-width: 575px) {
    .cta-one__top__btn {
        width: 150px;
        height: 150px;
    }
}

.cta-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    overflow: hidden;
}

.cta-one__bg::after {
    content: "";
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(254, 198, 63) 0%, rgba(254, 198, 63, 0) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(254, 198, 63) 0%, rgba(254, 198, 63, 0) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(254, 198, 63) 0%, rgba(254, 198, 63, 0) 100%);
    position: absolute;
    width: 788px;
    height: 788px;
    border-radius: 50%;
    left: 50%;
    top: -500px;
    transform: translateX(-50%);
}

.cta-one__title {
    font-size: 60px;
    color: var(--cilox-black, #18191c);
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
}

.cta-one__title span {
    color: var(--cilox-base, #f5bf3e);
    font-weight: 700;
}

@media (max-width: 991px) {
    .cta-one__title {
        font-size: 45px;
    }
}

@media (max-width: 991px) {
    .cta-one__title {
        font-size: 35px;
    }
}

.cta-one__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .cta-one__bottom {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.cta-one__text {
    font-size: 16px;
    color: #75767a;
    line-height: 1.875;
    margin: 0;
    font-weight: 500;
    font-style: normal;
}

.cta-one .cilox-btn {
    padding: 12px 25px;
    background-color: #e2e4e9;
    font-size: 12px;
    color: #797b81;
    text-transform: uppercase;
    line-height: 1.2;
}

.cta-one .cilox-btn::after,
.cta-one .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.cta-one .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
}

.cta-one:hover .cta-one__top__btn {
    transform: translateX(0px) rotate(-45deg);
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery-one {
    position: relative;
}

.gallery-one .container-fluid {
    max-width: 1545px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-one__filter__list {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .gallery-one__filter__list {
        gap: 20px;
    }
}

.gallery-one__filter__list li {
    cursor: pointer;
}

.gallery-one__filter__list li span {
    display: block;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-size: 16px;
    background-color: var(--cilox-border-color, #e2e4e9);
    transition: all 500ms ease;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--cilox-black, #18191c);
    padding: 14px 24px;
    line-height: 1.2em;
}

.gallery-one__filter__list li.active span,
.gallery-one__filter__list li:hover span {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-white, #fff);
}

.gallery-one__card {
    position: relative;
    overflow: hidden;
    background-color: var(--cilox-black, #18191c);
    margin: 0 0 10px;
}

.gallery-one__card img {
    transform: scale(1);
    object-fit: cover;
    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(--cilox-base-rgb, 245, 191, 62), 90%);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
}

.gallery-one__card__hover .img-popup {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--cilox-black, #18191c);
}

.gallery-one__card__hover .img-popup i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.gallery-one__card__hover .img-popup:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.gallery-one__card:hover img {
    transform: scale(1.05);
}

.gallery-one__card:hover .gallery-one__card__hover {
    transform-origin: top center;
    transform: scale(1, 1);
}

.gallery-one .cilox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
    margin-bottom: 30px;
}


/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar {
    position: relative;
}

.sidebar__single {
    background-color: #f2f3f6;
    padding: 36px 40px 40px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sidebar__single {
        padding: 36px 20px 40px;
    }
}

@media (max-width: 767px) {
    .sidebar__single {
        padding: 36px 25px 40px;
    }
}

.sidebar__single__search {
    padding: 30px;
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    margin-bottom: 30px;
    font-weight: 900;
    font-size: 24px;
    line-height: 26px;
    text-transform: uppercase;
    color: var(--cilox-black, #18191c);
}

.sidebar__search {
    position: relative;
}

.sidebar__search input[type=search],
.sidebar__search input[type=text] {
    outline: none;
    width: 100%;
    height: 60px;
    background-color: var(--cilox-white, #fff);
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    text-transform: capitalize;
    color: #7f7d86;
    border: 1px solid #e2e4e9;
    padding-left: 20px;
    padding-right: 52px;
    transition: all 500ms ease;
}

.sidebar__search button[type=submit] {
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    left: auto;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: auto;
    font-size: 20px;
    color: var(--cilox-text, #797b81);
    transition: all 500ms ease;
}

.sidebar__search button[type=submit]:hover {
    color: var(--cilox-base, #f5bf3e);
}

.sidebar__categories {
    margin: 0;
    padding: 0;
    margin-top: -8px;
}

.sidebar__categories li {
    position: relative;
    display: block;
}

.sidebar__categories li a {
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--cilox-text, #797b81);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 500ms ease;
    text-transform: capitalize;
    padding: 7px 0px;
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
    position: relative;
    z-index: 1;
}

.sidebar__categories li a i {
    font-size: 12px;
    transition: all 500ms ease;
}

.sidebar__categories li.current a,
.sidebar__categories li:hover a {
    border-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
    font-weight: 700;
}

.sidebar__categories li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar__posts {
    margin-bottom: 0;
}

.sidebar__posts__item {
    display: flex;
    align-items: center;
}

.sidebar__posts__item:not(:last-of-type) {
    border-bottom: 1px solid #e2e4e9;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.sidebar__posts__image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 15px;
    overflow: hidden;
}

.sidebar__posts__meta {
    margin: 0;
    color: var(--cilox-text, #797b81);
    font-weight: 600;
    font-size: 16px;
    line-height: 1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar__posts__meta i {
    position: relative;
    top: 1px;
    color: var(--cilox-base, #f5bf3e);
}

.sidebar__posts__title {
    margin: 0;
    text-transform: uppercase;
    color: var(--cilox-black, #18191c);
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .sidebar__posts__title {
        font-size: 14px;
    }
}

.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(--cilox-base, #f5bf3e);
}

.sidebar__comments {
    margin-top: -2px;
    margin-bottom: -2px;
}

.sidebar__comments__item {
    display: flex;
    align-items: center;
    margin-right: -15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sidebar__comments__item {
        margin-right: -5px;
    }
}

@media (max-width: 767px) {
    .sidebar__comments__item {
        margin-right: -5px;
    }
}

.sidebar__comments__item:not(:last-of-type) {
    padding-bottom: 24px;
}

.sidebar__comments__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cilox-white, #fff);
    font-size: 18px;
    color: var(--cilox-black, #18191c);
    margin-right: 15px;
    border-radius: 50%;
    transition: all 500ms ease;
}

.sidebar__comments__item:hover .sidebar__comments__icon {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.sidebar__comments__title {
    margin: 0;
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    font-size: 15px;
    line-height: 26px;
    font-weight: 600;
    color: var(--cilox-text, #797b81);
}

.sidebar__comments__title span {
    color: var(--cilox-black, #18191c);
}

.sidebar__comments__title a {
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    color: var(--cilox-black, #18191c);
    transition: all 500ms ease;
    display: block;
}

.sidebar__comments__title a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.sidebar__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar__tags a {
    background-color: var(--cilox-white, #fff);
    color: var(--cilox-text, #797b81);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    transition: all 500ms ease;
    display: inline-flex;
    padding: 12px 30px;
    border-radius: 100px;
}

.sidebar__tags a:hover {
    color: var(--cilox-black, #18191c);
    background-color: var(--cilox-base, #f5bf3e);
}

.sidebar__project {
    position: relative;
    z-index: 1;
}

.sidebar__project__item {
    position: relative;
    z-index: 1;
    height: 165px;
}

.sidebar__project__item__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.sidebar__project__item__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sidebar__project__item .sidebar__project__item__title {
    padding-top: 100px;
    padding-left: 30px;
    font-size: 16px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.sidebar__project .owl-dots {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar__project .owl-dots .owl-dot.active span {
    background-color: #5f5f5c !important;
    border: 2px solid #5f5f5c;
}

.sidebar__project .owl-dots button {
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    background-color: transparent !important;
}

.sidebar__project .owl-dots span {
    margin: 0 !important;
    border: none;
    outline: none;
    padding: 0;
    background-color: transparent !important;
    border: 2px solid var(--cilox-white, #fff);
}

.service-sidebar {
    position: relative;
}

.service-sidebar__single {
    position: relative;
}

.service-sidebar__single+.service-sidebar__single {
    margin-top: 30px;
}

.service-sidebar__nav {
    padding: 30px;
    background-color: #f2f3f6;
    margin: 0;
}

.service-sidebar__nav li {
    position: relative;
    display: block;
    margin-top: 10px;
}

.service-sidebar__nav li:first-child {
    margin-top: 0px;
}

.service-sidebar__nav li a {
    background-color: var(--cilox-white, #fff);
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 2.125;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 500ms ease;
    padding: 11px 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .service-sidebar__nav li a {
        font-size: 14px;
        padding: 11px 15px;
    }
}

.service-sidebar__nav li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--cilox-base, #f5bf3e);
    transform: scalex(0);
    transform-style: preserve-3d;
    transition: transform 0.4s ease-in-out;
    transform-origin: right center;
    z-index: -1;
}

.service-sidebar__nav li a i {
    font-size: 12px;
}

.service-sidebar__nav li.current::before,
.service-sidebar__nav li:hover::before {
    width: 30px;
}

.service-sidebar__nav li.current::after,
.service-sidebar__nav li:hover::after {
    background-color: var(--cilox-white, #fff);
}

.service-sidebar__nav li.current a,
.service-sidebar__nav li:hover a {
    color: var(--cilox-black, #18191c);
}

.service-sidebar__nav li.current a::after,
.service-sidebar__nav li:hover a::after {
    transform: scalex(1);
    transform-origin: left center;
}

.service-sidebar__contact {
    background-color: var(--cilox-base, #f5bf3e);
    padding: 50px 30px 30px;
    text-align: left;
    position: relative;
    z-index: 2;
    min-height: 405px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-sidebar__contact {
        padding: 20px 30px;
    }
}

.service-sidebar__contact__image {
    position: absolute;
    right: -50px;
    bottom: -70px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .service-sidebar__contact__image {
        left: 70px;
    }
    .service-sidebar__contact__image img {
        object-fit: cover;
        width: 100%;
    }
}

.service-sidebar__contact__title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 155px;
}

.service-sidebar__contact .cilox-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid var(--cilox-black, #18191c);
    padding: 0 0px 0 30px;
    gap: 30px;
    font-size: 12px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.service-sidebar__contact .cilox-btn::after,
.service-sidebar__contact .cilox-btn::before {
    background-color: var(--cilox-black, #18191c);
}

.service-sidebar__contact .cilox-btn i {
    width: 39px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-base, #f5bf3e);
    font-size: 14px;
    font-weight: 900;
    transition: all 0.4s ease-in-out;
}

.service-sidebar__contact .cilox-btn:hover {
    color: var(--cilox-white, #fff);
}

.service-sidebar__contact .cilox-btn:hover i {
    background-color: var(--cilox-white, #fff);
    color: var(--cilox-black, #18191c);
}

.service-sidebar .project-agreement {
    padding: 20px 30px;
    background-color: #f2f3f6;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.service-sidebar .project-agreement .icon {
    max-width: 50px;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--cilox-base, #f5bf3e);
    font-size: 25px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.service-sidebar .project-agreement__title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0px;
}

.service-sidebar .project-agreement__size {
    display: block;
    font-size: 12px;
    color: var(--cilox-text, #797b81);
    text-transform: uppercase;
}

.service-sidebar .project-agreement:hover .icon {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}


/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/

.blog-details__wrapper {
    position: relative;
    z-index: 1;
}

.blog-details .blog-card__title {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .blog-details .blog-card__title {
        font-size: 25px;
    }
}

.blog-details .blog-card__meta {
    margin-bottom: 5px;
}

.blog-details .blog-card__content {
    padding-left: 0;
    padding-right: 0;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.blog-details .blog-card__content .blog-card__content__inner {
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .blog-details .blog-card__content .blog-card__content__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.blog-details .blog-details__text {
    text-align: center;
}

.blog-details .blog-details__text+.blog-details__text {
    margin-top: 28px;
}

.blog-details__post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-details .blog-details__posts {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-details__posts__title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0;
}

.blog-details .blog-details__posts {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-details .blog-details__posts .cilox-btn::before,
.blog-details .blog-details__posts .cilox-btn::after {
    background-color: var(--cilox-base, #f5bf3e);
}

.blog-details .blog-details__posts a {
    font-size: 12px;
    color: var(--cilox-text, #797b81);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 12px 30px;
    border-radius: 100px;
    background-color: #f2f3f6;
}

.blog-details .blog-details__posts a:hover {
    color: var(--cilox-black, #18191c);
}

.blog-details .blog-details__social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-details .blog-details__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f2f3f6;
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.blog-details .blog-details__social a:hover {
    color: var(--cilox-white, #fff);
    background-color: var(--cilox-black, #18191c);
}

.blog-details__post-meta {
    border-top: 1px solid #e2e4e9;
    padding: 30px;
    margin-top: 60px;
}

.blog-details-common {
    margin-top: 33px;
}

.blog-details-common__item {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f2f3f6;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .blog-details-common__item {
        padding: 15px;
        gap: 15px;
    }
}

.blog-details-common__item:hover {
    background-color: var(--cilox-base, #f5bf3e);
}

.blog-details-common__item:hover .blog-details-common__item__comment {
    color: var(--cilox-black, #18191c);
    line-height: 1;
}

.blog-details-common__item:hover .blog-details-common__item__comment i {
    color: var(--cilox-black, #18191c);
}

@media (max-width: 767px) {
    .blog-details-common__item--two {
        flex-direction: row-reverse;
        justify-content: start;
    }
}

.blog-details-common__item--two .blog-details-common__item__meta {
    text-align: end;
}

@media (max-width: 767px) {
    .blog-details-common__item--two .blog-details-common__item__meta {
        text-align: left;
    }
}

.blog-details-common__item--two .blog-details-common__item__comment {
    justify-content: end;
}

@media (max-width: 767px) {
    .blog-details-common__item--two .blog-details-common__item__comment {
        justify-content: start;
    }
}

.blog-details-common__img {
    max-width: 92px;
    height: 85px;
    width: 100%;
}

.blog-details-common__img img {
    object-fit: cover;
    width: 100%;
}

.blog-details-common .blog-details-common__item__comment {
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.blog-details-common .blog-details-common__item__comment i {
    color: var(--cilox-base, #f5bf3e);
}

.blog-details-common .blog-details-common__item__title {
    margin-top: -5px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #18191c;
    line-height: 1.286;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .blog-details-common .blog-details-common__item__title {
        font-size: 15px;
    }
}

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

.blog-details-common .blog-details-common__item__title a:hover {
    background-size: 100% 1px;
}

.blog-details-common .blog-details-common__item__title a:hover {
    color: var(--cilox-black, #18191c);
}


/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/

.comments-one {
    margin-top: 54px;
}

.comments-one__title {
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 30px;
    color: var(--cilox-black, #18191c);
}

.comments-one__list {
    margin: 0;
    margin-top: 45px;
}

.comments-one__card {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
    display: flex;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .comments-one__card {
        flex-direction: column;
        gap: 18px;
    }
}

.comments-one__card__image {
    position: relative;
    margin-right: 30px;
    border-radius: 50%;
}

.comments-one__card__image img {
    border-radius: 50%;
}

.comments-one__card__title {
    margin: 0;
    text-transform: capitalize;
    margin-top: 5px;
    margin-bottom: 27px;
    font-weight: bold;
    font-size: 24px;
    line-height: 26px;
    color: var(--cilox-black, #18191c);
}

.comments-one__card__text {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
}

.comments-one__card__btn {
    position: absolute;
    top: -10px;
    right: 0;
}

.comments-one__card__btn .cilox-btn {
    padding: 12px 30px;
    background-color: #f2f3f6;
    font-size: 12px;
    color: var(--cilox-text, #797b81);
}

.comments-one__card__btn .cilox-btn::after,
.comments-one__card__btn .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.comments-one__card__btn .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
}

.comments-one__card__content {
    position: relative;
}

.comments-form {
    margin-top: 40px;
}

.comments-form__title {
    margin: 0;
    text-transform: capitalize;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    font-size: 30px;
}

.comments-form__form {
    margin-top: 30px;
}

.comments-form .form-one .bootstrap-select>.dropdown-toggle:focus,
.comments-form .form-one input[type=text]:focus,
.comments-form .form-one input[type=email]:focus,
.comments-form .form-one textarea:focus {
    font-weight: 700;
    border-color: var(--cilox-black, #18191c);
}

.comments-form .form-one__group {
    grid-gap: 20px;
}

.comments-form .form-one .cilox-btn>span,
.comments-form .form-one .cilox-btn>i {
    border-radius: 5px;
}

.comments-form__rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 22px;
}

@media (max-width: 478px) {
    .comments-form__rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.comments-form__rating h4 {
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-transform: capitalize;
    color: var(--cilox-black, #18191c);
    margin: 0;
}

.comments-form__review {
    display: flex;
    align-items: center;
    font-size: 30px;
    color: var(--cilox-base, #f5bf3e);
    letter-spacing: 8px;
}

.comments-two {
    padding-top: 40px;
}

.comments-two__title {
    margin: 0;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 30px;
    color: var(--cilox-black, #18191c);
}

.comments-two__list {
    margin: 0;
    margin-top: 45px;
}

.comments-two__card {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
    display: flex;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .comments-two__card {
        flex-direction: column;
        gap: 18px;
    }
}

.comments-two__card__image {
    position: relative;
    margin-right: 30px;
    border-radius: 50%;
}

.comments-two__card__image img {
    border-radius: 50%;
}

.comments-two__card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

@media (max-width: 478px) {
    .comments-two__card__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.comments-two__card__title {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

@media (max-width: 348px) {
    .comments-two__card__title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.comments-two__card__title h3 {
    margin: 0;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
    color: var(--cilox-black, #18191c);
}

.comments-two__card__title p {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    color: var(--cilox-base, #f5bf3e);
}

.comments-two__card__review {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: var(--cilox-black, #18191c);
    letter-spacing: 3px;
}

.comments-two__card__text {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
}

.comments-two__card__btn {
    margin-top: 23px;
}

.comments-two__card__btn .cilox-btn {
    font-size: 16px;
    font-weight: 600;
}

.comments-two__card__btn .cilox-btn>i {
    border: none;
    background-color: var(--cilox-text2, #75767a);
    color: var(--cilox-black, #18191c);
    padding: 5px 22px;
}

.comments-two__card__content {
    position: relative;
}


/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/

.product {
    position: relative;
}

.product__sidebar {
    position: relative;
}

.product__sidebar--title {
    margin: 0 0 20px;
    font-size: 18px;
    color: #18191c;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.product__search {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.product__search form {
    border-radius: 0;
    position: relative;
}

.product__search form input[type=text] {
    width: 100%;
    height: 60px;
    background-color: transparent;
    padding-left: 50px;
    padding-right: 30px;
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    color: var(--cilox-white, #fff);
    border: 1px solid #e2e4e9;
    outline: none;
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    line-height: 1.2;
    text-transform: capitalize;
}

.product__search form input[type=text]::placeholder {
    font-size: 14px;
    color: #797b81;
    line-height: 1.2;
    text-transform: capitalize;
}

.product__search button {
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: auto;
    font-size: 20px;
    color: var(--cilox-black, #18191c);
    transition: all 500ms ease;
}

.product__price-ranger {
    padding: 30px 30px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 60px 0px #f2f3f6;
    background-color: #f2f3f6;
}

.product__price-ranger #slider-range {
    margin: 0;
    background: var(--cilox-border-color, #e2e4e9);
    border: none;
    height: 7px;
    border-radius: 16px;
    position: relative;
}

.product__price-ranger #slider-range .ui-slider-range {
    height: 100%;
    background: var(--cilox-base, #f5bf3e);
}

.product__price-ranger #slider-range .ui-slider-handle {
    position: absolute;
    top: -5px;
    background: var(--cilox-base, #f5bf3e);
    border: 0;
    height: 15.7px;
    width: 15.7px !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: 24px 0 0 0px;
}

.product__price-ranger .ranger-min-max-block input[type=text] {
    position: relative;
    display: inline-block;
    color: var(--cilox-text, #797b81);
    font-size: 16px;
    font-weight: 400;
    width: 40px;
    line-height: 30px;
    border: none;
    outline: none;
    font-family: var(--cilox-heading-font, "Instrument Sans", 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(--cilox-text, #797b81);
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    left: -2px;
}

.product__price-ranger .ranger-min-max-block input[type=submit] {
    position: relative;
    display: block;
    background: var(--cilox-white, #fff);
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    float: right;
    text-align: center;
    border: none;
    color: var(--cilox-text, #797b81);
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    margin: 0;
    cursor: pointer;
    padding: 0 20px;
    height: 40px;
    border-radius: 99px;
    text-transform: uppercase;
    transition: all 500ms ease;
}

.product__price-ranger .ranger-min-max-block input[type=submit]:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-white, #fff);
}

.product__categories {
    padding: 26px 15px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 60px 0px #f2f3f6;
    background-color: #f2f3f6;
}

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

.product__categories ul li {
    position: relative;
    margin: 0px;
}

.product__categories ul li:last-child {
    border-bottom: none;
}

.product__categories ul li a {
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    text-transform: capitalize;
    z-index: 1;
    font-weight: 500;
    padding: 9px 11px;
    font-size: 16px;
    color: #797b81;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.product__categories ul li a i {
    position: relative;
    top: 1px;
    display: inline-block;
    font-size: 12px;
    color: var(--cilox-text, #797b81);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.product__categories ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cilox-white, #fff);
    visibility: hidden;
    transform: scale(0, 1);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.product__categories ul li:hover a::before,
.product__categories ul li.active a::before {
    transform: scale(1, 1);
    visibility: visible;
    transform-origin: top center;
}

.product__categories ul li:hover a i,
.product__categories ul li.active a i {
    color: var(--cilox-base, #f5bf3e);
}

.product__info-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .product__info-top {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 20px;
    }
}

.product__showing-text {
    margin: 0;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: var(--cilox-black, #18191c);
}

.product__showing-sort {
    margin: 0;
}

.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 270px !important;
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
}

.product__showing-sort .bootstrap-select>.dropdown-toggle {
    padding: 0;
    background-color: #f2f3f6;
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    outline: none !important;
    color: var(--cilox-text, #797b81);
    font-size: 16px;
    font-weight: 600;
    line-height: 60px;
}

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

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

.product__showing-sort .bootstrap-select>.dropdown-toggle:after {
    display: none;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    content: "\f078";
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
    line-height: 60px;
    font-size: 16px;
    color: var(--cilox-text, #797b81);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid transparent;
}

.product__showing-sort .bootstrap-select .dropdown-menu {
    border: none;
    overflow: hidden;
    background-color: var(--cilox-base, #f5bf3e);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 600;
    padding: 14px 20px;
    color: var(--cilox-white, #fff);
    background-color: transparent;
    -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-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
    border-color: var(--cilox-base, #f5bf3e);
}

.product__item {
    position: relative;
    transition: all 500ms ease;
    border: 1px solid var(--cilox-border-color, #e2e4e9);
    padding-top: 16px;
    padding-bottom: 0px;
    overflow: hidden;
}

.product__item__img {
    text-align: center;
}

.product__item__img img {
    transition: all 500ms ease;
    transform: scale(1);
    object-fit: cover;
    width: 100%;
}

.product__item__btn {
    position: relative;
    width: 100%;
    z-index: 2;
}

.product__item__btn .cilox-btn {
    font-size: 12px;
    color: #797b81;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    background-color: #f2f3f6;
    padding: 15px 30px;
}

.product__item__btn .cilox-btn::before,
.product__item__btn .cilox-btn::after {
    background-color: var(--cilox-base, #f5bf3e);
}

.product__item__btn .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
}

.product__item:hover .product__item__img img {
    transform: scale(1.05);
}

.product__item__content-wrap {
    position: relative;
    background-color: var(--cilox-white, #fff);
    transition: all 500ms ease;
    border-radius: 0 0 30px 30px;
}

.product__item__content {
    position: relative;
    padding: 22px 22px 40px;
    text-align: center;
}

@media (max-width: 991px) {
    .product__item__content {
        padding: 15px 15px 20px;
    }
}

.product__item__ratings {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--cilox-base, #f5bf3e);
    letter-spacing: 2px;
    font-weight: normal;
    transition: all 500ms ease;
    margin-bottom: 10px;
}

.product__item__title {
    margin: 0;
    margin-bottom: 5px;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 26px;
    color: var(--cilox-black, #18191c);
}

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

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

.product__item__price {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
    color: var(--cilox-text, #797b81);
}

.product__item:hover .product__item__ratings {
    color: var(--cilox-base, #f5bf3e);
}

.product__item:hover {
    border-color: var(--cilox-base, #f5bf3e);
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.0784313725);
}

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

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

.product-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .product-pagination {
        margin-top: 10px;
        gap: 5px;
    }
}

.product-pagination a,
.product-pagination span {
    width: 45px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--cilox-border-color, #e2e4e9);
    background-color: transparent;
    color: var(--cilox-black, #18191c);
    border-radius: 20px;
    transition: all 500ms ease;
}

.product-pagination a:hover,
.product-pagination a.current,
.product-pagination span:hover,
.product-pagination span.current {
    border-color: var(--cilox-base, #f5bf3e);
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.product-pagination .prev {
    width: auto;
    font-size: 14px;
    text-transform: capitalize;
    padding: 0 16px;
    margin-right: 10px;
    border-radius: 10px;
}

.product-pagination .next {
    width: auto;
    font-size: 14px;
    text-transform: capitalize;
    padding: 0 16px;
    border-radius: 10px;
    margin-left: 10px;
}


/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/

.product-details {
    position: relative;
}

.product-details__img {
    background-color: var(--cilox-white, #fff);
    position: relative;
    border: 1px solid #e2e4e9;
    max-width: 570px;
    height: auto;
}

.product-details__img img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.product-details .img-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    color: var(--cilox-text, #797b81);
    font-size: 20px;
}

.product-details__content {
    position: relative;
    margin-top: -10px;
}

@media (max-width: 991px) {
    .product-details__content {
        margin-top: 50px;
    }
}

.product-details__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
    margin-bottom: 0;
    padding-bottom: 15px;
}

.product-details__title {
    margin-top: 5px;
    font-size: 25px;
    line-height: normal;
    color: var(--cilox-black, #18191c);
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
}

@media (min-width: 768px) {
    .product-details__title {
        font-size: 30px;
    }
}

.product-details__price {
    margin: 0 0 -5px 17px;
    color: var(--cilox-base, #f5bf3e);
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    text-transform: uppercase;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
}

.product-details__review {
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
    font-size: 17px;
    color: var(--cilox-base, #f5bf3e);
}

.product-details__review a {
    display: inline-block;
    margin-left: 20px;
    transition: all 500ms ease;
    color: var(--cilox-text, #797b81);
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.product-details__review a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.product-details__divider {
    width: 100%;
    height: 1px;
    background-color: #e2e4e9;
    margin: 32px 0 20px 0;
}

.product-details__excerpt {
    margin: 0;
    font-size: 15px;
    line-height: 30px;
}

.product-details__excerpt-text1 {
    margin: 0 0 17px;
    max-width: 514px;
    color: var(--cilox-text, #797b81);
    font-size: 16px;
    font-weight: 600;
    line-height: 187.5%;
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
}

.product-details__excerpt-text2 {
    color: #797b81;
    margin-bottom: 37px;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    line-height: 1.875;
}

@media (max-width: 767px) {
    .product-details__excerpt-text2 br {
        display: block;
    }
}

.product-details__excerpt-text2 span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    line-height: 1.875;
}

.product-details__quantity {
    position: relative;
    display: flex;
    align-items: center;
}

.product-details__quantity-title {
    margin: 0;
    margin-right: 35px;
    color: var(--cilox-black, #18191c);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    text-transform: uppercase;
}

.product-details__quantity .quantity-box {
    position: relative;
    width: auto;
    height: 46px;
    display: flex;
}

.product-details__quantity .quantity-box input {
    width: 45px;
    height: 46px;
    border: 1px solid #e2e4e9;
    appearance: textfield;
    color: var(--cilox-text, #797b81);
    padding-left: 15px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    background-color: transparent;
}

.product-details__quantity .quantity-box button {
    width: 45px;
    height: auto;
    color: var(--cilox-text, #797b81);
    font-size: 13px;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: all 500ms ease;
}

.product-details__quantity .quantity-box button:hover,
.product-details__quantity .quantity-box button:focus,
.product-details__quantity .quantity-box button:active {
    background: var(--cilox-base, #f5bf3e);
    color: var(--cilox-white, #fff);
}

.product-details__quantity .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top: 1px solid #e2e4e9;
    border-left: 1px solid #e2e4e9;
    border-bottom: 1px solid #e2e4e9;
}

.product-details__quantity .quantity-box button.add {
    border-top: 1px solid #e2e4e9;
    border-right: 1px solid #e2e4e9;
    border-bottom: 1px solid #e2e4e9;
}

.product-details__quantity .quantity-box button:hover {
    color: var(--cilox-white, #fff);
}

.product-details__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0px 0;
}

.product-details__buttons .cilox-btn:first-child {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.product-details__buttons .cilox-btn:last-child {
    background-color: var(--cilox-base, #f5bf3e);
}

.product-details__buttons .cilox-btn:last-child::before,
.product-details__buttons .cilox-btn:last-child::after {
    background-color: var(--cilox-black, #18191c);
}

.product-details__buttons .cilox-btn:last-child:hover {
    color: var(--cilox-white, #fff);
}

.product-details__socials {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 38px;
    margin-top: 40px;
}

.product-details__socials__title {
    display: flex;
    margin-bottom: 0;
    color: var(--cilox-black, #18191c);
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
}

@media (min-width: 768px) {
    .product-details__socials__title {
        flex: 0 0 auto;
    }
}

.product-details__socials__item {
    display: flex;
    gap: 20px;
}

.product-details__socials__item a {
    display: inline;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cilox-border-color, #e2e4e9);
    font-size: 15px;
    color: var(--cilox-black, #18191c);
    transition: all 500ms ease;
    border-radius: 50%;
}

.product-details__socials__item a:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.product-details__description {
    position: relative;
    margin: 40px 0 0;
}

@media (min-width: 768px) {
    .product-details__description {
        margin: 50px 0 0;
    }
}

.product-details__description__title {
    margin-bottom: 22px;
    color: var(--cilox-black, #18191c);
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.product-details__description__text {
    color: var(--cilox-text, #797b81);
    line-height: 187.5%;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
}

.product-details__description__lists {
    margin-bottom: 25px;
    margin-top: 25px;
    padding: 0;
}

.product-details__description__lists li {
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: var(--cilox-black, #18191c);
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
}

.product-details__description__lists li i {
    color: var(--cilox-base, #f5bf3e);
    margin-right: 10px;
}

.product-details__description__lists li+li {
    margin-top: 13px;
}

.product-details__comment {
    border-top: 1px solid #e2e4e9;
    margin: 30px 0 0;
    padding: 30px 0 0;
    position: relative;
}

@media (min-width: 768px) {
    .product-details__comment {
        margin: 44px 0 0;
        padding: 43px 0 0;
    }
}

.product-details__review-title {
    margin-bottom: 35px;
    color: var(--cilox-black, #18191c);
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    text-transform: uppercase;
}

.product-details__comment-box {
    position: relative;
    padding: 11px 0 52px 200px;
    margin-bottom: 45px;
    min-height: 166px;
    border-bottom: 1px solid #e2e4e9;
}

@media (max-width: 767px) {
    .product-details__comment-box {
        padding-left: 0;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
}

.product-details__comment-box__thumb {
    width: 168px;
    height: 168px;
    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 {
    margin: 0 0 20px;
    color: var(--cilox-black, #18191c);
    font-size: 24px;
    font-weight: 700;
    line-height: 108.333%;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    text-transform: uppercase;
}

.product-details__comment-box__date {
    margin-left: 20px;
    display: inline-block;
    text-transform: none;
    letter-spacing: 0;
    color: var(--cilox-base, #f5bf3e);
    font-size: 16px;
    font-weight: 600;
    line-height: 187.5%;
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
}

.product-details__comment-box__text {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 187.5%;
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    color: var(--cilox-text, #797b81);
}

.product-details__comment-box__ratings {
    position: absolute;
    right: 0;
    top: 13px;
    display: flex;
    align-items: center;
    letter-spacing: 3px;
    font-size: 17px;
    color: var(--cilox-base, #f5bf3e);
}

@media (max-width: 767px) {
    .product-details__comment-box__ratings {
        position: relative;
        top: 0;
        margin: 0 0 22px;
    }
}

.product-details__form {
    position: relative;
}

.product-details__form .row {
    --bs-gutter-x: 20px;
}

.product-details__form-title {
    margin-bottom: 18px;
    color: var(--cilox-black, #18191c);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
}

.product-details__form-ratings {
    display: flex;
    align-items: center;
    letter-spacing: 4px;
    font-size: 22px;
    color: var(--cilox-base, #f5bf3e);
    margin: 0 0 40px;
}

.product-details__form-ratings i {
    color: var(--cilox-base, #f5bf3e);
    font-size: 500;
}

.product-details__form-ratings__label {
    display: inline-block;
    letter-spacing: 0;
    color: var(--cilox-text, #797b81);
    margin: 0 17px 0 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    text-transform: capitalize;
}

.product-details__form__form {
    margin-top: 0;
}

.product-details__form__form .form-one__control input,
.product-details__form__form .form-one__control textarea {
    background: #f2f3f6;
}

.product-details__form__form .form-one__control input::placeholder,
.product-details__form__form .form-one__control textarea::placeholder {
    color: var(--cilox-text, #797b81);
}

.product-details__form__form .cilox-btn:hover {
    color: var(--cilox-white, #fff);
}


/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/

.cart-page {
    position: relative;
    padding: 120px 0;
}

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

.cart-page .col-lg-8 {
    width: 69.3%;
}

@media (max-width: 991px) {
    .cart-page .col-lg-8 {
        width: 100%;
    }
}

.cart-page .col-lg-4 {
    width: 30.7%;
}

@media (max-width: 991px) {
    .cart-page .col-lg-4 {
        width: 100%;
    }
}

.cart-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 1199px) {
    .cart-page .table-responsive {
        margin-bottom: 50px;
    }
}

.cart-page__table {
    position: relative;
    width: 100%;
    border: none;
    margin: 0 0 31px;
}

@media (max-width: 1199px) {
    .cart-page__table {
        min-width: 802px;
    }
}

.cart-page__table thead tr th {
    padding: 0 0 10px;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    color: var(--cilox-black, #18191c);
    text-transform: capitalize;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9) !important;
    box-shadow: none;
    font-weight: bold;
    font-size: 20px;
}

.cart-page__table thead tr th:last-child {
    text-align: right;
}

.cart-page__table tbody tr td {
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 400;
    font-size: 20px;
    line-height: 47px;
    text-transform: capitalize;
    color: var(--cilox-black, #18191c);
    vertical-align: middle;
    border: none;
    box-shadow: none;
    background-color: transparent;
    border-top: 1px solid var(--cilox-border-color, #e2e4e9);
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
    padding: 30px 0;
    letter-spacing: 0;
}

.cart-page__table tbody tr td:nth-child(2),
.cart-page__table tbody tr td:nth-child(4) {
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    font-weight: 500;
}

.cart-page__table tbody tr td:last-child {
    text-align: right;
}

.cart-page__table__meta {
    display: flex;
    align-items: center;
}

.cart-page__table__meta__remove {
    color: var(--cilox-black, #18191c);
    font-size: 16px;
}

.cart-page__table__meta__remove:hover {
    color: var(--cilox-base, #f5bf3e);
}

.cart-page__table__meta__img {
    width: 109px;
    height: 107px;
    border: 1px solid var(--cilox-border-color, #e2e4e9);
    margin-right: 40px;
    position: relative;
}

.cart-page__table__meta__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.cart-page__table__meta__title {
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 900;
    font-size: 20px;
    line-height: 47px;
    text-transform: capitalize;
    margin: 0;
    color: var(--cilox-black, #18191c);
}

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

.cart-page__table__meta__title a:hover {
    background-size: 100% 1px;
}

.cart-page__table .product-details__quantity .quantity-box {
    position: relative;
    width: 153px;
    height: 46px;
    border: 1px solid var(--cilox-border-color, #e2e4e9);
    display: flex;
    align-items: center;
}

.cart-page__table .product-details__quantity .quantity-box input {
    width: 60px;
    height: 46px;
    border: none;
    outline: none;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    color: var(--cilox-black, #18191c);
    text-align: center;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    padding: 0;
}

.cart-page__table .product-details__quantity .quantity-box button {
    width: 45px;
    height: 46px;
    flex-shrink: 0;
    color: var(--cilox-black, #18191c);
    font-size: 10px;
    background-color: transparent;
    border: none;
    border-left: 1px solid var(--cilox-border-color, #e2e4e9);
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: all 500ms ease;
    text-shadow: 0px 0px 1px var(--cilox-text, #797b81);
    padding: 0;
}

.cart-page__table .product-details__quantity .quantity-box button.sub {
    border-left: none;
    border-right: 1px solid var(--cilox-border-color, #e2e4e9);
}

.cart-page__table .product-details__quantity .quantity-box button:hover {
    color: var(--cilox-base, #f5bf3e);
}

.cart-page__coupone-form-title {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    margin: 0 0 20px;
}

.cart-page__coupone-form {
    position: relative;
    margin: 0 0 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cart-page__coupone-form input[type=text] {
    height: 58px;
    width: 303px;
    border: none;
    background-color: #f2f3f6;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    font-weight: 600;
    margin-right: 20px;
}

.cart-page__link {
    color: var(--cilox-black2, #000);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.1;
    display: inline-block;
    text-transform: capitalize;
    position: relative;
    transition: all 0.5s ease;
}

.cart-page__link::after {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 100%;
    height: 1.1px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: 0 auto;
    background-color: var(--cilox-black2, #000);
    transition: all 0.5s ease;
}

.cart-page__link:hover {
    color: var(--cilox-base, #f5bf3e);
}

.cart-page__link:hover::after {
    max-width: 70%;
    background-color: var(--cilox-base, #f5bf3e);
}

.cart-page__cart-total {
    position: relative;
    margin: 0 0 0 auto;
    padding: 0;
    max-width: 320px;
}

@media (max-width: 767px) {
    .cart-page__cart-total {
        margin: 0 auto 0 0;
    }
}

.cart-page__cart-total ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cart-page__cart-total li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--cilox-black, #18191c);
    font-weight: 400;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    padding: 10px 0px;
}

.cart-page__cart-total li:last-child {
    border-top: 1px solid var(--cilox-border-color, #e2e4e9);
}

.cart-page__cart-total li span:first-child {
    text-align: right;
    font-weight: 900;
}

.cart-page__cart-total__amount {
    position: relative;
    color: var(--cilox-text, #797b81);
}

.cart-page__cart-total .total {
    color: var(--cilox-black, #18191c);
}

.cart-page__cart-total__shipping {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    color: var(--cilox-text, #797b81);
}

.cart-page__cart-total__shipping__rate {
    font-size: 16px;
    color: var(--cilox-black, #18191c);
}

.cart-page__cart-total__shipping__link {
    color: var(--cilox-base, #f5bf3e);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1;
    display: inline-block;
    position: relative;
    margin-top: 10px;
    transition: all 0.5s ease;
}

.cart-page__cart-total__shipping__link::after {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 85%;
    height: 1.1px;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: 0 auto;
    background-color: var(--cilox-base, #f5bf3e);
    transition: all 0.5s ease;
}

.cart-page__cart-total__shipping__link:hover {
    color: var(--cilox-black, #18191c);
}

.cart-page__cart-total__shipping__link:hover::after {
    background-color: var(--cilox-black, #18191c);
}

.cart-page__buttons {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.cart-page__buttons .cilox-btn:first-child {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.cart-page__buttons .cilox-btn:first-child::after,
.cart-page__buttons .cilox-btn:first-child::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.cart-page__buttons .cilox-btn:first-child:hover {
    color: var(--cilox-black, #18191c);
}


/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/

.checkout-page {
    position: relative;
}

.checkout-page .bs-gutter-x-20 {
    --bs-gutter-x: 20px;
}

.checkout-page__coupon {
    margin-bottom: 20px;
}

.checkout-page__coupon h3 {
    text-transform: capitalize;
    margin-bottom: 0;
    font-size: 15px;
    color: #797b81;
    line-height: 1.733;
}

.checkout-page__coupon a {
    color: var(--cilox-base, #f5bf3e);
}

.checkout-page__billing-address {
    position: relative;
}

.checkout-page__billing-address__title {
    margin: 0 0 29px;
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1.733;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 767px) {
    .checkout-page__billing-address__title {
        font-size: 24px;
    }
}

.checkout-page__billing-address__title i {
    color: var(--cilox-base, #f5bf3e);
    font-size: 20px;
}

.checkout-page__input-box {
    position: relative;
    line-height: 1;
    margin: 0 0 20px;
}

.checkout-page__input-box .bootstrap-select,
.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box textarea,
.checkout-page__input-box input[type=tel] {
    height: 60px;
    width: 100%;
    border: none;
    background-color: #f2f3f6;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    display: block;
    font-weight: 600;
}

.checkout-page__input-box textarea {
    height: 176px;
    width: 100%;
    padding: 25px 30px;
    font-size: 16px;
}

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

.checkout-page__input-box .bootstrap-select>.dropdown-toggle {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    outline: none !important;
    color: var(--cilox-text, #797b81);
    font-size: 16px;
    font-weight: 600;
    line-height: 60px;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle {
    display: flex;
    align-items: center;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle:after {
    display: none;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0px;
    content: "\f078";
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
    line-height: 60px;
    font-size: 16px;
    color: var(--cilox-text, #797b81);
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid transparent;
}

.checkout-page__input-box .bootstrap-select .dropdown-menu {
    border: none;
    overflow: hidden;
    background-color: var(--cilox-base, #f5bf3e);
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 600;
    padding: 14px 20px;
    color: var(--cilox-white, #fff);
    background-color: transparent;
    -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-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
    border-color: var(--cilox-base, #f5bf3e);
}

.checkout-page__check-wrapper {
    position: relative;
    margin: 5px 0 46px;
}

.checkout-page__check-box {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.checkout-page__check-box input[type=checkbox] {
    display: none;
}

.checkout-page__check-box label {
    position: relative;
    display: block;
    padding-left: 42px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--cilox-text, #797b81);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: none;
    cursor: pointer;
}

.checkout-page__check-box label span:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cilox-white, #fff);
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-size: 10px;
    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: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-white, #fff);
    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;
}

@media (max-width: 1200px) {
    .checkout-page__cost-process {
        padding-left: 0;
    }
}

.checkout-page__cost-process-title {
    line-height: 1;
    margin-bottom: 0;
    padding-bottom: 35px;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 900;
    font-size: 30px;
    text-transform: uppercase;
}

.checkout-page .cart-process-wrap {
    border-top: 1px solid var(--cilox-border-color, #e2e4e9);
}

.checkout-page .cart-process-wrap.cart-process-wrap+.cart-process-wrap {
    margin-top: 26px;
}

.checkout-page .cart-page__common {
    padding: 20px 0;
    margin-bottom: 0;
    color: var(--cilox-black, #18191c);
    font-weight: 600;
    font-size: 18px;
    position: relative;
}

.checkout-page .cart-page__common:hover {
    background-color: transparent;
}

.checkout-page .cart-page__top {
    padding: 12px 0;
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
}

.checkout-page .cart-page__carttitle {
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 700;
    font-size: 20px;
    line-height: 47px;
    color: var(--cilox-black, #18191c);
    text-transform: uppercase;
}

.checkout-page .cart-page__cartname {
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 700;
    font-size: 20px;
    line-height: 47px;
    text-transform: capitalize;
    color: var(--cilox-black, #18191c);
}

.checkout-page .cart-page__cartprice {
    font-weight: 700;
    font-size: 20px;
    line-height: 47px;
    color: var(--cilox-text, #797b81);
}

.checkout-page .cart-page__common+.cart-page__common {
    border-top: none;
    padding: 5px 0;
}

.checkout-page .cart-page__intotals {
    border-top: 1px solid var(--cilox-border-color, #e2e4e9) !important;
}

.checkout-page .cart-page__flat-rate {
    position: relative;
    font-size: 16px;
    text-align: right;
}

.checkout-page .cart-page__flat-rate span {
    display: block;
}

.checkout-page .cart-page__flat-rate small {
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    display: block;
}

.checkout-page .cart-page__flat-rate a {
    color: var(--cilox-base, #f5bf3e);
    text-decoration: underline;
    font-size: 14px;
    line-height: 1.1;
    display: inline-block;
    position: relative;
    margin-top: 10px;
    transition: all 0.5s ease;
}

.checkout-page .cart-page__flat-rate a:hover {
    color: var(--cilox-black, #18191c);
}

.checkout-page .cart-page__table__meta-img {
    width: 52px;
    min-width: 52px;
    padding: 7px 7px;
    margin-right: 10px;
}

.checkout-page .cart-page__table__meta-img img {
    max-width: 36px;
    max-height: initial;
}

.checkout-page .cart-page__table__meta__title {
    font-size: 14px;
}

.checkout-page .change-address {
    color: var(--cilox-black, #18191c);
}

.checkout-page .change-address::after {
    border-bottom-color: var(--cilox-black, #18191c);
}

.checkout-page__payment {
    background-color: #f2f3f6;
    padding: 30px 40px;
    min-height: 295px;
    margin-bottom: 20px;
}

.checkout-page__payment__item {
    position: relative;
}

.checkout-page__payment__item--active .checkout-page__payment__title::before {
    background-color: var(--cilox-base, #f5bf3e);
    content: "\f00c";
    color: var(--cilox-white, #fff);
}

.checkout-page__payment__title {
    display: flex;
    margin: 0;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 900;
    font-size: 20px;
    line-height: 47px;
    text-transform: uppercase;
    color: var(--cilox-black, #18191c);
}

@media (max-width: 575px) {
    .checkout-page__payment__title {
        font-size: 17px;
    }
}

.checkout-page__payment__title::before {
    content: "";
    width: 24px;
    height: 24px;
    background-color: var(--cilox-white, #fff);
    border-radius: 50%;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    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__content {
    margin-left: 35px;
    margin-bottom: 39px;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
}


/*--------------------------------------------------------------
# Case Study
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Counter
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/

.login-page {
    position: relative;
}

.login-page__info {
    background-color: #f2f3f6;
    padding: 25px 35px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .login-page__info {
        margin-bottom: 20px;
    }
}

.login-page__info p {
    margin: 0;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    color: var(--cilox-text, #797b81);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
}

.login-page__info p span {
    color: var(--cilox-black, #18191c);
    text-transform: capitalize;
    font-weight: 700;
}

.login-page__info p a {
    display: inline-block;
    color: var(--cilox-base, #f5bf3e);
    transition: all 500ms ease;
}

.login-page__info p a:hover {
    color: var(--cilox-white, #fff);
    text-shadow: 0 0 1px currentColor;
}

.login-page__wrap {
    position: relative;
    padding: 58px 40px;
    background-color: var(--cilox-white, #fff);
    border: 1px solid var(--cilox-border-color, #e2e4e9);
}

@media (max-width: 575px) {
    .login-page__wrap {
        padding: 30px 20px;
    }
}

.login-page__wrap__title {
    font-weight: 700;
    font-size: 30px;
    color: var(--cilox-black, #18191c);
    text-transform: uppercase;
    margin-bottom: 34px;
}

@media (max-width: 991px) {
    .login-page__wrap__title {
        margin-top: 50px;
    }
}

.login-page__form {
    position: relative;
    display: block;
}

.login-page__form-input-box {
    position: relative;
    display: block;
    margin-bottom: 24px;
}

.login-page__form-input-box input[type=email],
.login-page__form-input-box input[type=password] {
    height: 60px;
    width: 100%;
    border: 1px solid var(--cilox-border-color, #e2e4e9);
    background-color: transparent;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 15px;
    color: var(--cilox-text, #797b81);
    display: block;
    font-weight: 400;
}

.login-page__checked-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 35px;
}

.login-page__checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--cilox-text, #797b81);
    text-transform: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
}

.login-page__checked-box label span:before {
    position: absolute;
    top: 5px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--cilox-black, #18191c);
    border-right: 2px solid var(--cilox-black, #18191c);
    content: "";
    width: 5px;
    height: 8px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.login-page__checked-box input[type=checkbox] {
    display: none;
}

.login-page__checked-box input[type=checkbox]+label span {
    position: absolute;
    top: 5px;
    left: 0;
    width: 20px;
    height: 20px;
    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(--cilox-border-color, #e2e4e9);
}

.login-page__checked-box input[type=checkbox]:checked+label span:before {
    opacity: 1;
}

.login-page__form-btn-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.login-page__form-forgot-password {
    position: relative;
    display: block;
    margin-left: 0px;
    flex: 0 0 100%;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .login-page__form-forgot-password {
        margin-left: 20px;
        flex: 0 0 auto;
        margin-top: 0;
    }
}

.login-page__form-forgot-password a {
    color: var(--cilox-text, #797b81);
    position: relative;
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    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(--cilox-base, #f5bf3e);
}


/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/

.error-404 {
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
}

.error-404__image {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    padding-top: 130px;
}

.error-404__image img {
    max-width: 100%;
    height: auto;
}

.error-404__image__shape {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.error-404__image__shape img {
    animation: flowerRotate 5s linear 0s infinite;
}

.error-404__title {
    text-transform: capitalize;
    color: var(--cilox-black, #18191c);
    margin: 0;
    margin-bottom: 8px;
    font-weight: 900;
    font-size: 40px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .error-404__title {
        font-size: 30px;
    }
}

.error-404__text {
    margin: 0 0 28px;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
}

.error-404__search {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    max-width: 496px;
}

.error-404__search input[type=text] {
    border: none;
    outline: none;
    display: block;
    background-color: #f2f3f6;
    color: var(--cilox-text, #797b81);
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    padding-left: 60px;
    height: 60px;
}

.error-404__search__btn {
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--cilox-black, #18191c);
    border: none;
    outline: none;
    transition: all 500ms ease;
}

.error-404 .cilox-btn::after,
.error-404 .cilox-btn::before {
    background-color: var(--cilox-black, #18191c);
}

.error-404 .cilox-btn:hover {
    color: var(--cilox-white, #fff);
}


/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/

.faq-one {
    position: relative;
}

.faq-one__accordion {
    position: relative;
}

.faq-one__accordion .accrodion+.accrodion {
    margin-top: 10px;
}

.faq-one__accordion .accrodion {
    position: relative;
    transition: all 500ms ease;
}

.faq-one__accordion .accrodion-title {
    padding: 27px 40px;
    padding-right: 70px;
    background-color: var(--cilox-white, #fff);
    cursor: pointer;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .faq-one__accordion .accrodion-title {
        padding: 20px;
        padding-right: 70px;
    }
}

.faq-one__accordion .accrodion-title h4 {
    flex: 1;
    color: var(--cilox-black, #18191c);
    margin: 0;
    font-size: 18px;
    transition: all 500ms ease;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
}

@media (max-width: 575px) {
    .faq-one__accordion .accrodion-title h4 {
        font-size: 16px;
    }
}

.faq-one__accordion .accrodion-title__icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.faq-one__accordion .accrodion-title__icon::after,
.faq-one__accordion .accrodion-title__icon::before {
    width: 2px;
    height: 15px;
    position: absolute;
    background-color: var(--cilox-black, #18191c);
    top: 50%;
    left: 50%;
    content: "";
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
    z-index: 2;
}

.faq-one__accordion .accrodion-title__icon::after {
    width: 15px;
    height: 2px;
}

.faq-one__accordion .active .accrodion-title h4 {
    color: var(--cilox-base, #f5bf3e);
}

.faq-one__accordion .active .accrodion-title__icon::after {
    background-color: var(--cilox-base, #f5bf3e);
}

.faq-one__accordion .active .accrodion-title__icon::before {
    opacity: 0;
    visibility: hidden;
}

.faq-one__accordion .accrodion-content .inner {
    margin-top: -10px;
    background-color: var(--cilox-white, #fff);
    padding: 0px 40px 35px;
}

@media (max-width: 767px) {
    .faq-one__accordion .accrodion-content .inner {
        padding: 0px 20px 35px;
    }
}

.faq-one__accordion .accrodion-content p {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    line-height: 1.875;
    text-align: left;
    font-weight: 500;
    margin-bottom: 0;
}

.faq-one__content .accrodion {
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.07);
    border: 1px solid transparent;
}

.faq-one__content .accrodion.active {
    border-color: #e2e4e9;
}

.faq-one__content .accrodion.active .accrodion-title__icon::after,
.faq-one__content .accrodion.active .accrodion-title__icon::before {
    background-color: var(--cilox-black, #18191c);
}

.faq-one__content .accrodion-title__icon::after,
.faq-one__content .accrodion-title__icon::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.faq-one__box {
    position: relative;
    z-index: 1;
}

.faq-one__box .faq-one__cta {
    background-color: var(--cilox-base, #f5bf3e);
    padding-bottom: 35px;
}

.faq-one__box .faq-one__cta .faq-one__cta__thumb img {
    object-fit: cover;
    width: 100%;
}

.faq-one__box .faq-one__cta:hover .faq-one__cta__icon {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.faq-one__box .faq-one__cta__icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cilox-white, #fff);
    border-radius: 50%;
    margin-left: auto;
    color: var(--cilox-base, #f5bf3e);
    margin-right: auto;
    font-size: 30px;
    margin-top: -35px;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    transition: all 0.4s ease-in-out;
}

.faq-one__box .faq-one__cta__title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
}

.faq-one__box .faq-one__cta__call {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.faq-one__box .faq-one__cta__call,
.faq-one__box .faq-one__cta__subtitle {
    font-size: 12px;
    color: var(--cilox-black, #18191c);
    text-transform: uppercase;
    line-height: 1.4;
    text-align: center;
}

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

.faq-one__box .faq-one__cta__call a:hover {
    background-size: 100% 1px;
}

.faq-one__box .faq-one__cta__call a:hover {
    color: var(--cilox-black, #18191c);
}

.faq-top {
    position: relative;
    margin-bottom: 60px;
}

.faq-top__inner {
    padding: 60px 0;
    position: relative;
}

@media (max-width: 991px) {
    .faq-top__inner {
        padding: 40px 20px;
    }
}

.faq-top__title {
    font-size: 50px;
    color: #18191c;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .faq-top__title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .faq-top__title {
        font-size: 30px;
    }
}

.faq-top__bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.faq-top__newsletter {
    height: 60px;
    position: relative;
    z-index: 1;
    width: 570px;
    margin-left: auto;
    margin-right: auto;
    border-style: solid;
    border-width: 1px;
    border-color: var(--cilox-white, #fff);
    background-color: var(--cilox-white, #fff);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
}

@media (max-width: 991px) {
    .faq-top__newsletter {
        max-width: 570px;
        width: 100%;
    }
}

.faq-top__newsletter input {
    height: 60px;
    width: 100%;
    border: none;
    outline: none;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
}

.faq-top__newsletter input::placeholder {
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    line-height: 1.2;
    text-align: left;
    font-weight: 600;
}

.faq-top__newsletter button {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 22px;
    color: var(--cilox-text, #797b81);
}

.faq-two {
    position: relative;
    z-index: 1;
    background-color: #f2f3f6;
}

.faq-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.faq-two__content {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-right: -30px;
}

@media (max-width: 1199px) {
    .faq-two__content {
        margin-right: 0;
    }
}

.faq-two__count {
    padding-bottom: 90px;
    position: relative;
}

.faq-two__count::after {
    content: "";
    width: 300px;
    height: 300px;
    position: absolute;
    top: -145px;
    left: 0;
    background-color: var(--cilox-base, #f5bf3e);
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 1199px) {
    .faq-two__count::after {
        width: 100%;
        height: auto;
        border-radius: 0;
        top: 0;
        left: 0;
        bottom: 70px;
    }
}

.faq-two__funfact__count {
    font-size: 80px;
    color: #18191c;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: center;
}

.faq-two__funfact__count__text {
    font-size: 16px;
    color: #18191c;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0;
}

.faq-two .faq-two__star {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.faq-two .faq-two__star i {
    background-color: var(--cilox-base, #f5bf3e);
    padding: 10px;
    color: var(--cilox-black, #18191c);
}

@media (max-width: 1199px) and (min-width: 992px) {
    .faq-two .faq-two__star i {
        padding: 6px;
    }
}

.faq-two__content__text {
    font-size: 16px;
    color: #797b81;
    line-height: 1.2;
    font-weight: 500;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
    margin-bottom: 30px;
}

.faq-two__content__title {
    font-size: 20px;
    color: #18191c;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 0;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .faq-two__content__title {
        font-size: 16px;
    }
}

.faq-two .faq-two__thumb__box {
    border-radius: 1000px 1000px 0 0;
    background-color: var(--cilox-base, #f5bf3e);
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .faq-two .faq-two__thumb__box {
        margin-left: 38px;
    }
}

.faq-two .faq-two__thumb__item img {
    border-radius: 1000px 1000px 0 0;
    object-fit: cover;
    width: 100%;
}

.faq-two .faq-two__thumb__bg {
    height: 20px;
    width: 100%;
    background-image: url(../images/backgrounds/service-card-1-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
}

.faq-two .faq-two__small-star {
    position: absolute;
    top: 0;
    right: 0;
}

.faq-two .faq-two__small-star img {
    animation: totalScallRoted 4s ease-in-out infinite;
}

.faq-two .faq-two__small-arrow {
    position: absolute;
    top: 30%;
    left: -80px;
    z-index: -1;
}

.faq-two .faq-two__small-arrow img {
    animation: topToBottom 3s ease-in-out infinite;
}


/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/

.package-page {
    position: relative;
    z-index: 1;
}

.package-page .sec-title {
    margin-bottom: 30px;
}

.package-page__tab {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.package-page__tab__item.active-btn .cilox-btn {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.package-page__tab__item .cilox-btn {
    font-size: 12px;
    color: var(--cilox-text, #797b81);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 12px 35px;
    background-color: #f2f3f6;
    cursor: pointer;
}

.package-page__tab__item .cilox-btn::after,
.package-page__tab__item .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.package-page__tab__item .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
}

.price-card {
    position: relative;
    z-index: 1;
    border: 1px solid #e2e4e9;
}

.price-card__inner {
    position: relative;
    margin: 15px;
    z-index: 1;
    background-color: #e2e4e9;
    padding: 40px 20px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 500px) {
    .price-card__inner {
        padding: 20px 15px;
        margin: 10px;
    }
}

.price-card__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/shapes/price-bg-hover.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
    transition: all 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.price-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.price-card__price {
    font-size: 34px;
    color: var(--cilox-black, #18191c);
    line-height: 0.882;
    display: block;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
}

.price-card__cate {
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    line-height: 0.882;
    display: block;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.4s ease-in-out;
}

.price-card__icon {
    border-style: solid;
    border-width: 1px;
    border-color: #e2e4e9;
    border-radius: 50%;
    background-color: var(--cilox-white, #fff);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
    width: 118px;
    height: 118px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    margin-bottom: 15px;
    font-size: 63px;
    color: var(--cilox-base, #f5bf3e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.price-card__icon::after,
.price-card__icon::before {
    content: "";
    position: absolute;
    top: -27%;
    left: 0;
    width: 50%;
    height: 140%;
    background-color: var(--cilox-base, #f5bf3e);
    transform: rotate(30deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.price-card__icon::before {
    transform: rotate(30deg) translateX(-100%);
}

.price-card__icon::after {
    left: auto;
    right: 0;
    width: 50%;
    height: 140%;
    top: -14%;
    transform: rotate(30deg) translateX(100%);
}

.price-card__list-title {
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    line-height: 2.5;
    text-align: center;
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.price-card__list {
    text-align: center;
    margin-bottom: 30px;
}

.price-card__list li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    gap: 8px;
    font-weight: bold;
    line-height: 2.5;
    text-align: center;
}

.price-card__list li i {
    font-size: 15px;
    color: var(--cilox-base, #f5bf3e);
}

.price-card__btn {
    text-align: center;
}

.price-card__btn .cilox-btn {
    justify-content: center;
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.price-card__btn .cilox-btn::before,
.price-card__btn .cilox-btn::after {
    background-color: var(--cilox-white, #fff);
}

.price-card__btn .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
}

.price-card:hover .price-card__inner {
    background-color: var(--cilox-black, #18191c);
}

.price-card:hover .price-card__inner::before {
    visibility: visible;
    opacity: 1;
}

.price-card:hover .price-card__bg {
    visibility: hidden;
    opacity: 0;
}

.price-card:hover .price-card__list-title,
.price-card:hover .price-card__price {
    color: var(--cilox-white, #fff);
}

.price-card:hover .price-card__cate {
    color: var(--cilox-text, #797b81);
}

.price-card:hover .price-card__icon {
    color: var(--cilox-black, #18191c);
}

.price-card:hover .price-card__icon::before {
    transform: rotate(30deg) translateX(0%);
}

.price-card:hover .price-card__icon::after {
    transform: rotate(30deg) translateX(0%);
}

.price-card:hover .cilox-btn {
    background-color: var(--cilox-base, #f5bf3e);
}


/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

@-webkit-keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(80%);
    }
    51% {
        transform: translateY(-80%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(80%);
    }
    51% {
        transform: translateY(-80%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes flowerRotate {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25%,
    75% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

@keyframes textScrolling {
    0% {
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        transform: translate3d(0%, 0, 0);
    }
}

@keyframes totalScall {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes totalScallTwo {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes totalScallRoted {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(0.4) rotate(90deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bellshake {
    0% {
        transform: rotate(0);
    }
    15% {
        transform: rotate(5deg);
    }
    30% {
        transform: rotate(-5deg);
    }
    45% {
        transform: rotate(4deg);
    }
    60% {
        transform: rotate(-4deg);
    }
    75% {
        transform: rotate(2deg);
    }
    85% {
        transform: rotate(-2deg);
    }
    92% {
        transform: rotate(1deg);
    }
    100% {
        transform: rotate(0);
    }
}

@keyframes gelatine {
    from,
    to {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(0.7, 1.1);
    }
    50% {
        transform: scale(1.1, 0.7);
    }
    75% {
        transform: scale(0.95, 1.05);
    }
}

@keyframes LeftToRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes topToBottom {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        transform: skewX(-25deg) translateX(0);
    }
    100% {
        transform: skewX(-25deg) translateX(250%);
    }
}

.hover\:shine {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hover\:shine::before {
    position: absolute;
    content: "";
    top: 0;
    left: -140%;
    bottom: 0;
    width: 100%;
    background-image: linear-gradient(to right, transparent 50%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    transition: 0.5s ease;
    z-index: 1;
}

.hover\:shine:is(:hover, :focus-within)::before {
    animation: shine 1s ease forwards;
}


/*--------------------------------------------------------------
# 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(--cilox-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(--cilox-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(--cilox-black, #18191c);
    opacity: 0.3;
    cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--cilox-black, #18191c);
    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(--cilox-white, #fff);
    cursor: pointer;
}

.mobile-nav__close:hover {
    color: var(--cilox-base, #f5bf3e);
}

.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(--cilox-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(--cilox-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(--cilox-white, #fff);
    font-size: 12px;
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    text-transform: uppercase;
    font-weight: 500;
    height: 46px;
    letter-spacing: var(--cilox-letter-space, 0.1em);
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--cilox-base, #f5bf3e);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--cilox-base, #f5bf3e);
    border: none;
    outline: none;
    color: var(--cilox-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(--cilox-white, #fff);
    color: var(--cilox-black, #18191c);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--cilox-white, #fff);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 20px;
}

.mobile-nav__social a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--cilox-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(--cilox-base, #f5bf3e);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--cilox-base, #f5bf3e);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    margin-right: 10px;
    color: var(--cilox-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;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
    width: 100%;
    background-color: var(--cilox-white, #fff);
    font-size: 16px;
    font-weight: 600;
    color: var(--cilox-text, #797b81);
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__form .cilox-btn {
    padding: 0;
    width: 66px;
    height: 66px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
}

.search-popup__form .cilox-btn::before,
.search-popup__form .cilox-btn::after {
    display: none;
}

.search-popup__form .cilox-btn:hover {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-base, #f5bf3e);
}

.search-popup.active {
    z-index: 9999;
}

.search-popup.active .search-popup__overlay {
    top: auto;
    bottom: calc(90px - 112vw);
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    opacity: 0.9;
    -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
    .search-popup.active .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(0%);
    }
}

.search-popup.active .search-popup__content {
    width: 100%;
    opacity: 1;
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
}


/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
    background-color: var(--cilox-black, #18191c);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 270px;
    padding-bottom: 195px;
    z-index: 1;
}

@media (max-width: 991px) {
    .page-header {
        padding-top: 220px;
        padding-bottom: 120px;
    }
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.8;
    background-image: url(../images/backgrounds/page-header-bg-1-1.jpg);
    z-index: -1;
}

.page-header__title {
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--cilox-white, #fff);
    margin: 0;
}

@media (max-width: 1199px) {
    .page-header__title {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .page-header__title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .page-header__title {
        font-size: 35px;
    }
}

.page-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 20px;
}

@media (max-width: 767px) {
    .page-header__inner {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        margin-left: 0;
        margin-right: auto;
    }
}

.cilox-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    background-color: transparent;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
    padding: 7px 19px;
    border-radius: 100px;
    border: 1px solid var(--cilox-white, #fff);
}

@media (max-width: 767px) {
    .cilox-breadcrumb {
        margin-left: 0;
        margin-right: auto;
    }
}

.cilox-breadcrumb li {
    font-size: 12px;
    color: var(--cilox-white, #fff);
    text-transform: capitalize;
    font-weight: 570;
    display: flex;
    align-items: center;
}

.cilox-breadcrumb li:not(:last-of-type)::after {
    content: "/";
    position: relative;
    top: 0;
    margin-left: 7px;
    margin-right: 7px;
}

.cilox-breadcrumb li span {
    color: inherit;
    display: inline-flex;
}

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

.cilox-breadcrumb li a:hover {
    background-size: 100% 1px;
}

.cilox-breadcrumb li a:hover {
    color: var(--cilox-base, #f5bf3e);
}


/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/

.google-map {
    position: relative;
}

.google-map iframe {
    position: relative;
    display: block;
    border: none;
    height: 440px;
    width: 100%;
    mix-blend-mode: luminosity;
}

.google-map__contact {
    overflow: hidden;
    background-color: var(--cilox-text, #797b81);
    margin-top: 120px;
}

.contact-map {
    position: relative;
    padding-bottom: 120px;
}

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

.contact-map .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 1654px;
}


/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/

.client-carousel {
    position: relative;
    z-index: 1;
    background-color: var(--cilox-white, #fff);
}

.client-carousel--two {
    background-color: transparent;
}

.client-carousel--two .client-carousel__title {
    color: var(--cilox-white, #fff);
}

.client-carousel--two .client-carousel__title .client-carousel__one__item img {
    filter: grayscale(100%);
}

.client-carousel--two .client-carousel__inner {
    border-top: 1px solid #2c2d31;
    padding-top: 35px;
    padding-bottom: 35px;
}

@media (max-width: 767px) {
    .client-carousel--two .client-carousel__inner {
        padding: 60px 0;
    }
}

.client-carousel--two .client-carousel__left {
    border-right: 1px solid #2c2d31;
}

.client-carousel--two .client-carousel__one__item img {
    opacity: 40%;
    transition: all 0.4s ease-in-out;
}

.client-carousel--two .client-carousel__one__item:hover img {
    opacity: 1;
}

@media (min-width: 1320px) {
    .client-carousel--two .container {
        max-width: 1310px;
    }
}

.client-carousel--about {
    padding-top: 35px;
    padding-bottom: 35px;
}

@media (max-width: 767px) {
    .client-carousel--about {
        padding: 60px 0;
    }
}

@media (min-width: 1320px) {
    .client-carousel.brande-border .container {
        max-width: 1310px;
    }
}

.client-carousel.brande-border .client-carousel__inner {
    border: 1px solid var(--cilox-border-color, #e2e4e9);
    padding: 30px 60px;
}

@media (max-width: 767px) {
    .client-carousel.brande-border .client-carousel__inner {
        border: 1px solid transparent;
        padding: 0;
    }
}

.client-carousel.brande-border .client-carousel__inner .client-carousel__one__item img {
    opacity: 50%;
    transition: all 0.4s ease-in-out;
}

.client-carousel.brande-border .client-carousel__inner .client-carousel__one__item:hover img {
    opacity: 1;
}

.client-carousel.brande-border .client-carousel__title {
    margin-bottom: 0;
    padding: 30px 0;
}

.client-carousel__inner {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .client-carousel__inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.client-carousel__left {
    padding-right: 30px;
    margin-right: 100px;
    border-right: 1px solid var(--cilox-border-color, #e2e4e9);
}

@media (max-width: 1199px) {
    .client-carousel__left {
        padding-right: 10px;
        margin-right: 40px;
    }
}

@media (max-width: 767px) {
    .client-carousel__left {
        padding-right: 0px;
        margin-right: 0px;
        border-right: 1px solid transparent;
    }
}

.client-carousel__title {
    font-size: 18px;
    color: #18191c;
    font-weight: bold;
    text-transform: uppercase;
    width: 150px;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 767px) {
    .client-carousel__title {
        width: 100%;
        padding-top: 0;
        padding-bottom: 20px;
    }
}

.client-carousel__one__item img {
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 50%;
    transition: all 0.4s ease-in-out;
}

.client-carousel__one__item:hover img {
    opacity: 1;
}

.client-carousel .client-carousel__box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brand-two .client-carousel {
    padding: 70px 0;
    border-bottom: 1px solid #e1e2e7;
}

.brand-two .client-carousel__one__item {
    padding: 30px;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
}

.brand-two .client-carousel__one__item:hover {
    background-color: #f2f3f6;
}


/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/

.main-slider-one {
    position: relative;
    background-color: var(--cilox-black, #18191c);
}

.main-slider-one__slick-button {
    border: none;
    outline: none;
    background-color: var(--cilox-white, #fff);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.main-slider-one__slick-button:first-child {
    transform: rotateY(180deg);
}

.main-slider-one__slick-button:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.main-slider-one__item {
    background-color: var(--cilox-black, #18191c);
    position: relative;
    z-index: 3;
    padding-top: 310px;
    padding-bottom: 180px;
}

@media (max-width: 991px) {
    .main-slider-one__item {
        padding-top: 250px;
        padding-bottom: 120px;
    }
}

.main-slider-one__item::after {
    content: "";
    background-image: -moz-linear-gradient(90deg, rgba(24, 25, 28, 0) 0%, rgba(24, 25, 28, 0.9) 100%);
    background-image: -webkit-linear-gradient(90deg, rgba(24, 25, 28, 0) 0%, rgba(24, 25, 28, 0.9) 100%);
    background-image: -ms-linear-gradient(90deg, rgba(24, 25, 28, 0) 0%, rgba(24, 25, 28, 0.9) 100%);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 296px;
}

.main-slider-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    transform: scale(1);
    transition: transform 12000ms ease, -webkit-transform 12000ms ease;
    overflow: hidden;
    opacity: 30%;
    z-index: -1;
}

.main-slider-one__bg__shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: scale(1.5);
    transition: transform 5000ms ease, opacity 5000ms ease-in-out, -webkit-transform 5000ms ease;
}

.main-slider-one__content {
    position: relative;
    display: inline-block;
    z-index: 3;
    overflow: hidden;
}

.main-slider-one__title {
    display: flex;
    align-items: start;
    flex-direction: column;
    font-size: 80px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    overflow: hidden;
    margin: 0 0 33px;
}

@media (max-width: 991px) {
    .main-slider-one__title {
        font-size: 60px;
        line-height: 65px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__title {
        font-size: 50px;
        line-height: 55px;
    }
}

.main-slider-one__title .design {
    display: inline-block;
    opacity: 0;
    transform: translateY(-60px);
}

.main-slider-one__btn {
    position: relative;
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(200px);
    transform-origin: bottom;
    transition: all 1500ms ease;
}

.main-slider-one__btn .cilox-btn {
    background-color: transparent;
    border: 1px solid var(--cilox-base, #f5bf3e);
    color: var(--cilox-base, #f5bf3e);
    padding: 15px 40px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.main-slider-one__btn .cilox-btn::after,
.main-slider-one__btn .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.main-slider-one__btn .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
    border-color: var(--cilox-base, #f5bf3e);
    background-color: var(--cilox-black, #18191c);
}

.main-slider-one .slick-active .main-slider-one__bg {
    transform: scale(1.1);
    transition-delay: 1100ms;
}

.main-slider-one .slick-active .main-slider-one__bg__shape {
    opacity: 1;
    transition-delay: 1000ms;
    transform: scale(1);
}

.main-slider-one .slick-active .main-slider-one__text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}

.main-slider-one .slick-active .main-slider-one__title .design {
    animation: fadeUp 1s forwards;
    animation-delay: var(--delay, 0s);
}

.main-slider-one .slick-active .main-slider-one__btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-slider-one__count-bar {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 25px 30px 25px 50px;
    border-radius: 100px;
    border: 1px solid var(--cilox-white, #fff);
    position: absolute;
    bottom: 50px;
    right: 20%;
}

@media (max-width: 1199px) {
    .main-slider-one__count-bar {
        right: 20px;
        padding: 15px 20px 15px 30px;
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .main-slider-one__count-bar {
        border: none;
        bottom: 20px;
    }
}

.main-slider-one__count-bar .main-slider-one__custom-dots .slick-dots {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

@media (max-width: 575px) {
    .main-slider-one__count-bar .main-slider-one__custom-dots .slick-dots {
        display: none;
    }
}

.main-slider-one__count-bar .main-slider-one__custom-dots .slick-dots li button {
    padding: 0;
    border: none;
    outline: none;
    margin: 0;
    font-size: 24px;
    color: var(--cilox-white, #fff);
    background-color: transparent;
    line-height: 0.99;
    position: relative;
    z-index: 1;
}

.main-slider-one__count-bar .main-slider-one__custom-dots .slick-dots li button::after {
    content: "";
    width: 1px;
    height: 100%;
    width: 1px;
    position: absolute;
    background-color: var(--cilox-white, #fff);
    right: -10px;
    top: 0;
    transform: rotate(15deg);
}

.main-slider-one__count-bar .main-slider-one__custom-dots .slick-dots li:last-child button::after {
    display: none;
}

.main-slider-one__count-bar .main-slider-one__custom-dots .slick-dots li.slick-active button {
    color: var(--cilox-base, #f5bf3e);
}

.main-slider-one__count-bar .main-slider-one__custom-dots .slick-dots li.slick-active button::after {
    background-color: var(--cilox-base, #f5bf3e);
}

.main-slider-one__count-bar .main-slider-one__arrow-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-slider-two {
    position: relative;
    background-color: var(--cilox-black, #18191c);
}

.main-slider-two__slick-button {
    border: none;
    outline: none;
    background-color: var(--cilox-white, #fff);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.main-slider-two__slick-button:first-child {
    transform: rotateY(180deg);
}

.main-slider-two__slick-button:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.main-slider-two__item {
    background-color: var(--cilox-black, #18191c);
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding-top: 305px;
    padding-bottom: 185px;
}

@media (max-width: 1199px) {
    .main-slider-two__item {
        padding-top: 250px;
        padding-bottom: 120px;
    }
}

.main-slider-two__item::after {
    content: "";
    background-image: -moz-linear-gradient(90deg, rgba(24, 25, 28, 0) 0%, rgba(24, 25, 28, 0.9) 100%);
    background-image: -webkit-linear-gradient(90deg, rgba(24, 25, 28, 0) 0%, rgba(24, 25, 28, 0.9) 100%);
    background-image: -ms-linear-gradient(90deg, rgba(24, 25, 28, 0) 0%, rgba(24, 25, 28, 0.9) 100%);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 296px;
}

.main-slider-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    transform: scale(1.3);
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
    overflow: hidden;
    opacity: 30%;
    z-index: -1;
}

.main-slider-two__bg__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(100%);
}

.main-slider-two__bg__shape img {
    object-fit: cover;
}

@media (max-width: 991px) {
    .main-slider-two__bg__shape {
        display: none;
    }
}

.main-slider-two__content {
    position: relative;
    display: inline-block;
    z-index: 3;
    overflow: hidden;
}

.main-slider-two__title {
    display: flex;
    align-items: start;
    flex-direction: column;
    font-size: 100px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 0.9;
    overflow: hidden;
    margin: 0 0 33px;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(400px);
}

@media (max-width: 991px) {
    .main-slider-two__title {
        font-size: 60px;
        line-height: 65px;
    }
}

@media (max-width: 767px) {
    .main-slider-two__title {
        font-size: 40px;
        line-height: 45px;
    }
}

.main-slider-two__title::after {
    content: "";
    width: 101%;
    height: 100%;
    position: absolute;
    top: 2px;
    left: 100%;
    background: currentColor;
    transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
    z-index: 3;
    transform: translateX(-100%);
    transition-delay: 1s;
}

.main-slider-two__btn {
    position: relative;
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(200px);
    transform-origin: bottom;
    transition: all 1500ms ease;
}

.main-slider-two__btn .cilox-btn {
    background-color: transparent;
    border: 1px solid var(--cilox-base, #f5bf3e);
    color: var(--cilox-base, #f5bf3e);
    padding: 15px 40px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.main-slider-two__btn .cilox-btn::after,
.main-slider-two__btn .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.main-slider-two__btn .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
    border-color: var(--cilox-base, #f5bf3e);
    background-color: var(--cilox-black, #18191c);
}

.main-slider-two .slick-active .main-slider-two__bg {
    transform: scale(1);
}

.main-slider-two .slick-active .main-slider-two__bg__shape {
    opacity: 70%;
    transform: translateX(0);
    transition-delay: 1300ms;
}

.main-slider-two .slick-active .main-slider-two__text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}

.main-slider-two .slick-active .main-slider-two__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms;
}

.main-slider-two .slick-active .main-slider-two__title::after {
    transform: translateX(1%);
    transition-delay: 1500ms;
}

.main-slider-two .slick-active .main-slider-two__btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms;
}

.main-slider-two__count-bar {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 25px 30px 25px 50px;
    border-radius: 100px;
    border: 1px solid var(--cilox-white, #fff);
    position: absolute;
    bottom: 50px;
    right: 20%;
}

@media (max-width: 1199px) {
    .main-slider-two__count-bar {
        right: 20px;
        padding: 15px 20px 15px 30px;
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .main-slider-two__count-bar {
        border: none;
        bottom: 20px;
    }
}

.main-slider-two__count-bar .main-slider-two__custom-dots .slick-dots {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

@media (max-width: 575px) {
    .main-slider-two__count-bar .main-slider-two__custom-dots .slick-dots {
        display: none;
    }
}

.main-slider-two__count-bar .main-slider-two__custom-dots .slick-dots li button {
    padding: 0;
    border: none;
    outline: none;
    margin: 0;
    font-size: 24px;
    color: var(--cilox-white, #fff);
    background-color: transparent;
    line-height: 0.99;
    position: relative;
    z-index: 1;
}

.main-slider-two__count-bar .main-slider-two__custom-dots .slick-dots li button::after {
    content: "";
    width: 1px;
    height: 100%;
    width: 1px;
    position: absolute;
    background-color: var(--cilox-white, #fff);
    right: -10px;
    top: 0;
    transform: rotate(15deg);
}

.main-slider-two__count-bar .main-slider-two__custom-dots .slick-dots li:last-child button::after {
    display: none;
}

.main-slider-two__count-bar .main-slider-two__custom-dots .slick-dots li.slick-active button {
    color: var(--cilox-base, #f5bf3e);
}

.main-slider-two__count-bar .main-slider-two__custom-dots .slick-dots li.slick-active button::after {
    background-color: var(--cilox-base, #f5bf3e);
}

.main-slider-two__count-bar .main-slider-two__arrow-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-slider-three__count-bar {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 25px 30px 25px 50px;
    border-radius: 100px;
    border: 1px solid var(--cilox-white, #fff);
    position: absolute;
    bottom: 50px;
    right: 20%;
}

@media (max-width: 1199px) {
    .main-slider-three__count-bar {
        right: 20px;
        padding: 15px 20px 15px 30px;
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .main-slider-three__count-bar {
        border: none;
        bottom: 20px;
    }
}

.main-slider-three__count-bar .main-slider-three__custom-dots .slick-dots {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

@media (max-width: 575px) {
    .main-slider-three__count-bar .main-slider-three__custom-dots .slick-dots {
        display: none;
    }
}

.main-slider-three__count-bar .main-slider-three__custom-dots .slick-dots li button {
    padding: 0;
    border: none;
    outline: none;
    margin: 0;
    font-size: 24px;
    color: var(--cilox-white, #fff);
    background-color: transparent;
    line-height: 0.99;
    position: relative;
    z-index: 1;
}

.main-slider-three__count-bar .main-slider-three__custom-dots .slick-dots li button::after {
    content: "";
    width: 1px;
    height: 100%;
    width: 1px;
    position: absolute;
    background-color: var(--cilox-white, #fff);
    right: -10px;
    top: 0;
    transform: rotate(15deg);
}

.main-slider-three__count-bar .main-slider-three__custom-dots .slick-dots li:last-child button::after {
    display: none;
}

.main-slider-three__count-bar .main-slider-three__custom-dots .slick-dots li.slick-active button {
    color: var(--cilox-base, #f5bf3e);
}

.main-slider-three__count-bar .main-slider-three__custom-dots .slick-dots li.slick-active button::after {
    background-color: var(--cilox-base, #f5bf3e);
}

.main-slider-three__count-bar .main-slider-three__arrow-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-slider-three {
    position: relative;
    background-color: var(--cilox-black, #18191c);
    z-index: 1;
}

.main-slider-three__slick-button {
    border: none;
    outline: none;
    background-color: var(--cilox-white, #fff);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.main-slider-three__slick-button:first-child {
    transform: rotateY(180deg);
}

.main-slider-three__slick-button:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.main-slider-three__item {
    background-color: var(--cilox-black, #18191c);
    position: relative;
    z-index: 3;
    padding-top: 168px;
    padding-bottom: 168px;
}

@media (max-width: 1199px) {
    .main-slider-three__item {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.main-slider-three__item::before {
    content: "";
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgba(254, 198, 63, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgba(254, 198, 63, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgba(254, 198, 63, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: -400px;
    bottom: -400px;
    width: 800px;
    height: 800px;
}

@media (min-width: 1600px) {
    .main-slider-three .container {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.main-slider-three__shape {
    height: 110px;
    width: 120px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--cilox-base, #f5bf3e);
    clip-path: polygon(100% 0, 0 0, 0 100%);
}

.main-slider-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    z-index: -1;
}

.main-slider-three__bg__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: transform 1300ms ease, opacity 1300ms ease;
    transform: translateX(200%);
}

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

.main-slider-three__thumb {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 212.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,212.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2162 4045 c381 -394 506 -758 409 -1192 -78 -350 -44 -310 -1378 -1648 l-1202 -1205 2520 0 2519 0 485 485 485 485 0 1635 0 1635 -2013 0 -2013 0 188 -195z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 212.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,212.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2162 4045 c381 -394 506 -758 409 -1192 -78 -350 -44 -310 -1378 -1648 l-1202 -1205 2520 0 2519 0 485 485 485 485 0 1635 0 1635 -2013 0 -2013 0 188 -195z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: auto;
    mask-size: auto;
    opacity: 0;
    transition: transform 1300ms ease, opacity 1300ms ease;
    transform: translateX(200%);
}

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

.main-slider-three__content {
    position: relative;
    display: inline-block;
    z-index: 3;
    overflow: hidden;
}

.main-slider-three__sub-title {
    font-size: 18px;
    color: var(--cilox-base, #f5bf3e);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 17px;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-200px);
    transform-origin: top;
    transition: all 1200ms ease;
}

.main-slider-three__title {
    display: flex;
    align-items: start;
    flex-direction: column;
    font-size: 100px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 0.9;
    overflow: hidden;
    margin: 0 0 33px;
    opacity: 0;
    transform: translateX(-100%) scaleX(2);
    transition: transform 1200ms ease, opacity 1200ms ease;
}

@media (max-width: 991px) {
    .main-slider-three__title {
        font-size: 60px;
        line-height: 65px;
    }
}

@media (max-width: 767px) {
    .main-slider-three__title {
        font-size: 40px;
        line-height: 45px;
    }
}

.main-slider-three__btn {
    position: relative;
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(200px);
    transform-origin: bottom;
    transition: all 1200ms ease;
}

.main-slider-three__btn .cilox-btn {
    background-color: transparent;
    border: 1px solid var(--cilox-base, #f5bf3e);
    color: var(--cilox-base, #f5bf3e);
    padding: 15px 40px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
}

.main-slider-three__btn .cilox-btn::after,
.main-slider-three__btn .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.main-slider-three__btn .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
    border-color: var(--cilox-base, #f5bf3e);
    background-color: var(--cilox-black, #18191c);
}

.main-slider-three .slick-active .main-slider-three__text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}

.main-slider-three .slick-active .main-slider-three__bg__shape,
.main-slider-three .slick-active .main-slider-three__thumb {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms;
}

.main-slider-three .slick-active .main-slider-three__title {
    opacity: 1;
    transform: translateX(0%) scaleX(1);
    transition-delay: 1300ms;
}

.main-slider-three .slick-active .main-slider-three__title::after {
    transform: translateX(1%);
    transition-delay: 1500ms;
}

.main-slider-three .slick-active .main-slider-three__sub-title {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms;
}

.main-slider-three .slick-active .main-slider-three__btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms;
}


/*--------------------------------------------------------------
# Hero One
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/

.feature-one {
    position: relative;
    z-index: 1;
    background-color: var(--cilox-black, #18191c);
}

.feature-one::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/shapes/feature-bg-1-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.feature-one__top {
    margin-bottom: 50px;
}

.feature-one__top .sec-title {
    margin-bottom: 0;
}

.feature-one__top .sec-title .sec-title__title {
    color: var(--cilox-white, #fff);
}

.feature-one__top__text {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    line-height: 1.875;
    font-weight: 600;
    margin: 0;
}

.feature-one__item__image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.feature-one__item__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.feature-one__item__image:hover img {
    transform: scale(1.05);
}

.feature-one__content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background-color: var(--cilox-black, #18191c);
    transform: translateY(0px);
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 768px),
(max-width: 500px) {
    .feature-one__content {
        padding: 15px;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}

.feature-one__title {
    font-size: 14px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    margin: 0;
}

.feature-one__title-b {
    font-size: 14px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    margin: 0;
}

@media (max-width: 1199px) and (min-width: 768px),
(max-width: 500px) {
    .feature-one__title {
        font-size: 16px;
    }
}

@media (max-width: 1199px) and (min-width: 768px),
(max-width: 500px) {
    .feature-one__title-b {
        font-size: 16px;
    }
}

.feature-one__icon {
    position: absolute;
    right: 0;
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
    font-size: 30px;
    margin-top: -30px;
}

@media (max-width: 1199px) and (min-width: 768px),
(max-width: 500px) {
    .feature-one__icon {
        width: 70px;
        height: 70px;
        font-size: 25px;
    }
}

.feature-one__icon__inner {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--cilox-black, #18191c);
    background-color: var(--cilox-base, #f5bf3e);
}

@media (max-width: 1199px) and (min-width: 768px),
(max-width: 500px) {
    .feature-one__icon__inner {
        width: 45px;
        height: 45px;
    }
}

.feature-one__hover__content {
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 40px 40px;
    background-color: rgba(var(--cilox-black-rgb, 24, 25, 28), 0.9);
    transform: rotateX(90deg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 768px),
(max-width: 500px) {
    .feature-one__hover__content {
        padding: 15px;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}

.feature-one__hover__content .feature-one__title {
    font-size: 18px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 20px;
}

.feature-one__hover__content .feature-one__text {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    line-height: 1.875;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #39393d;
}

.feature-one__hover__content .feature-one__btn {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--cilox-base, #f5bf3e);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
}

.feature-one__item {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-one__item:hover .feature-one__content {
    transform: translateY(130px);
    visibility: hidden;
    opacity: 0;
}

.feature-one__item:hover .feature-one__hover__content {
    transform: rotateX(0deg);
    opacity: 1;
    visibility: visible;
}

.feature-one__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(var(--cilox-white-rgb, 255, 255, 255), 0.1);
    padding-top: 29px;
    padding-bottom: 29px;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .feature-one__bottom {
        flex-wrap: wrap;
    }
}

.feature-one__bottom__text {
    font-size: 16px;
    color: #75767a;
    line-height: 1.875;
    margin: 0;
}

.feature-one__bottom .cilox-btn {
    font-size: 12px;
    color: rgb(121, 123, 129);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    border-radius: 100px;
    background-color: #000000;
    padding: 12px 20px;
}

.feature-one__bottom .cilox-btn::after,
.feature-one__bottom .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.feature-three {
    position: relative;
    z-index: 1;
}

@media (min-width: 1550px) {
    .feature-three .container {
        max-width: 1545px;
        margin-left: auto;
        margin-right: auto;
    }
}

.feature-three__card {
    position: relative;
    z-index: 1;
    background-color: var(--cilox-black, #18191c);
    overflow: hidden;
}

.feature-three__card__thumb img {
    object-fit: cover;
    width: 100%;
    opacity: 0.8;
    transition: all 0.4s ease-in-out;
}

.feature-three__card__shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(0%);
    transition: all 0.4s ease-in-out;
}

.feature-three__card__shape img {
    opacity: 0.8;
}

@media (max-width: 1550px) and (min-width: 992px) {
    .feature-three__card__shape img {
        object-fit: cover;
        width: 100%;
    }
}

.feature-three__card__content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transform: translateX(0%);
    transition: all 0.4s ease-in-out;
}

.feature-three__card__title {
    font-size: 30px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: center;
}

.feature-three__card__text {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 25px;
    color: var(--cilox-white, #fff);
}

.feature-three__card__btn {
    border-top: 1px solid #3a3b3e;
    padding-top: 10px;
}

.feature-three__card__btn a {
    display: flex;
    align-items: center;
    justify-content: start;
    color: var(--cilox-white, #fff);
    gap: 5px;
    text-transform: uppercase;
}

.feature-three__card__btn a i {
    font-size: 18px;
    color: var(--cilox-base, #f5bf3e);
}

.feature-three__card__hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px;
    background-color: rgba(var(--cilox-black-rgb, 24, 25, 28), 0.8);
    transform: translateY(100%);
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1550px) and (min-width: 992px),
(max-width: 500px) {
    .feature-three__card__hover {
        padding: 30px 20px;
    }
}

.feature-three__card__hover .feature-three__card__text,
.feature-three__card__hover .feature-three__card__title {
    text-align: left;
}

.feature-three__card__hover .feature-three__card__title {
    margin-bottom: 25px;
}

.feature-three__card__hover .feature-three__card__btn {
    position: absolute;
    bottom: 50px;
    right: 50px;
    left: 50px;
}

@media (max-width: 1550px) and (min-width: 992px),
(max-width: 500px) {
    .feature-three__card__hover .feature-three__card__btn {
        right: 30px;
        left: 30px;
        bottom: 30px;
    }
}

.feature-three__card:hover .feature-three__card__content {
    transform: translateX(-100%);
}

.feature-three__card:hover .feature-three__card__hover {
    transform: translateY(0%);
}

.feature-three__card:hover .feature-three__card__shape {
    transform: translateX(-100%);
}

.feature-three__card:hover .feature-three__card__thumb img {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-one {
    position: relative;
    z-index: 1;
}

.about-one .sec-title {
    margin-bottom: 20px;
}

.about-one__image {
    position: relative;
    z-index: 1;
}

.about-one__image__thumb img {
    object-fit: cover;
    border-radius: 1000px 1000px 0 0;
}

@media (max-width: 767px) {
    .about-one__image__thumb {
        text-align: center;
    }
    .about-one__image__thumb img {
        object-fit: cover;
        width: 100%;
    }
}

.about-one__image__shape {
    position: absolute;
    top: 0;
    left: -58px;
    z-index: 1;
}

.about-one__image__shape img {
    animation: topToBottom 3s ease-in-out infinite;
}

@media (max-width: 575px) {
    .about-one__image__shape {
        display: none;
    }
}

.about-one__image::after {
    content: "";
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(255, 255, 255) 100%);
    opacity: 0.702;
    position: absolute;
    width: 438px;
    height: 438px;
    z-index: -2;
    bottom: -150px;
    left: -200px;
}

@media (max-width: 991px) {
    .about-one__image::after {
        display: none;
    }
}

.about-one__image .about-one__shape {
    position: absolute;
    right: 0;
    top: 10%;
    z-index: 1;
}

@media (max-width: 991px) {
    .about-one__image .about-one__shape {
        display: none;
    }
}

.about-one__image .about-one__shape img {
    animation: LeftToRight 4s ease-in-out infinite;
}

.about-one__top__text {
    font-size: 18px;
    color: var(--cilox-base, #f5bf3e);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4;
    font-style: normal;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.about-one__text {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    font-style: normal;
    line-height: 1.3;
    font-weight: 500;
    border-bottom: 1px solid #e2e4e9;
    margin-bottom: 15px;
    padding-bottom: 35px;
}

.about-one__feature__list {
    margin: 0;
}

.about-one__feature__list__item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    color: #18191c;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 2.5;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .about-one__feature__list__item {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .about-one__feature__list__item {
        font-size: 14px;
        line-height: 1.2;
    }
}

.about-one__feature__list__item .about-one__icon {
    max-width: 32px;
    width: 100%;
    border-radius: 50%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
    font-size: 13px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .about-one__feature__list__item .about-one__icon {
        max-width: 20px;
        width: 100%;
        height: 20px;
        font-size: 10px;
    }
}

.about-one__feature__list__item:hover .about-one__icon {
    color: var(--cilox-white, #fff);
    background-color: var(--cilox-black, #18191c);
}

@media (max-width: 575px) {
    .about-one__feature__list li+li {
        margin-top: 15px;
    }
}

.about-one__feature {
    position: absolute;
    z-index: 1;
    bottom: 25px;
    right: 20px;
    max-width: 300px;
    padding: 28px 40px;
    width: 100%;
    background-color: var(--cilox-white, #fff);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 575px) {
    .about-one__feature {
        position: relative;
        margin-top: 30px;
        right: auto;
    }
}

.about-one__feature__title {
    font-size: 18px;
    color: #18191c;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0;
    margin: 0;
}

.about-one__feature__icon {
    font-size: 40px;
    color: var(--cilox-base, #f5bf3e);
}

.about-one .cilox-btn:hover {
    color: var(--cilox-white, #fff);
}

.about-two {
    position: relative;
    z-index: 1;
}

.about-two::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 348px;
    top: 0;
    right: 0;
    background-image: -moz-linear-gradient(90deg, rgb(242, 243, 246) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(242, 243, 246) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(242, 243, 246) 0%, rgb(255, 255, 255) 100%);
    z-index: -1;
}

.about-two__content {
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .about-two__content {
        margin-left: 65px;
    }
}

@media (min-width: 1200px) {
    .about-two__content .sec-title {
        padding-bottom: 50px;
        margin-bottom: 40px;
    }
}

.about-two__content .sec-title__title {
    font-weight: 600;
}

.about-two__top__text {
    font-size: 18px;
    color: var(--cilox-base, #f5bf3e);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.4;
    font-style: normal;
    margin-bottom: 16px;
}

.about-two__text {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    font-style: normal;
    line-height: 1.3;
    font-weight: 500;
    padding-bottom: 35px;
}

.about-two__feature__list {
    padding-bottom: 30px;
    display: flex;
    border-bottom: 1px solid #e2e4e9;
    align-items: center;
    justify-content: start;
    margin: 0;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-two__feature__list::after {
    content: "";
    position: absolute;
    height: 60%;
    width: 1px;
    background-color: #e2e4e9;
    top: 0;
    left: calc(50% - 30px);
}

.about-two__feature__list__item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    color: #18191c;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0;
    max-width: 200px;
    transition: all 0.4s ease-in-out;
}

.about-two__feature__list__item:hover .about-two__icon {
    color: var(--cilox-black, #18191c);
    animation: gelatine 0.6s;
}

.about-two__feature__list .about-two__icon {
    font-size: 60px;
    color: var(--cilox-base, #f5bf3e);
    transition: all 0.4s ease-in-out;
}

.about-two .progress-box {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    margin-bottom: 32px;
}

.about-two .progress-box .progress-box__title {
    font-size: 18px;
    color: #18191c;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 16px;
}

.about-two .progress-box .progress-box__number {
    font-size: 11px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    height: 27px;
    width: 40px;
    background-image: url(../images/shapes/base.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    padding-top: 5px;
    padding-left: 8px;
    margin-bottom: 8px;
    margin-right: -35px;
}

.about-two .progress-box .progress-box__bar {
    height: 8px;
    background-color: var(--cilox-border-color, #e2e4e9);
    border-radius: 4px;
}

.about-two__thumb {
    position: relative;
    z-index: 1;
}

.about-two__thumb::after {
    content: "";
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0.01) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0.01) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0.01) 100%);
    opacity: 0.702;
    position: absolute;
    width: 438px;
    height: 438px;
    bottom: -100px;
    left: -200px;
    z-index: -2;
}

.about-two__thumb__image {
    position: relative;
    z-index: 1;
}

.about-two__thumb__image img {
    object-fit: cover;
}

.about-two__thumb .about-area-two__video-box {
    right: auto;
    left: 55px;
    z-index: 2;
}

.about-two__thumb__image-two {
    margin-top: -225px;
    text-align: end;
    position: absolute;
    right: 0;
    z-index: 2;
}

@media (max-width: 991px) {
    .about-two__thumb__image-two {
        position: relative;
    }
}

@media (max-width: 575px) {
    .about-two__thumb__image-two {
        margin-top: 10px;
        margin-bottom: 0;
        text-align: left;
    }
}

.about-two__thumb__image-two img {
    object-fit: cover;
    border: 15px solid #fff;
    border-bottom: none;
    border-right: none;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .about-two__thumb__image-two img {
        width: 70%;
    }
}

.about-two__thumb__shape {
    position: absolute;
    top: 30px;
    left: -30px;
    z-index: 1;
}

.about-two__thumb__shape img {
    animation: topToBottom 3s ease-in-out infinite;
}

.about-two__thumb__shape-two {
    position: absolute;
    top: 35%;
    right: -30px;
}

.about-two__thumb__shape-two img {
    animation: totalScallRoted 4s ease-in-out infinite;
}

.about-two__thumb__shape-three {
    position: absolute;
    top: 25%;
    right: 0px;
    z-index: -1;
}

.about-two .cilox-btn {
    padding: 21px 40px;
}

.about-two .cilox-btn:hover {
    color: var(--cilox-white, #fff);
}

.about-area-two {
    position: relative;
    z-index: 1;
}

.about-area-two .sec-title {
    margin-bottom: 38px;
}

.about-area-two__text {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    font-style: normal;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 40px;
}

.about-area-two__feature {
    margin-right: -30px;
}

.about-area-two__feature__title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--cilox-base, #f5bf3e);
    letter-spacing: 0.1px;
    margin-bottom: 15px;
}

.about-area-two__feature__list {
    margin-bottom: 27px;
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
    padding-bottom: 24px;
}

.about-area-two__feature__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    line-height: 2.25;
    text-align: left;
    text-transform: capitalize;
    font-weight: 600;
}

.about-area-two__feature__list li i {
    color: var(--cilox-base, #f5bf3e);
}

.about-area-two__feature__group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .about-area-two__feature__group {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.about-area-two__feature__thumb img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid var(--cilox-white, #fff);
    border-radius: 50%;
}

.about-area-two__feature__thumb img+img {
    margin-left: -20px;
}

.about-area-two__feature__text {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    line-height: 1.2;
    text-align: left;
    margin-bottom: 0;
    font-weight: 500;
}

.about-area-two__small-thumb {
    position: relative;
    z-index: 1;
    margin-top: 15px;
}

.about-area-two__small-thumb .about-area-two__small-thumb__item {
    margin-left: -35px;
    margin-right: 15px;
}

.about-area-two__small-thumb .about-area-two__small-thumb__item img {
    object-fit: cover;
    width: 100%;
    border-radius: 50%;
}

.about-area-two__small-thumb::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.702;
    bottom: -180px;
    z-index: -1;
    left: -180px;
    width: 438px;
    height: 438px;
}

.about-area-two__small-shape {
    position: absolute;
    top: -15px;
    left: -82px;
    z-index: -1;
}

@media (max-width: 991px) {
    .about-area-two__small-shape {
        display: none;
    }
}

.about-area-two__small-shape img {
    object-fit: cover;
    width: 100%;
}

.about-area-two__small-star {
    position: absolute;
    top: 0;
    right: 0;
}

.about-area-two__small-star img {
    animation: totalScallRoted 4s ease-in-out infinite;
}

.about-area-two__thumb {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .about-area-two__thumb__item {
        margin-left: 45px;
    }
}

.about-area-two__thumb__item img {
    object-fit: cover;
    width: 100%;
    border-radius: 1000px 1000px 0 0;
}

.about-area-two__thumb__start {
    position: absolute;
    top: 0;
    right: 0;
}

.about-area-two__thumb__start img {
    animation: totalScallRoted 4.5s ease-in-out infinite;
}

.about-area-two__video-box {
    position: absolute;
    bottom: 0;
    right: 35px;
    background-color: transparent;
    padding: 16px;
    border-radius: 1000px 1000px 0 0;
    border: 1px solid var(--cilox-border-color, #e2e4e9);
}

.about-area-two__video-box .video-popup {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--cilox-white-rgb, 255, 255, 255), 0.6);
    font-size: 22px;
    color: var(--cilox-white, #fff);
}

.about-area-two__video-box .video-popup:hover {
    background-color: var(--cilox-base, #f5bf3e);
}

.about-area-two__funfact {
    max-width: 170px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 84px;
    z-index: 1;
    left: 0;
    background-color: var(--cilox-white, #fff);
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.about-area-two__funfact .about-area-two__funfact__icon {
    font-size: 65px;
    color: var(--cilox-base, #f5bf3e);
    line-height: 1;
    margin-bottom: 10px;
}

.about-area-two__funfact .funfact-one__list__count {
    display: flex;
    align-items: center;
    font-size: 42.284px;
    font-weight: bold;
    line-height: 0.65;
    margin-bottom: 10px;
}

.about-area-two__funfact .funfact-one__list__count span {
    color: inherit;
}

.about-area-two__funfact .funfact-one__list__text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: -6px;
    text-transform: capitalize;
    font-weight: 600;
}

.about-three {
    position: relative;
    z-index: 1;
}

.about-three::after {
    content: "";
    position: absolute;
    width: calc(50% - 100px);
    height: 348px;
    top: 0;
    left: 0;
    background-image: -moz-linear-gradient(90deg, rgb(242, 243, 246) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(242, 243, 246) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(242, 243, 246) 0%, rgb(255, 255, 255) 100%);
    z-index: -1;
}

.about-three .sec-title {
    margin-bottom: 30px;
}

.about-three__thumb {
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .about-three__thumb {
        margin-left: -60px;
        margin-right: 70px;
    }
}

.about-three__thumb__item img {
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 767px) {
    .about-three__thumb__item img {
        width: 100%;
    }
}

.about-three__thumb__shape {
    position: absolute;
    top: 0;
    left: -40px;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 767px) {
    .about-three__thumb__shape {
        left: -20px;
    }
    .about-three__thumb__shape img {
        width: 100%;
    }
}

.about-three__thumb__shape img {
    object-fit: cover;
    animation: topToBottom 3s ease-in-out infinite;
}

.about-three__thumb__video {
    position: absolute;
    bottom: 5%;
    right: 12%;
    z-index: 1;
}

.about-three__thumb__video img {
    position: absolute;
    top: -20px;
    left: -20px;
    animation: textRotate 6s ease-in-out infinite;
}

.about-three__thumb__video .video-popup {
    width: 95px;
    height: 95px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: var(--cilox-black, #18191c);
    font-size: 22px;
    color: var(--cilox-white, #fff);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.about-three__thumb__video .video-popup:hover {
    background-color: var(--cilox-base, #f5bf3e);
}

.about-three__thumb::after {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 438px;
    height: 438px;
    content: "";
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(255, 255, 255) 100%);
    opacity: 0.702;
    z-index: -1;
}

.about-three__content__text {
    margin-bottom: 20px;
}

.about-three__group {
    display: flex;
    gap: 20px;
    align-items: start;
    margin-bottom: 24px;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .about-three__group {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.about-three__list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

@media (max-width: 767px) and (min-width: 576px),
(max-width: 430px) {
    .about-three__list {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.about-three__list__item {
    font-family: var(--cilox-font, "Instrument Sans", sans-serif);
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    text-transform: uppercase;
    line-height: 1.875;
    font-weight: bold;
    text-align: left;
}

.about-three__list__item i {
    color: var(--cilox-base, #f5bf3e);
}

.about-three__bottom {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 500px) {
    .about-three__bottom {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.about-three__user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-three__user__name {
    font-size: 18px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0;
}

.about-three__user__dec {
    font-size: 14px;
    color: var(--cilox-text, #797b81);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
    letter-spacing: 0.01em;
}

.about-three__user__image {
    display: flex;
    align-items: center;
    max-width: 60px;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    height: 60px;
    border: 2px solid var(--cilox-base, #f5bf3e);
}

.about-three__user__image img {
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
}

.about-three__funfact {
    max-width: 150px;
    background-color: #f2f3f6;
    width: 100%;
    text-align: center;
    padding: 25px 0;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .about-three__funfact {
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }
}

.about-three__funfact__icon {
    font-size: 65px;
    color: var(--cilox-base, #f5bf3e);
    line-height: 1;
    margin-bottom: 8px;
}

.about-three__funfact .about-three__list__count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42.284px;
    font-weight: bold;
    line-height: 0.65;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.about-three__funfact .about-three__list__count span {
    color: inherit;
}

.about-three__funfact .about-three__list__text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: -6px;
    text-transform: capitalize;
    font-weight: 600;
}

.about-three .cilox-btn:hover {
    color: var(--cilox-white, #fff);
}


/*--------------------------------------------------------------
# Brand
--------------------------------------------------------------*/

.barnds-one {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

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

.barnds-one__inner {
    border: 1px solid var(--cilox-text, #797b81);
    padding: 0px 25px 0 40px;
}

@media (max-width: 1199px) {
    .barnds-one__inner {
        padding: 0px 20px;
    }
}

.barnds-one__logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin-left: -10px;
}

@media (max-width: 991px) {
    .barnds-one__logos {
        padding: 24px 0;
    }
}

.barnds-one__img {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 500ms ease;
}

.barnds-one__img img {
    width: auto !important;
    filter: grayscale(100%);
    transition: all 500ms ease;
}

.barnds-one__img:hover img {
    filter: grayscale(0);
}

.barnds-one__text {
    padding: 44px 0px;
    padding-left: 15px;
    border-right: 1px solid var(--cilox-text, #797b81);
}

@media (max-width: 1199px) {
    .barnds-one__text {
        padding-left: 0px;
    }
}

@media (max-width: 991px) {
    .barnds-one__text {
        border-bottom: 1px solid var(--cilox-text, #797b81);
        border-right: none;
        padding-top: 24px;
        padding-bottom: 10px;
        text-align: center;
    }
}

.barnds-one__text h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    color: var(--cilox-white, #fff);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .barnds-one__text h3 br {
        display: none;
    }
}

.barnds-one--home-five {
    position: relative;
    padding: 0 0 120px;
}

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

.barnds-one--home-five::after {
    position: absolute;
    left: -25%;
    bottom: -60px;
    content: "";
    width: 696px;
    height: 696px;
    border-radius: 696px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(var(--cilox-base-rgb, 245, 191, 62), 0.5) 0%, rgba(225, 162, 67, 0.5) 89%);
    filter: blur(125px);
}

@media (max-width: 1599px) {
    .barnds-one--home-five::after {
        left: -40%;
    }
}

@media (max-width: 1349px) {
    .barnds-one--home-five::after {
        display: none;
    }
}

.barnds-one--home-five .barnds-one__text,
.barnds-one--home-five .barnds-one__inner {
    border-color: var(--cilox-border-color, #e2e4e9);
}

.barnds-one--home-five .barnds-one__text h3 {
    color: var(--cilox-black, #18191c);
}

.barnds-three {
    padding: 64px 0;
    background-color: var(--cilox-text2, #75767a);
    max-width: 1600px;
    margin: 0 auto;
}

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

.barnds-one-about {
    padding-bottom: 120px;
}

.barnds-one-about .barnds-one__text,
.barnds-one-about .barnds-one__inner {
    border-color: var(--cilox-border-color, #e2e4e9);
}

.barnds-one-about .barnds-one__text h3 {
    color: var(--cilox-black, #18191c);
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.service-one {
    position: relative;
}

.service-one__top {
    margin-bottom: 50px;
}

.service-one__top .sec-title {
    margin-bottom: 0;
}

.service-one .service-one__custome-navs {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .service-one .service-one__custome-navs {
        justify-content: end;
    }
}

.service-one .service-one__custome-navs button {
    border: none;
    outline: none;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    width: 56px;
    height: 56px;
    background-color: #f2f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--cilox-black, #18191c);
    border: 1px solid transparent;
    transition: all 400ms ease;
}

.service-one .service-one__custome-navs button:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
    border-color: transparent;
}

.service-one .service-one__custome-navs button span {
    border: none;
    outline: none;
    color: inherit;
}

.service-one .service-one__custome-navs button:first-child {
    transform: rotate(180deg);
}

.service-card {
    border-style: solid;
    border-width: 1px;
    border-color: #e2e4e9;
    background-color: var(--cilox-white, #fff);
    padding: 30px 30px 20px;
    position: relative;
    transition: all 0.5s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .service-card {
        padding: 20px 15px 20px;
    }
}

.service-card__top {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.service-card__title {
    margin-bottom: 0;
    font-size: 20px;
    color: #18191c;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
}

.service-card__icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: var(--cilox-base, #f5bf3e);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cilox-black, #18191c);
    margin-right: 20px;
    margin-bottom: -40px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

.service-card__thumb {
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.service-card__thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--cilox-base, #f5bf3e);
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.service-card__thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cilox-black, #18191c);
    opacity: 0;
    transform: translateY(-70%);
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.service-card__thumb img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
}

.service-card__text {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    line-height: 1.625;
    font-weight: 600;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
    margin-bottom: 20px;
    background-color: var(--cilox-white, #fff);
    transform: translateY(-119px);
    position: absolute;
    padding-top: 15px;
    transition: all 0.5s ease-in-out;
    max-width: 400px;
    width: 100%;
}

.service-card__btn {
    font-size: 12px;
    color: var(--cilox-text, #797b81);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.5s ease-in-out;
}

.service-card__btn:hover {
    color: var(--cilox-black, #18191c);
}

.service-card:hover {
    box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-card__thumb {
    height: 100%;
}

.service-card:hover .service-card__thumb::before {
    transform: translate(0);
    opacity: 0.5;
}

.service-card:hover .service-card__thumb::after {
    transform: translateX(0);
}

.service-card:hover .service-card__text {
    transform: translateY(0px);
}

.service-card:hover .service-card__thumb img {
    transform: scale(1.05);
}

.service-card:hover .service-card__icon {
    animation: gelatine 0.6s;
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.service-two {
    position: relative;
    counter-reset: serviceTwo;
}

.service-two-card {
    position: relative;
    background-color: var(--cilox-base, #f5bf3e);
}

.service-two-card__content {
    position: relative;
    z-index: 1;
    background-color: var(--cilox-black, #18191c);
    padding: 50px;
    overflow: hidden;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 768px) and (min-width: 576px),
(max-width: 400px) {
    .service-two-card__content {
        padding: 30px 20px 40px;
    }
}

.service-two-card__content::after {
    content: "";
    position: absolute;
    top: -220px;
    left: -220px;
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(24, 25, 28) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(24, 25, 28) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(24, 25, 28) 100%);
    position: absolute;
    width: 383px;
    height: 383px;
    z-index: -1;
}

.service-two-card__icon {
    font-size: 65px;
    color: var(--cilox-base, #f5bf3e);
    line-height: 1;
    margin-bottom: 20px;
}

@media (max-width: 768px) and (min-width: 576px) {
    .service-two-card__icon {
        font-size: 50px;
    }
}

.service-two-card__title {
    font-size: 24px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 20px;
}

@media (max-width: 768px) and (min-width: 576px) {
    .service-two-card__title {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

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

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

.service-two-card__title a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.service-two-card__text {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    line-height: 1.625;
    font-weight: 500;
    margin-bottom: 0;
    display: block;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #2d2f32;
}

.service-two-card .cilox-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #2d2f32;
    padding: 0 0px 0 30px;
    gap: 20px;
    font-size: 12px;
    color: #797b81;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.service-two-card .cilox-btn::after,
.service-two-card .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.service-two-card .cilox-btn i {
    width: 39px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2d2f32;
    color: var(--cilox-text, #797b81);
    font-size: 14px;
    font-weight: 900;
    transition: all 0.4s ease-in-out;
}

.service-two-card .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
    border-color: var(--cilox-black, #18191c);
}

.service-two-card .cilox-btn:hover i {
    background-color: var(--cilox-white, #fff);
    color: var(--cilox-black, #18191c);
}

.service-two-card .number {
    width: 100px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cilox-white, #fff);
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 768px) and (min-width: 576px) {
    .service-two-card .number {
        width: 70px;
        height: 60px;
        font-size: 30px;
    }
}

.service-two-card .number::before {
    counter-increment: serviceTwo;
    content: "0" counter(serviceTwo) "";
    font-size: 50px;
    color: var(--cilox-base, #f5bf3e);
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 768px) and (min-width: 576px) {
    .service-two-card .number::before {
        font-size: 30px;
    }
}

.service-two-card__bottom {
    height: 20px;
    width: 100%;
    background-image: url(../images/backgrounds/service-card-1-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
}

.service-two-card:hover .service-two-card__icon {
    animation: gelatine 0.6s;
}

.service-three {
    position: relative;
    z-index: 1;
    max-width: 1775px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f1f2f5;
    overflow: hidden;
}

.service-three::after {
    content: "";
    width: 570px;
    height: 728px;
    background-color: var(--cilox-black, #18191c);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

@media (max-width: 1700px) {
    .service-three::after {
        width: 200px;
    }
}

@media (max-width: 1199px) {
    .service-three::after {
        display: none;
    }
}

.service-three::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgba(253, 197, 62, 0.8) 0%, rgba(253, 197, 62, 0) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgba(253, 197, 62, 0.8) 0%, rgba(253, 197, 62, 0) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgba(253, 197, 62, 0.8) 0%, rgba(253, 197, 62, 0) 100%);
    opacity: 0.702;
    left: -200px;
    top: -200px;
    width: 438px;
    height: 438px;
}

.service-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
    mix-blend-mode: luminosity;
    opacity: 0.07;
}

.service-three .about-area-two__feature__group {
    margin-bottom: 0;
}

.service-three__carousel .slick-slide {
    margin: 0 15px;
}

.service-three__carousel .slick-list {
    margin: 0 -15px;
}

.service-three__bottom {
    margin-top: 60px;
}

.service-three__slick-button {
    border: none;
    outline: none;
    background-color: var(--cilox-white, #fff);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.service-three__slick-button:first-child {
    transform: rotateY(180deg);
}

.service-three__slick-button:hover {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.service-three .service-three__count-bar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991px) {
    .service-three .service-three__count-bar {
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    .service-three .service-three__count-bar {
        gap: 30px;
        right: 20px;
    }
}

.service-three .service-three__count-bar .service-three__custom-dots .slick-dots {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

@media (max-width: 575px) {
    .service-three .service-three__count-bar .service-three__custom-dots .slick-dots {
        display: none;
    }
}

.service-three .service-three__count-bar .service-three__custom-dots .slick-dots li button {
    padding: 0;
    border: none;
    outline: none;
    margin: 0;
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    background-color: transparent;
    line-height: 0.99;
    position: relative;
    z-index: 1;
}

.service-three .service-three__count-bar .service-three__custom-dots .slick-dots li button::after {
    content: "";
    width: 1px;
    height: 100%;
    width: 1px;
    position: absolute;
    background-color: var(--cilox-black, #18191c);
    right: -5px;
    top: 0;
    transform: rotate(15deg);
}

.service-three .service-three__count-bar .service-three__custom-dots .slick-dots li:last-child button::after {
    display: none;
}

.service-three .service-three__count-bar .service-three__custom-dots .slick-dots li.slick-active button {
    color: var(--cilox-base, #f5bf3e);
}

.service-three .service-three__count-bar .service-three__custom-dots .slick-dots li.slick-active button::after {
    background-color: var(--cilox-base, #f5bf3e);
}

.service-three .service-three__count-bar .service-three__arrow-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 375px) {
    .service-three .service-three__count-bar .service-three__arrow-wrap {
        display: none;
    }
}

.service-three .service-three__count-bar::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 80px;
    height: 1px;
    background-color: rgba(var(--cilox-black-rgb, 24, 25, 28), 0.35);
    opacity: 0.3;
    right: 130px;
}

@media (max-width: 575px) {
    .service-three .service-three__count-bar::after {
        display: none;
    }
}

.service-three__card {
    background-color: var(--cilox-white, #fff);
}

.service-three__card__thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-three__card__thumb img {
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.service-three__card__thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0;
    left: 50%;
    top: 50%;
    background-color: hsla(0, 0%, 100%, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.service-three__card__content {
    padding: 30px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 500px) {
    .service-three__card__content {
        padding: 20px 30px;
    }
}

.service-three__card__content::after {
    content: "";
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    height: 281px;
    width: 281px;
    position: absolute;
    bottom: -140px;
    left: -100px;
    z-index: -1;
}

.service-three__card__icon {
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 500px) {
    .service-three__card__icon {
        width: 70px;
        height: 70px;
        font-size: 40px;
    }
}

.service-three__card__title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 17px;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 500px) {
    .service-three__card__title {
        font-size: 20px;
    }
}

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

.service-three__card__title a:hover {
    background-size: 100% 1px;
}

.service-three__card__title a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.service-three__card__text {
    line-height: 1.625;
    margin-bottom: 32px;
}

.service-three__card__btn {
    text-align: end;
}

.service-three__card__btn .cilox-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #e2e4e9;
    padding: 0 0px 0 30px;
    gap: 20px;
    font-size: 12px;
    color: #797b81;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.service-three__card__btn .cilox-btn::after,
.service-three__card__btn .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
    border-color: var(--cilox-base, #f5bf3e);
}

.service-three__card__btn .cilox-btn i {
    width: 39px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2e4e9;
    color: var(--cilox-text, #797b81);
    font-size: 14px;
    font-weight: 900;
    transition: all 0.4s ease-in-out;
}

.service-three__card__btn .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
}

.service-three__card__btn .cilox-btn:hover i {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-base, #f5bf3e);
}

.service-three__card:hover .service-three__card__thumb img {
    transform: scale(1.1);
}

.service-three__card:hover .service-three__card__thumb::after {
    height: 250%;
    transition: all 0.6s linear;
    background-color: rgba(0, 0, 0, 0);
}

.service-three__card:hover .service-three__card__icon {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.service-three__card:hover .service-three__card__icon i {
    animation: gelatine 1s ease-in-out 1;
}


/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/

.service-details__thumbnail {
    margin-bottom: 30px;
}

.service-details__thumbnail img {
    object-fit: cover;
    width: 100%;
}

.service-details__title {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 22px;
}

@media (max-width: 575px) {
    .service-details__title {
        font-size: 24px;
    }
}

.service-details__text {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 0;
}

.service-details__text+.service-details__sub-title {
    margin-top: 27px;
}

.service-details__sub-title {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -0.4px;
    margin-bottom: 27px;
}

@media (max-width: 575px) {
    .service-details__sub-title {
        font-size: 20px;
    }
}

.service-details__choose {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 767px) {
    .service-details__choose {
        flex-wrap: wrap;
    }
}

.service-details__choose .icon {
    max-width: 70px;
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--cilox-base, #f5bf3e);
    font-size: 33px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.service-details__choose__item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 33.33%;
    width: 33.33%;
}

.service-details__choose__item:hover .icon {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.service-details__choose__item__title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0;
}

.service-details__text+.service-details__title {
    margin-top: 37px;
}

.service-details__benefit__image img {
    object-fit: cover;
    width: 100%;
}

.service-details__choose+.service-details__benefit {
    margin-top: 40px;
}

.service-details__support .service-details__text {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.service-details__support .service-details__list {
    margin: 0;
}

.service-details__support .service-details__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cilox-black, #18191c);
    font-size: 16px;
    line-height: 1.2;
}

.service-details__support .service-details__list li i {
    color: var(--cilox-base, #f5bf3e);
}

.service-details__support .service-details__list li+li {
    margin-top: 14px;
}

.service-details__benefit+.faq-one {
    margin-top: 60px;
}


/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/

body.boxed-wrapper {
    position: relative;
}

body.boxed-wrapper .page-wrapper {
    max-width: 1630px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--cilox-white, #fff);
    box-shadow: 0px 0px 100px 0px rgba(var(--cilox-black-rgb, 24, 25, 28), 0.08);
}


/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio-two {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

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

.portfolio-two--page {
    position: relative;
}

.portfolio-two--page .container {
    max-width: 1500px;
}

.portfolio-two--page .cilox-btn {
    font-weight: 700;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 50px;
}

.portfolio-two--page .cilox-btn>i {
    background-color: var(--cilox-text2, #75767a);
    padding: 31px 27px;
    border: none;
}

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

.portfolio-two__item {
    position: relative;
    overflow: hidden;
}

.portfolio-two__item img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

.portfolio-two__item__content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
    margin: 0 auto;
    background-color: var(--cilox-black, #18191c);
    border-radius: 50%;
    padding: 0 22px;
    text-align: center;
    width: 216px;
    height: 216px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 55px;
    z-index: 2;
}

.portfolio-two__item__content::before {
    content: "";
    width: 258px;
    height: 258px;
    border-radius: 50%;
    border: 1px solid var(--cilox-base, #f5bf3e);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    transition: all 500ms ease;
    z-index: -1;
}

.portfolio-two__item__rm {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.portfolio-two__item__rm a {
    width: 60px;
    height: 60px;
    background-color: var(--cilox-base, #f5bf3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cilox-white, #fff);
}

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

.portfolio-two__item__rm a:hover {
    background-color: var(--cilox-base, #f5bf3e);
}

.portfolio-two__item__rm a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.portfolio-two__item__cat {
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--cilox-text, #797b81);
    margin: 0 0 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.portfolio-two__item__cat i {
    color: var(--cilox-base, #f5bf3e);
    font-size: 16px;
}

.portfolio-two__item__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    color: var(--cilox-white, #fff);
    margin: 0;
}

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

.portfolio-two__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-two__item__title a:hover {
    color: var(--cilox-base, #f5bf3e);
}

.portfolio-two__item__bg {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: auto;
    transition: height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
    background: linear-gradient(180deg, rgba(var(--cilox-black-rgb, 24, 25, 28), 0) -10.53%, var(--cilox-base, #f5bf3e) 100%);
}

.portfolio-two__item:hover .portfolio-two__item__bg {
    height: 228px;
    top: auto;
    bottom: 0;
}

.portfolio-two__item__text {
    font-weight: 600;
    font-size: 12px;
    text-transform: capitalize;
    color: var(--cilox-text, #797b81);
    margin-bottom: 0;
}

.portfolio-two__item:hover .portfolio-two__item__content {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-two__item:hover .portfolio-two__item__content::before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-two__item:hover .portfolio-two__item__rm {
    bottom: -20px;
    opacity: 1;
    visibility: visible;
}

.portfolio-two .cilox-owl__carousel--basic-nav.owl-carousel .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -150px;
    z-index: 2;
    width: 1170px;
    gap: 10px;
    transform: none;
    text-align: right;
}

@media (max-width: 1199px) {
    .portfolio-two .cilox-owl__carousel--basic-nav.owl-carousel .owl-nav {
        width: 950px;
    }
}

@media (max-width: 991px) {
    .portfolio-two .cilox-owl__carousel--basic-nav.owl-carousel .owl-nav {
        position: relative;
        top: auto;
        text-align: center;
        justify-content: center;
        width: 100%;
        margin: 30px 0 0;
    }
}

.portfolio-two .cilox-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    background-color: var(--cilox-text2, #75767a);
    width: 90px;
    height: 90px;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--cilox-black, #18191c);
}

.portfolio-two .cilox-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.portfolio-three {
    position: relative;
    z-index: 1;
    counter-reset: count;
    padding: 0 0 100px;
    margin-top: -170px;
}

.portfolio-three__bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 1480px;
    margin: auto;
    background-color: #f4ede0;
    border-radius: 20px;
    z-index: -1;
}

@media (max-width: 1500px) {
    .portfolio-three__bg {
        max-width: 1320px;
    }
}

.portfolio-three__newsletter {
    position: relative;
    top: -30px;
    width: 100%;
    height: 60px;
    border-radius: 3px;
    border: 1px solid var(--cilox-black, #18191c);
    background-color: var(--cilox-white, #fff);
    margin: 0 0 70px;
}

.portfolio-three__newsletter__icon {
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
}

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

.portfolio-three__newsletter input[type=text] {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    height: 60px;
    background-color: transparent;
    color: var(--cilox-black, #18191c);
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-size: 22px;
    font-weight: 600;
    padding-left: 96px;
    border-radius: 0;
    padding-right: 60px;
    transition: all 500ms ease;
}

@media (max-width: 767px) {
    .portfolio-three__newsletter input[type=text] {
        padding-left: 20px;
    }
}

.portfolio-three__newsletter input[type=text]:focus {
    color: var(--cilox-black, #18191c);
}

.portfolio-three__newsletter .cilox-btn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
}

.portfolio-three__newsletter .cilox-btn>i {
    padding: 14px 43px;
    border: none;
    background-color: var(--cilox-black, #18191c);
}

@media (max-width: 767px) {
    .portfolio-three__newsletter .cilox-btn>i {
        padding: 14px 15px;
    }
}

.portfolio-three__newsletter .cilox-btn span {
    background-color: var(--cilox-base, #f5bf3e);
}

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

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

.portfolio-three__btn .cilox-btn {
    font-weight: 700;
    border-radius: 50%;
    overflow: hidden;
}

.portfolio-three__btn .cilox-btn>i {
    padding: 31px 27px;
    border: none;
    background-color: var(--cilox-base, #f5bf3e);
}

.portfolio-three__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    counter-increment: count;
    border-bottom: 1px solid var(--cilox-black, #18191c);
    border-top: 1px solid var(--cilox-black, #18191c);
    padding: 11px 0 11px 78px;
    margin-bottom: -1px;
    z-index: 2;
}

@media (max-width: 767px) {
    .portfolio-three__item {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.portfolio-three__item::before {
    content: counters(count, ".", decimal-leading-zero);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--cilox-black, #18191c);
    font-weight: normal;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
}

.portfolio-three__item::after {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    height: 64px;
    width: 0;
    background-color: var(--cilox-black, #18191c);
    transition: all 500ms ease;
    z-index: -1;
}

.portfolio-three__item:hover::after {
    width: 15px;
}

.portfolio-three__item__title {
    position: relative;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
}

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

.portfolio-three__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-three__item__rm {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .portfolio-three__item__rm {
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.portfolio-three__item__rm a {
    width: 89px;
    height: 89px;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: var(--cilox-black, #18191c);
}

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

.portfolio-three__item__rm a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.portfolio-three__item:hover .portfolio-three__item__rm a {
    background-color: var(--cilox-black, #18191c);
    border-color: var(--cilox-white, #fff);
}

.portfolio-three__item__image {
    position: absolute;
    z-index: 2;
    width: 179px;
    height: 175px;
    top: 50%;
    left: 0;
    pointer-events: none;
    transform: translate(-100%, -50%);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease-out;
    border-radius: 0 20px 20px 20px;
}

.portfolio-three__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.portfolio-three__item+.portfolio-three__item {
    border-top: none;
}

.portfolio-four {
    position: relative;
    padding: 120px 0;
}

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

.portfolio-four__item {
    position: relative;
}

.portfolio-four__item img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

@media (max-width: 767px) {
    .portfolio-four__item img {
        min-height: 400px;
        object-fit: cover;
    }
}

.portfolio-four__item__content {
    position: absolute;
    left: 0;
    bottom: 0;
    filter: drop-shadow(0 0 14.5px rgba(209, 207, 202, 0.42));
    background-color: var(--cilox-white, #fff);
    width: 100%;
    border-radius: 10px;
    padding: 65px 20px 22px;
    text-align: center;
    z-index: 2;
}

.portfolio-four__item__rm {
    position: absolute;
    right: 0;
    left: 0;
    top: -48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.portfolio-four__item__rm a {
    width: 96px;
    height: 96px;
    background-color: var(--cilox-white, #fff);
    border: 1px solid #dbede9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: var(--cilox-black, #18191c);
    transform: rotate(45deg);
}

.portfolio-four__item__rm a:hover {
    background-color: var(--cilox-base, #f5bf3e);
    border-color: var(--cilox-base, #f5bf3e);
    transform: rotate(0deg);
}

.portfolio-four__item__cat {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--cilox-black, #18191c);
    margin: 0 0 4px;
}

.portfolio-four__item__title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
}

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

.portfolio-four__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-four__item__title a:hover {
    color: var(--cilox-black, #18191c);
}

.portfolio-four .cilox-btn {
    font-weight: 700;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 60px;
}

.portfolio-four .cilox-btn>i {
    background-color: var(--cilox-text2, #75767a);
    padding: 31px 27px;
    border: none;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/


/******portfolio-details-top ******/

.portfolio-details-top {
    position: relative;
    z-index: 1;
}

.portfolio-details-top__thumb img {
    object-fit: cover;
    width: 100%;
}

.portfolio-details-top__title {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 575px) {
    .portfolio-details-top__title {
        font-size: 24px;
    }
}

.portfolio-details-top__content__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
    margin-bottom: 55px;
}

@media (max-width: 991px) {
    .portfolio-details-top__content__inner {
        padding-right: 30px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 30px;
    }
}

.portfolio-details-top__list {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 0;
}

@media (max-width: 500px) {
    .portfolio-details-top__list {
        gap: 20px;
        flex-wrap: wrap;
    }
}

.portfolio-details-top__list li {
    font-size: 14px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.714;
}

.portfolio-details-top__list li span {
    display: flex;
    text-transform: capitalize;
    color: var(--cilox-text, #797b81);
    font-weight: 600;
}

.portfolio-details-top__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.portfolio-details-top__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f3f6;
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.portfolio-details-top__social a:hover {
    color: var(--cilox-white, #fff);
    background-color: var(--cilox-black, #18191c);
}

.portfolio-details__content {
    position: relative;
}

.portfolio-details__content .portfolio-details__title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 0;
}

.portfolio-details__content .portfolio-details__text {
    line-height: 1.875;
    margin-bottom: 0;
}

.portfolio-details__content .portfolio-details__text+.portfolio-details__text {
    margin-top: 25px;
}

.portfolio-details__content .portfolio-details__text-two {
    color: var(--cilox-base, #f5bf3e);
    font-size: 20px;
    line-height: 1.375;
}

.portfolio-details__content .portfolio-details__text+.portfolio-details__list {
    margin-top: 25px;
    margin-bottom: 25px;
}

.portfolio-details__content .portfolio-details__list {
    margin-bottom: 0;
}

.portfolio-details__content .portfolio-details__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
}

.portfolio-details__content .portfolio-details__list li i {
    color: var(--cilox-base, #f5bf3e);
}

.portfolio-details__content .portfolio-details__thumb-list {
    margin-top: 60px;
    padding-bottom: 60px;
}

.portfolio-details__content .portfolio-details__thumb img {
    object-fit: cover;
    width: 100%;
}

.portfolio-details__content .portfolio-details__text-three {
    font-size: 16px;
    color: var(--cilox-black, #18191c);
}

.portfolio-details__bottom {
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid var(--cilox-border-color, #e2e4e9);
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
}

@media (max-width: 991px) {
    .portfolio-details__bottom {
        margin-top: 80px;
    }
}

@media (max-width: 575px) {
    .portfolio-details__bottom {
        margin-top: 40px;
    }
}

.portfolio-details__bottom a {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    gap: 10px;
}

.portfolio-details__bottom a:first-child span {
    transform: rotate(180deg);
}

.portfolio-details__bottom a span {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f3f6;
    font-size: 18px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.portfolio-details__bottom a span:hover {
    color: var(--cilox-white, #fff);
    background-color: var(--cilox-base, #f5bf3e);
}


/*--------------------------------------------------------------
# Project
--------------------------------------------------------------*/

.project-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.project-card::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -50px;
    width: 190px;
    height: 170px;
    background-color: var(--cilox-base, #f5bf3e);
    transition: all 0.5s ease-in-out;
    transform: rotate(45deg) translateY(-100%);
    transition: all 0.5s ease-in-out;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.project-card__thumb {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.project-card__thumb img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
}

.project-card__thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cilox-black, #18191c);
    opacity: 0;
    transform: translateY(-70%);
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.project-card__content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    z-index: 2;
}

.project-card__tag {
    font-size: 10px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0;
    padding: 8px 20px;
    background-color: var(--cilox-base, #f5bf3e);
    display: inline-block;
}

.project-card__title {
    font-size: 16px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0;
    padding: 15px 20px;
    background-color: var(--cilox-white, #fff);
    display: inline-block;
}

.project-card__link {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    visibility: hidden;
}

.project-card__link a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.project-card:hover::after {
    visibility: visible;
    opacity: 1;
    transform: rotate(45deg) translateY(0);
}

.project-card:hover .project-card__thumb::before {
    opacity: 0.7;
    transform: translateY(0%);
}

.project-card:hover .project-card__thumb img {
    transform: scale(1.1);
}

.project-card:hover .project-card__link {
    opacity: 1;
    visibility: visible;
}

.project-area {
    position: relative;
    z-index: 1;
    padding-bottom: 240px;
    margin-bottom: -120px;
    overflow: hidden;
}

.project-area__bg {
    overflow: hidden;
    background-color: #f2f3f6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 10%;
}

.project-area::before {
    content: "";
    position: absolute;
    top: -375px;
    right: -375px;
    width: 1030px;
    height: 1030px;
    border-radius: 50%;
    background-color: var(--cilox-base, #f5bf3e);
    z-index: -1;
    animation: totalScall 4s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .project-area::before {
        width: 600px;
        height: 600px;
    }
}

.project-area__top {
    margin-bottom: 50px;
}

.project-area__top .sec-title {
    margin-bottom: 0;
}

.project-area .project-area__custome-navs {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .project-area .project-area__custome-navs {
        justify-content: end;
    }
}

.project-area .project-area__custome-navs button {
    border: none;
    outline: none;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    width: 56px;
    height: 56px;
    background-color: #f2f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--cilox-black, #18191c);
    border: 1px solid transparent;
    transition: all 400ms ease;
}

.project-area .project-area__custome-navs button:hover {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
    border-color: transparent;
}

.project-area .project-area__custome-navs button span {
    border: none;
    outline: none;
    color: inherit;
}

.project-area .project-area__custome-navs button:first-child {
    transform: rotate(180deg);
}

@media (min-width: 1440px) {
    .project-area .container-fluid {
        max-width: 1600px;
        margin-left: auto;
        margin-right: -50px;
    }
}

.project-two {
    position: relative;
    overflow: hidden;
}

.project-two__item {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.project-two .pin-spacer+.pin-spacer,
.pin-spacer+.project-two__item {
    margin-top: 30px;
}

.project-two__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.project-two__content {
    max-width: 485px;
    margin-left: auto;
    margin-right: 30px;
}

@media (max-width: 767px) {
    .project-two__content {
        margin-right: 0px;
        max-width: 100%;
    }
}

.project-two__content__inner {
    background-color: var(--cilox-white, #fff);
    padding: 60px 40px 60px 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 991px) {
    .project-two__content__inner {
        padding: 40px 30px 40px 30px;
    }
}

@media (max-width: 767px) {
    .project-two__content__inner {
        padding: 30px 20px 30px 20px;
    }
}

.project-two__content__inner::after {
    content: "";
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgb(255, 255, 255) 100%);
    opacity: 0.502;
    position: absolute;
    right: -200px;
    top: -170px;
    width: 407px;
    z-index: -1;
    height: 407px;
}

.project-two__subtitle {
    font-size: 14px;
    color: var(--cilox-base, #f5bf3e);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
}

.project-two__title {
    font-size: 30px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.project-two__text {
    font-size: 16px;
    color: var(--cilox-text, #797b81);
    line-height: 1.875;
    font-weight: 500;
    margin-bottom: 37px;
}

.project-two__tag {
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-two__tag .cilox-btn {
    background-color: transparent;
    font-size: 12px;
    color: #75767a;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    border: 1px solid #75767a;
    padding: 12px 30px;
    transition: all 0.4s ease-in-out;
}

.project-two__tag .cilox-btn::after,
.project-two__tag .cilox-btn::before {
    background-color: transparent;
}

.project-two__tag .cilox-btn:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
    border-color: var(--cilox-base, #f5bf3e);
}

.project-two__content__bottom {
    background-color: var(--cilox-base, #f5bf3e);
    margin-left: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    transition: all 0.4s ease-in-out;
}

.project-two__content__bottom span {
    font-size: 14px;
    color: var(--cilox-black, #18191c);
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 500;
    display: block;
    transition: all 0.4s ease-in-out;
}

.project-two__content__bottom .cilox-btn__icon {
    margin-top: -50px;
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f2f3f7;
    font-size: 22px;
    color: var(--cilox-black, #18191c);
    transition: all 0.4s ease-in-out;
}

.project-two__content__bottom .cilox-btn__icon:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-black, #18191c);
}

.project-two__content__bottom:hover {
    background-color: var(--cilox-black, #18191c);
}

.project-two__content__bottom:hover span {
    color: var(--cilox-white, #fff);
}

.project-three {
    position: relative;
    z-index: 1;
}

@media (min-width: 1270px) {
    .project-three .container {
        max-width: 1270px;
        margin-left: auto;
        margin-right: auto;
    }
}

.project-three .item-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 767px) {
    .project-three .item-wrapper {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.project-three .item-wrapper .item {
    max-width: 170px;
    width: 100%;
    transition: all 0.4s ease;
}

@media (max-width: 1270px) {
    .project-three .item-wrapper .item {
        max-width: 150px;
    }
}

@media (max-width: 1199px) {
    .project-three .item-wrapper .item {
        max-width: 122px;
    }
}

@media (max-width: 991px) {
    .project-three .item-wrapper .item {
        max-width: 87px;
    }
}

@media (max-width: 767px) {
    .project-three .item-wrapper .item {
        max-width: 100%;
    }
}

.project-three .item-wrapper .item .project-card__thumb img {
    width: auto;
    height: auto;
}

@media (max-width: 767px) {
    .project-three .item-wrapper .item .project-card__thumb img {
        height: 100%;
        width: 100%;
    }
}

.project-three .item-wrapper .item .project-card__sub-title {
    font-size: 24px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    writing-mode: vertical-lr;
    margin: 0;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
    .project-three .item-wrapper .item .project-card__sub-title {
        transform: translateX(0%);
        left: 30px;
        writing-mode: horizontal-tb;
    }
}

.project-three .item-wrapper .item .project-card__link {
    visibility: visible;
    opacity: 1;
    right: 50%;
    transform: translateX(50%);
}

.project-three .item-wrapper .item .project-card__link a {
    background-color: var(--cilox-white, #fff);
    color: var(--cilox-base, #f5bf3e);
}

.project-three .item-wrapper .item .project-card__content {
    transform: translateY(200%);
    transition: all 0.4s ease-in-out;
}

.project-three .item-wrapper .item.active {
    max-width: 518px;
    width: 100%;
}

@media (max-width: 1199px) {
    .project-three .item-wrapper .item.active {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .project-three .item-wrapper .item.active {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .project-three .item-wrapper .item.active {
        max-width: 100%;
    }
}

.project-three .item-wrapper .item.active .project-card__link {
    right: 20px;
    transform: translateX(0%);
}

.project-three .item-wrapper .item.active .project-card__link a {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
}

.project-three .item-wrapper .item.active .project-card__content {
    transform: translateY(0%);
}

.project-three .item-wrapper .item.active .project-card::after {
    visibility: visible;
    opacity: 1;
    transform: rotate(45deg) translateY(0);
}

.project-three .item-wrapper .item.active .project-card__thumb::before {
    opacity: 0.7;
    transform: translateY(0%);
}

.project-three .item-wrapper .item.active .project-card__thumb img {
    transform: scale(1.1);
}

.project-three .item-wrapper .item.active .project-card__sub-title {
    transform: translateY(150%);
}

@media (max-width: 767px) {
    .project-three .item-wrapper .item.active .project-card__sub-title {
        transform: translateY(300px);
    }
}


/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/

.project-details {
    padding: 120px 0;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .project-details {
        padding: 80px 0;
        padding-bottom: 0;
    }
}

.project-details__img {
    margin-bottom: 40px;
}

.project-details__img img {
    max-width: 100%;
}

.project-details__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .project-details__topbar {
        flex-wrap: wrap;
    }
}

.project-details__title {
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    color: var(--cilox-black, #18191c);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .project-details__title {
        font-size: 30px;
        line-height: 40px;
    }
}

.project-details__subTitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--cilox-base, #f5bf3e);
}

.project-details__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
}

.project-details__list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--cilox-black, #18191c);
    margin-bottom: 5px;
}

.project-details__list li i {
    color: var(--cilox-base, #f5bf3e);
    font-size: 18px;
}

.project-details__right {
    background-color: var(--cilox-white, #fff);
    padding: 50px 40px;
    padding-bottom: 42px;
    border: 1px solid var(--cilox-border-color, #e2e4e9);
    border-top: 2px solid var(--cilox-base, #f5bf3e);
    box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.0784313725);
}

.project-details__right__list {
    padding: 0;
    margin: 0;
}

.project-details__right__list li {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.project-details__right__list li:last-child {
    margin-bottom: 0;
}

.project-details__right__lable {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 0px;
}

.project-details__right__text {
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    text-transform: capitalize;
    color: var(--cilox-black, #18191c);
}

.project-details__right a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--cilox-text2, #75767a);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--cilox-black, #18191c);
}

.project-details__right a:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-white, #fff);
}

.project-details__social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.project-details__control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 0;
    border-top: 1px solid var(--cilox-border-color, #e2e4e9);
    border-bottom: 1px solid var(--cilox-border-color, #e2e4e9);
    margin-top: 55px;
}

.project-details__control__prev,
.project-details__control__next {
    display: flex;
    align-items: center;
    gap: 26px;
}

.project-details__control__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--cilox-text2, #75767a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--cilox-black, #18191c);
    transition: all 500ms ease;
    cursor: pointer;
}

.project-details__control__icon i::before {
    color: inherit;
}

.project-details__control__icon:hover {
    background-color: var(--cilox-base, #f5bf3e);
    color: var(--cilox-white, #fff);
}

.project-details__control span {
    font-family: var(--cilox-heading-font, "Instrument Sans", sans-serif);
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--cilox-black, #18191c);
}


/*--------------------------------------------------------------
# Company Benefits
--------------------------------------------------------------*/

.company-benefits {
    position: relative;
    z-index: 1;
    background-color: var(--cilox-base, #f5bf3e);
    max-width: 1700px;
    border-bottom: 20px solid var(--cilox-base, #f5bf3e);
    margin-left: auto;
    margin-right: auto;
    padding-top: 120px;
    padding-bottom: 100px;
}

.company-benefits__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/shapes/benefit-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    overflow: hidden;
}

.company-benefits__bg::after {
    overflow: hidden;
    content: "";
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgba(254, 198, 63, 0.7) 0%, rgba(24, 25, 28, 0) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgba(254, 198, 63, 0.7) 0%, rgba(24, 25, 28, 0) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgba(254, 198, 63, 0.7) 0%, rgba(24, 25, 28, 0) 100%);
    z-index: -1;
}

@media (max-width: 1199px) {
    .company-benefits__bg::after {
        display: none;
    }
}

.company-benefits__funfact {
    position: relative;
    z-index: 1;
    margin-right: 70px;
}

@media (max-width: 1199px) {
    .company-benefits__funfact {
        margin-right: 0;
    }
}

.company-benefits__funfact__item+.company-benefits__funfact__item {
    margin-top: 70px;
}

@media (max-width: 991px) {
    .company-benefits__funfact__item+.company-benefits__funfact__item {
        margin-top: 40px;
    }
}

.company-benefits__funfact__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(var(--cilox-white-rgb, 255, 255, 255), 0.1);
}

.company-benefits__funfact__count {
    display: flex;
    align-items: center;
    font-size: 60px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    line-height: 0.5;
    text-align: left;
}

.company-benefits__funfact__icon {
    font-size: 50px;
    color: var(--cilox-base, #f5bf3e);
    display: block;
}

.company-benefits__funfact__text {
    font-size: 16px;
    color: #75767a;
    line-height: 1.875;
    text-align: left;
    margin-bottom: 0;
}

.company-benefits__thumb__item {
    position: absolute;
    bottom: 0;
    margin-left: -40px;
}

.company-benefits__thumb__item img {
    animation: LeftToRight 3s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .company-benefits__thumb__item {
        margin-right: auto;
        text-align: end;
        z-index: -1;
        bottom: 0;
        right: 0;
    }
    .company-benefits__thumb__item img {
        width: 50%;
    }
}

.company-benefits__thumb__star {
    position: absolute;
    top: 20%;
}

.company-benefits__thumb__star img {
    animation: totalScallRoted 3s ease-in-out infinite;
}

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

.company-benefits__thumb__star-two {
    position: absolute;
    top: 30%;
    right: 40%;
}

.company-benefits__thumb__star-two img {
    animation: totalScallRoted 4s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .company-benefits__thumb__star-two {
        display: none;
    }
}

.company-benefits__content__text {
    font-size: 16px;
    color: #75767a;
    line-height: 1.875;
    text-align: left;
    margin-bottom: 40px;
}

.company-benefits__list {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(var(--cilox-white-rgb, 255, 255, 255), 0.1);
}

.company-benefits__list li {
    display: flex;
    align-items: center;
    font-weight: 900;
    color: var(--cilox-white, #fff);
    font-size: 16px;
    line-height: 1.875;
    text-align: left;
    gap: 8px;
}

.company-benefits__list li i {
    color: var(--cilox-base, #f5bf3e);
}

.company-benefits__list li+li {
    margin-top: 10px;
}

.company-benefits__content__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-benefits__content__box {
    max-width: 90px;
    width: 100%;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cilox-black, #18191c);
    font-size: 14px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.286;
    text-align: center;
}

@media (max-width: 991px) {
    .company-benefits__content__box {
        background-color: var(--cilox-base, #f5bf3e);
        color: var(--cilox-black, #18191c);
    }
}

.company-benefits__content__title {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #3f3c36;
    font-size: 18px;
    color: var(--cilox-text, #797b81);
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 0;
}

.company-feature {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.company-feature .container-fluid {
    max-width: 1730px;
    margin-left: auto;
    margin-right: auto;
}

.company-feature__item {
    position: relative;
    z-index: 1;
    width: 100%;
    background-color: var(--cilox-black, #18191c);
    overflow: hidden;
}

.company-feature__item::after {
    content: "";
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.502;
    position: absolute;
    right: -160px;
    bottom: -150px;
    width: 407px;
    height: 407px;
    z-index: -1;
}

.company-feature__item__thumb {
    position: relative;
    z-index: -1;
}

.company-feature__item__thumb img {
    transition: 0.5s;
    background-size: cover;
    object-fit: cover;
    width: 100%;
}

.company-feature__item__thumb img:nth-child(1) {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.company-feature__item__thumb img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

.company-feature__item .company-feature__content {
    position: absolute;
    bottom: 55px;
    left: 54px;
}

.company-feature__item__subtitle {
    font-size: 34px;
    color: var(--cilox-white, #fff);
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    margin-bottom: -6px;
}

@media (max-width: 1366px) and (min-width: 767px),
(max-width: 500px) {
    .company-feature__item__subtitle {
        font-size: 30px;
    }
}

@media (max-width: 375px) {
    .company-feature__item__subtitle {
        font-size: 25px;
    }
}

.company-feature__item__title {
    font-size: 60px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 0;
}

@media (max-width: 1366px) and (min-width: 767px),
(max-width: 500px) {
    .company-feature__item__title {
        font-size: 40px;
    }
}

@media (max-width: 375px) {
    .company-feature__item__title {
        font-size: 30px;
    }
}

.company-feature__item:hover .company-feature__item__thumb img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.company-feature__item:hover .company-feature__item__thumb img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.company-feature .company-feature__item--two::after {
    display: none;
}

.company-feature .company-feature__item--two::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    background-color: transparent;
    border: 2px solid var(--cilox-base, #f5bf3e);
}

.company-feature .company-feature__item--two .company-feature__content {
    position: static;
}

.company-feature .company-feature__item--two .company-feature__item__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.714;
    text-align: left;
    text-shadow: -2px -2px 0 var(--cilox-base, #f5bf3e), 2px -2px 0 var(--cilox-base, #f5bf3e), -2px 2px 0 var(--cilox-base, #f5bf3e), 2px 2px 0 var(--cilox-base, #f5bf3e), -2px 0px 0 var(--cilox-base, #f5bf3e), 2px 0px 0 var(--cilox-base, #f5bf3e), 0px -2px 0 var(--cilox-base, #f5bf3e), 0px 2px 0 var(--cilox-base, #f5bf3e);
}

.company-feature .company-feature__item--two .company-feature__item__title span {
    margin-left: 60px;
}

@media (max-width: 1366px) and (min-width: 767px),
(max-width: 500px) {
    .company-feature .company-feature__item--two .company-feature__item__title {
        font-size: 40px;
    }
}

@media (max-width: 375px) {
    .company-feature .company-feature__item--two .company-feature__item__title {
        font-size: 30px;
    }
}

.company-feature .company-feature__item--three::before {
    content: "";
    background-image: -moz-linear-gradient(0deg, rgb(24, 25, 28) 0%, rgba(24, 25, 28, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(24, 25, 28) 0%, rgba(24, 25, 28, 0) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(24, 25, 28) 0%, rgba(24, 25, 28, 0) 100%);
    position: absolute;
    border: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
}

.company-feature .company-feature__item--three::after {
    display: none;
}

.company-feature .company-feature__item--three .company-feature__content {
    position: static;
}

.company-feature .company-feature__item--three .company-feature__item__title {
    position: absolute;
    left: 50px;
    top: 50px;
    font-size: 34px;
    color: var(--cilox-white, #fff);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    font-style: normal;
}

.company-feature .company-feature__item--three .company-feature__item__title span {
    font-style: italic;
    color: var(--cilox-base, #f5bf3e);
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 500px) {
    .company-feature .company-feature__item--three .company-feature__item__title {
        bottom: 20px;
        left: 20px;
        top: 20px;
        font-size: 25px;
    }
}

.company-feature .company-feature__item--three .cilox-btn {
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: inline-flex;
    align-items: center;
    background-color: var(--cilox-base, #f5bf3e);
    border: 1px solid var(--cilox-base, #f5bf3e);
    padding: 0 0px 0 30px;
    gap: 20px;
    font-size: 12px;
    color: var(--cilox-black, #18191c);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 500px) {
    .company-feature .company-feature__item--three .cilox-btn {
        bottom: 20px;
        left: 20px;
    }
}

.company-feature .company-feature__item--three .cilox-btn::after,
.company-feature .company-feature__item--three .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.company-feature .company-feature__item--three .cilox-btn i {
    width: 39px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-white, #fff);
    font-size: 14px;
    font-weight: 900;
    transition: all 0.4s ease-in-out;
}

.company-feature .company-feature__item--three .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
}

.company-feature .company-feature__item--three .cilox-btn:hover i {
    background-color: var(--cilox-black, #18191c);
    color: var(--cilox-base, #f5bf3e);
}


/*--------------------------------------------------------------
# Award Section
--------------------------------------------------------------*/

.award-area__top {
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .award-area__top {
        margin-bottom: 30px;
    }
}

.award-area__top .sec-title {
    margin-bottom: 0;
}

.award-area__top__btn .cilox-btn {
    font-size: 14px;
    color: #797b81;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    background-color: transparent;
    border: 1px solid #e1e2e7;
    padding: 16px 38px;
}

.award-area__top__btn .cilox-btn::after,
.award-area__top__btn .cilox-btn::before {
    background-color: var(--cilox-base, #f5bf3e);
}

.award-area__top__btn .cilox-btn:hover {
    color: var(--cilox-black, #18191c);
}

.award-area__thumb {
    position: relative;
    z-index: 1;
    text-align: center;
}

@media (min-width: 1200px) {
    .award-area__thumb {
        text-align: left;
        margin-left: 43px;
    }
    .award-area__thumb::after {
        left: 0;
    }
}

.award-area__thumb::after {
    content: "";
    border-radius: 50%;
    background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0.01) 100%);
    background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0.01) 100%);
    background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(254, 198, 63) 0%, rgba(255, 255, 255, 0.01) 100%);
    opacity: 0.502;
    position: absolute;
    width: 407px;
    height: 407px;
    top: -127px;
    left: 0;
    z-index: -1;
}

@media (max-width: 991px) {
    .award-area__thumb::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 1200px) {
    .award-area__thumb::after {
        left: -50px;
    }
}

.award-area__content {
    position: relative;
    z-index: 1;
    background-color: #f2f3f6;
}

@media (min-width: 1200px) {
    .award-area__content {
        margin-left: -35px;
    }
}

.award-area__content .award-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 45px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .award-area__content .award-card {
        padding: 25px 35px;
    }
}

@media (max-width: 767px) {
    .award-area__content .award-card {
        padding: 20px 30px;
    }
}

.award-area__content .award-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(var(--cilox-black-rgb, 24, 25, 28));
    z-index: -1;
    transition: all 0.4s ease-in-out;
    transform: translateX(-100%);
}

.award-area__content .award-card__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 767px) {
    .award-area__content .award-card__inner {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .award-area__content .award-card__inner {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.award-area__content .award-card:hover::after {
    transform: translateX(0);
}

.award-area__content .award-card:hover .icon {
    display: block;
    opacity: 1;
    margin-left: 0;
}

.award-area__content .award-card:hover .year {
    color: var(--cilox-white, #fff);
}

.award-area__content .award-card:hover .year {
    font-size: 60px;
    margin-bottom: 0;
    line-height: 1;
}

.award-area__content .icon {
    visibility: visible;
    opacity: 0;
    transition: all 0.3s ease;
    margin-left: -85px;
    transition: all 0.4s ease-in-out;
}

.award-area__content .year {
    font-size: 100px;
    color: var(--cilox-black, #18191c);
    text-transform: uppercase;
    line-height: 0.28;
    margin-bottom: -95px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .award-area__content .year {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .award-area__content .year {
        font-size: 50px;
    }
}

.award-area__content .award-area__title {
    font-size: 20px;
    color: #797b81;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .award-area__content .award-area__title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .award-area__content .award-area__title {
        font-size: 16px;
    }
}

.award-area__content .award-card {
    border-top: 1px solid #e1e2e7;
}

.award-area__content .award-card:last-child {
    border-bottom: 1px solid #e1e2e7;
}


/* --- Corrección de alineación para sección NUESTROS VALORES --- */

section#valores .why-choose-one__right {
    margin-left: -40px;
    /* mueve el texto más a la izquierda */
}

@media (min-width: 992px) {
    section#valores .why-choose-one__thumb {
        margin-left: -60px;
        /* acerca la imagen al borde del contenedor */
    }
    section#valores .why-choose-one__right {
        margin-left: 0;
        padding-left: 40px;
        /* separa texto del borde */
    }
}


/* Alinear los cuadros de valores horizontalmente */

#valores .why-choose-one__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#valores .why-choose-one__list li {
    flex: 1 1 calc(25% - 20px);
    /* 4 columnas con espacio */
    min-width: 240px;
}

#valores .why-choose__item {
    background-color: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#valores .why-choose__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}


/* --- Forzar los 4 cuadros en una fila --- */

#valores .valores-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    padding-left: 0;
    margin: 0;
}

#valores .valores-grid>li {
    list-style: none;
    width: auto !important;
    /* rompe el width:100% del theme */
}


/* Card look + hover */

#valores .why-choose__item {
    background-color: #f8f9fa;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 22px;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

#valores .why-choose__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
}


/* Responsivo */

@media (max-width: 1199.98px) {
    #valores .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    #valores .valores-grid {
        grid-template-columns: 1fr;
    }
}


/* --- NUESTROS VALORES: fijar layout y capas --- */

section#valores {
    position: relative;
}


/* Opción A: dejar el thumb, pero por debajo de las cards */

section#valores .why-choose-one__thumb {
    position: relative;
    z-index: 1;
}

section#valores .why-choose-one__right {
    position: relative;
    z-index: 3;
}


/* Opción B (si molesta): ocultar el thumb en desktop también */


/* descomenta si prefieres SIN imagen a la izquierda */


/* section#valores .why-choose-one__thumb { display: none !important; } */


/* --- Grilla horizontal de 4 cards --- */

#valores .valores-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    gap: 24px;
    padding-left: 0;
    margin: 0;
}

#valores .valores-grid>li {
    list-style: none;
    width: auto !important;
    /* rompe el width:100% del theme */
    border: 0 !important;
    /* por si el theme dibuja separadores */
}

#valores .valores-grid>li::before,
#valores .valores-grid>li::after {
    display: none !important;
}


/* quita líneas fantasmas */


/* --- Estilo de card + hover --- */

#valores .why-choose__item {
    background-color: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

#valores .why-choose__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .12);
}


/* --- Responsivo: 2x2 en tablet, 1x4 en móvil --- */

@media (max-width: 1199.98px) {
    #valores .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    #valores .valores-grid {
        grid-template-columns: 1fr;
    }
}


/* Ajuste del título si se corta por overlay/overflow de contenedores */

#valores .sec-title__title {
    overflow: visible;
    white-space: normal;
}


/* ====== NUESTROS VALORES - corregir layout completamente ====== */

section#valores.valores-full {
    position: relative;
}


/* 1) Oculta el thumb (columna izquierda) solo en esta sección */

section#valores.valores-full .col-lg-5,
section#valores.valores-full .why-choose-one__thumb {
    display: none !important;
}


/* 2) Columna derecha ocupa todo el ancho (12/12) */

section#valores.valores-full .col-lg-7 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* 3) Grilla horizontal de 4 ítems (responsive) */

section#valores.valores-full .valores-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
}

section#valores.valores-full .valores-grid>li {
    list-style: none;
    width: auto !important;
    /* rompe width:100% del theme */
    border: 0 !important;
    /* elimina separadores del theme */
}

section#valores.valores-full .valores-grid>li::before,
section#valores.valores-full .valores-grid>li::after {
    display: none !important;
}


/* Estética de las cards + colores de texto (estaban muy claros) */

section#valores.valores-full .why-choose__item {
    background-color: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
    transition: transform .25s, box-shadow .25s;
}

section#valores.valores-full .why-choose__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .12);
}

section#valores.valores-full .why-choose__item__title {
    color: #1b1b1b !important;
}

section#valores.valores-full .why-choose__item__text {
    color: #333 !important;
}


/* Breakpoints */

@media (max-width: 1399.98px) {
    section#valores.valores-full .valores-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    section#valores.valores-full .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    section#valores.valores-full .valores-grid {
        grid-template-columns: 1fr;
    }
}


/* ====== NUESTROS VALORES – cards prolijas ====== */

section#valores.valores-full .valores-grid {
    align-items: stretch;
}


/* Card base */

section#valores.valores-full .why-choose__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    padding: 22px 20px;
    border-radius: 14px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, .08);
    height: 100%;
    min-height: 300px;
    /* iguala altura visual */
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
    transform: none !important;
    /* evita escalados raros del theme */
}


/* Cabecera: icono + título en una línea */

section#valores.valores-full .why-choose__item__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 6px 0 !important;
}


/* Icono en contenedor fijo (evita “huevo” estirado) */

section#valores.valores-full .why-choose__item__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #0f0f10;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

section#valores.valores-full .why-choose__item__icon i {
    font-size: 20px;
    line-height: 1;
}


/* Título y texto con tipografía consistente (sin deformación) */

section#valores.valores-full .why-choose__item__title {
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
    font-weight: 700;
    letter-spacing: 0 !important;
    text-transform: none !important;
    /* quita mayúsculas forzadas */
    color: #111 !important;
    word-break: normal;
    hyphens: auto;
}

section#valores.valores-full .why-choose__item__text {
    color: #333 !important;
    line-height: 1.6;
    margin: 0;
}


/* En móviles permitimos mayor altura automáticamente */

@media (max-width: 575.98px) {
    section#valores.valores-full .why-choose__item {
        min-height: 0;
    }
}


/* ====== Valores: títulos sin cortes feos y cards parejitas ====== */


/* altura y layout consistente */

section#valores.valores-full .valores-grid {
    align-items: stretch;
}

section#valores.valores-full .why-choose__item {
    min-height: 320px;
    /* todas con la misma “presencia” */
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* fila de icono + título alineada */

section#valores.valores-full .why-choose__item__top {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* contenedor del título: limita ancho óptimo y evita saltos feos */

section#valores.valores-full .why-choose__item__title {
    margin: 0 !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
    font-weight: 700;
    letter-spacing: 0 !important;
    text-transform: none !important;
    /* quita forzado de MAYÚSCULAS */
    color: #111 !important;
    /* 🔧 Controla el wrapping: */
    max-width: 18ch;
    /* ancho “ideal” para 2–3 líneas */
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    /* evita desbordes */
    hyphens: manual;
    /* no invente guiones */
}


/* navegadores modernos (Chrome/Edge/Safari): “balancea” las líneas */

@supports (text-wrap: balance) {
    section#valores.valores-full .why-choose__item__title {
        text-wrap: balance;
    }
}


/* texto del párrafo */

section#valores.valores-full .why-choose__item__text {
    color: #333 !important;
    line-height: 1.6;
}


/* icono redondito estable */

section#valores.valores-full .why-choose__item__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #0f0f10;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

section#valores.valores-full .why-choose__item__icon i {
    font-size: 20px;
}


/* ====== Valores: títulos sin cortes feos y cards parejitas ====== */


/* altura y layout consistente */

section#valores.valores-full .valores-grid {
    align-items: stretch;
}

section#valores.valores-full .why-choose__item {
    min-height: 320px;
    /* todas con la misma “presencia” */
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* fila de icono + título alineada */

section#valores.valores-full .why-choose__item__top {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* contenedor del título: limita ancho óptimo y evita saltos feos */

section#valores.valores-full .why-choose__item__title {
    margin: 0 !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
    font-weight: 700;
    letter-spacing: 0 !important;
    text-transform: none !important;
    /* quita forzado de MAYÚSCULAS */
    color: #111 !important;
    /* 🔧 Controla el wrapping: */
    max-width: 18ch;
    /* ancho “ideal” para 2–3 líneas */
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    /* evita desbordes */
    hyphens: manual;
    /* no invente guiones */
}


/* navegadores modernos (Chrome/Edge/Safari): “balancea” las líneas */

@supports (text-wrap: balance) {
    section#valores.valores-full .why-choose__item__title {
        text-wrap: balance;
    }
}


/* texto del párrafo */

section#valores.valores-full .why-choose__item__text {
    color: #333 !important;
    line-height: 1.6;
}


/* icono redondito estable */

section#valores.valores-full .why-choose__item__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #0f0f10;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

section#valores.valores-full .why-choose__item__icon i {
    font-size: 20px;
}

.why-choose__item__title {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    white-space: normal !important;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columnas del mismo ancho */
    gap: 32px;
}

.valores-grid li,
.why-choose__item {
    height: 100%;
}

.why-choose__item__title {
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    /* ancho fijo de cada columna */
    justify-content: center;
    /* centra el grid dentro del contenedor */
    gap: 32px;
}

.why-choose__item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}


/*# sourceMappingURL=cilox.css.map */

.why-choose__item__title {
    white-space: normal;
    word-break: keep-all;
    hyphens: none;
}

@media (max-width: 1200px) {
    .valores-grid {
        grid-template-columns: repeat(2, 280px);
    }
}

@media (max-width: 600px) {
    .valores-grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }
}

#valores-grid {
    display: flex;
    justify-content: center;
    /* asegura centrado */
    align-items: flex-start;
    gap: 32px !important;
    /* fuerza que el gap sea uniforme */
    margin: 0 auto;
    width: fit-content;
    /* evita estiramiento del espacio muerto */
}

#valores-grid li {
    flex: 0 0 auto;
    /* evita que se achiquen */
}

#valores-grid .why-choose__item {
    flex: none;
    width: auto;
    /* el JS pondrá el ancho correcto */
    height: 100%;
}

#valores-grid li {
    flex: none !important;
    /* evita que el li se estire */
    margin: 0 !important;
    /* limpia márgenes heredados */
}


/* === VALORES: 4 cards, mismo ancho y mismo espacio === */

#valores-grid {
    display: flex !important;
    justify-content: center !important;
    /* centra el grupo */
    align-items: stretch !important;
    gap: 32px !important;
    /* separaciones uniformes */
    width: auto !important;
    /* evita estirarse a 100% */
    margin: 0 auto !important;
}


/* anula márgenes “fantasma” del theme en los <li> y en la card */

#valores-grid>li {
    flex: 0 0 auto !important;
    margin: 0 !important;
}

#valores-grid>li+li {
    margin-left: 0 !important;
    /* por si existe regla li+li */
}

#valores-grid .why-choose__item {
    margin: 0 !important;
    /* algunos skins lo agregan */
}


/* títulos sin cortes raros */

#valores-grid .why-choose__item__title {
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

#valores-grid>li:first-child {
    outline: 1px dashed rgba(255, 255, 0, .6);
}


/* Desktop: deja tu layout como está */


/* Mobile / tablets: ancho fluido y 1 columna */

@media (max-width: 991.98px) {
    #valores-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        /* que no quede más ancho que la pantalla */
        margin: 0 !important;
        justify-content: stretch !important;
    }
    #valores-grid>li {
        width: 100% !important;
        flex: none !important;
        margin: 0 !important;
    }
    #valores-grid .why-choose__item {
        width: 100% !important;
        /* quita el ancho fijo de desktop */
        max-width: 100% !important;
        box-sizing: border-box;
    }
}


/* Defensas generales contra cortes raros / desbordes laterales */

#valores-grid .why-choose__item__title {
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

html,
body {
    overflow-x: hidden;
}


/* Espacio extra entre el icono y el texto en las cards de valores */

#valores-grid .why-choose__item__top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    /* separa icono del texto */
}

#valores-grid .why-choose__item__title {
    margin-left: 4px;
    /* empuja ligeramente el título */
}

#valores-grid .why-choose__item__text {
    padding-left: 4px;
    /* empuja el párrafo un poco */
}

#valores-grid .why-choose__item {
    padding-left: 32px;
    /* ajusta el valor según el look que quieras */
    padding-right: 32px;
}


/* evita scroll lateral si algo se escapa */

@media (max-width: 991.98px) {
    #valores-grid .why-choose__item {
        padding-left: 20px;
        padding-right: 20px;
    }
}

#valores-grid .why-choose__item__text {
    margin-left: 48px;
    /* Ajusta este valor según lo que quieras */
}

@media (max-width: 768px) {
    #valores-grid .why-choose__item__text {
        margin-left: 32px;
    }
}


/* === Card estable (desktop y mobile) === */

#valores-grid .why-choose__item {
    display: block;
    padding: 24px;
    box-sizing: border-box;
}


/* Icono + título en fila */

#valores-grid .why-choose__item__top {
    display: flex !important;
    align-items: center;
    gap: 12px;
    /* separación icono-título */
    margin: 0;
}


/* El óvalo del icono ocupa ancho fijo */

#valores-grid .why-choose__item__icon {
    flex: 0 0 48px;
    /* <-- si el óvalo es más grande, ajusta aquí */
}


/* Título limpio (sin cortes raros) */

#valores-grid .why-choose__item__title {
    margin: 0;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}


/* Descripción alineada EXACTA bajo el título */

#valores-grid .why-choose__item__text {
    margin: 12px 0 0 0;
    padding-left: 4px;
    /* = ancho icono + gap   calc(48px + 12px);*/
}


/* Mobile: mantiene alineación y reduce relleno si quieres */

@media (max-width: 768px) {
    #valores-grid .why-choose__item {
        padding: 20px;
    }
    #valores-grid .why-choose__item__text {
        padding-left: calc(44px + 10px);
        /* suaviza un poco en mobile */
    }
}


/* Defensas contra estilos del theme que metían huecos/cortes */

#valores-grid>li {
    margin: 0 !important;
}

html,
body {
    overflow-x: hidden;
}


/* Asegura jerarquía correcta en la sección de valores */

.valores-full {
    position: relative;
}

.valores-full .container {
    position: relative;
    z-index: 2;
}


/* El decorativo va siempre detrás del contenido */

.valores-full .why-choose-one__shape {
    position: absolute;
    /* ya lo es, por si acaso */
    inset: 0 auto auto 0;
    /* no obligatorio, solo para ser explícitos */
    z-index: 0 !important;
    /* <- clave: detrás del título */
    pointer-events: none;
    /* que no interfiera con clics/scroll */
}


/* En pantallas pequeñas, si prefieres, ocúltalo completamente */

@media (max-width: 768px) {
    .valores-full .why-choose-one__shape {
        display: none;
    }
}


/* Evita que las animaciones 'split' recorten texto */

.sec-title,
.sec-title__title,
.sec-title__tagline {
    overflow: visible !important;
    position: relative;
    /* para respetar el z-index */
    z-index: 2;
    padding-left: 25px;
}


/* --- NUESTROS VALORES: evitar que el título se corte --- */

.valores-full {
    position: relative;
    isolation: isolate;
    /* crea un stacking context propio */
}


/* el contenido por encima de cualquier decorativo */

.valores-full .container,
.valores-full .sec-title,
.valores-full .sec-title * {
    position: relative;
    z-index: 10 !important;
    overflow: visible !important;
}


/* manda el shape y pseudo-elementos al fondo (o quítalos en mobile) */

.valores-full .why-choose-one__shape,
.valores-full::before,
.valores-full::after {
    z-index: -1 !important;
    pointer-events: none !important;
}

@media (max-width: 768px) {
    .valores-full .why-choose-one__shape {
        display: none !important;
    }
}


/* desactiva/neutraliza la animación que clipea el texto en mobile */

@media (max-width: 768px) {
    .valores-full .bw-split-in-up,
    .valores-full .bw-split-in-up-fast {
        transform: none !important;
        clip-path: none !important;
        will-change: auto !important;
        overflow: visible !important;
    }
}


/* por si el theme mete líneas/ornamentos con overflow */

.valores-full .sec-title__title {
    display: block;
    line-height: 1.1;
}

.texto-sobre-imagen p {
    line-height: 1 !important;
    /* Separación correcta entre párrafos */
}