:root {
    --voldor-font: "Manrope", sans-serif;
    --voldor-heading-font: "Barlow", sans-serif;
    --voldor-special-font: "Alex Brush", cursive;
    --voldor-text: #797577;
    --voldor-text-rgb: 121, 117, 119;
    --voldor-text-gray: #958F91;
    --voldor-text-gray-rgb: 149, 143, 145;
    --voldor-base: #AE8F62;
    --voldor-base-rgb: 174, 143, 98;
    --voldor-secondary: #241F21;
    --voldor-secondary-rgb: 36, 31, 33;
    --voldor-gray: #E6E0D8;
    --voldor-gray-rgb: 230, 224, 216;
    --voldor-white: #fff;
    --voldor-white-rgb: 255, 255, 255;
    --voldor-black: #120F10;
    --voldor-black-rgb: 18, 15, 16;
    --voldor-black2: #1B1216;
    --voldor-black2-rgb: 27, 18, 22;
    --voldor-black3: #221C1E;
    --voldor-black3-rgb: 34, 28, 30;
    --voldor-black4: #000;
    --voldor-black4-rgb: 0, 0, 0;
    --voldor-border-color: #F4F2EE;
    --voldor-border-color-rgb: 244, 242, 238;
    --voldor-letter-space: .1em;
    --voldor-letter-space-xl: .2em
}

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

.voldor-btn {
    display: inline-block;
    vertical-align: middle;
    border: 0;
    outline: none !important;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 112%;
    background-color: var(--voldor-secondary, #241F21);
    color: var(--voldor-white, #fff);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    padding: 19px 40px;
    transition: 500ms;
    text-transform: uppercase;
    background-color: var(--voldor-secondary, #241F21);
    color: var(--voldor-white, #fff);
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1
}

.voldor-btn:hover {
    color: var(--voldor-secondary, #241F21);
    background-color: var(--voldor-white, #fff)
}

.voldor-btn::after {
    background: var(--voldor-base, #AE8F62);
    top: 50%;
    left: 50%;
    content: "";
    width: 100%;
    height: 0;
    z-index: -1;
    position: absolute;
    transition: all .6s ease;
    transform: translate(-50%, -50%) rotate(-45deg)
}

.voldor-btn:hover {
    color: var(--voldor-black, #120F10)
}

.voldor-btn:hover::after {
    height: 380%
}

.voldor-btn--base {
    color: var(--voldor-white, #fff);
    background: var(--voldor-base, #AE8F62)
}

.voldor-btn--base::after {
    background: var(--voldor-secondary, #241F21)
}

.voldor-btn--base:hover {
    color: var(--voldor-white, #fff)
}

.voldor-btn--white {
    color: var(--voldor-secondary, #241F21);
    background: var(--voldor-white, #fff)
}

.voldor-btn--white::after {
    background: var(--voldor-secondary, #241F21)
}

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

.voldor-btn--secondary {
    background-color: var(--voldor-secondary, #241F21)
}

.voldor-btn--secondary::after {
    background-color: var(--voldor-base, #AE8F62)
}

.voldor-btn--secondary:hover {
    color: var(--voldor-white, #fff)
}

body {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    color: var(--voldor-text, #797577);
    font-size: 16px;
    line-height: 2.125;
    font-weight: 500;
    counter-reset: courseNumber
}

body.locked {
    overflow: hidden
}

a {
    color: var(--voldor-base, #AE8F62);
    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(--voldor-heading-font, "Barlow", sans-serif);
    color: var(--voldor-black, #120F10)
}

@media(max-width:575px) {

    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br {
        display: none
    }
}

p {
    color: var(--voldor-text, #797577)
}

@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-x-0 {
    --bs-gutter-x: 0
}

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

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

.gutter-x-20 {
    --bs-gutter-x: 20px
}

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

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

.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(--voldor-base, #AE8F62)
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preloader {
    position: fixed;
    background-color: var(--voldor-black, #120F10);
    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 {
    display: flex;
    align-items: center;
    width: auto;
    height: 35px;
    background: transparent;
    position: fixed;
    bottom: 60px;
    right: -12px;
    z-index: 99;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: rotate(-90deg);
    cursor: pointer;
    transition: all .2s ease
}

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

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

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

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

.post-pagination {
    margin-bottom: 0;
    margin-top: 0
}

@media(min-width:992px) {
    .post-pagination {
        margin-top: 0
    }
}

.post-pagination a {
    display: flex;
    width: 45px;
    height: 45px;
    background-color: #eff2f6;
    align-items: center;
    justify-content: center;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    border-radius: 50%;
    transition: 500ms ease
}

@media(min-width:992px) {
    .post-pagination a {
        width: 60px;
        height: 60px;
        font-size: 18px
    }
}

.post-pagination a:hover {
    background-color: var(--voldor-base, #AE8F62);
    color: #fff
}

.post-pagination li:first-child a {
    background-color: var(--voldor-base, #AE8F62);
    color: #fff
}

.post-pagination li:last-child a {
    background-color: var(--voldor-black, #120F10);
    color: #fff
}

.post-pagination li+li {
    margin-left: 10px
}

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

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

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

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

.voldor-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    border: 0;
    outline: 0;
    border-radius: 50%;
    margin: 0;
    padding: 0
}

.voldor-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
    border: 0;
    outline: 0;
    width: 50px;
    height: 50px;
    background-color: var(--voldor-border-color, #F4F2EE);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--voldor-text, #797577);
    border-radius: 50%;
    font-size: 14px;
    color: var(--voldor-text, #797577);
    transition: all 500ms ease
}

.voldor-owl__carousel--basic-nav.owl-carousel .owl-nav button span:hover {
    background-color: var(--voldor-black, #120F10);
    color: var(--voldor-white, #fff)
}

.voldor-owl__carousel--basic-nav.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px
}

.voldor-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
    background-color: var(--voldor-black, #120F10);
    border: 2px solid var(--voldor-white, #fff);
    box-shadow: 0 0 1px rgba(var(--voldor-black-rgb, 18, 15, 16), 1);
    margin: 0
}

.voldor-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span,
.voldor-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
    background-color: var(--voldor-black, #120F10);
    border: 2px solid var(--voldor-black, #120F10);
    box-shadow: 0 0 1px rgba(var(--voldor-black-rgb, 18, 15, 16), 1)
}

.voldor-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
    margin-top: 60px
}

.sec-title {
    padding-bottom: 40px
}

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

.sec-title__img {
    display: inline-flex;
    margin-top: -3px;
    margin-right: 7px
}

.sec-title__tagline {
    margin: 0;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    color: var(--voldor-text, #797577)
}

.sec-title__title {
    margin: 0;
    text-transform: uppercase;
    margin-top: 7px;
    color: var(--voldor-secondary, #241F21);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    font-size: 30px;
    text-shadow: 0 0 .1px currentColor
}

@media(min-width:768px) {
    .sec-title__title {
        font-size: 40px
    }
}

.ui-datepicker .ui-datepicker-header {
    background-image: none;
    background-color: var(--voldor-black, #120F10);
    color: var(--voldor-white, #fff);
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

.ui-datepicker-calendar th span {
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

.ui-datepicker-calendar td {
    background-color: var(--voldor-gray, #E6E0D8);
    background-image: none;
    font-family: var(--voldor-font, "Manrope", sans-serif);
    color: var(--voldor-text, #797577)
}

.ui-datepicker-calendar td a {
    border-color: var(--voldor-border-color, #F4F2EE);
    background-color: var(--voldor-gray, #E6E0D8);
    background-image: none
}

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

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

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

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    background-image: none;
    background-color: var(--voldor-white, #fff);
    color: var(--voldor-black, #120F10)
}

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

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

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

.logo-voldor img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.video-one {
    position: relative;
    background-color: var(--voldor-black, #120F10);
    padding: 100px 0
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--voldor-black, #120F10);
    background-size: cover;
    background-position: center center;
    opacity: .5
}

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

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

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

.video-one__btn .video-popup:hover {
    color: var(--voldor-base, #AE8F62)
}

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

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

.video-one__btn .curved-circle--item span {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--voldor-white, #fff);
    letter-spacing: .4em
}

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

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

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

.video-one__link::before {
    background-color: var(--voldor-base, #AE8F62)
}

.video-two {
    position: relative;
    background-color: var(--voldor-black, #120F10);
    padding: 143px 0 320px
}

@media(max-width:767px) {
    .video-two {
        padding: 100px 0 270px
    }

    .video-two .text-end {
        text-align: left !important
    }
}

.video-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--voldor-black, #120F10);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: .5
}

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

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

.video-two .container {
    position: relative
}

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

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

.video-two__btn .video-popup:hover {
    color: var(--voldor-base, #AE8F62)
}

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

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

.video-two__btn .curved-circle--item span {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--voldor-white, #fff);
    letter-spacing: .4em
}

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

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

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

.video-two__link::before {
    background-color: var(--voldor-base, #AE8F62)
}

@media(max-width:767px) {
    .team-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }
}

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

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

.team-card__image::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
    bottom: auto;
    transition: all .4s ease-in-out
}

@media(max-width:1080px) {
    .team-card__image img {
        object-fit: cover;
        width: 100%
    }
}

.team-card__content {
    position: absolute;
    z-index: 1;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--voldor-white, #fff);
    padding: 26px 10px
}

@media(max-width:575px) {
    .team-card__content {
        bottom: 0;
        left: 0;
        right: 0
    }
}

.team-card__content__inner {
    display: flex;
    gap: 28px;
    align-items: center
}

.team-card__content__title {
    margin-top: -5px;
    color: var(--voldor-secondary, #241F21);
    margin-bottom: 5px;
    padding-bottom: 0;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase
}

@media(max-width:991px) {
    .team-card__content__title {
        font-size: 19px
    }
}

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

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

.team-card__content__designation {
    margin-bottom: -3px;
    padding-bottom: 0;
    color: var(--voldor-text, #797577);
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.37
}

.team-card__content__hover__icon {
    position: relative;
    width: 44px;
    height: 44px;
    background: var(--voldor-text, #797577);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--voldor-white, #fff);
    font-size: 17px;
    cursor: pointer;
    transition: all .4s ease-in-out
}

.team-card__content__hover__icon:hover {
    background: var(--voldor-base, #AE8F62)
}

.team-card__content__hover__social {
    display: flex;
    flex-direction: column;
    background: var(--voldor-base, #AE8F62);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    position: absolute;
    bottom: 80px;
    left: 12px;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: 1000ms ease;
    transform-origin: bottom top
}

.team-card__content__hover__social a {
    color: var(--voldor-white, #fff);
    line-height: 1;
    font-size: 12px
}

.team-card__content__hover__social a:hover {
    color: var(--voldor-secondary, #241F21)
}

.team-card__content__hover__social a+a {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(244, 242, 238, 0.2)
}

.team-card__content__hover:hover .team-card__content__hover__social {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible
}

.team-card__content__svg {
    position: absolute;
    width: 100%;
    height: 30px;
    bottom: 0;
    left: 0
}

.team-card__content__svg svg {
    transition: all .4s ease-in-out;
    fill: var(--voldor-border-color, #F4F2EE)
}

.team-card:hover .team-card__image::after {
    height: 100%
}

.team-card:hover .team-card__content__svg svg {
    fill: var(--voldor-base, #AE8F62)
}

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

.team-one--page {
    padding: 120px 0
}

@media(max-width:991px) {
    .team-one--page {
        padding: 100px 0
    }
}

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

.team-one--home {
    background-color: var(--voldor-border-color, #F4F2EE);
    padding: 120px 0
}

@media(max-width:991px) {
    .team-one--home {
        padding: 100px 0
    }
}

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

.team-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    mix-blend-mode: luminosity;
    opacity: .5
}

.team-details {
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8)
}

@media(min-width:992px) {
    .team-details {
        padding-top: 120px;
        padding-bottom: 120px
    }
}

.team-details__image {
    display: inline-block;
    position: relative;
    margin-right: -30px
}

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

@media(max-width:1199px) {
    .team-details__image {
        margin-right: 0
    }
}

@media(max-width:768px) {
    .team-details__content {
        margin-top: 30px
    }
}

@media(min-width:1199px) {
    .team-details__content {
        padding-left: 50px
    }
}

.team-details__content__subtitle {
    margin-top: -6px;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.18;
    font-family: var(--voldor-border-color, #F4F2EE)
}

.team-details__content__title {
    margin-top: -5px;
    font-size: 30px;
    margin-bottom: 22px;
    color: var(--voldor-secondary, #241F21);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 800;
    line-height: 125%;
    text-shadow: 0 0 .1px currentColor;
    text-transform: uppercase
}

@media(min-width:992px) {
    .team-details__content__title {
        font-size: 40px
    }
}

.team-details__content__text {
    color: var(--voldor-text, #797577);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 200%
}

@media(min-width:992px) {
    .team-details__content__text {
        margin-bottom: 30px
    }
}

.team-details__content__highlight {
    background-color: var(--voldor-secondary, #241F21);
    position: relative;
    padding: 10px 20px;
    margin-bottom: 30px;
    transition: all .4s ease-in-out;
    border-left: 6px solid var(--voldor-base, #AE8F62)
}

.team-details__content__highlight svg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 315px;
    z-index: -1;
    height: 38px;
    fill: var(--voldor-text, #797577);
    transition: all .4s ease-in-out
}

.team-details__content__highlight__text {
    max-width: 550px;
    display: block;
    width: 100%;
    color: var(--voldor-white, #fff);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    transition: all .4s ease-in-out;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

@media(min-width:992px) {
    .team-details__content__highlight {
        padding: 22px 30px;
        margin-bottom: 38px
    }

    .team-details__content__highlight__text {
        font-size: 20px
    }
}

.team-details__content__highlight:hover {
    background: var(--voldor-base, #AE8F62);
    border-left: 6px solid var(--voldor-secondary, #241F21)
}

.team-details__content__highlight:hover .team-details__content__highlight__text {
    color: var(--voldor-secondary, #241F21)
}

.team-details__content__highlight:hover svg {
    fill: var(--voldor-base, #AE8F62)
}

.team-details__list {
    margin-bottom: 32px
}

.team-details__list>li {
    margin-bottom: 13px;
    color: var(--voldor-secondary, #241F21);
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.375
}

.team-details__list>li a {
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    color: var(--voldor-secondary, #241F21)
}

.team-details__list>li a:hover {
    background-size: 100% 1px
}

.team-details__list>li a:hover {
    color: var(--voldor-base, #AE8F62)
}

.team-details__list>li span {
    display: inline-block;
    color: var(--voldor-text, #797577)
}

.team-details__list>li:last-child {
    margin-bottom: 0
}

.team-details__list>li i {
    color: var(--voldor-base, #AE8F62);
    margin-right: 10px
}

.team-details .team-skills {
    margin-bottom: 40px
}

.team-details .team-skills__progress+.team-skills__progress {
    margin-top: 20px
}

@media(min-width:992px) {
    .team-details .team-skills__progress+.team-skills__progress {
        margin-top: 34px
    }
}

.team-details .team-skills__progress__title {
    margin-bottom: 12px;
    text-shadow: 0 0 0 .1px currentColor;
    color: var(--voldor-secondary, #241F21);
    font-size: 18px;
    font-weight: 600;
    line-height: 144.444%;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase
}

.team-details .team-skills__progress__bar {
    width: 100%;
    height: 10px;
    position: relative;
    background-color: var(--voldor-border-color, #F4F2EE)
}

.team-details .team-skills__progress__inner {
    position: absolute;
    height: 10px;
    background-color: var(--voldor-base, #AE8F62);
    transition: all 700ms linear;
    width: 0
}

.team-details .team-skills__progress__number {
    position: absolute;
    bottom: calc(100%+5px);
    right: 0;
    margin-bottom: 8px;
    color: var(--voldor-text, #797577);
    font-size: 18px;
    font-weight: 500;
    line-height: 144.444%
}

.team-details__social {
    display: flex;
    flex-wrap: wrap;
    gap: 19px
}

.team-details__social a {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--voldor-border-color, #F4F2EE);
    font-size: 12px;
    color: var(--voldor-secondary, #241F21);
    line-height: 1;
    transition: all 500ms ease
}

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

.team-skills-one {
    padding: 120px 0 110px 0
}

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

.team-skills-one__title {
    margin-bottom: 25px;
    color: var(--voldor-secondary, #241F21);
    font-size: 25px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2
}

@media(min-width:768px) {
    .team-skills-one__title {
        font-size: 30px
    }
}

.team-skills-one__text {
    max-width: 542PX;
    width: 100%;
    color: var(--voldor-text, #797577);
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 200%
}

.team-skills-one__certificates {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 21px
}

.team-skills-one__certificates__item {
    max-width: 176px;
    width: 100%;
    cursor: pointer
}

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

.team-skills-one__certificates__item:hover img {
    object-fit: cover;
    filter: grayscale(0%)
}

.team-skills-one__bottom {
    margin-top: 70px
}

.team-skills-one__skill {
    padding-top: 45px;
    position: relative
}

.team-skills-one__skill::before {
    position: absolute;
    top: 7px;
    left: 0;
    content: "";
    clear: both;
    width: 110%;
    height: 1px;
    background-color: var(--voldor-gray, #E6E0D8)
}

@media(max-width:767px) {
    .team-skills-one__skill::before {
        display: none
    }
}

.team-skills-one__skill::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    clear: both;
    width: 15px;
    height: 15px;
    border-radius: 500px;
    background-color: var(--voldor-secondary, #241F21);
    transition: all .4s ease-in-out
}

@media(max-width:767px) {
    .team-skills-one__skill::after {
        display: none
    }
}

.team-skills-one__skill__start {
    display: block;
    margin-bottom: 10px;
    color: var(--voldor-secondary, #241F21);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.189
}

.team-skills-one__skill__title {
    margin-bottom: 10px;
    color: var(--voldor-secondary, #241F21);
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2
}

.team-skills-one__skill__text {
    margin-bottom: 0;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: normal
}

.team-skills-one__skill:hover::after {
    background-color: var(--voldor-base, #AE8F62)
}

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

@media(max-width:991px) {
    .team-form-one {
        padding: 100px 0
    }
}

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

.team-form-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1
}

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

.team-form-one .sec-title {
    text-align: center
}

.team-form-one .form-one .bootstrap-select>.dropdown-toggle,
.team-form-one .form-one input[type=text],
.team-form-one .form-one input[type=email],
.team-form-one .form-one textarea {
    background-color: var(--voldor-white, #fff)
}

.team-form-one .form-one textarea {
    height: 176px
}

.team-form-one .form-one .ostech-btn {
    padding: 19px 40.5px;
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.team-form-one .form-one .ostech-btn::after {
    background: var(--voldor-secondary, #241F21)
}

.team-form-one__shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: topBottom 4s ease-in-out infinite;
    mix-blend-mode: overlay
}

.blog-card {
    position: relative;
    background-color: var(--voldor-white, #fff)
}

@media(max-width:767px) {
    .blog-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }
}

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

.blog-card__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 1000ms ease, transform 1000ms ease
}

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

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

.blog-card__image img {
    width: 100%;
    object-fit: cover
}

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

.blog-card__content {
    margin-top: -130px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: var(--voldor-border-color, #F4F2EE);
    position: relative;
    transition: all 500ms ease;
    padding: 16px 30px 18px
}

@media(max-width:400px) {
    .blog-card__content {
        padding: 20px 30px
    }
}

.blog-card__content:hover {
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.06);
    background-color: var(--voldor-white, #fff)
}

.blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    transition: all .4s ease-in-out;
    margin-bottom: 10px
}

.blog-card__meta li {
    display: flex;
    align-items: center
}

.blog-card__meta li i {
    color: var(--voldor-base, #AE8F62);
    margin-right: 5px;
    font-size: 19px
}

.blog-card__meta li a {
    display: flex;
    align-items: center;
    transition: all 500ms ease;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 214%;
    color: var(--voldor-secondary, #241F21);
    text-transform: uppercase
}

.blog-card__meta li a:hover {
    color: var(--voldor-base, #AE8F62);
    text-shadow: 0 0 1px currentColor
}

.blog-card__date {
    position: relative;
    margin-top: -48px;
    background: var(--voldor-secondary, #241F21);
    display: flex;
    align-items: center
}

.blog-card__date__day {
    background: var(--voldor-base, #AE8F62);
    display: inline;
    padding: 9px 18px 12px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: var(--voldor-white, #fff)
}

.blog-card__date__year {
    text-align: center;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2142;
    color: var(--voldor-white, #fff);
    padding: 0 16px 0;
    text-transform: uppercase
}

.blog-card__date__year span {
    display: block;
    color: inherit
}

.blog-card__title {
    color: var(--voldor-secondary, #241F21);
    margin-bottom: 6px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 175%;
    text-transform: uppercase
}

.blog-card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 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(--voldor-base, #AE8F62)
}

.blog-card__link {
    color: var(--voldor-text, #797577);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-size: 14px;
    font-weight: 600;
    line-height: 178.571%;
    position: relative;
    display: block;
    padding: 5px 0;
    z-index: 1
}

.blog-card__link:hover {
    color: var(--voldor-base, #AE8F62)
}

.blog-card__link:hover::after {
    background: var(--voldor-base, #AE8F62)
}

.blog-card__link i {
    font-size: 16px;
    position: absolute;
    right: 0;
    color: var(--voldor-base, #AE8F62);
    top: 35%
}

.blog-card__link::after {
    content: "";
    right: 40px;
    height: 1px;
    background: var(--voldor-gray, #E6E0D8);
    position: absolute;
    top: 55%;
    left: 95px;
    transition: all .4s ease-in-out
}

.blog-card-fore {
    position: relative;
    background-color: var(--voldor-white, #fff);
    z-index: 1;
    padding-bottom: 30px
}

@media(max-width:991px) {
    .blog-card-fore {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:767px) {
    .blog-card-fore {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }
}

.blog-card-fore--two {
    padding-bottom: 0
}

.blog-card-fore--two::after {
    display: none
}

@media(max-width:991px) {
    .blog-card-fore--two {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:767px) {
    .blog-card-fore--two {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }
}

.blog-card-fore__image {
    position: relative;
    overflow: hidden
}

.blog-card-fore__image img {
    object-fit: cover;
    width: 100%
}

.blog-card-fore__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 1000ms ease, transform 1000ms ease
}

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

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

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

.blog-card-fore__content {
    margin-top: -124px;
    margin-left: 30px;
    margin-right: 30px;
    background-color: var(--voldor-white, #fff);
    position: relative;
    transition: all 500ms ease;
    padding: 26px 30px 20px;
    z-index: 1
}

@media(max-width:575px) {
    .blog-card-fore__content {
        padding: 30px 20px 20px;
        margin-left: 20px;
        margin-right: 20px
    }
}

.blog-card-fore__content--two {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    margin-left: 0;
    margin-right: 60px;
    margin-top: -138px
}

@media(max-width:575px) {
    .blog-card-fore__content--two {
        margin-right: 20px
    }
}

.blog-card-fore__content--two:hover {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15) !important
}

.blog-card-fore__content:hover {
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.06);
    background-color: var(--voldor-border-color, #F4F2EE)
}

.blog-card-fore__content__shape {
    position: absolute;
    bottom: 0;
    z-index: -1
}

.blog-card-fore__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    transition: all .4s ease-in-out;
    margin-bottom: 4px
}

.blog-card-fore__meta li {
    display: flex;
    align-items: center
}

.blog-card-fore__meta li i {
    color: var(--voldor-base, #AE8F62);
    margin-right: 5px;
    font-size: 19px
}

.blog-card-fore__meta li a {
    display: flex;
    align-items: center;
    transition: all 500ms ease;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 214%;
    color: var(--voldor-secondary, #241F21);
    text-transform: uppercase
}

.blog-card-fore__meta li a:hover {
    color: var(--voldor-base, #AE8F62);
    text-shadow: 0 0 1px currentColor
}

.blog-card-fore__date {
    position: relative;
    margin-top: -50px;
    background: var(--voldor-secondary, #241F21);
    display: flex;
    align-items: center
}

.blog-card-fore__date--two {
    margin-top: -28px;
    margin-right: -30px
}

@media(max-width:575px) {
    .blog-card-fore__date--two {
        margin-top: -33px;
        margin-right: -20px
    }
}

.blog-card-fore__date__day {
    background: var(--voldor-base, #AE8F62);
    display: inline;
    padding: 9px 18px 12px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: var(--voldor-white, #fff)
}

.blog-card-fore__date__year {
    text-align: center;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2142;
    color: var(--voldor-white, #fff);
    padding: 0 16px 0;
    text-transform: uppercase
}

.blog-card-fore__date__year span {
    display: block;
    color: inherit
}

.blog-card-fore__title {
    color: var(--voldor-secondary, #241F21);
    margin-bottom: 0;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 175%;
    text-transform: uppercase
}

.blog-card-fore__title--two {
    line-height: 150%;
    max-width: 300px
}

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

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

.blog-card-fore__title a:hover {
    color: var(--voldor-base, #AE8F62)
}

.blog-card-fore__link {
    color: var(--voldor-text, #797577);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-size: 14px;
    font-weight: 600;
    line-height: 178.571%;
    position: relative;
    display: block;
    padding: 5px 0;
    z-index: 1
}

.blog-card-fore__link:hover {
    color: var(--voldor-base, #AE8F62)
}

.blog-card-fore__link:hover::after {
    background: var(--voldor-base, #AE8F62)
}

.blog-card-fore__link i {
    font-size: 16px;
    position: absolute;
    right: 0;
    color: var(--voldor-base, #AE8F62);
    top: 35%
}

.blog-card-fore__link::after {
    content: "";
    right: 40px;
    height: 1px;
    background: var(--voldor-gray, #E6E0D8);
    position: absolute;
    top: 55%;
    left: 95px;
    transition: all .4s ease-in-out
}

.blog-card-fore::after {
    content: "";
    height: 300px;
    left: 0;
    bottom: 0;
    right: 30px;
    position: absolute;
    background: var(--voldor-base, #AE8F62);
    z-index: -1
}

.blog-card-two {
    position: relative;
    background-color: var(--voldor-white, #fff)
}

.blog-card-two__image {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px
}

.blog-card-two__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 1000ms ease, transform 1000ms ease
}

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

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

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

.blog-card-two__date {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--voldor-secondary, #241F21);
    display: flex;
    align-items: center
}

.blog-card-two__date__day {
    background: var(--voldor-base, #AE8F62);
    display: inline;
    padding: 9px 18px 12px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: var(--voldor-white, #fff)
}

.blog-card-two__date__year {
    text-align: center;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2142;
    color: var(--voldor-white, #fff);
    padding: 0 16px 0;
    text-transform: uppercase
}

.blog-card-two__date__year span {
    display: block;
    color: inherit
}

.blog-card-two__content {
    position: relative
}

.blog-card-two__meta {
    display: flex;
    align-items: center;
    margin: 7px;
    transition: all .4s ease-in-out
}

.blog-card-two__meta li:not(:first-child)::before {
    content: "|";
    margin-left: 15px;
    margin-right: 15px;
    font-weight: 500;
    color: #6D7076;
    opacity: .5
}

.blog-card-two__meta li a {
    color: var(--voldor-text, #797577);
    font-size: 14px;
    font-weight: 600;
    line-height: 214.286%;
    text-transform: uppercase
}

.blog-card-two__meta li a i {
    font-size: 15px;
    color: var(--voldor-base, #AE8F62);
    margin-right: 5px
}

.blog-card-two__title {
    color: var(--voldor-secondary, #241F21);
    margin-bottom: 20px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: .8333333333
}

.blog-card-two__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 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(--voldor-base, #AE8F62)
}

.blog-card-two__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%
}

.blog-card-two__link {
    margin-top: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--voldor-base, #AE8F62);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--voldor-secondary, #241F21)
}

.blog-card-two__link:hover {
    background-color: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.blog-card-two__link:hover i {
    animation: iconTranslateX .4s forwards
}

.blog-card-three {
    position: relative;
    background-color: transparent
}

.blog-card-three__image {
    position: relative;
    overflow: hidden
}

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

.blog-card-three__image img:nth-child(1) {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px)
}

.blog-card-three__image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover
}

.blog-card-three__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--voldor-black-rgb, 18, 15, 16), 0.5);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20%);
    transition: opacity 500ms ease, transform 500ms ease
}

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

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

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

.blog-card-three:hover .blog-card-three__image img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0)
}

.blog-card-three:hover .blog-card-three__image img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px)
}

.blog-card-three__date {
    width: 74px;
    height: auto;
    background-color: var(--voldor-base, #AE8F62);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 14px 20px 16px;
    top: 30px;
    right: 30px;
    position: absolute;
    z-index: 10;
    text-transform: uppercase;
    flex-direction: column;
    color: var(--voldor-text-gray, #958F91);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase
}

.blog-card-three__date span {
    margin-top: -2px;
    display: block;
    font-size: 30px;
    font-weight: 700
}

.blog-card-three__content {
    margin-top: -130px;
    background-color: var(--voldor-white, #fff);
    position: relative;
    transition: all 500ms ease;
    z-index: 1;
    margin-right: 20px;
    transition: all .4s ease-in-out
}

.blog-card-three__content__inner {
    padding: 30px
}

.blog-card-three__title {
    color: var(--voldor-text-gray, #958F91);
    font-size: 24px;
    font-weight: 700;
    line-height: 145.833%;
    margin-bottom: 2px
}

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

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

.blog-card-three__title a:hover {
    color: var(--voldor-base, #AE8F62)
}

.blog-card-three__link {
    color: var(--voldor-text-gray, #958F91);
    font-size: 14px;
    font-weight: 600;
    line-height: 178.571%;
    position: relative;
    display: block;
    padding: 5px 0 0;
    margin-bottom: -2px;
    z-index: 1
}

.blog-card-three__link:hover {
    color: var(--voldor-base, #AE8F62)
}

.blog-card-three__link:hover::after {
    background: var(--voldor-base, #AE8F62)
}

.blog-card-three__link i {
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 35%
}

.blog-card-three__link::after {
    content: "";
    right: 40px;
    height: 1px;
    background: var(--voldor-border-color, #F4F2EE);
    position: absolute;
    top: 55%;
    left: 95px;
    transition: all .4s ease-in-out
}

.blog-card-three__meta {
    margin-bottom: 6px;
    margin-top: -5px;
    transition: all .4s ease-in-out
}

.blog-card-three__meta li {
    color: var(--voldor-text, #797577);
    display: flex;
    align-items: center
}

.blog-card-three__meta li i {
    color: var(--voldor-base, #AE8F62);
    margin-right: 5px;
    font-size: 19px
}

.blog-card-three__meta li a {
    display: flex;
    align-items: center;
    color: inherit;
    transition: all 500ms ease;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 600;
    line-height: 162.5%
}

.blog-card-three__meta li a:hover {
    color: var(--voldor-base, #AE8F62);
    text-shadow: 0 0 1px currentColor
}

.blog-card-three:hover .blog-card-three__content {
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.06)
}

.blog-one {
    position: relative;
    background: var(--voldor-white, #fff)
}

.blog-one--page {
    padding: 120px 0
}

@media(max-width:991px) {
    .blog-one--page {
        padding: 100px 0
    }
}

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

.blog-one--home {
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 120px 0 0
}

@media(max-width:991px) {
    .blog-one--home {
        padding: 100px 0 0
    }
}

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

.blog-three {
    padding: 120px 0
}

@media(max-width:991px) {
    .blog-three {
        padding: 100px 0
    }
}

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

.blog-three__item+.blog-three__item {
    margin-top: 33px
}

.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: 0;
    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: 16px
}

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

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

.form-one .bootstrap-select>.dropdown-toggle {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: 0;
    outline: none !important;
    color: var(--voldor-text, #797577);
    font-size: 16px
}

.form-one .bootstrap-select>.dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
    display: block;
    width: 100%;
    height: 58px;
    background-color: var(--voldor-border-color, #F4F2EE);
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--voldor-font, "Manrope", sans-serif);
    border: 0;
    outline: 0;
    padding-left: 30px;
    padding-right: 30px
}

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

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

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

.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--voldor-base, #AE8F62);
    -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(--voldor-base, #AE8F62);
    opacity: .3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width .3s, height .3s, opacity .3s;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999991
}

.custom-cursor__hover {
    background-color: var(--voldor-base, #AE8F62);
    opacity: .4
}

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

.main-footer {
    background: var(--voldor-secondary, #241F21);
    position: relative;
    padding-top: 120px;
    overflow: hidden;
    z-index: 1
}

@media(max-width:991px) {
    .main-footer {
        padding-top: 100px
    }
}

@media(max-width:767px) {
    .main-footer {
        padding-top: 70px
    }
}

.main-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mix-blend-mode: overlay;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    animation: scale 10s infinite
}

.main-footer__middle {
    margin-top: -3px;
    position: relative;
    z-index: 1;
    padding-bottom: 104px
}

@media(max-width:991px) {
    .main-footer__middle {
        padding-bottom: 50px
    }
}

@media(max-width:767px) {
    .main-footer__middle {
        padding-bottom: 20px
    }
}

.main-footer__bottom {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: var(--voldor-secondary, #241F21)
}

.main-footer__bottom__inner {
    text-align: center;
    padding: 30.5px 0
}

.main-footer__copyright {
    color: var(--voldor-text-gray, #958F91);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0;
    padding-bottom: 0;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

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

.main-footer__social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    background: rgba(121, 117, 119, 0.2);
    color: var(--voldor-white, #fff)
}

.main-footer__social a:hover {
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.main-footer__logo {
    margin-bottom: 20px
}

.main-footer__logo a {
    display: block
}

@media(max-width:991px) {
    .footer-widget {
        margin-bottom: 40px
    }
}

.footer-widget__title {
    color: var(--voldor-white, #fff);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 27px
}

.footer-widget__text {
    color: var(--voldor-text-gray, #958F91);
    font-size: 14px;
    font-weight: 500;
    line-height: 214.286%;
    margin-bottom: 22px
}

.footer-widget__links {
    margin-top: -9px
}

.footer-widget__links__item {
    color: var(--voldor-text-gray, #958F91);
    font-size: 16px;
    font-weight: 500;
    line-height: 187.5%;
    position: relative;
    transition: all .3s ease-in-out;
    z-index: 1;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

.footer-widget__links__item a {
    color: inherit;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

.footer-widget__links__item::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--voldor-base, #AE8F62);
    transition: all .4s ease-in-out
}

.footer-widget__links__item:hover {
    color: var(--voldor-base, #AE8F62);
    padding-left: 18px
}

.footer-widget__links__item:hover::after {
    width: 10px
}

.footer-widget__links__item+.footer-widget__links__item {
    margin-top: 5px
}

.footer-widget__instagram {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px
}

.footer-widget__instagram a {
    width: 100%;
    position: relative;
    display: block;
    z-index: 1
}

.footer-widget__instagram a img {
    object-fit: cover;
    width: 100%;
    position: relative
}

.footer-widget__instagram a::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "+";
    margin: auto;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 400;
    color: var(--voldor-white, #fff);
    transform: scale(0);
    opacity: 0;
    transition: all 500ms ease;
    transition-delay: 0s;
    z-index: 2
}

.footer-widget__instagram a::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
    transition: all .4s ease-in-out
}

.footer-widget__instagram a:hover::after {
    height: 100%
}

.footer-widget__instagram a:hover::before {
    transform: scale(1);
    transition-delay: 400ms;
    opacity: 1
}

.footer-widget__contact {
    margin-top: -4px
}

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

.footer-widget__contact__item:hover .footer-widget__contact__icon {
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.footer-widget__contact__item a:hover {
    color: var(--voldor-base, #AE8F62)
}

.footer-widget__contact__item+.footer-widget__contact__item {
    margin-top: 10px
}

.footer-widget__contact__icon {
    max-width: 40px;
    width: 100%;
    height: 40px;
    border-radius: 50%;
    background: rgba(121, 117, 119, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--voldor-base, #AE8F62);
    font-size: 16px;
    transition: all .4s ease-in-out
}

.footer-widget__contact__text {
    color: var(--voldor-text-gray, #958F91);
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 214.286%;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

.footer-widget__contact p {
    line-height: 150.286%
}

.footer-widget__contact__text+.footer-widget__contact__text {
    margin-top: -9px
}

.footer-widget--about {
    margin-right: 27px;
    position: relative
}

.footer-widget--about .footer-widget__text {
    margin-top: -9px;
    max-width: 290px;
    width: 100%
}

@media(max-width:991px) {
    .footer-widget--about {
        margin-right: 0
    }
}

.footer-widget--about::after {
    content: "";
    width: 1px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    height: 212%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -72%;
    right: 0
}

@media(max-width:1199px) {
    .footer-widget--about::after {
        display: none
    }
}

.footer-widget--links {
    margin-left: 35px
}

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

.footer-widget--instagram {
    max-width: 248px;
    margin-left: -10px
}

@media(max-width:1199px) {
    .footer-widget--instagram {
        margin-left: 0
    }
}

.footer-widget--contact {
    margin-left: 10px
}

@media(max-width:1199px) {
    .footer-widget--contact {
        margin-left: 0
    }
}

.contact-one {
    padding: 120px 0
}

@media(max-width:991px) {
    .contact-one {
        padding: 100px 0
    }
}

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

.contact-one__form {
    max-width: 868px;
    margin-left: auto;
    margin-right: auto
}

.contact-bottom__inner {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    margin-bottom: -70px
}

@media(max-width:991px) {
    .contact-bottom__inner {
        flex-direction: column
    }
}

.contact-bottom__inner__left {
    max-width: 226px;
    width: 100%;
    height: auto
}

@media(max-width:991px) {
    .contact-bottom__inner__left {
        width: 100%
    }
}

.contact-bottom__inner__right {
    width: 100%
}

.contact-bottom__inner__right__bottom {
    padding: 58.5px 40px;
    background: var(--voldor-secondary, #241F21)
}

.contact-bottom__thumb {
    width: 100%
}

.contact-bottom__thumb img {
    object-fit: cover;
    width: 100%
}

.contact-bottom__social {
    background: var(--voldor-base, #AE8F62);
    display: inline-flex;
    padding: 12px 20px;
    align-items: center;
    gap: 12px
}

.contact-bottom__social a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: var(--voldor-white, #fff);
    background: rgba(230, 224, 216, 0.17)
}

.contact-bottom__social a:hover {
    background: var(--voldor-secondary, #241F21);
    color: var(--voldor-base, #AE8F62)
}

.contact-bottom__list {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.contact-bottom__list__item {
    flex: 30%;
    width: 30%;
    display: flex;
    align-items: center;
    gap: 20px
}

@media(max-width:1199px) {
    .contact-bottom__list__item {
        flex: 50%;
        width: 50%
    }
}

.contact-bottom__list__item__icon {
    max-width: 50px;
    width: 100%;
    height: 50px;
    border-radius: 50%;
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff);
    font-size: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease-in-out
}

.contact-bottom__list__item__subtitle {
    margin-bottom: 0;
    padding-bottom: 0;
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    color: var(--voldor-text, #797577);
    text-transform: uppercase
}

.contact-bottom__list__item__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: normal;
    color: var(--voldor-white, #fff)
}

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

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

.contact-bottom__list__item__text a:hover {
    color: var(--voldor-base, #AE8F62)
}

.contact-bottom__list__item:hover .contact-bottom__list__item__icon i {
    animation: bounceIn 1s linear
}

.topbar-one {
    display: none;
    background-color: var(--voldor-secondary, #241F21)
}

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

.topbar-one .container-fluid {
    max-width: 1760px
}

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

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

.topbar-one__info__item {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

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

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

.topbar-one__info__item a:hover {
    color: var(--voldor-white, #fff)
}

.topbar-one__info__item+.topbar-one__info__item {
    margin-left: 50px
}

.topbar-one__info__icon {
    font-size: 14px;
    color: var(--voldor-base, #AE8F62);
    position: relative;
    top: 2px;
    margin-right: 9px
}

.topbar-one__right {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    margin-top: 10px;
    background: rgba(var(--voldor-border-color-rgb, 244, 242, 238), 0.05);
    position: relative
}

@media(min-width:992px) {
    .topbar-one__right {
        margin-top: 0;
        margin-left: auto
    }
}

.topbar-one__right::after {
    content: "";
    background: rgba(var(--voldor-border-color-rgb, 244, 242, 238), 0.05);
    width: 9999999px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%
}

.topbar-one__social {
    display: flex;
    align-items: center;
    padding: 3.5px 0;
    padding-left: 48px;
    line-height: 1em
}

.topbar-one__social a {
    font-size: 14px;
    color: var(--voldor-border-color, #F4F2EE);
    transition: all 500ms ease
}

.topbar-one__social a:hover {
    color: var(--voldor-base, #AE8F62)
}

.topbar-one__social a+a {
    margin-left: 20px
}

.topbar-one__social a:nth-child(2),
.topbar-one__social a:nth-child(4) {
    font-size: 12px
}

.topbar-three {
    display: none;
    background-color: var(--voldor-secondary, #241F21)
}

@media(min-width:992px) {
    .topbar-three {
        display: block
    }
}

.topbar-three .container-fluid {
    max-width: 1760px
}

.topbar-three__inner {
    display: flex;
    align-items: start;
    justify-content: space-between
}

.topbar-three__info {
    display: flex;
    align-items: center;
    margin: 0;
    padding-top: 15px
}

.topbar-three__info__item {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

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

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

.topbar-three__info__item a:hover {
    color: var(--voldor-white, #fff)
}

.topbar-three__info__item+.topbar-three__info__item {
    margin-left: 50px
}

.topbar-three__info__icon {
    font-size: 12px;
    color: var(--voldor-base, #AE8F62);
    position: relative;
    top: 0;
    margin-right: 5px
}

.topbar-three__right {
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    align-items: center;
    margin-top: 10px;
    background: rgba(var(--voldor-border-color-rgb, 244, 242, 238), 0.02);
    position: relative
}

@media(min-width:992px) {
    .topbar-three__right {
        margin-top: 0;
        margin-left: auto
    }
}

.topbar-three__right::after {
    content: "";
    background: rgba(var(--voldor-border-color-rgb, 244, 242, 238), 0.02);
    width: 9999999px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%
}

@media(max-width:1500px) {
    .topbar-three__right {
        padding-top: 12px;
        padding-bottom: 12px
    }
}

.topbar-three__social {
    display: flex;
    align-items: center;
    padding: 3.5px 0;
    padding-left: 48px;
    line-height: 1em
}

.topbar-three__social a {
    font-size: 14px;
    color: var(--voldor-base, #AE8F62);
    transition: all 500ms ease
}

.topbar-three__social a:hover {
    color: var(--voldor-base, #AE8F62)
}

.topbar-three__social a+a {
    margin-left: 20px
}

.topbar-three__social a:nth-child(2),
.topbar-three__social a:nth-child(4) {
    font-size: 12px
}

.main-header {
    background-color: var(--voldor-white, #fff);
    position: relative
}

.main-header .container-fluid {
    max-width: 1760px
}

.main-header__inner {
    display: flex;
    align-items: center;
    background-color: var(--voldor-white, #fff);
    position: relative
}

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

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

@media(min-width:768px) {
    .main-header__logo {
        width: auto
    }
}

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

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

.main-header__right__info__item {
    font-size: 20px;
    color: var(--voldor-secondary, #241F21)
}

.main-header__right__info__item:hover {
    color: var(--voldor-base, #AE8F62)
}

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

.main-header__right__info__item+.main-header__right__info__item {
    margin-left: 20px
}

.main-header__right__btn {
    padding: 22px 0;
    margin-left: 40px;
    position: relative;
    z-index: 1;
    padding-left: 45px;
    background: var(--voldor-base, #AE8F62)
}

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

.main-header__right__btn::after {
    content: "";
    background: var(--voldor-base, #AE8F62);
    width: 9999999px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%
}

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

.main-header__right__call {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 35px;
    border-right: 1px solid rgba(var(--voldor-white-rgb, 255, 255, 255), 0.2);
    margin-right: 30px
}

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

.main-header__right__call:hover .main-header__right__icon {
    background: var(--voldor-white, #fff);
    color: var(--voldor-secondary, #241F21)
}

.main-header__right__icon {
    width: 40px;
    height: 40px;
    background: var(--voldor-secondary, #241F21);
    color: var(--voldor-white, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    border-radius: 50%;
    transition: all .4s ease-in-out
}

.main-header__right__text {
    display: block;
    padding-bottom: 0;
    margin-bottom: 0;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    color: var(--voldor-border-color, #F4F2EE);
    text-transform: uppercase
}

.main-header__right__number {
    color: var(--voldor-white, #fff);
    font-size: 18px;
    font-weight: 600;
    line-height: 166.667%;
    padding-bottom: 0;
    margin-bottom: 0;
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 95%/0px 1px no-repeat;
    transition: all 500ms ease
}

.main-header__right__number:hover {
    background-size: 100% 1px
}

.main-header__right__number:hover {
    color: var(--voldor-secondary, #241F21)
}

.main-header__btn {
    padding: 8px 16px;
    font-size: 14px;
    color: var(--voldor-border-color, #F4F2EE);
    background: var(--voldor-base, #AE8F62);
    border: 1px solid var(--voldor-white, #fff)
}

.main-header__btn:hover {
    color: var(--voldor-white, #fff);
    border: 1px solid var(--voldor-secondary, #241F21)
}

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

.main-header--two {
    background: transparent;
    border-bottom: 1px solid rgba(var(--voldor-text-rgb, 121, 117, 119), 0.3);
    position: absolute;
    width: 100%;
    z-index: 11
}

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

.main-header--two .main-header__right {
    background: var(--voldor-base, #AE8F62);
    padding: 20px 0 20px 23px;
    margin-bottom: -1px;
    margin-right: -1px
}

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

.main-header--two .main-header__right::after {
    content: "";
    background: var(--voldor-base, #AE8F62);
    width: 9999999px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    margin-bottom: -1px
}

@media(max-width:767px) {
    .main-header--two .main-header__right::after {
        display: none
    }
}

.main-header--two .main-header__nav {
    margin-left: 115px;
    margin-right: auto
}

.main-header--two .main-header__right__info__item {
    color: var(--voldor-white, #fff)
}

.main-header--two .main-header__right__info__item:hover {
    color: var(--voldor-secondary, #241F21)
}

.main-header--two .main-menu .main-menu__list>li>a {
    color: var(--voldor-white, #fff)
}

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

.main-header--three {
    background: transparent
}

.main-header--three .container {
    position: relative
}

.main-header--three .main-header__inner {
    margin-top: -35px;
    padding: 0 30px;
    position: absolute;
    left: 15px;
    right: 15px;
    z-index: 55
}

@media(max-width:1500px) {
    .main-header--three .main-header__inner {
        position: relative;
        margin-top: 0;
        left: 0;
        right: 0
    }
}

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

.main-header--three .mobile-nav__btn span {
    background: var(--voldor-secondary, #241F21)
}

.main-header--three .main-header__nav {
    margin-left: 60px;
    margin-right: auto
}

.main-header--three .main-header__right__btn {
    padding: 0;
    margin-left: 0;
    background: transparent
}

.main-header--three .main-header__right__btn::after {
    display: none
}

.main-header--three .main-header__right__btn .main-header__btn {
    padding: 11px 15px
}

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

.sticky-header--cloned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    background-color: var(--voldor-white, #fff);
    transform: translateY(-100%);
    box-shadow: 0 3px 18px rgba(var(--voldor-black-rgb, 18, 15, 16), 0.07);
    transition: .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--two.active {
    border-bottom: 1px solid var(--voldor-secondary, #241F21);
    background: var(--voldor-secondary, #241F21)
}

.main-header--three.active .main-header__inner {
    position: relative;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 0
}

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

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

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

.mobile-nav__btn span {
    width: 100%;
    height: 2px;
    background-color: var(--voldor-white, #fff);
    transition: all .4s ease-in-out
}

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

@media(max-width:767px) {
    .mobile-nav__btn span {
        background: var(--voldor-secondary, #241F21)
    }
}

.mobile-nav__btn:hover span {
    background: var(--voldor-secondary, #241F21)
}

.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: 25px;
    padding-bottom: 25px;
    position: relative
}

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

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

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

.main-menu .main-menu__list>li>a {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    position: relative;
    transition: all 500ms ease;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.87;
    color: #686A6F;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

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

.main-menu .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: -25px;
    min-width: 230px;
    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(--voldor-border-color, #F4F2EE);
    padding: 25px 20px 20px;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.07)
}

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

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

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

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

.main-menu .main-menu__list li ul li>a {
    color: var(--voldor-text, #797577);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    display: flex;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: 400ms;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2142;
    text-transform: uppercase
}

.main-menu .main-menu__list li ul li.current>a,
.main-menu .main-menu__list li ul li:hover>a {
    background-color: var(--voldor-white, #fff);
    color: var(--voldor-base, #AE8F62)
}

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

.sub-menu .dropdown::before {
    position: absolute;
    right: 20px;
    top: 12px;
    transform: translate(10px 10px);
    font-weight: 500;
    color: var(--voldor-base, #AE8F62);
    visibility: hidden;
    opacity: 0;
    font-size: 15px;
    transition: all 500ms ease;
    transform: scaleX(0);
    font-family: "icomoon" !important;
    content: "\e91f";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1
}

.sub-menu .dropdown:hover::before {
    visibility: visible;
    opacity: 1;
    transform: scaleX(1)
}

@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)
    }
}

.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 .7s ease, opacity .7s ease, visibility .7s ease;
    z-index: 999999;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
    padding: 0;
    background-color: var(--voldor-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 .7s ease, opacity .7s ease, visibility .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(--voldor-black, #120F10)
}

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

.megamenu-popup .megamenu-clickable--close:hover {
    color: var(--voldor-base, #AE8F62)
}

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

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

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

.demo-one__card {
    background-color: var(--voldor-border-color, #F4F2EE);
    box-shadow: 0 10px 60px 0 rgba(var(--voldor-black3-rgb, 34, 28, 30), 0.1);
    text-align: center;
    transition: 500ms ease;
    transform: translateY(0px)
}

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

.demo-one__title {
    margin: 0;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--voldor-secondary, #241F21);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2
}

.demo-one__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 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(--voldor-secondary-rgb, 36, 31, 33), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: scale(1, 0);
    transition: transform 500ms ease, opacity 600ms linear;
    transform-origin: bottom center;
    opacity: 0
}

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

.demo-one__btn {
    font-size: 13px;
    padding: 12px 29px;
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

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

.demo-one__btn:hover {
    color: var(--voldor-white, #fff)
}

.demo-one__btn:hover::after {
    background: var(--voldor-secondary, #241F21)
}

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

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

@media(max-width:1299px) {
    .home-showcase {
        margin-left: 0
    }
}

.home-showcase .container {
    max-width: 1360px
}

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

.home-showcase__inner {
    padding: 40px 40px 21px;
    background-color: var(--voldor-border-color, #F4F2EE);
    box-shadow: 0 10px 60px 0 rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.07)
}

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

.home-showcase .demo-one__btns {
    flex-direction: column
}

.home-showcase .demo-one__btn {
    min-width: 135px;
    text-align: center;
    justify-content: center
}

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

.why-choose-one {
    background: var(--voldor-border-color, #F4F2EE);
    position: relative;
    z-index: 1;
    padding-top: 120px
}

@media(max-width:991px) {
    .why-choose-one {
        padding-top: 100px
    }
}

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

.why-choose-one__top {
    max-width: 550px;
    width: 100%;
    margin-bottom: 30px
}

.why-choose-one__top .sec-title {
    padding-bottom: 20px
}

.why-choose-one__top__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0
}

.why-choose-one__feature {
    margin-bottom: 30px
}

.why-choose-one__feature__item {
    background: var(--voldor-white, #fff);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 30px
}

@media(max-width:575px) {
    .why-choose-one__feature__item {
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start
    }
}

.why-choose-one__feature__item__icon {
    max-width: 60px;
    width: 100%;
    height: 60px;
    border-radius: 50%;
    background: var(--voldor-border-color, #F4F2EE);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: var(--voldor-base, #AE8F62);
    transition: all .4s ease-in-out
}

.why-choose-one__feature__item__title {
    margin-top: -7px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: 5px;
    padding-bottom: 0
}

.why-choose-one__feature__item__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: -9px;
    padding-bottom: 0
}

.why-choose-one__feature__item:hover .why-choose-one__feature__item__icon {
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.why-choose-one__feature__item:hover .why-choose-one__feature__item__icon i {
    animation: bounceIn 1s linear
}

.why-choose-one__cta {
    position: relative;
    z-index: 2;
    margin-bottom: -60px
}

@media(max-width:1199px) {
    .why-choose-one__cta {
        margin-bottom: 0
    }
}

.why-choose-one__cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1
}

.why-choose-one__cta__bg::after {
    position: absolute;
    content: "";
    right: 145px;
    top: 0;
    left: 0;
    bottom: 30px;
    background: var(--voldor-secondary, #241F21);
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%)
}

@media(max-width:575px) {
    .why-choose-one__cta__bg::after {
        width: 100%;
        right: 0;
        bottom: 0;
        clip-path: none;
        background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7)
    }
}

.why-choose-one__cta__content {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 50px 50px 70px
}

@media(max-width:575px) {
    .why-choose-one__cta__content {
        display: block;
        padding: 30px
    }
}

.why-choose-one__cta__title {
    margin-top: -15px;
    max-width: 311px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 167%;
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    margin-bottom: 30px
}

@media(max-width:575px) {
    .why-choose-one__cta__title {
        max-width: 100%;
        font-size: 25px
    }
}

.why-choose-one__cta__btn {
    background: var(--voldor-white, #fff);
    color: var(--voldor-secondary, #241F21)
}

.why-choose-one__cta__btn:hover {
    color: var(--voldor-white, #fff)
}

@media(max-width:575px) {
    .why-choose-one__cta__video {
        margin-top: 50px
    }
}

.why-choose-one__cta__video .video_play {
    background: rgba(var(--voldor-white-rgb, 255, 255, 255), 0.9);
    width: 103px;
    height: 103px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: var(--voldor-secondary, #241F21);
    line-height: 1;
    animation: playVideo5 3s ease-in-out infinite
}

.why-choose-one__cta__video .video_play:hover {
    background: var(--voldor-secondary, #241F21);
    color: var(--voldor-white, #fff)
}

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

@media(max-width:1199px) {
    .why-choose-one__thumb {
        margin-top: 40px;
        position: relative;
        width: 100%
    }

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

.why-choose-two {
    padding-top: 120px;
    position: relative;
    z-index: 1
}

@media(max-width:1199px) {
    .why-choose-two {
        padding: 0 0 120px
    }
}

@media(max-width:991px) {
    .why-choose-two {
        padding: 0 0 100px
    }
}

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

.why-choose-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    mix-blend-mode: luminosity;
    background-color: var(--voldor-secondary, #241F21)
}

.why-choose-two__thumb {
    position: absolute;
    top: -48px;
    left: 0;
    width: 48.5%
}

@media(max-width:1199px) {
    .why-choose-two__thumb {
        top: 0;
        position: relative;
        width: 100%
    }
}

.why-choose-two__thumb__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden
}

@media(max-width:1199px) {
    .why-choose-two__thumb__item {
        top: 0;
        position: relative;
        width: 100%
    }
}

.why-choose-two__thumb__item img {
    object-fit: cover
}

@media(max-width:1199px) {
    .why-choose-two__thumb__item img {
        object-fit: cover;
        width: 100%
    }
}

.why-choose-two__thumb__item::after {
    content: "";
    width: 130px;
    height: 200px;
    background: var(--voldor-secondary, #241F21);
    position: absolute;
    right: 0;
    bottom: 0
}

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

.why-choose-two__thumb::before {
    content: "";
    width: 57px;
    height: 48px;
    background-color: var(--voldor-text, #797577);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    position: absolute;
    right: -57px;
    top: 0
}

@media(max-width:1199px) {
    .why-choose-two__thumb::before {
        display: none
    }
}

.why-choose-two__right {
    margin-left: 40px;
    position: relative
}

@media(max-width:1199px) {
    .why-choose-two__right {
        margin-top: 30px;
        margin-left: 0
    }
}

.why-choose-two__top {
    margin-bottom: 40px
}

.why-choose-two__top .sec-title {
    padding-bottom: 20px
}

.why-choose-two__top .sec-title .sec-title__title {
    color: var(--voldor-white, #fff)
}

.why-choose-two__top__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: var(--voldor-border-color, #F4F2EE)
}

.why-choose-two__feature__item {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 550px;
    width: 100%
}

.why-choose-two__feature__item__content {
    display: flex;
    align-items: center
}

@media(max-width:575px) {
    .why-choose-two__feature__item__content {
        display: block
    }
}

.why-choose-two__feature__item__icon {
    max-width: 60px;
    width: 100%;
    height: 60px;
    background: rgba(121, 117, 119, 0.2);
    font-size: 30px;
    color: var(--voldor-base, #AE8F62);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all .4s ease-in-out
}

.why-choose-two__feature__item__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--voldor-white, #fff);
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid var(--voldor-text, #797577);
    margin-bottom: 0;
    padding-bottom: 0;
    max-width: 90px;
    width: 100%
}

@media(max-width:575px) {
    .why-choose-two__feature__item__title {
        max-width: 100%;
        margin-right: 0;
        padding-right: 0;
        border-right: 0 solid var(--voldor-text, #797577);
        margin-bottom: 5px
    }
}

.why-choose-two__feature__item__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: var(--voldor-text, #797577);
    margin-bottom: 0;
    padding-bottom: 0;
    max-width: 333px;
    width: 100%
}

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

.why-choose-two__feature__item:hover .why-choose-two__feature__item__icon {
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.why-choose-two__feature__item:hover .why-choose-two__feature__item__icon i {
    animation: bounceIn 1s linear
}

.why-choose-two__feature__item+.why-choose-two__feature__item {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--voldor-text, #797577)
}

.why-choose-two__funfact {
    margin-left: -171px;
    margin-top: 60px;
    margin-bottom: -95px;
    position: relative;
    z-index: 1
}

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

.why-choose-two__funfact__item {
    background: var(--voldor-white, #fff);
    text-align: center;
    padding-bottom: 50px
}

.why-choose-two__funfact__item__icon {
    border: 1px solid var(--voldor-base, #AE8F62);
    border-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 103px;
    height: 89px;
    font-size: 52px;
    color: var(--voldor-base, #AE8F62);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    transition: all .4s ease-in-out
}

.why-choose-two__funfact__item__count {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    display: flex;
    align-items: center;
    line-height: 150%;
    margin-bottom: 12px;
    padding-bottom: 0;
    justify-content: center
}

.why-choose-two__funfact__item__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    color: var(--voldor-text, #797577);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 138%;
    text-transform: uppercase;
    margin-bottom: -11px
}

.why-choose-two__funfact__item:hover .why-choose-two__funfact__item__icon {
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.why-choose-two__funfact__item:hover .why-choose-two__funfact__item__icon i {
    animation: bounceIn 1s linear
}

.why-choose-three {
    padding: 120px 0
}

@media(max-width:991px) {
    .why-choose-three {
        padding: 100px 0
    }
}

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

.why-choose-three__top {
    margin-bottom: 30px
}

.why-choose-three__top .sec-title {
    padding-bottom: 20px
}

.why-choose-three__top__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: var(--voldor-text, #797577);
    margin-bottom: 0;
    padding-bottom: 0
}

.why-choose-three__funfact {
    margin-bottom: 40px
}

.why-choose-three__funfact__item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--voldor-gray, #E6E0D8);
    padding: 30px;
    transition: all .4s ease-in-out
}

.why-choose-three__funfact__item__icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--voldor-white, #fff);
    font-size: 35px;
    color: var(--voldor-base, #AE8F62);
    transition: all .4s ease-in-out
}

.why-choose-three__funfact__item__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 214%;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: -3px
}

.why-choose-three__funfact__item__count {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 75%;
    color: var(--voldor-secondary, #241F21);
    display: flex;
    align-items: center;
    margin-bottom: -2px
}

.why-choose-three__funfact__item:hover {
    background: var(--voldor-border-color, #F4F2EE)
}

.why-choose-three__funfact__item:hover .why-choose-three__funfact__item__icon {
    background: var(--voldor-secondary, #241F21);
    color: var(--voldor-white, #fff)
}

.why-choose-three__funfact__item:hover .why-choose-three__funfact__item__icon i {
    animation: bounceIn 1s linear
}

.why-choose-three__list {
    margin-bottom: 40px;
    margin-left: 0;
    padding-left: 0
}

.why-choose-three__list__item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8);
    padding-bottom: 15px;
    margin-bottom: 15px
}

.why-choose-three__list__item__icon {
    max-width: 34px;
    width: 100%;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--voldor-border-color, #F4F2EE);
    color: var(--voldor-secondary, #241F21);
    font-size: 14px;
    transition: all .4s ease-in-out
}

.why-choose-three__list__item__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21)
}

.why-choose-three__list__item:hover .why-choose-three__list__item__icon {
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.why-choose-three__right__funfact__item {
    position: absolute;
    bottom: 100px;
    left: -100px;
    background: var(--voldor-base, #AE8F62);
    text-align: start;
    display: inline-block;
    padding: 40px 30px;
    transform: rotate(-90deg)
}

@media(max-width:575px) {
    .why-choose-three__right__funfact__item {
        transform: rotate(0deg);
        position: relative;
        left: 0;
        bottom: 0;
        text-align: left;
        width: 100%
    }
}

.why-choose-three__right__funfact__item__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    margin-bottom: -5px;
    padding-bottom: 0
}

.why-choose-three__right__funfact__item__count {
    display: flex;
    justify-content: start;
    align-items: center;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    padding-bottom: 0;
    color: var(--voldor-white, #fff);
    text-shadow: 0 0 .1px currentColor;
    margin-bottom: 15px;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 85%
}

.why-choose-three__thumb {
    text-align: end;
    margin-left: 120px;
    position: relative;
    z-index: 1
}

@media(max-width:767px) {
    .why-choose-three__thumb {
        margin-left: 0
    }
}

.why-choose-three__thumb__item--one {
    position: relative
}

@media(max-width:767px) {
    .why-choose-three__thumb__item--one img {
        object-fit: cover;
        width: 100%
    }
}

.why-choose-three__thumb__item--two {
    position: absolute;
    top: 32px;
    left: -60px
}

@media(max-width:575px) {
    .why-choose-three__thumb__item--two {
        top: 20px;
        left: 0;
        position: relative;
        bottom: 20px
    }
}

.funfact-one {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background: var(--voldor-secondary, #241F21)
}

@media(max-width:991px) {
    .funfact-one {
        padding-top: 100px;
        padding-bottom: 100px
    }
}

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

.funfact-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    mix-blend-mode: overlay
}

.funfact-one__funfact__item {
    background: var(--voldor-white, #fff);
    padding: 0 20px 50px
}

.funfact-one__funfact__item__icon {
    width: 124px;
    height: 106px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color: var(--voldor-base, #AE8F62);
    background: var(--voldor-border-color, #F4F2EE);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    transition: all .3s ease-in-out
}

.funfact-one__funfact__item__count {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px
}

.funfact-one__funfact__item__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 138%;
    text-transform: uppercase;
    color: var(--voldor-text, #797577);
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0
}

.funfact-one__funfact__item:hover .funfact-one__funfact__item__icon {
    background: var(--voldor-secondary, #241F21);
    color: var(--voldor-white, #fff)
}

.funfact-one__funfact__item:hover .funfact-one__funfact__item__icon i {
    animation: bounceIn 1s linear
}

.testimonials-one {
    padding: 120px 0
}

@media(max-width:991px) {
    .testimonials-one {
        padding: 100px 0
    }
}

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

.testimonials-one--page {
    padding-bottom: 0
}

@media(max-width:991px) {
    .testimonials-one--page {
        padding-bottom: 0
    }
}

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

.testimonials-one__item {
    padding-top: 65px;
    position: relative
}

.testimonials-one__inner {
    background: var(--voldor-secondary, #241F21);
    padding: 1px 80px 40px 40px;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out
}

@media(max-width:575px) {
    .testimonials-one__inner {
        padding: 1px 60px 20px 20px
    }
}

.testimonials-one__inner::after {
    content: "";
    width: 40px;
    height: 212px;
    background: var(--voldor-white, #fff);
    position: absolute;
    bottom: -0.9px;
    right: -0.9px;
    z-index: -1;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%)
}

.testimonials-one__inner:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0
}

.testimonials-one__inner:hover .testimonials-one__author {
    background: var(--voldor-base, #AE8F62)
}

.testimonials-one__inner:hover .testimonials-one__author__name {
    color: var(--voldor-white, #fff)
}

.testimonials-one__inner:hover .testimonials-one__author__dec {
    color: var(--voldor-white, #fff)
}

.testimonials-one__thumb {
    position: relative;
    width: 106px;
    height: 106px;
    border-radius: 50%;
    z-index: 1;
    margin-bottom: 43px;
    margin-top: -55px
}

.testimonials-one__thumb img {
    border-radius: 50%;
    width: 100%;
    object-fit: cover;
    border: 6px solid var(--voldor-base, #AE8F62)
}

.testimonials-one__thumb::after {
    content: "";
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: var(--voldor-white, #fff);
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.15);
    z-index: -2
}

.testimonials-one__author {
    margin-top: -64px;
    background: var(--voldor-border-color, #F4F2EE);
    padding: 35px 40px;
    display: inline-block;
    border-radius: 20px 0 0 0;
    position: absolute;
    top: 0;
    right: 0;
    transition: all .4s ease-in-out
}

@media(max-width:575px) {
    .testimonials-one__author {
        padding: 20px;
        margin-top: -40px
    }
}

.testimonials-one__author__name {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    line-height: 108%;
    margin-bottom: 0;
    padding-bottom: 0;
    transition: all .4s ease-in-out
}

@media(max-width:575px) {
    .testimonials-one__author__name {
        font-size: 20px
    }
}

.testimonials-one__author__dec {
    display: block;
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 179%;
    color: var(--voldor-text, #797577);
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: uppercase;
    transition: all .4s ease-in-out
}

.testimonials-one__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: var(--voldor-text, #797577);
    margin-bottom: 20px;
    padding-bottom: 0
}

.testimonials-one__star {
    font-size: 22px;
    color: var(--voldor-base, #AE8F62);
    letter-spacing: 2px;
    margin-bottom: -10px
}

.testimonials-two {
    padding-top: 217px;
    padding-bottom: 0;
    background: var(--voldor-border-color, #F4F2EE)
}

@media(max-width:991px) {
    .testimonials-two {
        padding-top: 0
    }
}

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

.testimonials-two__left {
    margin-left: -49px;
    margin-right: -30px
}

@media(max-width:1199px) {
    .testimonials-two__left {
        margin-left: 0;
        margin-right: 0
    }

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

.testimonials-two__top {
    margin-left: 60px
}

@media(max-width:1199px) {
    .testimonials-two__top {
        margin-left: 30px
    }
}

@media(max-width:991px) {
    .testimonials-two__top {
        margin-left: 0
    }
}

.testimonials-two__inner {
    background: var(--voldor-secondary, #241F21);
    padding: 60px;
    position: relative;
    margin-top: -3px
}

.testimonials-two__inner::after {
    content: "";
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 33px;
    background: #342D30
}

@media(max-width:767px) {
    .testimonials-two__inner {
        padding: 30px 20px
    }
}

.testimonials-two__item__star {
    font-size: 32px;
    color: var(--voldor-base, #AE8F62);
    letter-spacing: 8px;
    text-align: center;
    margin-bottom: 15px
}

.testimonials-two__item__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: var(--voldor-text, #797577);
    text-align: center;
    margin-bottom: 45px
}

.testimonials-two__item__author {
    text-align: center;
    position: relative
}

.testimonials-two__item__name {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 108%;
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    margin-bottom: 0;
    padding-bottom: 0
}

.testimonials-two__item__deg {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 179%;
    text-transform: uppercase;
    color: var(--voldor-text, #797577)
}

.testimonials-two__author__carousel {
    width: 320px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    z-index: 2;
    left: 24%
}

@media(max-width:575px) {
    .testimonials-two__author__carousel {
        margin-bottom: -88px;
        left: 5%
    }
}

.testimonials-two__author__carousel .item {
    display: flex;
    justify-content: center;
    align-items: center
}

.testimonials-two__author__carousel .active.center .testimonials-two__meta-thumb {
    border: 7px solid var(--voldor-base, #AE8F62);
    transform: scale(1.1)
}

.testimonials-two__author__carousel .active.center .testimonials-two__meta {
    visibility: visible;
    opacity: 1;
    transform: translateY(0)
}

.testimonials-two__meta-thumb {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: block;
    position: relative
}

.testimonials-two__meta-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover
}

.testimonials-three {
    padding: 120px 0 0;
    position: relative;
    z-index: 1
}

@media(max-width:991px) {
    .testimonials-three {
        padding: 100px 0 0
    }
}

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

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

@media(max-width:991px) {
    .testimonials-three__bg {
        height: 80%
    }
}

.testimonials-three__item {
    background: var(--voldor-white, #fff);
    padding: 85px 70px 140px;
    position: relative;
    z-index: 1
}

@media(max-width:991px) {
    .testimonials-three__item {
        padding: 50px 50px 80px
    }
}

@media(max-width:767px) {
    .testimonials-three__item {
        padding: 50px 30px 80px
    }
}

.testimonials-three__item__star {
    font-size: 22px;
    color: var(--voldor-base, #AE8F62);
    letter-spacing: 0;
    margin-bottom: 15px
}

.testimonials-three__item__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 167%;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21)
}

@media(max-width:767px) {
    .testimonials-three__item__text {
        font-size: 25px
    }
}

@media(max-width:575px) {
    .testimonials-three__item__text {
        font-size: 20px
    }
}

.testimonials-three__item__quite {
    font-size: 50px;
    color: var(--voldor-gray, #E6E0D8);
    position: absolute;
    line-height: 1;
    top: 60px;
    right: 60px
}

.testimonials-three__thumbs {
    margin-top: -57px;
    max-width: 1028px;
    margin-left: auto;
    margin-right: auto
}

.testimonials-three__carousel-thumb {
    background: var(--voldor-secondary, #241F21)
}

.testimonials-three__carousel-thumb .active.center .testimonials-three__carousel-thumb__item {
    border-top: 6px solid var(--voldor-base, #AE8F62)
}

.testimonials-three .item {
    display: flex;
    align-items: center;
    gap: 23px;
    padding: 30px 25px 30px
}

.testimonials-three .item__image {
    max-width: 72px;
    width: 100%;
    height: 72px;
    overflow: hidden;
    border-radius: 50%
}

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

.testimonials-three .item__name {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    margin-bottom: 0;
    padding-bottom: 0
}

.testimonials-three .item__deg {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 179%;
    text-transform: uppercase;
    color: var(--voldor-text, #797577);
    display: block;
    margin-bottom: 0;
    padding-bottom: 0
}

.cta-one {
    position: relative;
    z-index: 1;
    padding: 100px 0
}

@media(max-width:767px) {
    .cta-one {
        padding: 70px 0
    }
}

.cta-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mix-blend-mode: overlay;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    z-index: -1;
    filter: grayscale(100%)
}

.cta-one::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(var(--voldor-base-rgb, 174, 143, 98), 0.95);
    z-index: -1
}

.cta-one__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 125%;
    text-transform: uppercase;
    color: var(--voldor-white, #fff)
}

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

.cta-one__btn {
    text-align: end
}

@media(max-width:767px) {
    .cta-one__btn {
        text-align: left
    }
}

.cta-one__btn a::after {
    background: var(--voldor-white, #fff)
}

.cta-three {
    position: relative;
    z-index: 1;
    padding: 120px 0 0
}

@media(max-width:991px) {
    .cta-three {
        padding: 100px 0 0
    }
}

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

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

@media(max-width:991px) {
    .cta-three__bg {
        height: 80%
    }
}

.cta-three__bg::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.9);
    position: absolute;
    top: 0;
    left: 0
}

.cta-three__content {
    margin-bottom: 60px
}

.cta-three__content__subtitle {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    color: var(--voldor-base, #AE8F62);
    text-align: center
}

.cta-three__content__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 70px;
    line-height: 114%;
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0
}

@media(max-width:991px) {
    .cta-three__content__title {
        font-size: 50px
    }
}

@media(max-width:767px) {
    .cta-three__content__title {
        font-size: 40px
    }
}

@media(max-width:575px) {
    .cta-three__content__title {
        font-size: 35px
    }
}

.cta-three__content__link {
    margin-top: 50px;
    text-align: center
}

.cta-three__video {
    position: relative;
    z-index: 1;
    padding: 170px 0
}

@media(max-width:991px) {
    .cta-three__video {
        padding: 120px 0
    }
}

@media(max-width:767px) {
    .cta-three__video {
        padding: 100px 0
    }
}

.cta-three__video__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1
}

.cta-three__video__link {
    width: 100px;
    height: 100px;
    background: var(--voldor-white, #fff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    color: var(--voldor-secondary, #241F21);
    margin-left: auto;
    margin-right: auto;
    transition: all .4s ease-in-out;
    animation: playVideo5 3s ease-in-out infinite
}

.cta-three__video__link:hover {
    color: var(--voldor-base, #AE8F62);
    background: var(--voldor-secondary, #241F21)
}

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

.gallery-one .container-fluid {
    width: 100%;
    max-width: 1572px
}

.gallery-one--page {
    padding-top: 120px
}

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

.gallery-one__carousel .owl-nav {
    display: none !important
}

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

.gallery-one__filter__list li {
    cursor: pointer
}

.gallery-one__filter__list li span {
    display: block;
    font-size: 14px;
    transition: all 500ms ease;
    font-weight: 600;
    padding: 12px 25px;
    line-height: normal
}

.gallery-one__filter__list li.active .voldor-btn,
.gallery-one__filter__list li:hover .voldor-btn {
    background-color: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.gallery-one__card {
    position: relative;
    overflow: hidden;
    background-color: var(--voldor-black, #120F10)
}

.gallery-one__card img {
    transform: scale(1);
    max-width: 100%;
    transition: transform 500ms ease, opacity 500ms ease;
    opacity: 1
}

.gallery-one__card__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--voldor-base-rgb, 174, 143, 98), 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center
}

.gallery-one__card__hover .img-popup {
    position: relative
}

.gallery-one__card:hover img {
    transform: scale(1.05);
    opacity: .9;
    mix-blend-mode: screen
}

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

.gallery-one__card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--voldor-secondary, #241F21);
    transition: all .5s ease-in-out
}

.gallery-one__card__icon__item {
    width: 30px;
    height: 30px;
    display: block;
    position: relative
}

.gallery-one__card__icon__item::after,
.gallery-one__card__icon__item::before {
    content: "";
    width: 3px;
    height: 100%;
    background-color: var(--voldor-white, #fff);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.gallery-one__card__icon__item::after {
    transform: translate(-50%, -50%) rotate(90deg)
}

.sidebar__single {
    background-color: var(--voldor-white, #fff);
    padding: 30px 20px;
    box-shadow: 0 0 60px rgba(2, 2, 2, 0.07);
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.sidebar__single--search {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px
}

@media(min-width:1200px) {
    .sidebar__single {
        padding: 40px
    }
}

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

.sidebar__title {
    margin: 0;
    margin-top: -5px;
    margin-bottom: 29px;
    padding-bottom: 24px;
    color: var(--voldor-secondary, #241F21);
    font-size: 24px;
    font-weight: 700;
    line-height: 108.333%;
    border-bottom: 1px solid var(--voldor-base, #AE8F62);
    text-transform: uppercase;
    text-shadow: 0 0 .1 currentColor
}

.sidebar__search {
    position: relative;
    background-color: var(--voldor-border-color, #F4F2EE);
    padding: 30px
}

.sidebar__search input[type=search],
.sidebar__search input[type=text] {
    outline: 0;
    width: 100%;
    height: 60px;
    background-color: var(--voldor-white, #fff);
    padding-left: 55px;
    padding-right: 20px;
    transition: all 500ms ease;
    border: 0;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: 162.5%
}

.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    border: 0
}

.sidebar__search input[type=search]::placeholder,
.sidebar__search input[type=text]::placeholder {
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: 162.5%;
    text-shadow: 0 0 .1px currentColor
}

.sidebar__search button[type=submit] {
    border: 0;
    outline: 0;
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    width: auto;
    font-size: 22px;
    color: var(--voldor-text, #797577);
    transition: all .4s ease-in-out
}

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

.sidebar__posts {
    margin-bottom: 0
}

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

.sidebar__posts__item:not(:last-of-type) {
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8);
    margin-bottom: 16px;
    padding-bottom: 17px
}

.sidebar__posts__item:hover .sidebar__posts__image::after {
    width: 100%;
    right: auto;
    left: 0
}

.sidebar__posts__item:hover .sidebar__posts__image img {
    transform: scale(1.3) rotate(-15deg)
}

.sidebar__posts__image {
    margin-right: 20px;
    overflow: hidden;
    max-width: 70px;
    width: 100%;
    height: 70px;
    position: relative
}

.sidebar__posts__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out
}

.sidebar__posts__image::after {
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: auto;
    right: 0;
    background-color: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.5);
    position: absolute;
    transition: all .4s ease-in-out
}

.sidebar__posts__title {
    margin-bottom: 0;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    color: var(--voldor-secondary, #241F21);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.1875;
    text-transform: uppercase
}

.sidebar__posts__title a {
    text-shadow: 0 0 0 .2 currentColor;
    color: inherit;
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 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(--voldor-base, #AE8F62)
}

.sidebar__posts__meta {
    margin: 0;
    line-height: 1em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px
}

.sidebar__posts__meta a {
    line-height: normal;
    display: inline-flex;
    align-items: center;
    transition: all 500ms ease;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase
}

.sidebar__posts__meta a:hover {
    color: var(--voldor-base, #AE8F62)
}

.sidebar__posts__meta a i {
    color: var(--voldor-base, #AE8F62);
    margin-right: 10px
}

.sidebar__categories {
    margin-bottom: -4px
}

.sidebar__categories li:not(:last-of-type) {
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8)
}

.sidebar__categories li:first-child a {
    padding-top: 0
}

.sidebar__categories li:last-child a {
    padding-bottom: 0 !important
}

.sidebar__categories li a {
    display: flex;
    align-items: center;
    padding: 12px 0 12px 0;
    transition: all 500ms ease;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-shadow: 0 0 0 .1 currentColor;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase
}

.sidebar__categories li a i {
    margin-right: 8px;
    color: var(--voldor-base, #AE8F62)
}

.sidebar__categories li a:hover {
    padding-left: 20px;
    color: var(--voldor-base, #AE8F62)
}

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

.sidebar__tags a {
    background: var(--voldor-border-color, #F4F2EE);
    transition: all 500ms ease;
    display: inline-flex;
    padding: 11px 15px;
    color: var(--voldor-text, #797577);
    line-height: normal;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600
}

.sidebar__tags a:hover {
    color: var(--voldor-white, #fff);
    background-color: var(--voldor-base, #AE8F62)
}

.sidebar__comments {
    margin-bottom: -4px
}

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

.sidebar__comments__item:not(:last-of-type) {
    margin-bottom: 21px
}

.sidebar__comments__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--voldor-border-color, #F4F2EE);
    font-size: 20px;
    color: var(--voldor-text, #797577);
    margin-right: 14px;
    border-radius: 50%;
    transition: all 500ms ease
}

.sidebar__comments__item:hover .sidebar__comments__icon {
    background-color: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.sidebar__comments__title {
    color: var(--voldor-text, #797577);
    line-height: 185.714%;
    margin-bottom: 0;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

.sidebar__comments__title a {
    color: inherit;
    transition: all 500ms ease
}

.sidebar__comments__title a:hover {
    color: var(--voldor-secondary, #241F21)
}

@media(max-width:991px) {
    .service-sidebar__single {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }
}

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

.service-sidebar__title {
    position: relative;
    margin: 0;
    padding: 25px 30px;
    background-color: var(--voldor-secondary, #241F21);
    color: var(--voldor-white, #fff);
    font-size: 20px;
    font-weight: 700;
    line-height: 108.333%;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

.service-sidebar__title::after {
    content: "";
    width: 40px;
    height: 25px;
    position: absolute;
    bottom: -20px;
    left: 8%;
    clip-path: polygon(50% 0, 0% 100%, 100% 100%);
    background: var(--voldor-secondary, #241F21);
    transform: rotate(180deg)
}

@media(min-width:576px) {
    .service-sidebar__title {
        font-size: 24px
    }
}

.service-sidebar__nav {
    border-top: 0;
    margin-bottom: 0;
    padding: 40px 30px;
    background: var(--voldor-base, #AE8F62)
}

@media(max-width:1200px) and (min-width:992px) {
    .service-sidebar__nav {
        padding: 30px 20px
    }
}

@media(max-width:575px) {
    .service-sidebar__nav {
        padding: 30px 20px
    }
}

.service-sidebar__nav li a {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: var(--voldor-white, #fff);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 500ms ease;
    padding: 14px 30px;
    margin-bottom: 10px;
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.08);
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 600;
    line-height: 162.5%;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

@media(max-width:1200px) and (min-width:992px) {
    .service-sidebar__nav li a {
        font-size: 14px
    }
}

@media(max-width:575px) {
    .service-sidebar__nav li a {
        font-size: 14px
    }
}

.service-sidebar__nav li a i {
    color: var(--voldor-base, #AE8F62)
}

@media(max-width:1200px) and (min-width:992px) {
    .service-sidebar__nav li a i {
        font-size: 12px
    }
}

.service-sidebar__nav li a::before {
    content: "";
    width: 0;
    height: 100%;
    background-color: var(--voldor-secondary, #241F21);
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    z-index: -1;
    transition: all 500ms ease-in-out
}

.service-sidebar__nav li.current a,
.service-sidebar__nav li:hover a {
    color: var(--voldor-white, #fff)
}

.service-sidebar__nav li.current a::after,
.service-sidebar__nav li:hover a::after {
    color: var(--voldor-secondary, #241F21)
}

.service-sidebar__nav li.current a::before,
.service-sidebar__nav li:hover a::before {
    width: 100%;
    left: 0;
    right: auto
}

.service-sidebar__nav li:last-child a {
    margin-bottom: 0
}

.service-sidebar__contact {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 30px 30px 193px 30px;
    background-color: var(--voldor-secondary, #241F21)
}

.service-sidebar__contact-title {
    margin-top: -7px;
    max-width: 234px;
    margin-bottom: 50px;
    color: var(--voldor-white, #fff);
    font-size: 25px;
    font-weight: 700;
    line-height: 133.333%;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase
}

@media(min-width:992px) {
    .service-sidebar__contact-title {
        font-size: 30px
    }
}

.service-sidebar__contact-btn .voldor-btn {
    padding: 7.5px 28px;
    color: var(--voldor-white, #fff);
    background: var(--voldor-base, #AE8F62);
    font-size: 16px;
    font-weight: 600;
    line-height: 162.5%
}

.service-sidebar__contact-btn .voldor-btn::after {
    background: var(--voldor-white, #fff)
}

.service-sidebar__contact-btn .voldor-btn:hover {
    color: var(--voldor-secondary, #241F21)
}

.service-sidebar__contact-image,
.service-sidebar__contact-angle {
    bottom: 0;
    left: 0;
    position: absolute;
    object-fit: cover;
    z-index: -2
}

.service-sidebar__contact-image {
    right: 0;
    left: auto;
    z-index: -1
}

.service-sidebar__contact-image img {
    max-height: 320px;
    width: auto
}

.blog-details__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid var(--voldor-gray, #E6E0D8);
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8)
}

.blog-details__tags {
    display: flex;
    align-items: center;
    gap: 10px
}

.blog-details__tags__title {
    margin: 0;
    margin-top: -4px;
    margin-bottom: -2px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--voldor-secondary, #241F21);
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

@media(min-width:768px) {
    .blog-details__tags__title {
        font-size: 20px
    }
}

.blog-details__tags .sidebar__tags button {
    padding: 11px 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: normal
}

.blog-details__tags .sidebar__tags button:hover {
    color: var(--voldor-white, #fff)
}

.blog-details__tags .sidebar__tags2 a {
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

.blog-details__tags .sidebar__tags2 a:hover {
    color: var(--voldor-base, #AE8F62)
}

.blog-card__two {
    margin-bottom: 40px;
    position: relative;
    z-index: 1
}

.blog-card__two__image {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px
}

.blog-card__two__date {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--voldor-secondary, #241F21);
    display: flex;
    align-items: center
}

.blog-card__two__date__day {
    background: var(--voldor-base, #AE8F62);
    display: inline;
    padding: 9px 18px 12px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: var(--voldor-white, #fff)
}

.blog-card__two__date__year {
    text-align: center;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2142;
    color: var(--voldor-white, #fff);
    padding: 0 16px 0;
    text-transform: uppercase
}

.blog-card__two__date__year span {
    display: block;
    color: inherit
}

.blog-card__two__meta {
    display: flex;
    align-items: center;
    margin: 7px;
    transition: all .4s ease-in-out
}

.blog-card__two__meta li:not(:first-child)::before {
    content: "|";
    margin-left: 15px;
    margin-right: 15px;
    font-weight: 500;
    color: #6D7076;
    opacity: .5
}

.blog-card__two__meta li a {
    color: var(--voldor-text, #797577);
    font-size: 14px;
    font-weight: 600;
    line-height: 214.286%;
    text-transform: uppercase
}

.blog-card__two__meta li a i {
    font-size: 15px;
    color: var(--voldor-base, #AE8F62);
    margin-right: 5px
}

.blog-card__two__title {
    color: var(--voldor-secondary, #241F21);
    margin-bottom: 20px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: .8333333333
}

.blog-card__two__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 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(--voldor-base, #AE8F62)
}

.blog-card__two__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%
}

.blog-card__two__text+.blog-card__two__text {
    margin-top: 20px
}

.comments-one {
    margin-top: 40px
}

@media(min-width:1200px) {
    .comments-one {
        margin-top: 50px
    }
}

.comments-one__title {
    margin: 0;
    font-size: 25px;
    margin-top: -4px;
    margin-bottom: -4px;
    color: var(--voldor-secondary, #241F21);
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-shadow: 0 0 .1 currentColor
}

@media(min-width:992px) {
    .comments-one__title {
        font-size: 30px
    }
}

.comments-one__list {
    margin: 0;
    margin-top: 35px
}

.comments-one__card {
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8);
    padding-bottom: 50px
}

@media(min-width:768px) {
    .comments-one__card {
        display: flex;
        align-items: flex-start
    }
}

@media(min-width:1200px) {
    .comments-one__card:not(:first-of-type) {
        margin-top: 50px
    }
}

@media(min-width:768px) {
    .comments-one__card__image {
        margin-right: 30px
    }
}

.comments-one__card__image img {
    border-radius: 50%
}

.comments-one__card__title {
    margin: 0;
    color: var(--voldor-secondary, #241F21);
    font-size: 24px;
    font-weight: 700;
    line-height: 108.333%;
    margin-bottom: 10px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase
}

@media(max-width:991px) {
    .comments-one__card__title {
        font-size: 18px
    }
}

.comments-one__card__text {
    margin: 0;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: 187.5%;
    max-width: 560px;
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

@media(min-width:768px) {
    .comments-one__card__text {
        margin-bottom: 0
    }
}

.comments-one__card__btn {
    margin-top: 22px
}

.comments-one__card__reply {
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    padding: 10px 21.5px;
    background: var(--voldor-border-color, #F4F2EE)
}

.comments-one__card__reply:hover {
    color: var(--voldor-white, #fff)
}

.comments-one__card__content {
    position: relative
}

.comments-form {
    margin-top: 40px
}

@media(min-width:1200px) {
    .comments-form {
        margin-top: 55px
    }
}

.comments-form__title {
    margin: 0;
    font-size: 25px;
    margin-top: -4px;
    margin-bottom: -4px;
    color: var(--voldor-secondary, #241F21);
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-shadow: 0 0 .1 currentColor
}

@media(min-width:992px) {
    .comments-form__title {
        font-size: 30px
    }
}

.comments-form__form {
    margin-top: 45px
}

.comments-form input::placeholder,
.comments-form textarea::placeholder {
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

.comments-form textarea {
    height: 211px
}

.comments-form .voldor-btn:hover {
    color: var(--voldor-white, #fff)
}

.product {
    position: relative
}

.product__sidebar {
    position: relative
}

.product__sidebar--title {
    position: relative;
    margin-top: -5px;
    color: var(--voldor-secondary, #241F21);
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 23px;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

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

.product__sidebar__search input[type=search],
.product__sidebar__search input[type=text] {
    outline: 0;
    width: 100%;
    height: 60px;
    background-color: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff);
    font-size: 16px;
    font-weight: 400;
    line-height: 162.5%;
    padding-left: 60px;
    padding-right: 30px;
    transition: all 500ms ease;
    border: 0
}

.product__sidebar__search input[type=search]:focus,
.product__sidebar__search input[type=text]:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    border: 0
}

.product__sidebar__search input[type=search]::placeholder,
.product__sidebar__search input[type=text]::placeholder {
    color: var(--voldor-white, #fff);
    font-size: 16px;
    font-weight: 400;
    line-height: 162.5%
}

.product__sidebar__search button[type=submit] {
    border: 0;
    outline: 0;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: auto;
    font-size: 22px;
    color: var(--voldor-white, #fff)
}

.product__price-ranger {
    background-color: var(--voldor-white, #fff);
    box-shadow: 0 0 60px 0 rgba(2, 2, 2, 0.07);
    padding: 30px;
    margin-bottom: 30px
}

.product__price-ranger #slider-range {
    margin: 15px 0 23px 0;
    background: var(--voldor-border-color, #F4F2EE);
    border: 0;
    height: 7px;
    border-radius: 20px;
    position: relative
}

.product__price-ranger #slider-range .ui-slider-range {
    height: 100%;
    background: var(--voldor-base, #AE8F62)
}

.product__price-ranger #slider-range .ui-slider-handle {
    position: absolute;
    top: -5px;
    background: var(--voldor-base, #AE8F62);
    border: 0;
    height: 16px;
    width: 16px !important;
    border-radius: 50%;
    margin-left: -3px;
    outline: medium none;
    cursor: pointer;
    z-index: 2
}

.product__price-ranger .ranger-min-max-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0 0 0
}

.product__price-ranger .ranger-min-max-block input[type=text] {
    position: relative;
    display: inline-block;
    color: var(--voldor-text, #797577);
    width: 45px;
    border: 0;
    outline: 0;
    padding: 0;
    text-align: center;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal
}

.product__price-ranger .ranger-min-max-block span {
    position: relative;
    display: inline-block;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 700;
    left: -2px
}

.product__price-ranger .ranger-min-max-block button[type=submit] {
    position: relative;
    display: block;
    float: right;
    text-align: center;
    border: 0;
    margin: 0;
    cursor: pointer;
    padding: 0 16px;
    height: 40px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 185.714%;
    text-transform: uppercase;
    z-index: 1;
    color: var(--voldor-text, #797577);
    background: var(--voldor-border-color, #F4F2EE)
}

.product__price-ranger .ranger-min-max-block button[type=submit]:hover {
    color: var(--voldor-white, #fff);
    background: var(--voldor-base, #AE8F62)
}

.product__price-ranger .ranger-min-max-block button[type=submit]::after {
    display: none
}

.product__categories {
    margin-bottom: -4px;
    background-color: var(--voldor-white, #fff);
    padding: 30px 30px 23px 30px;
    box-shadow: 0 0 60px 0 rgba(2, 2, 2, 0.07)
}

.product__categories__title {
    margin: 0;
    margin-top: -5px;
    padding-bottom: 15px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--voldor-base, #AE8F62);
    color: var(--voldor-secondary, #241F21);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.product__categories ul {
    margin-bottom: 0
}

.product__categories ul li:not(:last-of-type) {
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8)
}

.product__categories ul li:first-child a {
    padding-top: 0
}

.product__categories ul li:last-child a {
    padding-bottom: 0 !important
}

.product__categories ul li a {
    display: flex;
    align-items: center;
    padding: 10px 0 14.44px 0;
    transition: all 500ms ease;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

.product__categories ul li a i {
    font-size: 13px;
    margin-right: 8px;
    color: var(--voldor-base, #AE8F62)
}

.product__categories ul li a:hover {
    padding-left: 20px;
    background-color: var(--voldor-white, #fff);
    color: var(--voldor-base, #AE8F62)
}

.product__info-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px
}

@media(max-width:991px) {
    .product__info-top {
        margin-top: 50px
    }
}

@media(max-width:767px) {
    .product__info-top {
        display: block;
        margin-top: 40px
    }
}

.product__showing-text {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    color: var(--voldor-text, #797577);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    color: var(--voldor-secondary, #241F21);
    text-transform: uppercase
}

.product__showing-sort {
    margin: 0;
    font-size: 18px
}

.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 270px !important
}

@media(max-width:360px) {
    .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        width: 270px !important
    }
}

.product__showing-sort .bootstrap-select>.dropdown-toggle::after {
    display: none
}

.product__showing-sort .bootstrap-select .dropdown-menu {
    border: 0
}

.product__showing-sort .bootstrap-select>.dropdown-toggle {
    position: relative;
    height: 60px;
    outline: none !important;
    border-radius: 0;
    border: 0;
    background-color: var(--voldor-border-color, #F4F2EE) !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--voldor-text, #797577) !important;
    line-height: 60px;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

.product__showing-sort .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    font-size: 16px;
    color: var(--voldor-base, #AE8F62)
}

.product__showing-sort .bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid var(--voldor-border-color, #F4F2EE)
}

.product__showing-sort .bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 30px;
    color: var(--voldor-text, #797577);
    background-color: var(--voldor-gray, #E6E0D8);
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.product__showing-sort .bootstrap-select .dropdown-menu>li:hover>a,
.product__showing-sort .bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--voldor-secondary, #241F21);
    color: var(--voldor-white, #fff);
    border-color: var(--voldor-secondary, #241F21)
}

.product__item {
    position: relative;
    background-color: var(--voldor-white, #fff);
    border: 1px solid var(--voldor-gray, #E6E0D8);
    transition: all 500ms ease
}

.product__item:hover {
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid var(--voldor-base, #AE8F62)
}

.product__item__img {
    background-color: var(--voldor-white, #fff);
    position: relative;
    overflow: hidden
}

.product__item__img__item {
    max-width: 228px;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.product__item__img__item img {
    width: 100%;
    mix-blend-mode: multiply;
    transition: all 500ms ease;
    transform: scale(1)
}

.product__item__btn {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2
}

.product__item__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: var(--voldor-border-color, #F4F2EE);
    border-radius: 50%;
    color: var(--voldor-text, #797577);
    font-size: 14px;
    visibility: hidden;
    opacity: 0
}

.product__item__btn a:hover {
    background-color: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.product__item__btn a:nth-child(1) {
    -webkit-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    -moz-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    -ms-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    -o-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -webkit-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    -o-transform: translate3d(30px, 0, 0)
}

.product__item__btn a:nth-child(2) {
    -webkit-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    -moz-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    -ms-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    -o-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
    transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -webkit-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    -o-transform: translate3d(30px, 0, 0)
}

.product__item__btn a+a {
    margin-top: 12px
}

.product__item:hover .product__item__img img {
    transform: scale(1.05)
}

.product__item:hover .product__item__btn a {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0)
}

.product__item__content {
    position: relative;
    text-align: center;
    padding: 20px 20px 40px 20px
}

.product__item__ratings {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--voldor-base, #AE8F62);
    letter-spacing: 4px;
    margin-bottom: 25px
}

.product__item__title {
    margin: 0;
    margin-bottom: 10px;
    color: var(--voldor-secondary, #241F21);
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    text-transform: uppercase;
    text-shadow: 0 0 .1px currentColor;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

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

.product__item__title a:hover {
    background-size: 100% 1px
}

.product__item__title a:hover {
    color: var(--voldor-base, #AE8F62)
}

.product__item__price {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--voldor-text, #797577);
    line-height: 1em;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase
}

.product__item__price del {
    margin-left: 7px
}

.product__item__link {
    color: var(--voldor-text, #797577);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 185.714%;
    padding: 7px 32px;
    text-transform: uppercase;
    background: var(--voldor-border-color, #F4F2EE);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

.product__item__link:hover {
    color: var(--voldor-white, #fff)
}

.product__item__link:hover::after {
    background: var(--voldor-base, #AE8F62)
}

.product-one {
    padding: 120px 0
}

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

.product-one--page {
    padding-top: 120px
}

@media(max-width:767px) {
    .product-one--page {
        padding-top: 60px
    }
}

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

@media(max-width:767px) {
    .product-one--home {
        padding-bottom: 50px
    }
}

.product-one--home .sec-title {
    text-align: center
}

.product-one--home .product__item {
    margin-bottom: 30px
}

@media(min-width:992px) {
    .product-one__carousel .owl-nav {
        display: none
    }
}

.product-details {
    position: relative;
    padding: 120px 0
}

@media(max-width:991px) {
    .product-details {
        padding: 100px 0
    }
}

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

.product-details__img {
    background-color: var(--voldor-white, #fff);
    position: relative;
    border: 1px solid var(--voldor-gray, #E6E0D8);
    max-width: 570px;
    height: auto
}

.product-details__img img {
    object-fit: cover;
    width: 100%;
    height: auto
}

.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(--voldor-secondary, #241F21);
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

@media(min-width:768px) {
    .product-details__title {
        font-size: 30px
    }
}

.product-details__price {
    margin: 0 0 -5px 17px;
    color: var(--voldor-base, #AE8F62);
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

.product-details__review {
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
    font-size: 17px;
    color: var(--voldor-base, #AE8F62)
}

.product-details__review a {
    display: inline-block;
    margin-left: 20px;
    transition: all 500ms ease;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize
}

.product-details__review a:hover {
    color: var(--voldor-base, #AE8F62)
}

.product-details__divider {
    width: 100%;
    height: 1px;
    background-color: var(--voldor-gray, #E6E0D8);
    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(--voldor-text-gray, #958F91);
    font-size: 16px;
    font-weight: 600;
    line-height: 187.5%;
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

.product-details__excerpt-text2 {
    color: var(--voldor-text-gray, #958F91);
    margin-bottom: 37px;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

@media(max-width:767px) {
    .product-details__excerpt-text2 br {
        display: block
    }
}

.product-details__excerpt-text2 span {
    display: block;
    margin-top: 5px;
    font-weight: 600;
    color: var(--voldor-base, #AE8F62);
    text-transform: capitalize;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

.product-details__quantity {
    position: relative;
    display: flex;
    align-items: center
}

.product-details__quantity-title {
    margin: 0;
    margin-right: 35px;
    color: var(--voldor-secondary, #241F21);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    font-family: var(--voldor-heading-font, "Barlow", 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 var(--voldor-gray, #E6E0D8);
    appearance: textfield;
    color: var(--voldor-secondary, #241F21);
    padding-left: 15px;
    outline: 0;
    font-size: 18px;
    font-weight: 500;
    background-color: transparent
}

.product-details__quantity .quantity-box button {
    width: 45px;
    height: auto;
    color: var(--voldor-secondary, #241F21);
    font-size: 13px;
    background-color: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 0;
    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(--voldor-secondary, #241F21);
    color: var(--voldor-white, #fff)
}

.product-details__quantity .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top: 1px solid var(--voldor-gray, #E6E0D8);
    border-left: 1px solid var(--voldor-gray, #E6E0D8);
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8)
}

.product-details__quantity .quantity-box button.add {
    border-top: 1px solid var(--voldor-gray, #E6E0D8);
    border-right: 1px solid var(--voldor-gray, #E6E0D8);
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8)
}

.product-details__quantity .quantity-box button:hover {
    color: var(--voldor-white, #fff)
}

.product-details__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0 0
}

.product-details__buttons a {
    color: var(--voldor-white, #fff)
}

@media(max-width:768px) {
    .product-details__buttons a {
        padding: 16.55px 35px
    }
}

.product-details__buttons a:hover {
    color: var(--voldor-white, #fff)
}

.product-details__buttons a:last-child:hover {
    color: var(--voldor-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(--voldor-secondary, #241F21);
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", 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: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--voldor-border-color, #F4F2EE);
    font-size: 13px;
    color: var(--voldor-secondary, #241F21);
    transition: all 500ms ease;
    border-radius: 50%
}

.product-details__socials__item a:hover {
    background-color: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.product-details__description {
    position: relative;
    margin: 40px 0 0
}
.product-details__description img{
    max-width: 100%;
}

@media(min-width:768px) {
    .product-details__description {
        margin: 50px 0 0
    }
}

.product-details__description__title {
    margin-bottom: 22px;
    color: var(--voldor-secondary, #241F21);
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.product-details__description__text {
    color: var(--voldor-text, #797577);
    line-height: 187.5%;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--voldor-font, "Manrope", 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(--voldor-secondary, #241F21);
    font-family: var(--voldor-font, "Manrope", sans-serif);
    text-shadow: 0 0 .1px currentColor
}

.product-details__description__lists li i {
    color: var(--voldor-base, #AE8F62);
    margin-right: 10px
}

.product-details__description__lists li+li {
    margin-top: 13px
}

.product-details__comment {
    border-top: 1px solid var(--voldor-gray, #E6E0D8);
    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(--voldor-secondary, #241F21);
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    font-family: var(--voldor-heading-font, "Barlow", 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 var(--voldor-gray, #E6E0D8)
}

@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: 0
}

@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(--voldor-secondary, #241F21);
    font-size: 24px;
    font-weight: 700;
    line-height: 108.333%;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase
}

.product-details__comment-box__date {
    margin-left: 20px;
    display: inline-block;
    text-transform: none;
    letter-spacing: 0;
    color: var(--voldor-base, #AE8F62);
    font-size: 16px;
    font-weight: 600;
    line-height: 187.5%;
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

.product-details__comment-box__text {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 187.5%;
    font-family: var(--voldor-font, "Manrope", sans-serif);
    color: var(--voldor-text, #797577)
}

.product-details__comment-box__ratings {
    position: absolute;
    right: 0;
    top: 13px;
    display: flex;
    align-items: center;
    letter-spacing: 3px;
    font-size: 17px;
    color: var(--voldor-base, #AE8F62)
}

@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(--voldor-secondary, #241F21);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

.product-details__form-ratings {
    display: flex;
    align-items: center;
    letter-spacing: 6px;
    font-size: 25px;
    color: var(--voldor-secondary, #241F21);
    margin: 0 0 40px
}

.product-details__form-ratings i {
    color: var(--voldor-base, #AE8F62);
    font-size: 500
}

.product-details__form-ratings__label {
    display: inline-block;
    letter-spacing: 0;
    color: var(--voldor-text, #797577);
    margin: 0 17px 0 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    font-family: var(--voldor-font, "Manrope", 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: var(--voldor-border-color, #F4F2EE)
}

.product-details__form__form .form-one__control input::placeholder,
.product-details__form__form .form-one__control textarea::placeholder {
    color: var(--voldor-text, #797577)
}

.product-details__form__form .voldor-btn:hover {
    color: var(--voldor-white, #fff)
}

.cart-page {
    position: relative;
    padding: 120px 0
}

@media(max-width:767px) {
    .cart-page {
        padding: 80px 0
    }
}

.cart-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

@media(max-width:1199px) {
    .cart-page .table-responsive {
        margin-bottom: 30px
    }
}

.cart-page__table {
    position: relative;
    width: 100%;
    border: 0;
    margin: 0 0 60px
}

@media(max-width:1199px) {
    .cart-page__table {
        min-width: 1170px
    }
}

.cart-page__table thead tr th {
    padding: 0 0 24px;
    border: 0;
    background-color: transparent;
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8) !important;
    box-shadow: none;
    color: var(--voldor-secondary, #241F21);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

.cart-page__table thead tr th:last-child {
    text-align: right
}

.cart-page__table tbody tr td {
    vertical-align: middle;
    border: 0;
    box-shadow: none;
    background-color: transparent;
    border-top: 1px solid var(--voldor-gray, #E6E0D8);
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8);
    padding: 30px 0;
    letter-spacing: 0;
    color: var(--voldor-secondary, #241F21);
    font-size: 20px;
    font-weight: 500;
    line-height: 235%;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

.cart-page__table tbody tr td:last-child {
    text-align: right
}

.cart-page__table__meta {
    display: flex;
    align-items: center
}

.cart-page__table__meta-img {
    width: 109px;
    height: 107px;
    background-color: var(--voldor-white, #fff);
    border: 1px solid var(--voldor-gray, #E6E0D8);
    margin-right: 40px
}

.cart-page__table__meta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply
}

.cart-page__table__meta-title {
    margin: 0;
    color: var(--voldor-secondary, #241F21);
    font-size: 20px;
    font-weight: 700;
    line-height: 235%
}

.cart-page__table__meta-title a {
    color: inherit
}

.cart-page__table__meta-title a:hover {
    color: var(--voldor-base, #AE8F62)
}

.cart-page__table__remove {
    display: block;
    color: var(--voldor-secondary, #241F21);
    font-size: 17px
}

.cart-page__table__remove:hover {
    color: var(--voldor-base, #AE8F62)
}

.cart-page__coupone-form {
    position: relative;
    display: flex
}

@media(max-width:767px) {
    .cart-page__coupone-form {
        display: block
    }
}

.cart-page__coupone-form input[type=text] {
    height: 56px;
    width: 303px;
    border: 0;
    background-color: var(--voldor-border-color, #F4F2EE);
    padding-left: 30px;
    padding-right: 30px;
    outline: 0;
    font-size: 16px;
    color: var(--voldor-text, #797577);
    display: block;
    font-weight: 600;
    margin-right: 10px
}

@media(max-width:1199px) {
    .cart-page__coupone-form input[type=text] {
        width: 290px
    }
}

@media(max-width:767px) {
    .cart-page__coupone-form input[type=text] {
        width: 100%;
        margin: 0 0 10px
    }
}

.cart-page__cart-total {
    position: relative;
    text-align: right;
    margin: -8px 0 24px;
    padding: 0
}

@media(max-width:991px) {
    .cart-page__cart-total {
        text-align: left;
        margin-top: 45px
    }
}

.cart-page__cart-total li {
    display: block;
    font-size: 20px;
    color: var(--voldor-secondary, #241F21);
    font-weight: 700;
    margin: 0;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase
}

@media(max-width:991px) {
    .cart-page__cart-total li span {
        display: inline-block;
        min-width: 172px
    }
}

.cart-page__cart-total li:last-child {
    margin-top: 10px;
    padding-top: 15px;
    position: relative
}

.cart-page__cart-total li:last-child::after {
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--voldor-border-color, #F4F2EE)
}

.cart-page__cart-total-amount {
    color: var(--voldor-text, #797577);
    text-transform: inherit;
    display: inline-block;
    min-width: 220px;
    font-size: 20px;
    font-weight: 600;
    line-height: 235%
}

.cart-page__buttons {
    display: flex;
    justify-content: flex-end;
    gap: 20px
}

@media(max-width:991px) {
    .cart-page__buttons {
        justify-content: flex-start
    }
}

.checkout-page {
    position: relative;
    padding: 120px 0
}

@media(max-width:991px) {
    .checkout-page {
        padding: 100px 0
    }
}

@media(max-width:767px) {
    .checkout-page {
        padding: 80px 0
    }
}

.checkout-page__notice {
    max-width: 570px;
    margin: 0 0 30px;
    padding: 34px 50px;
    background: var(--voldor-border-color, #F4F2EE);
    color: var(--voldor-secondary, #241F21);
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3888888889
}

.checkout-page__notice a {
    color: var(--voldor-base, #AE8F62);
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 95%/0px 1px no-repeat;
    transition: all 500ms ease
}

.checkout-page__notice a:hover {
    background-size: 100% 1px
}

.checkout-page__billing-address {
    position: relative
}

.checkout-page__billing-address__title {
    margin: 0 0 34px;
    color: var(--voldor-secondary, #241F21);
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

@media(max-width:767px) {
    .checkout-page__billing-address__title {
        font-size: 28px
    }
}

.checkout-page__shipping-address {
    position: relative
}

@media(max-width:991px) {
    .checkout-page__shipping-address {
        margin: 50px 0 0
    }
}

.checkout-page__shipping-address__title {
    margin: 0 0 34px;
    color: var(--voldor-secondary, #241F21);
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

@media(max-width:767px) {
    .checkout-page__shipping-address__title {
        font-size: 28px
    }
}

.checkout-page__input-box {
    position: relative;
    line-height: 1;
    margin: 0 0 20px
}

.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel],
.checkout-page__input-box textarea {
    height: 60px;
    width: 100%;
    border: 0;
    background-color: var(--voldor-border-color, #F4F2EE);
    padding-left: 30px;
    padding-right: 30px;
    outline: 0;
    display: block;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 600;
    line-height: normal
}

.checkout-page__input-box input[type=text]::placeholder,
.checkout-page__input-box input[type=email]::placeholder,
.checkout-page__input-box input[type=tel]::placeholder,
.checkout-page__input-box textarea::placeholder {
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 600;
    line-height: normal
}

.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 100% !important;
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle::after {
    display: none
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle {
    position: relative;
    height: 58px;
    outline: none !important;
    border-radius: 0;
    border: 0;
    background-color: var(--voldor-border-color, #F4F2EE) !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--voldor-text, #797577) !important;
    font-size: 14px;
    line-height: 58px;
    font-weight: 500;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    font-size: 12px;
    color: var(--voldor-text, #797577)
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid var(--voldor-border-color, #F4F2EE)
}

.checkout-page__input-box .bootstrap-select .dropdown-menu {
    border: 0
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li>a {
    font-size: 14px;
    font-weight: 500;
    padding: 15px 30px;
    color: var(--voldor-text, #797577);
    background-color: var(--voldor-border-color, #F4F2EE);
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li:hover>a,
.checkout-page__input-box .bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff);
    border-color: var(--voldor-base, #AE8F62)
}

.checkout-page__input-box textarea {
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    height: 176px;
    width: 100%;
    background-color: var(--voldor-border-color, #F4F2EE);
    padding: 20px 30px 30px;
    border: 0;
    outline: 0;
    margin-bottom: 0
}

.checkout-page__check-box {
    position: relative;
    display: block;
    margin-top: -6px
}

.checkout-page__check-box input[type=checkbox] {
    display: none
}

.checkout-page__check-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0;
    margin-bottom: 0;
    color: var(--voldor-text, #797577);
    font-size: 15px;
    line-height: 24px;
    text-transform: none;
    cursor: pointer
}

.checkout-page__check-box label span:before {
    position: absolute;
    top: 0;
    left: 5px;
    line-height: 20px;
    display: inline-block;
    color: var(--voldor-white, #fff);
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-size: 8px;
    font-weight: 900;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    opacity: 0
}

.checkout-page__check-box input[type=checkbox]+label span {
    position: absolute;
    top: 4px;
    left: 0;
    width: 19px;
    height: 19px;
    background-color: var(--voldor-base, #AE8F62);
    border-radius: 50%;
    border: 0;
    vertical-align: middle;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.checkout-page__check-box input[type=checkbox]:checked+label span:before {
    opacity: 1
}

.checkout-page__details {
    margin-top: 25px;
    margin-bottom: 65px
}

.checkout-page__details__title {
    color: var(--voldor-secondary, #241F21);
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
    text-shadow: 0 0 .1px currentColor;
    text-transform: uppercase
}

.checkout-page__details__check-box input[type=checkbox] {
    display: none
}

.checkout-page__details__check-box label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    color: var(--voldor-text, #797577);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-transform: uppercase
}

.checkout-page__details__check-box label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 22px;
    height: 22px;
    background-color: var(--voldor-base, #AE8F62);
    border-radius: 50%;
    border: 0;
    vertical-align: middle;
    cursor: pointer;
    transition: all 300ms ease
}

.checkout-page__details__check-box label span::before {
    content: "\f00c";
    color: var(--voldor-white, #fff);
    position: absolute;
    top: 4px;
    left: 6px;
    line-height: 15px;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: 600;
    transition: all .15s ease-in-out;
    opacity: 0
}

.checkout-page__details__check-box input[type=checkbox]:checked+label span:before {
    opacity: 1
}

.checkout-page__your-order {
    position: relative
}

.checkout-page__your-order__title {
    margin-bottom: 35px;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

@media(max-width:767px) {
    .checkout-page__your-order__title {
        font-size: 28px
    }
}

.checkout-page__your-order .nionx-btn {
    padding: 19px 38px
}

.checkout-page__order-table {
    position: relative;
    width: 100%;
    border: 0;
    margin: 0
}

.checkout-page__order-table thead tr th {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    color: var(--voldor-base, #AE8F62);
    margin: 0;
    padding: 15.5px 0;
    border: 0;
    border-top: 1px solid var(--voldor-gray, #E6E0D8);
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8);
    font-weight: bold;
    color: var(--voldor-secondary, #241F21);
    font-size: 20px;
    font-weight: 700;
    line-height: 235%;
    text-transform: uppercase;
    text-shadow: 0 0 .1px currentColor
}

.checkout-page__order-table thead tr th:last-child {
    text-align: right
}

.checkout-page__order-table tbody tr td {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    color: var(--voldor-secondary, #241F21);
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    padding: 0 0 24px;
    border: 0;
    text-transform: uppercase;
    text-shadow: 0 0 .1px currentColor
}

.checkout-page__order-table tbody tr td:last-child {
    text-align: right
}

.checkout-page__order-table .pro__price {
    color: var(--voldor-text-gray, #958F91);
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 0 .1px currentColor
}

.checkout-page__order-table tbody tr:first-child td {
    padding-top: 25px
}

.checkout-page__order-table tbody tr:last-child td {
    padding-bottom: 26px;
    padding-top: 26px;
    border-top: 1px solid var(--voldor-border-color, #F4F2EE)
}

.checkout-page__order-table tbody tr:last-child td.pro__price {
    color: var(--voldor-secondary, #241F21);
    font-weight: 700
}

.checkout-page__payment {
    background-color: var(--voldor-border-color, #F4F2EE);
    padding: 40px 45px 17px;
    min-height: 295px;
    margin-bottom: 30px
}

@media(max-width:991px) {
    .checkout-page__payment {
        margin-top: 50px
    }
}

@media(max-width:767px) {
    .checkout-page__payment {
        padding-left: 25px;
        padding-right: 25px
    }
}

.checkout-page__payment__item {
    position: relative
}

.checkout-page__payment__title {
    display: flex;
    font-size: 20px;
    margin: 0;
    align-items: center;
    margin-bottom: 28px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 700
}

.checkout-page__payment__title::before {
    content: "";
    width: 22px;
    height: 22px;
    background-color: var(--voldor-white, #fff);
    border-radius: 50%;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 14px;
    position: relative;
    top: 1px;
    transition: all 500ms ease
}

.checkout-page__payment__title img {
    margin-left: 15px
}

.checkout-page__payment__item--active .checkout-page__payment__title::before {
    background-color: var(--voldor-base, #AE8F62);
    border-color: var(--voldor-base, #AE8F62);
    content: "\f00c";
    color: var(--voldor-white, #fff)
}

.checkout-page__payment__content {
    margin-left: 35px;
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 30px
}

.login-page {
    position: relative;
    padding: 120px 0
}

@media(max-width:767px) {
    .login-page {
        padding: 80px 0
    }
}

.login-page__inner {
    border: 1px solid var(--voldor-gray, #E6E0D8);
    background: var(--voldor-white, #fff);
    box-shadow: 0 6px 40px 0 rgba(0, 0, 0, 0.06);
    padding: 40px 30px
}

@media(min-width:768px) {
    .login-page__inner {
        padding: 57px 40px 57px
    }
}

.login-page__info {
    background-color: var(--voldor-secondary, #241F21);
    padding: 35.5px 50px;
    margin-bottom: 50px
}

@media(max-width:991px) {
    .login-page__info {
        margin-bottom: 30px;
        padding: 15px 30px
    }

    .login-page__info p {
        font-size: 16px
    }
}

.login-page__info p {
    margin: 0;
    color: var(--voldor-white, #fff);
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3888888889
}

.login-page__info p span {
    font-weight: 700
}

.login-page__info p a {
    line-height: normal;
    font-weight: 700;
    display: inline-block;
    color: var(--voldor-base, #AE8F62);
    transition: all 500ms ease;
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 95%/0px 1px no-repeat;
    transition: all 500ms ease
}

.login-page__info p a:hover {
    background-size: 100% 1px
}

.login-page__wrap {
    position: relative
}

.login-page__wrap__title {
    margin-top: -5px;
    margin-bottom: 30px;
    color: var(--voldor-secondary, #241F21);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.login-page__wrap .form__border {
    display: none
}

@media(min-width:992px) {
    .login-page__wrap .form__border {
        display: block
    }
}

.login-page__wrap .form__border::after {
    display: none;
    position: absolute;
    top: 0;
    right: -47px;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--voldor-gray, #E6E0D8)
}

@media(min-width:992px) {
    .login-page__wrap .form__border::after {
        display: block
    }
}

@media(max-width:992px) {
    .login-page .register-page__wrap {
        margin-top: 50px
    }
}

.login-page__form {
    position: relative;
    display: block
}

.login-page__form-input-box {
    position: relative;
    display: block;
    margin-bottom: 20px
}

.login-page__form-input-box input[type=email],
.login-page__form-input-box input[type=password] {
    height: 60px;
    width: 100%;
    border: 0;
    background-color: var(--voldor-border-color, #F4F2EE);
    padding-left: 30px;
    padding-right: 30px;
    outline: 0;
    color: var(--voldor-text, #797577);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    display: block;
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

.login-page__form-input-box input[type=email]::placeholder,
.login-page__form-input-box input[type=password]::placeholder {
    color: var(--voldor-text, #797577);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

.login-page__checked-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 26px;
    margin-bottom: 35px
}

@media(max-width:768px) {
    .login-page__checked-box {
        display: block
    }
}

.login-page__checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0;
    margin-bottom: 0;
    text-transform: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600
}

.login-page__checked-box label span:before {
    position: absolute;
    top: 2px;
    left: 5px;
    display: block;
    border-bottom: 2px solid var(--voldor-text, #797577);
    border-right: 2px solid var(--voldor-text, #797577);
    content: "";
    width: 7px;
    height: 10px;
    pointer-events: none;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all .15s ease-in-out;
    opacity: 0
}

.login-page__checked-box input[type=checkbox] {
    display: none
}

.login-page__checked-box input[type=checkbox]+label span {
    position: absolute;
    top: 4px;
    left: 0;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background: transparent;
    cursor: pointer;
    transition: all 300ms ease;
    border: 1px solid var(--voldor-gray, #E6E0D8)
}

.login-page__checked-box input[type=checkbox]:checked+label span:before {
    opacity: 1
}

.login-page__form-btn-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.login-page__form-btn-box .nionx-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 19px 40px
}

.login-page__form-forgot-password {
    position: relative;
    display: block;
    margin-left: 0;
    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(--voldor-text, #797577);
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    font-size: 16px;
    font-weight: 600;
    line-height: normal
}

.login-page__form-forgot-password a:hover {
    background-size: 100% 1px
}

.login-page__form-forgot-password a:hover {
    color: var(--voldor-text, #797577)
}

.gutter-x-94 {
    --bs-gutter-x: 94px
}

.error-404 {
    padding: 100px 0 120px;
    max-width: 496px;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

@media(max-width:991px) {
    .error-404 {
        padding: 80px 0 100px
    }
}

@media(max-width:767px) {
    .error-404 {
        padding: 60px 0 80px
    }
}

.error-404__img {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    padding-top: 120px
}

.error-404__img__item {
    display: flex;
    align-items: end;
    justify-content: space-around;
    position: relative;
    z-index: 1
}

.error-404__img__item--one {
    position: absolute;
    top: 22%;
    left: 40%;
    animation: errorLeft 3s ease-in-out infinite
}

@keyframes errorLeft {
    0% {
        transform: translateX(0px)
    }

    50% {
        transform: translateX(-15px)
    }

    100% {
        transform: translateX(0px)
    }
}

.error-404__img__item--two {
    position: absolute;
    bottom: 0;
    left: 5%;
    z-index: -1
}

.error-404__sub-title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 65%;
    text-align: center;
    margin-bottom: 15px
}

.error-404__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 200%;
    color: var(--voldor-text, #797577);
    text-align: center
}

.error-404__search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 18px;
    width: 100%;
    max-width: 550px
}

.error-404__search input[type=text] {
    border: 0;
    outline: 0;
    display: block;
    background-color: var(--voldor-border-color, #F4F2EE);
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    width: 100%;
    max-width: 496px;
    padding-left: 70px;
    height: 60px
}

.error-404__search input[type=text]::placeholder {
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 600;
    line-height: 162.5%
}

.error-404__search__btn {
    border: 0;
    outline: 0;
    background-color: transparent;
    color: var(--voldor-text, #797577);
    position: absolute;
    top: 50%;
    font-weight: 700;
    left: 40px;
    transform: translateY(-50%);
    font-size: 20px
}

@media(max-width:575px) {
    .error-404__search__btn {
        left: 30px
    }
}

.faq-page__accordion .accrodion {
    background: var(--voldor-border-color, #F4F2EE)
}

.faq-page__accordion .accrodion+.accrodion {
    margin-top: 20px
}

.faq-page__accordion .accrodion-title {
    padding: 25px 30px 18px 30px;
    padding-right: 65px;
    cursor: pointer
}

.faq-page__accordion .accrodion-title__text {
    position: relative;
    color: var(--voldor-secondary, #241F21);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2222222;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase
}

.faq-page__accordion .accrodion-title__icon {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    right: -35px;
    background: var(--voldor-white, #fff);
    transform: translateY(-50%)
}

.faq-page__accordion .accrodion-title__icon::after,
.faq-page__accordion .accrodion-title__icon::before {
    width: 2.555555px;
    height: 12px;
    position: absolute;
    background-color: var(--voldor-secondary, #241F21);
    top: 50%;
    left: 50%;
    content: "";
    transform: translate(-50%, -50%);
    transition: all 500ms ease
}

.faq-page__accordion .accrodion-title__icon::after {
    width: 12px;
    height: 2px
}

.faq-page__accordion .active .accrodion-title__icon {
    background-color: var(--voldor-base, #AE8F62)
}

.faq-page__accordion .active .accrodion-title__icon::after,
.faq-page__accordion .active .accrodion-title__icon::before {
    background: var(--voldor-white, #fff);
    opacity: 0
}

.faq-page__accordion .active .accrodion-title__icon::after {
    opacity: 1
}

.faq-page__accordion .accrodion-content .inner {
    padding: 3px 30px 25px 30px;
    margin-top: -3px
}

.faq-page__accordion .accrodion-content p {
    color: var(--voldor-text, #797577);
    padding-bottom: 0;
    margin-bottom: -2px;
    font-size: 16px;
    font-weight: 500;
    line-height: 187.5%;
    max-width: 678px;
    width: 100%
}

.faq-page {
    padding: 120px 0
}

@media(max-width:991px) {
    .faq-page {
        padding: 100px 0
    }
}

@media(max-width:767px) {
    .faq-page {
        padding: 80px 0
    }
}

.faq-page__thumb img {
    width: 100%;
    object-fit: cover
}

@media(max-width:991px) {
    .faq-page .sec-title {
        padding-bottom: 20px
    }
}

.faq-page__search {
    max-width: 330px;
    width: 100%;
    margin-left: auto;
    margin-right: 0
}

@media(max-width:991px) {
    .faq-page__search {
        margin-left: 0;
        margin-right: auto;
        margin-bottom: 40px
    }
}

.faq-page__search__item {
    position: relative;
    background-color: var(--voldor-border-color, #F4F2EE)
}

.faq-page__search__item input[type=search],
.faq-page__search__item input[type=text] {
    outline: 0;
    width: 100%;
    height: 60px;
    background-color: var(--voldor-border-color, #F4F2EE);
    padding-left: 55px;
    padding-right: 20px;
    transition: all 500ms ease;
    border: 0;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: normal
}

.faq-page__search__item input[type=search]:focus,
.faq-page__search__item input[type=text]:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    border: 0
}

.faq-page__search__item input[type=search]::placeholder,
.faq-page__search__item input[type=text]::placeholder {
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: normal
}

.faq-page__search__item button[type=submit] {
    border: 0;
    outline: 0;
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    width: auto;
    font-size: 18px;
    line-height: 1;
    color: var(--voldor-text, #797577);
    transition: all .4s ease-in-out
}

.faq-page__search__item button[type=submit]:hover {
    color: var(--voldor-base, #AE8F62)
}

.faq-contact__inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: var(--voldor-secondary, #241F21);
    padding: 40px 30px 30px
}

.faq-contact__inner__item {
    display: flex;
    align-items: start;
    gap: 20px;
    width: 100%
}

@media(max-width:575px) {
    .faq-contact__inner__item {
        padding: 20px
    }
}

@media(max-width:400px) {
    .faq-contact__inner__item {
        flex-direction: column;
        justify-content: start;
        align-items: start
    }
}

.faq-contact__inner__item__icon {
    max-width: 60px;
    width: 100%;
    height: 60px;
    border-radius: 50%;
    background: var(--voldor-base, #AE8F62);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: var(--voldor-white, #fff);
    transition: all .4s ease-in-out
}

.faq-contact__inner__item:not(:last-of-type) {
    border-bottom: 1px solid rgba(var(--voldor-gray-rgb, 230, 224, 216), 0.2);
    padding-bottom: 17px;
    margin-bottom: 30px
}

@media(max-width:991px) {
    .faq-contact__inner__item:not(:last-of-type) {
        border-bottom: 0 solid rgba(var(--voldor-gray-rgb, 230, 224, 216), 0.2)
    }
}

.faq-contact__inner__item__subtitle {
    color: var(--voldor-white, #fff);
    text-transform: uppercase;
    display: block;
    margin-top: -5px;
    margin-bottom: 5px;
    padding-bottom: 0;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%
}

@media(max-width:575px) {
    .faq-contact__inner__item__subtitle {
        font-size: 20px
    }
}

.faq-contact__inner__item__contact {
    color: var(--voldor-text, #797577);
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 197%
}

.faq-contact__inner__item__contact a {
    color: var(--voldor-white, #fff);
    font-weight: 600;
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 95%/0px 1px no-repeat;
    transition: all 500ms ease
}

.faq-contact__inner__item__contact a:hover {
    background-size: 100% 1px
}

.faq-contact__inner__item__contact a:hover {
    color: var(--voldor-base, #AE8F62)
}

.faq-contact__inner__item:hover .faq-contact__inner__item__icon {
    background: var(--voldor-white, #fff);
    color: var(--voldor-base, #AE8F62)
}

.faq-contact__inner__item:hover .faq-contact__inner__item__icon i {
    animation: bounceIn 1s linear
}

.faqs-two {
    padding: 120px 0
}

@media(max-width:991px) {
    .faqs-two {
        padding: 100px 0
    }
}

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

.faqs-two__left {
    margin-left: 20px
}

@media(max-width:1199px) {
    .faqs-two__left {
        margin-left: 0
    }
}

.faqs-two__thumb {
    position: relative;
    z-index: 1;
    padding-bottom: 35px
}

@media(max-width:1199px) {
    .faqs-two__thumb__item img {
        object-fit: cover;
        width: 100%
    }
}

.faqs-two__thumb__logo {
    position: absolute;
    top: 0;
    left: 40px
}

.faqs-two__thumb__logo .voldor-logo {
    display: block;
    padding: 0 40px 20px 30px;
    background: var(--voldor-white, #fff)
}

.faqs-two__thumb__funfact {
    position: absolute;
    bottom: 3px;
    left: 48px
}

.faqs-two__thumb__funfact__item {
    background: var(--voldor-base, #AE8F62);
    padding: 40px 30px
}

.faqs-two__thumb__funfact__item__count {
    margin-top: -5px;
    display: flex;
    align-items: center;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase;
    color: var(--voldor-white, #fff)
}

.faqs-two__thumb__funfact__item__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 181%;
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: -10px
}

.faqs-two__thumb__funfact::after {
    content: "";
    width: 48px;
    height: 33px;
    position: absolute;
    bottom: 0;
    left: -47px;
    background: var(--voldor-text, #797577);
    clip-path: polygon(100% 0, 0 0, 100% 100%)
}

.faqs-two__top .sec-title {
    padding-bottom: 30px
}

.package-card {
    border: 1px solid var(--voldor-gray, #E6E0D8);
    padding: 40px 50px 50px;
    position: relative;
    z-index: 1
}

@media(max-width:767px) {
    .package-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }
}

.package-card__head {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8);
    padding-bottom: 27px;
    margin-bottom: 23px
}

.package-card__head__content {
    position: relative;
    margin-top: -3px
}

.package-card__head__price {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--voldor-secondary, #241F21);
    font-size: 47.5177px;
    margin-bottom: 0;
    padding-bottom: 0
}

.package-card__head__price .sup {
    bottom: 0;
    font-size: 23.7588px;
    margin-bottom: -8px;
    margin-right: -5px
}

.package-card__head__name {
    margin-top: 3px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0
}

.package-card__head__icon {
    font-size: 56px;
    color: var(--voldor-base, #AE8F62);
    position: absolute;
    top: -25px;
    line-height: 1;
    right: 10px;
    transition: all .4s ease-in-out
}

.package-card::after {
    content: "";
    position: absolute;
    -webkit-mask: url('data:image/svg+xml;utf8,  <svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 174.000000 156.000000" > <g transform="translate(0.000000,156.000000) scale(0.050000,-0.050000)"> <path d="M21 3075 c11 -25 198 -436 415 -915 l395 -870 884 -10 883 -10 423 -610 c233 -335 431 -619 441 -629 11 -11 18 610 18 1535 l0 1554 -1740 0 -1739 0 20 -45z"/> </g> </svg> ');
    mask: url('data:image/svg+xml;utf8,  <svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 174.000000 156.000000" > <g transform="translate(0.000000,156.000000) scale(0.050000,-0.050000)"> <path d="M21 3075 c11 -25 198 -436 415 -915 l395 -870 884 -10 883 -10 423 -610 c233 -335 431 -619 441 -629 11 -11 18 610 18 1535 l0 1554 -1740 0 -1739 0 20 -45z"/> </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;
    width: 174px;
    height: 156px;
    background: var(--voldor-border-color, #F4F2EE);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transition: all .4s ease-in-out
}

.package-card::before {
    content: "";
    -webkit-mask: url('data:image/svg+xml;utf8,  <svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.000000 53.000000">  <g transform="translate(0.000000,53.000000) scale(0.050000,-0.050000)"> <path d="M19 1015 c10 -25 71 -162 136 -305 l117 -260 293 -6 293 -5 134 -195 c74 -106 142 -203 151 -213 9 -10 17 215 17 505 l0 524 -580 0 -579 0 18 -45z"/> </g> </svg> ');
    mask: url('data:image/svg+xml;utf8,  <svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.000000 53.000000">  <g transform="translate(0.000000,53.000000) scale(0.050000,-0.050000)"> <path d="M19 1015 c10 -25 71 -162 136 -305 l117 -260 293 -6 293 -5 134 -195 c74 -106 142 -203 151 -213 9 -10 17 215 17 505 l0 524 -580 0 -579 0 18 -45z"/> </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;
    width: 58px;
    height: 53px;
    background: var(--voldor-white, #fff);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1
}

.package-card__content__text {
    margin-top: -10px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 261%;
    color: var(--voldor-secondary, #241F21);
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-bottom: 0
}

.package-card__content__list {
    margin-bottom: 47px
}

.package-card__content__list__item {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.375;
    color: var(--voldor-text, #797577)
}

.package-card__content__list__item i {
    color: var(--voldor-base, #AE8F62);
    margin-right: 10px
}

.package-card__content__list__item+.package-card__content__list__item {
    margin-top: 13px
}

.package-card:hover::after {
    background: var(--voldor-base, #AE8F62)
}

.package-card:hover .package-card__head__icon {
    color: var(--voldor-white, #fff)
}

.package-page {
    padding: 120px 0;
    padding-top: 100px
}

@media(max-width:767px) {
    .package-page {
        padding: 80px 0;
        padding-top: 60px
    }
}

.package-page__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px
}

@media(max-width:767px) {
    .package-page__inner {
        margin-bottom: 40px
    }
}

.package-page__inner__filter {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--voldor-border-color, #F4F2EE)
}

.package-page__inner__filter button::after {
    background: var(--voldor-border-color, #F4F2EE)
}

.package-page__inner__filter button.active-btn,
.package-page__inner__filter button:hover {
    color: var(--voldor-secondary, #241F21)
}

.package-page__inner__filter button.active-btn::after,
.package-page__inner__filter button:hover::after {
    background: var(--voldor-border-color, #F4F2EE);
    height: 380%
}

@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0)
    }

    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center
    }

    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }

    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center
    }
}

@keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0)
    }

    50% {
        transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px)
    }
}

@keyframes bgSlide {
    0% {
        background-position: 0 0
    }

    20% {
        background-position: -100px 0
    }

    40% {
        background-position: -200px 0
    }

    60% {
        background-position: -150px 0
    }

    80% {
        background-position: -100px 0
    }

    100% {
        background-position: 0 0
    }
}

@keyframes iconTranslateX {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes bounceIn2 {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

    50% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}

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

    50% {
        transform: scale(1.3)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes scale2 {
    0% {
        transform: scale(0.5)
    }

    50% {
        transform: scale(0.8)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes leftRight {
    0% {
        transform: translateX(0px)
    }

    50% {
        transform: translateX(10px)
    }

    100% {
        transform: translateX(0px)
    }
}

@keyframes topBottom {
    0% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(10px)
    }

    100% {
        transform: translateY(0px)
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(90deg)
    }

    100% {
        transform: rotate(180deg)
    }
}

@keyframes moveHorizontal {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    50% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes textScrolling {
    0% {
        transform: translate3d(-100%, 0, 0)
    }

    100% {
        transform: translate3d(0%, 0, 0)
    }
}

@keyframes playVideo5 {
    0% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1)
    }

    40% {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1)
    }

    80% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1)
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1)
    }
}

.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(--voldor-white-rgb, 255, 255, 255), 0.1)
}

.mobile-nav__wrapper .home-showcase__inner {
    padding: 15px 0;
    background-color: transparent;
    box-shadow: none
}

.mobile-nav__wrapper .home-showcase__title {
    color: var(--voldor-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(--voldor-black, #120F10);
    opacity: .3;
    cursor: url(../images/close.png), auto
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--voldor-black2, #1B1216);
    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(--voldor-white, #fff);
    cursor: pointer
}

.mobile-nav__close:hover {
    color: var(--voldor-base, #AE8F62)
}

.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(--voldor-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(--voldor-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(--voldor-white, #fff);
    font-size: 16px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase;
    font-weight: 500;
    height: 46px;
    align-items: center;
    transition: 500ms
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--voldor-base, #AE8F62)
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--voldor-base, #AE8F62);
    border: 0;
    outline: 0;
    color: var(--voldor-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(--voldor-white, #fff);
    color: var(--voldor-black, #120F10)
}

.mobile-nav__social {
    display: flex;
    align-items: center
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--voldor-secondary, #241F21);
    transition: 500ms;
    width: 35px;
    height: 35px;
    background: var(--voldor-gray, #E6E0D8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

.mobile-nav__social a+a {
    margin-left: 20px
}

.mobile-nav__social a:hover {
    color: var(--voldor-base, #AE8F62);
    background: var(--voldor-white, #fff)
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px
}

.mobile-nav__contact li {
    color: var(--voldor-white, #fff);
    font-size: 16px;
    font-weight: 600;
    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(--voldor-base, #AE8F62)
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--voldor-base, #AE8F62);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    margin-right: 10px;
    color: var(--voldor-white, #fff)
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
    display: none
}

.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 .8s ease-in-out;
    -khtml-transition: transform .8s ease-in-out;
    -moz-transition: transform .8s ease-in-out;
    -ms-transition: transform .8s ease-in-out;
    -o-transition: transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
    transition-delay: 0s;
    transition-delay: .3s;
    -webkit-transition-delay: .3s;
    background-color: #000;
    opacity: .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 .5s 0s, width .8s .8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform .2s 0s;
    -khtml-transition: opacity .5s 0s, width .8s .8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform .2s 0s;
    -moz-transition: opacity .5s 0s, width .8s .8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform .2s 0s;
    -ms-transition: opacity .5s 0s, width .8s .8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform .2s 0s;
    -o-transition: opacity .5s 0s, width .8s .8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform .2s 0s;
    transition: opacity .5s 0s, width .8s .8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform .2s 0s;
    transition-delay: 0s, 0.8s, 0s;
    transition-delay: 0s, 0.4s, 0s;
    transition-delay: .2s;
    -webkit-transition-delay: .2s
}

.search-popup__form {
    position: relative
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
    width: 100%;
    background-color: var(--voldor-white, #fff);
    font-size: 16px;
    color: var(--voldor-heading-font, "Barlow", sans-serif);
    border: 0;
    outline: 0;
    height: 66px;
    padding-left: 30px
}

.search-popup__form .voldor-btn {
    padding: 0;
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    font-size: 24px
}

.search-popup__form .voldor-btn i {
    margin: 0
}

.search-popup__form .voldor-btn::after {
    display: none
}

.search-popup__form .voldor-btn:hover {
    color: var(--voldor-base, #AE8F62);
    background: var(--voldor-secondary, #241F21)
}

.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: .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: .7s;
    -webkit-transition-delay: .7s
}

.page-header {
    position: relative;
    z-index: 1;
    padding-top: 210px;
    padding-bottom: 195px
}

@media(max-width:991px) {
    .page-header {
        padding-top: 150px;
        padding-bottom: 120px
    }
}

@media(max-width:767px) {
    .page-header {
        padding-top: 100px;
        padding-bottom: 80px
    }
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1
}

.page-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.6)
}

.page-header .container {
    position: relative;
    z-index: 10;
    text-align: center
}

.page-header__title {
    margin: 0;
    color: var(--voldor-white, #fff);
    text-transform: uppercase;
    margin-bottom: 2px;
    padding-bottom: 0;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 94%
}

@media(max-width:767px) {
    .page-header__title {
        font-size: 40px
    }
}

.ostech-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0
}

@media(min-width:768px) {
    .ostech-breadcrumb {
        margin-bottom: 7px
    }
}

.ostech-breadcrumb li {
    display: flex;
    align-items: center
}

.ostech-breadcrumb li:not(:last-of-type)::after {
    content: "/";
    position: relative;
    top: 0;
    margin-left: 7px;
    margin-right: 7px;
    color: var(--voldor-white, #fff);
    font-size: 16px;
    font-weight: 600
}

.ostech-breadcrumb li span,
.ostech-breadcrumb li a {
    display: inline-flex;
    color: var(--voldor-white, #fff);
    font-size: 16px;
    font-weight: 600;
    line-height: 293.75%;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

.ostech-breadcrumb li a:hover {
    color: var(--voldor-base, #AE8F62)
}

.pronation_widget {
    margin-top: 30px
}

.pronation_widget ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0
}

.pronation_widget ul a {
    display: inline-block;
    padding: .5px 20px;
    border: 1px solid var(--voldor-gray, #E6E0D8);
    color: var(--voldor-secondary, #241F21);
    transition: all 500ms ease-in-out;
    font-size: 20px;
    line-height: 235%;
    font-size: 20px;
    font-weight: 600
}

.pronation_widget ul a.active,
.pronation_widget ul a:hover {
    background-color: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff);
    border: 1px solid var(--voldor-base, #AE8F62)
}

.google-map {
    position: relative
}

.google-map iframe {
    position: relative;
    display: block;
    border: 0;
    height: 450px;
    width: 100%;
    mix-blend-mode: luminosity
}

.google-map__contact {
    overflow: hidden;
    background-color: var(--voldor-border-color, #F4F2EE)
}

.contact-map {
    position: relative
}

.contact-map .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 1920px
}

.client-carousel {
    padding: 80px 0
}

@media(min-width:992px) {
    .client-carousel {
        padding: 120px 0
    }
}

.client-carousel--one {
    background: var(--voldor-base, #AE8F62)
}

.client-carousel__one__item img {
    opacity: .2;
    transition: all 500ms ease;
    max-width: 100%;
    width: auto !important
}

.client-carousel__one__item:hover img {
    opacity: 1
}

.client-carousel__top {
    margin-bottom: 55px;
    position: relative;
    z-index: 1
}

.client-carousel__top::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    content: "";
    height: 1px;
    background-color: #E6E0D8;
    z-index: -1
}

.client-carousel__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    position: relative;
    display: inline-block;
    background: var(--voldor-white, #fff);
    padding: 0 20px
}

.client-carousel-one {
    position: relative;
    background: var(--voldor-white, #fff);
    padding: 0 0 60px
}

.client-carousel-one .client-carousel__one {
    padding: 74px 0 0
}

.client-carousel-one .owl-theme .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: 2;
    line-height: .8
}

.client-carousel-one .owl-theme .owl-nav button {
    width: 26px;
    height: 27px;
    background-color: var(--voldor-gray, #E6E0D8);
    margin: 0 2.5px;
    padding: 0;
    transition: all 500ms ease;
    font-size: 12px;
    color: var(--voldor-black, #120F10);
    text-align: center;
    font-size: 12px;
    line-height: 27px;
    border-radius: 0
}

.client-carousel-one .owl-theme .owl-nav button:hover {
    background-color: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.client-carousel-one .owl-theme .owl-nav::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    content: "";
    height: 1px;
    background-color: var(--voldor-border-color, #F4F2EE);
    z-index: -1
}

.client-carousel-one .owl-theme .owl-nav::after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    width: 110px;
    content: "";
    height: 1px;
    background-color: var(--voldor-white, #fff)
}

.client-carousel-one .client-carousel__one__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 103px;
    transition: all 500ms ease
}

.client-carousel-one .client-carousel__one__item img {
    transition: all 500ms ease;
    opacity: .2;
    max-width: 100%;
    width: auto
}

.client-carousel-one .client-carousel__one__item:hover img {
    opacity: .6
}

.client-carousel-three__three {
    padding: 120px 0;
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8)
}

@media(max-width:991px) {
    .client-carousel-three__three {
        padding: 100px 0
    }
}

@media(max-width:767px) {
    .client-carousel-three__three {
        padding: 80px 0
    }
}

.client-carousel-three .client-carousel__one__item img {
    opacity: .2;
    transition: all 500ms ease;
    max-width: 100%;
    width: auto !important;
    filter: grayscale(80%);
    cursor: pointer
}

.client-carousel-three .client-carousel__one__item:hover img {
    opacity: 1
}

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

.hero-one .container {
    max-width: 1270px
}

.hero-one__carousel {
    position: relative;
    width: 100%
}

.hero-one__carousel .owl-dots {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    text-align: left;
    bottom: 80px;
    transform: translateY(-50%);
    width: 140px;
    left: 18%
}

@media(max-width:1400px) {
    .hero-one__carousel .owl-dots {
        width: 60px
    }
}

@media(max-width:1299px) {
    .hero-one__carousel .owl-dots {
        width: 40px;
        right: 10%;
        left: auto
    }
}

@media(max-width:991px) {
    .hero-one__carousel .owl-dots {
        width: 40px;
        right: auto;
        left: 45%;
        bottom: 40px
    }
}

@media(max-width:575px) {
    .hero-one__carousel .owl-dots {
        width: 40px;
        right: auto;
        left: 40%;
        bottom: 40px
    }
}

.hero-one__carousel .owl-dots .owl-dot {
    display: block;
    margin: 6px 0
}

@media(max-width:767px) {
    .hero-one__carousel .owl-dots .owl-dot {
        margin: 0 6px
    }
}

.hero-one__carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background-color: var(--voldor-white, #fff);
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    position: relative
}

.hero-one__carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    border: 1px solid var(--voldor-white, #fff);
    transform: scale(2.3);
    border-radius: 50%;
    visibility: hidden;
    opacity: 0
}

.hero-one__carousel .owl-dots .owl-dot:hover span,
.hero-one__carousel .owl-dots .owl-dot.active span {
    background-color: var(--voldor-base, #AE8F62)
}

.hero-one__carousel .owl-dots .owl-dot:hover span::after,
.hero-one__carousel .owl-dots .owl-dot.active span::after {
    visibility: visible;
    opacity: 1
}

.hero-one__item {
    position: relative;
    padding: 165px 0 190px;
    height: 860px
}

@media(max-width:1199px) {
    .hero-one__item {
        padding: 150px 0 150px;
        height: auto
    }
}

@media(max-width:991px) {
    .hero-one__item {
        padding: 120px 0 120px;
        height: auto
    }
}

@media(max-width:767px) {
    .hero-one__item {
        padding: 100px 0 100px;
        height: auto
    }
}

.hero-one__item__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    transition: all 1500ms ease-in-out
}

.hero-one__item__bg::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(107.77deg, #241F21 22.16%, rgba(0, 0, 0, 0.83) 90.09%);
    opacity: .85
}

.hero-one__item__shape {
    position: absolute;
    top: 0;
    right: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateX(100%);
    opacity: 0
}

.hero-one__content {
    position: relative;
    display: inline-block;
    z-index: 3;
    overflow: hidden
}

.hero-one__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 800;
    font-size: 60px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    display: inline-block;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(200px)
}

.hero-one__title__top {
    display: inline-block;
    background: rgba(var(--voldor-base-rgb, 174, 143, 98), 0.8);
    padding: 5px 40px 10px
}

@keyframes bgColor {
    0% {
        background: rgba(var(--voldor-base-rgb, 174, 143, 98), 0.8)
    }

    50% {
        background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.9)
    }

    100% {
        background: rgba(var(--voldor-base-rgb, 174, 143, 98), 0.8)
    }
}

.hero-one__title__overlay {
    background-color: var(--voldor-white, #fff);
    width: 25%;
    transform: scaleX(1);
    height: calc(100% - 2px);
    display: block;
    position: absolute;
    transition: 1000ms cubic-bezier(0.65, 0, 0.076, 1);
    transition-delay: 2s;
    z-index: 1
}

.hero-one__title__overlay:nth-child(2),
.hero-one__title__overlay:nth-child(4) {
    top: 1px
}

.hero-one__title__overlay:nth-child(1),
.hero-one__title__overlay:nth-child(3) {
    bottom: 1px
}

.hero-one__title__overlay:nth-child(2) {
    left: 25%
}

.hero-one__title__overlay:nth-child(4) {
    left: 75%
}

.hero-one__title__overlay:nth-child(1) {
    left: 0
}

.hero-one__title__overlay:nth-child(3) {
    left: 50%
}

@media(max-width:1300px) {
    .hero-one__title {
        font-size: 70px
    }
}

@media(max-width:991px) {
    .hero-one__title {
        font-size: 60px
    }
}

@media(max-width:767px) {
    .hero-one__title {
        font-size: 50px
    }
}

@media(max-width:575px) {
    .hero-one__title {
        font-size: 40px
    }
}

.hero-one__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 200%;
    color: var(--voldor-border-color, #F4F2EE);
    max-width: 678px;
    width: 100%;
    margin-bottom: 40px;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateX(500px);
    opacity: 0
}

.hero-one__btn {
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(200px)
}

.hero-one__btn a::after {
    background: var(--voldor-white, #fff)
}

.hero-one__btn a:hover {
    color: var(--voldor-secondary, #241F21)
}

.hero-one .active .hero-one__item__bg {
    transition: all 1500ms ease-in-out;
    animation: heroScale 12s linear;
    animation-delay: 1100ms
}

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

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1.2)
    }
}

.hero-one .active .hero-one__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms
}

.hero-one .active .hero-one__title__top {
    animation: bgColor 3s ease-in-out infinite
}

.hero-one .active .hero-one__text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1100ms
}

.hero-one .active .hero-one__title__overlay {
    transform: scaleX(0)
}

.hero-one .active .hero-one__btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms
}

.hero-one .active .hero-one__item__shape {
    transform: translateX(0%);
    opacity: 1;
    transition-delay: 1700ms
}

.hero-one__thumb {
    width: 280px;
    height: 110px;
    overflow: hidden;
    transform: rotate(90deg) translateX(30%);
    position: absolute;
    top: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2
}

@media(max-width:1500px) {
    .hero-one__thumb {
        left: -5.5%
    }
}

@media(max-width:1299px) {
    .hero-one__thumb {
        top: auto;
        bottom: 50px;
        left: 0;
        transform: rotate(0deg) translateX(0%)
    }
}

@media(max-width:1199px) {
    .hero-one__thumb {
        top: auto;
        bottom: 20px;
        left: 0;
        transform: rotate(0deg) translateX(0%)
    }
}

@media(max-width:991px) {
    .hero-one__thumb {
        display: none;
        padding: 180px 0 120px;
        height: auto
    }
}

.hero-one__thumb__carousel .active.center .hero-one__thumb__item {
    transform: scaleY(1.2);
    border: 7px solid var(--voldor-white, #fff)
}

.hero-one__thumb .owl-carousel .owl-stage-outer {
    overflow: none !important
}

.hero-one__thumb__item {
    display: block;
    position: relative
}

.hero-one__thumb__item__meta-thumb {
    display: block;
    position: relative
}

.hero-one__thumb__item__meta-thumb img {
    object-fit: cover;
    text-align: center;
    height: 100%
}

.hero-two__carousel {
    position: relative;
    width: 100%
}

.hero-two__carousel .owl-dots {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    text-align: left;
    bottom: 70px;
    transform: translateX(-35%);
    width: 140px;
    left: 50%
}

@media(max-width:1400px) {
    .hero-two__carousel .owl-dots {
        width: 60px
    }
}

@media(max-width:1199px) {
    .hero-two__carousel .owl-dots {
        width: 40px
    }
}

@media(max-width:991px) {
    .hero-two__carousel .owl-dots {
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        margin: auto;
        left: 47%;
        top: auto
    }
}

.hero-two__carousel .owl-dots .owl-dot {
    display: block;
    margin: 6px 0
}

@media(max-width:767px) {
    .hero-two__carousel .owl-dots .owl-dot {
        margin: 0 6px
    }
}

.hero-two__carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background-color: var(--voldor-white, #fff);
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    position: relative
}

.hero-two__carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    border: 1px solid var(--voldor-white, #fff);
    transform: scale(2.3);
    border-radius: 50%;
    visibility: hidden;
    opacity: 0
}

.hero-two__carousel .owl-dots .owl-dot:hover span,
.hero-two__carousel .owl-dots .owl-dot.active span {
    background-color: var(--voldor-base, #AE8F62)
}

.hero-two__carousel .owl-dots .owl-dot:hover span::after,
.hero-two__carousel .owl-dots .owl-dot.active span::after {
    visibility: visible;
    opacity: 1
}

.hero-two .container {
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto
}

.hero-two__item {
    position: relative;
    padding: 368px 0 205px;
    height: 955px
}

@media(max-width:1199px) {
    .hero-two__item {
        padding: 250px 0 180px;
        height: auto
    }
}

@media(max-width:991px) {
    .hero-two__item {
        padding: 180px 0 150px;
        height: auto
    }
}

@media(max-width:767px) {
    .hero-two__item {
        padding: 180px 0 120px;
        height: auto
    }
}

.hero-two__item__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    transition: all 1500ms ease-in-out
}

.hero-two__item__bg::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(107.77deg, #241F21 22.16%, rgba(0, 0, 0, 0.83) 90.09%);
    opacity: .8
}

.hero-two__item__shape {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateX(-100%);
    opacity: 0
}

@media(max-width:991px) {
    .hero-two__item__shape {
        display: none
    }
}

.hero-two__content {
    position: relative;
    display: inline-block;
    z-index: 3;
    overflow: hidden
}

.hero-two__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 800;
    font-size: 100px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    text-align: center;
    opacity: 0;
    transition: transform 1500ms ease, opacity 1200ms ease;
    transform: translateY(200px)
}

.hero-two__title__overlay {
    background-color: var(--voldor-white, #fff);
    width: 25%;
    transform: scaleX(1);
    height: calc(100% - 2px);
    display: block;
    position: absolute;
    transition: 1000ms cubic-bezier(0.65, 0, 0.076, 1);
    transition-delay: 2s;
    z-index: 1
}

.hero-two__title__overlay:nth-child(2),
.hero-two__title__overlay:nth-child(4) {
    top: 1px
}

.hero-two__title__overlay:nth-child(1),
.hero-two__title__overlay:nth-child(3) {
    bottom: 1px
}

.hero-two__title__overlay:nth-child(2) {
    left: 25%
}

.hero-two__title__overlay:nth-child(4) {
    left: 75%
}

.hero-two__title__overlay:nth-child(1) {
    left: 0
}

.hero-two__title__overlay:nth-child(3) {
    left: 50%
}

@media(max-width:1300px) {
    .hero-two__title {
        font-size: 70px
    }
}

@media(max-width:991px) {
    .hero-two__title {
        font-size: 60px
    }
}

@media(max-width:767px) {
    .hero-two__title {
        font-size: 50px
    }
}

@media(max-width:575px) {
    .hero-two__title {
        font-size: 40px
    }
}

.hero-two__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 200%;
    color: var(--voldor-white, #fff);
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    text-align: center;
    transition: transform 1500ms ease, opacity 1300ms ease;
    transform: translateY(500px);
    opacity: 0
}

.hero-two__btn {
    transition: transform 1500ms ease, opacity 1300ms ease;
    transform: translateY(200px);
    text-align: center
}

.hero-two__btn a::after {
    background: var(--voldor-white, #fff)
}

.hero-two__btn a:hover {
    color: var(--voldor-secondary, #241F21)
}

.hero-two .active .hero-two__item__bg {
    animation: heroScale 12s linear;
    animation-delay: 1100ms
}

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

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1.2)
    }
}

.hero-two .active .hero-two__title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1500ms
}

.hero-two .active .hero-two__text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1500ms
}

.hero-two .active .hero-two__title__overlay {
    transform: scaleX(0)
}

.hero-two .active .hero-two__btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms
}

.hero-two .active .hero-two__item__shape {
    transform: translateX(0%);
    opacity: 1;
    transition-delay: 1700ms
}

.hero-three .owl-dots {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    text-align: left;
    top: 40%;
    transform: translateX(-35%);
    width: 140px;
    left: 5%
}

@media(max-width:1400px) {
    .hero-three .owl-dots {
        left: 1%
    }
}

@media(max-width:991px) {
    .hero-three .owl-dots {
        flex-direction: row;
        top: auto;
        bottom: 50px;
        left: 10%;
        transform: translateX(50%)
    }
}

.hero-three .owl-dots .owl-dot {
    display: block;
    margin: 6px 0
}

@media(max-width:767px) {
    .hero-three .owl-dots .owl-dot {
        margin: 0 6px
    }
}

.hero-three .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background-color: var(--voldor-white, #fff);
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    position: relative
}

.hero-three .owl-dots .owl-dot span::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    border: 1px solid var(--voldor-white, #fff);
    transform: scale(2.3);
    border-radius: 50%;
    visibility: hidden;
    opacity: 0
}

.hero-three .owl-dots .owl-dot:hover span,
.hero-three .owl-dots .owl-dot.active span {
    background-color: var(--voldor-base, #AE8F62)
}

.hero-three .owl-dots .owl-dot:hover span::after,
.hero-three .owl-dots .owl-dot.active span::after {
    visibility: visible;
    opacity: 1
}

.hero-three__item {
    position: relative;
    padding: 220px 0 233px;
    height: 927px;
    overflow: hidden
}

@media(max-width:1199px) {
    .hero-three__item {
        padding: 180px 0 180px;
        height: auto
    }
}

@media(max-width:991px) {
    .hero-three__item {
        padding: 120px 0 100px;
        height: auto
    }
}

@media(max-width:767px) {
    .hero-three__item {
        padding: 100px 0 80px;
        height: auto
    }
}

.hero-three__item__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1
}

.hero-three__item__bg::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(107.77deg, #241F21 22.16%, rgba(0, 0, 0, 0.83) 90.09%);
    opacity: .9
}

.hero-three__item__shape {
    position: absolute;
    top: 0;
    right: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateX(100%)
}

@media(max-width:767px) {
    .hero-three__item__shape {
        display: none
    }
}

.hero-three__content {
    position: relative;
    display: inline-block;
    z-index: 3;
    overflow: hidden
}

.hero-three__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 800;
    font-size: 90px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    display: inline-block;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(200px);
    border-bottom: 1px solid var(--voldor-base, #AE8F62);
    padding-bottom: 20px
}

.hero-three__title__top {
    display: inline-block;
    color: var(--voldor-base, #AE8F62)
}

.hero-three__title__overlay {
    background-color: var(--voldor-white, #fff);
    width: 25%;
    transform: scaleX(1);
    height: calc(100% - 2px);
    display: block;
    position: absolute;
    transition: 1000ms cubic-bezier(0.65, 0, 0.076, 1);
    transition-delay: 2s;
    z-index: 1
}

.hero-three__title__overlay:nth-child(2),
.hero-three__title__overlay:nth-child(4) {
    top: 1px
}

.hero-three__title__overlay:nth-child(1),
.hero-three__title__overlay:nth-child(3) {
    bottom: 1px
}

.hero-three__title__overlay:nth-child(2) {
    left: 25%
}

.hero-three__title__overlay:nth-child(4) {
    left: 75%
}

.hero-three__title__overlay:nth-child(1) {
    left: 0
}

.hero-three__title__overlay:nth-child(3) {
    left: 50%
}

@media(max-width:1300px) {
    .hero-three__title {
        font-size: 70px
    }
}

@media(max-width:991px) {
    .hero-three__title {
        font-size: 60px
    }
}

@media(max-width:767px) {
    .hero-three__title {
        font-size: 50px
    }
}

@media(max-width:575px) {
    .hero-three__title {
        font-size: 40px
    }
}

.hero-three__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 200%;
    color: var(--voldor-border-color, #F4F2EE);
    max-width: 760px;
    width: 100%;
    margin-bottom: 40px;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateX(500px);
    opacity: 0
}

.hero-three__btn {
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(200px)
}

.hero-three__btn a::after {
    background: var(--voldor-white, #fff)
}

.hero-three__btn a:hover {
    color: var(--voldor-secondary, #241F21)
}

.hero-three .active .hero-three__item__bg {
    animation: heroScale 12s linear;
    animation-delay: 1100ms
}

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

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1.2)
    }
}

.hero-three .active .hero-three__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms
}

.hero-three .active .hero-three__text {
    opacity: .5;
    transform: translateX(0);
    transition-delay: 1100ms
}

.hero-three .active .hero-three__title__overlay {
    transform: scaleX(0)
}

.hero-three .active .hero-three__btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms
}

.hero-three .active .hero-three__item__shape {
    transform: translateX(0%);
    opacity: 1;
    transition-delay: 1700ms
}

.feature-one {
    padding-top: 120px;
    background: var(--voldor-white, #fff)
}

@media(max-width:991px) {
    .feature-one {
        padding-top: 100px
    }
}

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

.feature-one__item {
    position: relative;
    z-index: 1;
    background: var(--voldor-gray, #E6E0D8);
    padding-bottom: 20px;
    transition: all .4s ease-in-out
}

.feature-one__item__top {
    background: var(--voldor-text, #797577);
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    transition: all .4s ease-in-out
}

.feature-one__item__top__icon {
    max-width: 94px;
    width: 100%;
    height: 94px;
    background: var(--voldor-secondary, #241F21);
    color: var(--voldor-base, #AE8F62);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
    transition: all .4s ease-in-out
}

.feature-one__item__top__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 146%;
    text-transform: uppercase;
    color: var(--voldor-white, #fff)
}

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

.feature-one__item__top__title a:hover {
    background-size: 100% 1px
}

.feature-one__item__content {
    margin-left: 20px;
    background: var(--voldor-white, #fff);
    padding: 20px 30px 20px 25px;
    position: relative;
    margin-top: -20px
}

.feature-one__item__content::after {
    content: "";
    width: 40px;
    height: 60px;
    background: var(--voldor-gray, #E6E0D8);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all .4s ease-in-out;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%)
}

.feature-one__item__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 90%;
    color: var(--voldor-secondary, #241F21);
    margin-bottom: 0;
    padding-bottom: 0
}

.feature-one__item:hover {
    background: var(--voldor-border-color, #F4F2EE)
}

.feature-one__item:hover .feature-one__item__top {
    background: var(--voldor-secondary, #241F21)
}

.feature-one__item:hover .feature-one__item__top__icon {
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.feature-one__item:hover .feature-one__item__top__icon i {
    animation: bounceIn 1s linear
}

.feature-one__item:hover .feature-one__item__content::after {
    background: var(--voldor-border-color, #F4F2EE)
}

.about-one {
    padding: 120px 0;
    background: var(--voldor-white, #fff)
}

.about-one--page {
    padding-top: 160px
}

@media(max-width:991px) {
    .about-one--page {
        padding-top: 130px 0
    }
}

@media(max-width:767px) {
    .about-one--page {
        padding-top: 110px 0
    }
}

@media(max-width:991px) {
    .about-one {
        padding: 100px 0
    }
}

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

.about-one__left {
    position: relative;
    margin-left: -30px;
    margin-right: 80px
}

@media(max-width:1199px) {
    .about-one__left {
        margin-left: 0;
        margin-right: 0
    }
}

.about-one__thumb {
    position: relative
}

@media(max-width:1199px) {
    .about-one__thumb {
        margin-bottom: 30px
    }
}

.about-one__thumb__item {
    position: relative
}

.about-one__thumb__item img {
    object-fit: cover;
    width: auto
}

@media(max-width:1199px) {
    .about-one__thumb__item img {
        object-fit: cover;
        width: 100%
    }
}

.about-one__thumb__item--two {
    position: relative;
    margin-top: -175px;
    margin-left: -100px
}

@media(max-width:1199px) and (min-width:992px) {
    .about-one__thumb__item--two {
        margin-top: -100px
    }

    .about-one__thumb__item--two img {
        max-width: 80%
    }
}

@media(max-width:991px) {
    .about-one__thumb__item--two {
        margin-top: -100px;
        margin-left: -50px
    }

    .about-one__thumb__item--two img {
        object-fit: cover;
        width: 70%
    }
}

.about-one__thumb::after {
    content: "";
    position: absolute;
    top: -40px;
    left: -45px;
    width: 226px;
    height: 325px;
    background: transparent;
    border: 15px solid var(--voldor-base, #AE8F62);
    z-index: -1;
    animation: topBottom 3s ease-in-out infinite
}

.about-one__funfact__item {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: var(--voldor-base, #AE8F62);
    text-align: center;
    display: inline-block;
    padding: 40px
}

.about-one__funfact__item__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    margin-bottom: -5px;
    padding-bottom: 0
}

.about-one__funfact__item__count {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 52.1212px;
    line-height: 65%;
    padding-bottom: 0;
    color: var(--voldor-white, #fff);
    text-shadow: 0 0 .1px currentColor;
    margin-bottom: 18px
}

.about-one__right {
    margin-left: -30px
}

@media(max-width:1199px) {
    .about-one__right {
        margin-left: 0
    }
}

.about-one__top {
    margin-bottom: 25px
}

.about-one__top .sec-title {
    padding-bottom: 20px
}

.about-one__top__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%
}

.about-one__progress {
    margin-bottom: 40px
}

.about-one__progress+.team-skills__progress {
    margin-top: 20px
}

@media(min-width:992px) {
    .about-one__progress+.team-skills__progress {
        margin-top: 34px
    }
}

.about-one__progress__title {
    margin-bottom: 16px;
    text-shadow: 0 0 0 .1px currentColor;
    color: var(--voldor-secondary, #241F21);
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px
}

.about-one__progress__bar {
    width: 100%;
    height: 8px;
    position: relative;
    border-radius: 4px;
    background-color: var(--voldor-border-color, #F4F2EE)
}

.about-one__progress__inner {
    position: absolute;
    height: 8px;
    border-radius: 4px;
    background-color: var(--voldor-secondary, #241F21);
    transition: all 700ms linear;
    width: 0
}

.about-one__progress__number {
    position: absolute;
    bottom: calc(100%+5px);
    right: 0;
    margin-bottom: 8px;
    color: var(--voldor-text, #797577);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px
}

.about-one__feature {
    display: flex;
    align-items: center;
    gap: 35px;
    width: 100%;
    margin-bottom: 35px
}

@media(max-width:575px) {
    .about-one__feature {
        flex-direction: column;
        justify-content: start;
        align-items: start
    }
}

.about-one__feature__item {
    display: flex;
    gap: 20px;
    align-items: center
}

.about-one__feature__item:hover .about-one__feature__icon {
    background: var(--voldor-secondary, #241F21)
}

.about-one__feature__item:hover .about-one__feature__icon i {
    animation: bounceIn 1s linear
}

.about-one__feature__icon {
    max-width: 70px;
    width: 100%;
    height: 70px;
    border-radius: 50%;
    background: var(--voldor-border-color, #F4F2EE);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: var(--voldor-base, #AE8F62);
    line-height: 1;
    transition: all .4s ease-in-out
}

.about-one__feature__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    max-width: 160px;
    width: 100%
}

.about-one__list {
    margin-bottom: 48px
}

.about-one__list__item {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--voldor-text, #797577);
    text-transform: capitalize
}

.about-one__list__item i {
    color: var(--voldor-base, #AE8F62);
    margin-right: 15px;
    font-size: 19px;
    transition: all .4s ease-in-out
}

.about-one__list__item:hover i {
    color: var(--voldor-secondary, #241F21)
}

.about-one__list__item+.about-one__list__item {
    margin-top: 15px
}

.about-two {
    padding: 120px 0
}

@media(max-width:991px) {
    .about-two {
        padding: 100px 0
    }
}

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

.about-two__left {
    margin-left: -125px
}

@media(max-width:991px) {
    .about-two__left {
        margin-left: auto
    }
}

.about-two__thumb {
    display: flex;
    gap: 20px
}

@media(max-width:575px) {
    .about-two__thumb {
        display: block
    }
}

.about-two__thumb__item {
    position: relative;
    z-index: 1
}

@media(max-width:1199px) {
    .about-two__thumb__item img {
        width: 100%;
        object-fit: cover
    }
}

.about-two__thumb__call {
    position: relative;
    margin-left: 45px;
    margin-right: 45px;
    margin-top: -55px
}

@media(max-width:1199px) and (min-width:991px) {
    .about-two__thumb__call {
        margin-left: 25px;
        margin-right: 25px
    }
}

@media(max-width:767px) {
    .about-two__thumb__call {
        margin-left: 15px;
        margin-right: 15px
    }
}

.about-two__thumb__call__item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--voldor-base, #AE8F62);
    padding: 20px 25px
}

.about-two__thumb__call__item:hover .about-two__thumb__icon {
    background: rgba(var(--voldor-white-rgb, 255, 255, 255), 0.07)
}

.about-two__thumb__call__item:hover .about-two__thumb__icon i {
    transform: rotateY(180deg)
}

.about-two__thumb__icon {
    max-width: 60px;
    width: 100%;
    height: 58px;
    background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.07);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--voldor-white, #fff);
    transition: all .4s ease-in-out
}

.about-two__thumb__icon i {
    color: inherit;
    transition: all .4s ease-in-out
}

.about-two__thumb__subtitle {
    display: block;
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 189%;
    text-transform: capitalize;
    color: var(--voldor-gray, #E6E0D8);
    margin-top: -7px;
    margin-bottom: -7px
}

.about-two__thumb__number {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 163%;
    color: var(--voldor-white, #fff);
    text-transform: uppercase;
    margin-top: -7px;
    margin-bottom: -7px;
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 95%/0px 1px no-repeat;
    transition: all 500ms ease
}

.about-two__thumb__number:hover {
    background-size: 100% 1px
}

.about-two__right {
    margin-left: -30px
}

@media(max-width:1199px) {
    .about-two__right {
        margin-left: 0
    }
}

.about-two__top {
    margin-bottom: 30px
}

.about-two__top .sec-title {
    padding-bottom: 20px
}

.about-two__top__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: var(--voldor-text, #797577)
}

.about-two__highlight {
    background: var(--voldor-border-color, #F4F2EE);
    padding: 30px 70px 30px 40px;
    position: relative;
    transition: all .4s ease-in-out;
    z-index: 1;
    margin-bottom: 37px
}

@media(max-width:767px) {
    .about-two__highlight {
        padding: 30px
    }
}

.about-two__highlight__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    margin-top: -8px;
    margin-bottom: -7px;
    transition: all .4s ease-in-out;
    padding-bottom: 0
}

@media(max-width:575px) {
    .about-two__highlight__text {
        font-size: 15px
    }
}

.about-two__highlight::after {
    position: absolute;
    content: "";
    top: 15%;
    left: 0;
    width: 5px;
    height: 70%;
    background: var(--voldor-base, #AE8F62);
    animation: topBottom 3s ease-in-out infinite
}

.about-two__highlight:hover {
    background: var(--voldor-secondary, #241F21)
}

.about-two__highlight:hover .about-two__highlight__text {
    color: var(--voldor-white, #fff)
}

.about-two__feature {
    margin-bottom: 50px
}

.about-two__feature__left {
    margin-right: -20px
}

.about-two__feature__funfact {
    padding: 15px;
    border: 1px solid var(--voldor-gray, #E6E0D8)
}

.about-two__funfact__item {
    background: var(--voldor-border-color, #F4F2EE);
    padding: 13px 10px 14px 25px;
    transition: all .4s ease-in-out
}

.about-two__funfact__item__count {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 113%;
    text-transform: uppercase;
    color: var(--voldor-base, #AE8F62);
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: -3px;
    padding-bottom: 0
}

.about-two__funfact__item__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    margin-bottom: 0;
    padding-bottom: 0
}

.about-two__funfact__item:hover {
    background: var(--voldor-gray, #E6E0D8)
}

.about-two__feature__right {
    margin-left: 10px
}

.about-two__feature__list {
    margin-bottom: 0
}

.about-two__feature__list__item {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--voldor-text, #797577);
    text-transform: capitalize;
    transition: all .4s ease-in-out
}

.about-two__feature__list__item i {
    color: var(--voldor-base, #AE8F62);
    margin-right: 10px;
    font-size: 18px;
    transition: all .4s ease-in-out
}

.about-two__feature__list__item:hover i {
    color: var(--voldor-secondary, #241F21)
}

.about-two__feature__list__item+.about-two__feature__list__item {
    margin-top: 13px
}

.about-three {
    padding: 0 0 120px
}

@media(max-width:991px) {
    .about-three {
        padding: 0 0 100px
    }
}

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

.about-three__left {
    margin-right: -30px
}

@media(max-width:1199px) {
    .about-three__left {
        margin-right: 0
    }
}

.about-three__right {
    margin-left: 50px
}

@media(max-width:1199px) {
    .about-three__right {
        margin-left: 0
    }
}

.about-three__top {
    margin-bottom: 30px
}

.about-three__top .sec-title {
    padding-bottom: 20px
}

.about-three__top__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: var(--voldor-text, #797577);
    margin-bottom: 0;
    padding-bottom: 0
}

.about-three__feature {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8)
}

.about-three__feature__left {
    margin-right: 20px
}

.about-three__feature__right {
    position: relative;
    z-index: 1
}

.about-three__feature__item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 50px
}

.about-three__feature__item__icon {
    max-width: 48px;
    width: 100%;
    height: 48px;
    background: var(--voldor-border-color, #F4F2EE);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: var(--voldor-base, #AE8F62);
    transition: all .4s ease-in-out
}

.about-three__feature__item__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    margin-bottom: 0;
    padding-bottom: 0
}

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

.about-three__feature__item__title a:hover {
    background-size: 100% 1px
}

.about-three__feature__item:hover .about-three__feature__item__icon {
    background: var(--voldor-secondary, #241F21)
}

.about-three__feature__item:hover .about-three__feature__item__icon i {
    animation: bounceIn 1s linear
}

.about-three__feature__item+.about-three__feature__item {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--voldor-gray, #E6E0D8)
}

.about-three__feature__list {
    margin-bottom: 0;
    margin-left: 0;
    background: var(--voldor-border-color, #F4F2EE);
    padding: 30px 25px 30px;
    margin-left: -55px;
    transition: all .4s ease-in-out
}

@media(max-width:1199px) and (min-width:991px) {
    .about-three__feature__list {
        margin-left: 0
    }
}

@media(max-width:575px) {
    .about-three__feature__list {
        margin-left: 0
    }
}

.about-three__feature__list__item {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-transform: capitalize;
    color: var(--voldor-text, #797577)
}

.about-three__feature__list__item i {
    font-size: 18px;
    margin-right: 10px;
    color: var(--voldor-secondary, #241F21)
}

.about-three__feature__list__item+.about-three__feature__list__item {
    margin-top: 12px
}

.about-three__feature__list::after {
    position: absolute;
    bottom: -10px;
    margin-left: -40px;
    margin-right: 15px;
    content: "";
    background: var(--voldor-base, #AE8F62);
    left: 0;
    right: 0;
    height: 30px;
    z-index: -1
}

@media(max-width:1199px) and (min-width:991px) {
    .about-three__feature__list::after {
        margin-left: 15px
    }
}

@media(max-width:575px) {
    .about-three__feature__list::after {
        margin-left: 15px
    }
}

.about-three__feature__list:hover {
    background: var(--voldor-gray, #E6E0D8)
}

.about-three__author {
    display: flex;
    align-items: center;
    margin-bottom: 40px
}

@media(max-width:1199px) and (min-width:991px) {
    .about-three__author {
        flex-direction: column;
        gap: 20px;
        align-items: start;
        justify-content: start
    }
}

@media(max-width:575px) {
    .about-three__author {
        flex-direction: column;
        gap: 20px;
        align-items: start;
        justify-content: start
    }
}

.about-three__author__man {
    display: flex;
    align-items: center;
    gap: 20px
}

.about-three__author__image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 50%;
    border: 3px solid var(--voldor-base, #AE8F62)
}

.about-three__author__image img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden
}

.about-three__author__sig {
    display: block
}

.about-three__author__deg {
    display: block;
    margin-top: 0;
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 179%;
    text-transform: uppercase;
    color: var(--voldor-text, #797577)
}

.about-three__author__left+.about-three__author__right {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid var(--voldor-gray, #E6E0D8);
    width: 100%
}

@media(max-width:1199px) and (min-width:991px) {
    .about-three__author__left+.about-three__author__right {
        margin-left: 0;
        padding-left: 0;
        border-left: 0 solid var(--voldor-gray, #E6E0D8)
    }
}

@media(max-width:575px) {
    .about-three__author__left+.about-three__author__right {
        margin-left: 0;
        padding-left: 0;
        border-left: 0 solid var(--voldor-gray, #E6E0D8)
    }
}

.about-three__author__call {
    display: flex;
    align-items: center;
    gap: 14px
}

.about-three__author__call__icon {
    max-width: 53px;
    width: 100%;
    height: 53px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--voldor-base, #AE8F62);
    background: var(--voldor-secondary, #241F21);
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out
}

.about-three__author__call__icon::after {
    content: "";
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--voldor-base, #AE8F62);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all .4s ease-in-out;
    z-index: -1
}

.about-three__author__call__dec {
    display: block;
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 179%;
    text-transform: uppercase;
    color: var(--voldor-text, #797577);
    margin-bottom: 5px
}

.about-three__author__call__number {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 108%;
    text-transform: uppercase;
    color: var(--voldor-base, #AE8F62);
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 95%/0px 1px no-repeat;
    transition: all 500ms ease
}

.about-three__author__call__number:hover {
    background-size: 100% 1px
}

.about-three__author__call:hover .about-three__author__call__icon {
    color: var(--voldor-white, #fff)
}

.about-three__author__call:hover .about-three__author__call__icon::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

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

.about-three__thumb__item--one {
    position: relative;
    z-index: 1
}

@media(max-width:1199px) {
    .about-three__thumb__item--one img {
        object-fit: cover;
        width: 100%
    }
}

.about-three__thumb__item--two {
    position: absolute;
    bottom: 0;
    background: var(--voldor-white, #fff);
    border-top: 20px solid var(--voldor-white, #fff);
    border-right: 20px solid var(--voldor-white, #fff);
    z-index: 1
}

@media(max-width:767px) {
    .about-three__thumb__item--two img {
        object-fit: cover;
        width: 100%
    }
}

.service-card {
    padding-top: 56px;
    padding-bottom: 45px
}

@media(max-width:767px) {
    .service-card {
        max-width: 400px;
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

.service-card__inner {
    background: var(--voldor-white, #fff);
    box-shadow: 0 6px 30px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-top: 1px;
    padding-bottom: 1px
}

.service-card__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--voldor-gray, #E6E0D8);
    width: 41px;
    height: 56px;
    clip-path: polygon(100% 0, 100% 100%, 0 0)
}

.service-card__icon {
    position: relative;
    margin-top: -57px;
    margin-left: 41px;
    width: 120px;
    height: 112px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--voldor-secondary, #241F21);
    font-size: 65px;
    color: var(--voldor-white, #fff);
    transition: all .4s ease-in-out
}

.service-card__content {
    margin: 25px 20px 20px 40px
}

.service-card__content__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 200%;
    color: var(--voldor-secondary, #241F21);
    text-transform: uppercase
}

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

.service-card__content__title a:hover {
    background-size: 100% 1px
}

.service-card__content__title a:hover {
    color: var(--voldor-base, #AE8F62)
}

.service-card__content__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    color: var(--voldor-text, #797577);
    margin-bottom: 0;
    padding-bottom: 0
}

.service-card__thumb {
    position: relative;
    margin-left: 40px;
    margin-bottom: -45px;
    overflow: hidden
}

.service-card__thumb__item {
    position: relative
}

.service-card__thumb__item img {
    object-fit: cover;
    width: 100%
}

.service-card__thumb a {
    position: absolute;
    bottom: 20px;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: var(--voldor-white, #fff);
    padding: 4px 20px;
    transform: translateX(-100%)
}

.service-card__thumb::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
    transition: all .4s ease-in-out
}

.service-card:hover .service-card__thumb::after {
    bottom: 0;
    height: 100%
}

.service-card:hover .service-card__thumb a {
    transform: translateX(0%);
    transition-duration: 1000ms
}

.service-card:hover .service-card__icon {
    /* background: var(--voldor-base, #AE8F62) */
}

.service-card:hover .service-card__icon i {
    animation: bounceIn 1s linear
}

.service-card-two {
    position: relative;
    background: var(--voldor-white, #fff)
}

.service-card-two__thumb {
    max-height: 395px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

.service-card-two__thumb__item {
    position: relative
}

.service-card-two__thumb__item img {
    object-fit: cover;
    width: 100%;
    transform: scale(1);
    transition: all .4s ease-in-out
}

.service-card-two__thumb__item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
    transition: all .4s ease-in-out
}

.service-card-two__thumb__link {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 74px;
    background: var(--voldor-white, #fff);
    font-size: 22px;
    color: var(--voldor-text, #797577);
    display: flex;
    justify-content: center;
    align-items: center
}

.service-card-two__thumb__link:hover {
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.service-card-two__thumb__link:hover i {
    transform: scale(1.2) rotate(30deg)
}

.service-card-two__content {
    position: relative;
    display: flex;
    z-index: 1;
    align-items: center;
    gap: 35px;
    background: var(--voldor-white, #fff)
}

.service-card-two__content::after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--voldor-base, #AE8F62);
    transition: all .4s ease-in-out;
    z-index: -1
}

.service-card-two__icon {
    width: 80px;
    height: 74px;
    background: var(--voldor-secondary, #241F21);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: var(--voldor-base, #AE8F62)
}

.service-card-two__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 240%;
    text-transform: uppercase
}

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

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

.service-card-two:hover .service-card-two__thumb .service-card-two__thumb__item img {
    transform: scale(1.1)
}

.service-card-two:hover .service-card-two__thumb .service-card-two__thumb__item::after {
    bottom: 0;
    height: 100%
}

.service-card-two:hover .service-card-two__content::after {
    width: 100%
}

.service-card-two:hover .service-card-two__title {
    color: var(--voldor-white, #fff)
}

.service-card-two:hover .service-card-two__icon i {
    animation: bounceIn 1s linear
}

.service-page {
    background: var(--voldor-white, #fff);
    padding: 120px 0
}

@media(max-width:991px) {
    .service-page {
        padding: 100px 0
    }
}

@media(max-width:767px) {
    .service-page {
        padding: 80px 0
    }
}

.service-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    height: 635px;
    mix-blend-mode: overlay
}

.service-page--two {
    padding-bottom: 170px
}

@media(max-width:1199px) {
    .service-page--two {
        padding-bottom: 100px
    }
}

@media(max-width:767px) {
    .service-page--two {
        padding-bottom: 80px
    }
}

.service-page--home {
    position: relative;
    z-index: 1
}

.service-page--home .container {
    max-width: 1600px
}

.service-page--home::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 635px;
    z-index: -2;
    background-color: var(--voldor-border-color, #F4F2EE)
}

.service-two {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--voldor-secondary, #241F21)
}

@media(max-width:991px) {
    .service-two {
        padding: 100px 0
    }
}

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

.service-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0
}

.service-two .sec-title .sec-title__title {
    color: var(--voldor-white, #fff)
}

.service-two__item {
    background: var(--voldor-white, #fff);
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out
}

.service-two__item__top {
    padding: 35px 25px 1px 30px;
    position: relative
}

.service-two__item__top__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 160%;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    margin-top: -10px;
    padding-bottom: 0;
    margin-bottom: 0
}

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

.service-two__item__top__title a:hover {
    background-size: 100% 1px
}

.service-two__item__top__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 162%;
    color: var(--voldor-text, #797577);
    padding-bottom: 0;
    margin-bottom: 33px;
    transition: all .4s ease-in-out
}

.service-two__item__top__icon {
    width: 90px;
    height: 85px;
    background: var(--voldor-white, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 52px;
    color: var(--voldor-secondary, #241F21);
    margin-bottom: -86px;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out
}

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

.service-two__item__thumb {
    position: relative
}

.service-two__item__thumb img {
    object-fit: cover;
    width: 100%
}

.service-two__item__thumb__shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease-in-out;
    z-index: 1
}

.service-two__item__thumb::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
    transition: all .4s ease-in-out
}

.service-two__item:hover {
    background: var(--voldor-base, #AE8F62)
}

.service-two__item:hover .service-two__item__top__title {
    color: var(--voldor-white, #fff)
}

.service-two__item:hover .service-two__item__top__text {
    color: var(--voldor-gray, #E6E0D8)
}

.service-two__item:hover .service-two__item__top__icon {
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.service-two__item:hover .service-two__item__top__icon i {
    animation: bounceIn 1s linear
}

.service-two__item:hover .service-two__item__thumb__shape {
    visibility: visible;
    opacity: .6
}

.service-two__item:hover .service-two__item__thumb::after {
    height: 100%
}

.service-two__carousel .owl-nav {
    display: none !important
}

.service-two__carousel .owl-dots {
    gap: 32px !important
}

.service-two__carousel .owl-dots .owl-dot span {
    border: none !important;
    background: var(--voldor-text, #797577) !important;
    border-radius: 50% !important
}

.service-two__carousel .owl-dots .owl-dot span:hover {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1) !important;
    background: var(--voldor-base, #AE8F62) !important
}

.service-two__carousel .owl-dots .active span {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1) !important;
    background: var(--voldor-base, #AE8F62) !important
}

.service-three {
    padding: 120px 0
}

@media(max-width:991px) {
    .service-three {
        padding: 100px 0
    }
}

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

.service-three__carouse .owl-nav {
    position: absolute;
    top: -40%;
    right: 0
}

.service-three__carouse .owl-nav button span {
    width: 60px !important;
    height: 60px !important;
    font-size: 19px !important;
    font-weight: 600 !important
}

.service-three__carouse .owl-nav button span:hover {
    color: var(--voldor-white, #fff) !important;
    background: var(--voldor-base, #AE8F62) !important
}

@media(max-width:991px) {
    .service-three__carouse .owl-nav {
        display: none !important
    }
}

.service-three__carouse .owl-dots {
    display: none !important
}

.service-details {
    padding: 120px 0;
    padding-top: 120px
}

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

.service-details__thumbnail {
    margin-bottom: 35px
}

.service-details__thumbnail img {
    max-width: 100%
}

.service-details__title {
    margin: 0;
    margin-bottom: 15px;
    color: var(--voldor-secondary, #241F21);
    font-size: 30px;
    font-weight: 700;
    line-height: 156.667%;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase
}

.service-details__sub-title {
    margin: 0;
    margin-bottom: 17px;
    color: var(--voldor-base, #AE8F62);
    font-size: 30px;
    font-weight: 700;
    line-height: 156.667%;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase
}

.service-details__text {
    margin: 0;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: 187.5%;
    font-family: var(--voldor-font, "Manrope", sans-serif)
}

.service-details__text+.service-details__sub-title {
    margin-top: 17px
}

.service-details__title+.service-details__text {
    margin-top: 22px
}

.service-details__text+.service-details__title {
    margin-top: 40px
}

.service-details__text+.service-details__list {
    margin-top: 40px
}

.service-details__text+.service-details__text {
    margin-top: 35px
}

.service-details__list {
    margin-bottom: 0
}

.service-details__list li {
    position: relative;
    color: var(--voldor-secondary, #241F21);
    font-size: 18px;
    font-weight: 600;
    line-height: 261.111%;
    margin-bottom: -5px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase
}

.service-details__list li i {
    color: var(--voldor-base, #AE8F62);
    margin-right: 7px
}

@media(max-width:575px) {
    .service-details__list li {
        line-height: 161.111%;
        font-size: 16px
    }
}

.service-details__list li+li {
    margin-top: 10px
}

@media(min-width:768px) {
    .service-details__list li+li {
        margin-top: 0
    }
}

.service-details__single+.service-details__single {
    margin-top: 35px
}

.service-details__benefit {
    margin-left: -30px
}

@media(max-width:1199px) {
    .service-details__benefit {
        margin-left: 0
    }
}

.service-details__benefit__title {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    line-height: 156.667%;
    color: var(--voldor-secondary, #241F21);
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

@media(min-width:768px) {
    .service-details__benefit__title {
        font-size: 30px
    }
}

.service-details__benefit__sub_title {
    margin-top: -3px;
    margin-bottom: 10px;
    color: var(--voldor-secondary, #241F21);
    font-size: 24px;
    font-weight: 700;
    line-height: 195.833%;
    text-transform: uppercase;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif)
}

@media(max-width:575px) {
    .service-details__benefit__sub_title {
        line-height: 135%
    }
}

.service-details__benefit__text {
    max-width: 410px;
    color: var(--voldor-text, #797577);
    font-size: 16px;
    font-weight: 500;
    line-height: 187.5%
}

.service-details__single-inner .service-details__title {
    margin-top: -10px;
    margin-bottom: 28px
}

.service-details__inner-item {
    display: flex;
    background: var(--voldor-white, #fff);
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.08)
}

.service-details__inner-item .item-icon {
    background: var(--voldor-base, #AE8F62);
    max-width: 85px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out
}

.service-details__inner-item .item-icon .icon {
    font-size: 40px;
    color: var(--voldor-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out
}

.service-details__inner-item .item-content {
    padding: 25px 30px 24px 30px
}

.service-details__inner-item .item__title {
    color: var(--voldor-secondary, #241F21);
    margin-bottom: 0;
    padding-bottom: 6px;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2222222222;
    text-transform: uppercase
}

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

.service-details__inner-item .item__title a:hover {
    background-size: 100% 1px
}

.service-details__inner-item .item__dec {
    padding-bottom: 0;
    margin-bottom: -6px;
    color: var(--voldor-text, #797577);
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-weight: 500;
    font-size: 16px;
    line-height: 188%
}

.service-details__inner-item:hover .item-icon {
    background: var(--voldor-secondary, #241F21)
}

.service-details__inner-item:hover .item-icon .icon {
    color: var(--voldor-base, #AE8F62)
}

.service-details__inner-item:hover .item-icon .icon i {
    animation: bounceIn 1s linear
}

.service-details .faq-page__accordion {
    padding-top: 5px;
    margin-bottom: 0
}

body.boxed-wrapper {
    position: relative
}

body.boxed-wrapper .page-wrapper {
    max-width: 1530px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--voldor-white, #fff);
    box-shadow: 0 0 100px 0 rgba(var(--voldor-black-rgb, 18, 15, 16), 0.08)
}

body.boxed-wrapper .hero-one__thumb {
    left: -5.5%
}

.work-process-one {
    position: relative;
    counter-reset: count;
    padding: 120px 0
}

@media(max-width:991px) {
    .work-process-one {
        padding: 100px 0
    }
}

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

.work-process-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1
}

.work-process-one__item {
    position: relative;
    background: var(--voldor-white, #fff);
    margin-top: 34px;
    padding: 1px 30px 40px;
    max-width: 322px;
    width: 100%;
    transition: all .4s ease-in-out
}

@media(max-width:991px) {
    .work-process-one__item {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto
    }
}

.work-process-one__item.active {
    background: var(--voldor-secondary, #241F21);
    max-width: 100%
}

@media(max-width:991px) {
    .work-process-one__item.active {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto
    }
}

.work-process-one__item.active .work-process-one__item__title {
    color: var(--voldor-white, #fff)
}

.work-process-one__item.active .work-process-one__item__text {
    color: var(--voldor-text, #797577)
}

.work-process-one__item.active .work-process-one__item__count {
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.work-process-one__item:hover {
    background: var(--voldor-secondary, #241F21)
}

.work-process-one__item:hover .work-process-one__item__title {
    color: var(--voldor-white, #fff)
}

.work-process-one__item:hover .work-process-one__item__text {
    color: var(--voldor-text, #797577)
}

.work-process-one__item:hover .work-process-one__item__count {
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff)
}

.work-process-one__item__count {
    width: 58px;
    height: 58px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -34px;
    border-radius: 50%;
    background: var(--voldor-white, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
    counter-increment: courseNumber;
    position: relative;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 114%;
    color: var(--voldor-secondary, #241F21);
    margin-bottom: 30px;
    transition: all .4s ease-in-out
}

.work-process-one__item__count::before {
    position: relative;
    z-index: 1;
    content: counters(courseNumber, ".", decimal-leading-zero)
}

.work-process-one__item__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    padding-bottom: 0;
    text-align: center;
    margin-bottom: 15px;
    transition: all .4s ease-in-out
}

.work-process-one__item__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    color: var(--voldor-text, #797577);
    text-align: center;
    margin-bottom: -5px;
    padding-bottom: 0;
    transition: all .4s ease-in-out
}

.work-process-one .col-lg-4:last-child .work-process-one__item {
    margin-left: auto;
    margin-right: 0
}

@media(max-width:991px) {
    .work-process-one .col-lg-4:last-child .work-process-one__item {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto
    }
}

.work-process-one__line {
    position: absolute;
    top: 63%;
    text-align: center;
    left: 25%;
    z-index: -1
}

@media(max-width:991px) {
    .work-process-one__line {
        display: none
    }
}

.project-card {
    position: relative;
    z-index: 1;
    overflow: hidden
}

@media(max-width:767px) {
    .project-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }
}

.project-card.project-card-two .project-card__content {
    padding-left: 10px;
    padding-right: 10px
}

.project-card__image {
    position: relative
}

.project-card__image img {
    object-fit: cover;
    width: 100%
}

.project-card__image::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.8);
    transition: all .4s ease-in-out
}

.project-card__content {
    background: var(--voldor-secondary, #241F21);
    padding: 1px 30px 30px;
    position: absolute;
    bottom: -100%;
    width: 100%;
    transition: all .4s ease-in-out
}

.project-card__icon {
    width: 67px;
    height: 67px;
    background: var(--voldor-base, #AE8F62);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: var(--voldor-white, #fff);
    margin-left: auto;
    margin-right: auto;
    transform: rotate(45deg);
    margin-top: -35px;
    z-index: 1;
    margin-bottom: 45px;
    transition: all .4s ease-in-out
}

.project-card__icon i {
    transform: rotate(-45deg)
}

.project-card__icon::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid rgba(var(--voldor-gray-rgb, 230, 224, 216), 0.13);
    animation: scale 3s ease-in-out infinite
}

.project-card__icon:hover {
    background: var(--voldor-white, #fff);
    color: var(--voldor-secondary, #241F21)
}

.project-card__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 196%;
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    text-align: center
}

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

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

.project-card__dec {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 294%;
    font-family: var(--voldor-font, "Manrope", sans-serif);
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    text-align: center;
    margin-top: -20px;
    margin-bottom: -15px
}

.project-card:hover .project-card__content {
    bottom: 0
}

.project-card:hover .project-card__image::after {
    bottom: 0;
    height: 100%
}

.project-page {
    padding: 120px 0
}

@media(max-width:991px) {
    .project-page {
        padding: 100px 0
    }
}

@media(max-width:767px) {
    .project-page {
        padding: 80px 0
    }
}

.project-page--home {
    padding-bottom: 0
}

@media(max-width:991px) {
    .project-page--home {
        padding-bottom: 0
    }
}

@media(max-width:767px) {
    .project-page--home {
        padding-bottom: 0
    }
}

.project-page__carousel {
    position: relative;
    z-index: 1
}

.project-page__carousel .owl-nav {
    margin-top: 0 !important;
    position: absolute;
    top: -25%;
    right: 19.5%
}

@media(max-width:991px) {
    .project-page__carousel .owl-nav {
        right: 20px;
        top: -20%
    }
}

@media(max-width:767px) {
    .project-page__carousel .owl-nav {
        display: none !important
    }
}

.project-page__carousel .owl-nav button span {
    width: 60px !important;
    height: 60px !important;
    font-size: 19px !important;
    font-weight: 600 !important
}

.project-page__carousel .owl-nav button span:hover {
    color: var(--voldor-white, #fff) !important;
    background: var(--voldor-base, #AE8F62) !important
}

.project-page__carousel .owl-dots {
    display: none !important
}

.project-two {
    background: var(--voldor-white, #fff);
    padding: 165px 0 120px
}

@media(max-width:991px) {
    .project-two {
        padding: 145px 0 100px
    }
}

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

.project-two--home {
    padding-top: 0
}

.project-two--home .container {
    max-width: 1170px !important
}

.project-two .container {
    max-width: 1500px
}

.project-two__item {
    position: relative;
    z-index: 1;
    overflow: hidden
}

.project-two__item__bg {
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transition: all 400ms ease-out
}

.project-two__item.expand {
    width: 100% !important;
    max-width: 100% !important
}

@media(max-width:991px) {
    .project-two__item.expand {
        max-height: 100% !important;
        height: 100% !important
    }
}

.project-two__item.expand .project-two__item__inner {
    visibility: visible;
    opacity: 1;
    z-index: 9;
    width: 100%
}

@media(max-width:1400px) {
    .project-two__item.expand .project-two__item__inner {
        max-height: 500px
    }
}

@media(max-width:1199px) {
    .project-two__item.expand .project-two__item__inner {
        max-height: 400px
    }
}

.project-two__item.expand .project-two__thumb {
    visibility: visible;
    opacity: 1
}

.project-two__item.expand .project-two__item__bg {
    display: none
}

.project-two__item.expand .project-two__content {
    transform: translateX(0);
    opacity: 1
}

.project-two__item.choice {
    width: 100%;
    max-width: 270px;
    height: 526px;
    transition: all 200ms ease;
    overflow: hidden
}

@media(max-width:991px) and (min-width:767px) {
    .project-two__item.choice {
        width: 49%;
        flex: 49%
    }
}

@media(max-width:1400px) {
    .project-two__item.choice {
        width: 100%;
        height: 500px
    }
}

@media(max-width:1199px) {
    .project-two__item.choice {
        width: 100%;
        max-width: 200px;
        height: 400px
    }
}

@media(max-width:991px) {
    .project-two__item.choice {
        max-width: 100%;
        max-height: 400px;
        height: 100%
    }
}

.project-two__item__inner {
    position: relative;
    visibility: hidden;
    opacity: 1
}

.project-two__thumb {
    height: 100%;
    width: 100%;
    transition: width 600ms ease;
    visibility: hidden;
    opacity: 0
}

@media(max-width:991px) {
    .project-two__thumb {
        max-width: 100%;
        max-height: 470px;
        height: 100%
    }
}

@media(min-width:1200px) {
    .project-two__thumb {
        max-width: 570px
    }
}

.project-two__thumb img {
    object-fit: cover
}

@media(max-width:991px) {
    .project-two__thumb img {
        width: 100%
    }
}

.project-two__content {
    background: var(--voldor-secondary, #241F21);
    padding: 25px 40px 30px;
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 130px;
    transform: translateX(-100%);
    transition: transform 1s linear;
    transition-delay: .4s;
    opacity: 0
}

@media(max-width:1400px) {
    .project-two__content {
        padding: 25px 20px 30px;
        right: 30px
    }
}

.project-two__content__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 200%;
    text-transform: uppercase;
    color: var(--voldor-white, #fff);
    padding-bottom: 0;
    margin-bottom: 0
}

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

.project-two__content__title a:hover {
    background-size: 100% 1px
}

.project-two__content__text {
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: var(--voldor-text, #797577);
    margin-bottom: 0;
    padding-bottom: 0
}

.project-two__content__btn {
    position: absolute;
    top: -71px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 79px;
    background: var(--voldor-base, #AE8F62);
    height: 71px;
    font-size: 23px;
    color: var(--voldor-white, #fff);
    transition: all .4s ease-in-out
}

.project-two__content__btn i {
    transform: rotate(-20deg);
    transition: all .3s ease-in-out
}

.project-two__content__btn:hover i {
    transform: rotate(0deg) scale(1.2)
}

.horizontal-project {
    display: flex;
    width: 100%;
    padding: 0;
    gap: 30px;
    overflow: hidden
}

@media(max-width:991px) {
    .horizontal-project {
        flex-wrap: wrap
    }
}

.project-details {
    padding: 120px 0;
    position: relative
}

@media(max-width:991px) {
    .project-details {
        padding: 100px 0
    }
}

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

.project-details__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.project-details__inner__title {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 157%;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    margin-bottom: 0;
    padding-bottom: 0
}

.project-details__inner__text {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    background: var(--voldor-base, #AE8F62);
    color: var(--voldor-white, #fff);
    margin-bottom: 0;
    padding: 3px 5px
}

.project-details__thumb {
    margin-bottom: 40px
}

.project-details__thumb img {
    width: 100%;
    object-fit: contain
}

.project-details__left {
    margin-top: -10px
}

.project-details__text {
    margin-bottom: 0;
    padding-bottom: 0;
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    color: var(--voldor-text, #797577)
}

.project-details__text--two {
    color: var(--voldor-base, #AE8F62);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 167%;
    text-transform: uppercase;
    margin-bottom: 0
}

.project-details__text+.project-details__text {
    margin-top: 23px
}

.project-details__list__title {
    margin-top: 23px;
    margin-bottom: 22px;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21);
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-weight: 700;
    font-size: 30px;
    line-height: 157%
}

.project-details__list {
    margin-bottom: 30px
}

.project-details__list__item {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21)
}

.project-details__list__item i {
    color: var(--voldor-base, #AE8F62);
    font-size: 18px;
    margin-right: 15px
}

.project-details__list__item+.project-details__list__item {
    margin-top: 16px
}

.project-details__box {
    border-top: 5px solid var(--voldor-base, #AE8F62);
    background: var(--voldor-white, #fff);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    padding: 40px
}

@media(max-width:991px) {
    .project-details__box {
        margin-top: 30px
    }
}

.project-details__box__content {
    padding-bottom: 30px
}

.project-details__box__text {
    margin-bottom: 0;
    padding-bottom: 0;
    text-shadow: 0 0 .1px currentColor;
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 188%;
    text-transform: uppercase;
    color: var(--voldor-secondary, #241F21)
}

.project-details__box__text__top {
    color: var(--voldor-text, #797577);
    display: block;
    font-family: var(--voldor-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize
}

.project-details__box__text+.project-details__box__text {
    margin-top: 20px
}

.project-details__box__social {
    display: flex;
    gap: 20px;
    align-items: center
}

.project-details__box__social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    background: var(--voldor-border-color, #F4F2EE);
    justify-content: center;
    align-items: center;
    color: var(--voldor-secondary, #241F21);
    font-size: 12px;
    transition: all .4s ease-in-out
}

.project-details__box__social a:hover {
    color: var(--voldor-white, #fff);
    background: var(--voldor-base, #AE8F62)
}

.project-details__link {
    margin-top: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--voldor-gray, #E6E0D8);
    border-bottom: 1px solid var(--voldor-gray, #E6E0D8);
    padding: 20px 0
}

@media(max-width:1199px) {
    .project-details__link {
        margin-top: 70px
    }
}

@media(max-width:991px) {
    .project-details__link {
        margin-top: 50px
    }
}

.project-details__link__item {
    width: 40px;
    height: 40px;
    background: var(--voldor-border-color, #F4F2EE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--voldor-secondary, #241F21)
}

.project-details__link__item:hover {
    color: var(--voldor-white, #fff);
    background: var(--voldor-base, #AE8F62)
}

.project-details__link__left,
.project-details__link__right {
    display: flex;
    gap: 20px;
    align-items: center
}

.project-details__link span {
    font-family: var(--voldor-heading-font, "Barlow", sans-serif);
    text-transform: uppercase;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--voldor-secondary, #241F21)
}