﻿@import"https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&amp;family=Urbanist:ital,wght@0,100..900;1,100..900&amp;display=swap";

:root {
    --font-title: "Urbanist", sans-serif;
    --font-body: "Mulish", sans-serif;
    --theme-color1: #bb9a65;
    --theme-color2: #131313;
    --theme-color3: #000000;
    --text-color1: #ffffff;
    --text-color2: #ffffff;
    --text-color3: #9f9e9e;
    --main-bg: #ffffff;
    --sub-bg: #f6f6f6;
    --heading-color: #272e39;
    --paragraph: #75727b;
    --span: #75727b;
    --border: #ebebeb;
    --white: #ffffff;
    --theme-color-light: #ffffff;
    --black: #000000;
    --radius: 10px;
    --transition: all 0.4s ease-in-out;
    --shadow: 0px 4px 30px 0px #0000000d
}

:root[data-theme=dark] {
    --theme-color1: #bb9a65;
    --theme-color2: #cccccc;
    --theme-color3: #ffffff;
    --text-color1: #ffffff;
    --text-color2: #ffffff;
    --text-color3: #9f9e9e;
    --main-bg: #131313;
    --sub-bg: #6a6a6a33;
    --heading-color: #ffffff;
    --paragraph: #cccccc;
    --span: #cccccc;
    --border: #202020;
    --white: #000000;
    --black: #ffffff
}

:root[data-theme=dark] .light-area {
    --theme-color1: #bb9a65;
    --theme-color2: #131313;
    --theme-color3: #000000;
    --text-color1: #ffffff;
    --text-color2: #ffffff;
    --text-color3: #9f9e9e;
    --main-bg: #ffffff;
    --sub-bg: #f6f6f6;
    --heading-color: #272e39;
    --paragraph: #75727b;
    --span: #75727b;
    --border: #ebebeb;
    --white: #ffffff;
    --black: #000000
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--paragraph);
    background-color: var(--main-bg);
    line-height: 28px;
    font-weight: 400
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    color: var(--heading-color);
    font-family: var(--font-title)
}

h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 96px
}

@media(max-width: 767px) {
    h1 {
        font-size: 40px;
        line-height: 50px
    }
}

h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px
}

@media(max-width: 767px) {
    h2 {
        font-size: 30px;
        line-height: 40px
    }
}

h3 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 600
}

@media(max-width: 767px) {
    h3 {
        font-size: 18px;
        line-height: 26px
    }
}

h4 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700
}

@media(max-width: 767px) {
    h4 {
        font-size: 20px;
        line-height: 30px
    }
}

h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px
}

h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px
}

p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 28px
}

span {
    display: inline-block;
    color: var(--span)
}

.splt-txt span {
    color: unset
}

a {
    text-decoration: none;
    display: inline-block;
    color: var(--heading-color);
    transition: var(--transition)
}

a:hover {
    color: var(--heading-color)
}

ul {
    margin: 0;
    padding: 0;
    text-decoration: none
}

li {
    list-style: none
}

button {
    border: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0)
}

figure {
    margin: 0
}

@media(max-width: 1399px) {
    br {
        display: none
    }
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1
}

::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border: 1px solid rgba(0, 0, 0, 0);
    background-clip: content-box
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8
}

::placeholder {
    color: var(--span);
    font-size: 16px
}

.mt-5 {
    margin-top: 5px
}

.mt-10 {
    margin-top: 10px
}

.mt-15 {
    margin-top: 15px
}

.mt-20 {
    margin-top: 20px
}

.mt-25 {
    margin-top: 25px
}

.mt-30 {
    margin-top: 30px
}

.mt-35 {
    margin-top: 35px
}

.mt-40 {
    margin-top: 40px
}

.mt-45 {
    margin-top: 45px
}

.mt-50 {
    margin-top: 50px
}

.mt-55 {
    margin-top: 55px
}

.mt-60 {
    margin-top: 60px
}

.mt-65 {
    margin-top: 65px
}

.mt-70 {
    margin-top: 70px
}

.mt-75 {
    margin-top: 75px
}

.mt-80 {
    margin-top: 80px
}

.mt-85 {
    margin-top: 85px
}

.mt-90 {
    margin-top: 90px
}

.mt-95 {
    margin-top: 95px
}

.mt-100 {
    margin-top: 100px
}

.mt-105 {
    margin-top: 105px
}

.mt-110 {
    margin-top: 110px
}

.mt-115 {
    margin-top: 115px
}

.mt-120 {
    margin-top: 120px
}

.mt-125 {
    margin-top: 125px
}

.mt-130 {
    margin-top: 130px
}

.mt-135 {
    margin-top: 135px
}

.mt-140 {
    margin-top: 140px
}

.mt-145 {
    margin-top: 145px
}

.mt-150 {
    margin-top: 150px
}

.mt-155 {
    margin-top: 155px
}

.mt-160 {
    margin-top: 160px
}

.mt-165 {
    margin-top: 165px
}

.mt-170 {
    margin-top: 170px
}

.mt-175 {
    margin-top: 175px
}

.mt-180 {
    margin-top: 180px
}

.mt-185 {
    margin-top: 185px
}

.mt-190 {
    margin-top: 190px
}

.mt-195 {
    margin-top: 195px
}

.mt-200 {
    margin-top: 200px
}

.mb-5 {
    margin-bottom: 5px
}

.mb-10 {
    margin-bottom: 10px
}

.mb-15 {
    margin-bottom: 15px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-25 {
    margin-bottom: 25px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-35 {
    margin-bottom: 35px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-45 {
    margin-bottom: 45px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-55 {
    margin-bottom: 55px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-65 {
    margin-bottom: 65px
}

.mb-70 {
    margin-bottom: 70px
}

.mb-75 {
    margin-bottom: 75px
}

.mb-80 {
    margin-bottom: 80px
}

.mb-85 {
    margin-bottom: 85px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-95 {
    margin-bottom: 95px
}

.mb-100 {
    margin-bottom: 100px
}

.mb-105 {
    margin-bottom: 105px
}

.mb-110 {
    margin-bottom: 110px
}

.mb-115 {
    margin-bottom: 115px
}

.mb-120 {
    margin-bottom: 120px
}

.mb-125 {
    margin-bottom: 125px
}

.mb-130 {
    margin-bottom: 130px
}

.mb-135 {
    margin-bottom: 135px
}

.mb-140 {
    margin-bottom: 140px
}

.mb-145 {
    margin-bottom: 145px
}

.mb-150 {
    margin-bottom: 150px
}

.mb-155 {
    margin-bottom: 155px
}

.mb-160 {
    margin-bottom: 160px
}

.mb-165 {
    margin-bottom: 165px
}

.mb-170 {
    margin-bottom: 170px
}

.mb-175 {
    margin-bottom: 175px
}

.mb-180 {
    margin-bottom: 180px
}

.mb-185 {
    margin-bottom: 185px
}

.mb-190 {
    margin-bottom: 190px
}

.mb-195 {
    margin-bottom: 195px
}

.mb-200 {
    margin-bottom: 200px
}

.ml-5 {
    margin-left: 5px
}

.ml-10 {
    margin-left: 10px
}

.ml-15 {
    margin-left: 15px
}

.ml-20 {
    margin-left: 20px
}

.ml-25 {
    margin-left: 25px
}

.ml-30 {
    margin-left: 30px
}

.ml-35 {
    margin-left: 35px
}

.ml-40 {
    margin-left: 40px
}

.ml-45 {
    margin-left: 45px
}

.ml-50 {
    margin-left: 50px
}

.ml-55 {
    margin-left: 55px
}

.ml-60 {
    margin-left: 60px
}

.ml-65 {
    margin-left: 65px
}

.ml-70 {
    margin-left: 70px
}

.ml-75 {
    margin-left: 75px
}

.ml-80 {
    margin-left: 80px
}

.ml-85 {
    margin-left: 85px
}

.ml-90 {
    margin-left: 90px
}

.ml-95 {
    margin-left: 95px
}

.ml-100 {
    margin-left: 100px
}

.ml-105 {
    margin-left: 105px
}

.ml-110 {
    margin-left: 110px
}

.ml-115 {
    margin-left: 115px
}

.ml-120 {
    margin-left: 120px
}

.ml-125 {
    margin-left: 125px
}

.ml-130 {
    margin-left: 130px
}

.ml-135 {
    margin-left: 135px
}

.ml-140 {
    margin-left: 140px
}

.ml-145 {
    margin-left: 145px
}

.ml-150 {
    margin-left: 150px
}

.ml-155 {
    margin-left: 155px
}

.ml-160 {
    margin-left: 160px
}

.ml-165 {
    margin-left: 165px
}

.ml-170 {
    margin-left: 170px
}

.ml-175 {
    margin-left: 175px
}

.ml-180 {
    margin-left: 180px
}

.ml-185 {
    margin-left: 185px
}

.ml-190 {
    margin-left: 190px
}

.ml-195 {
    margin-left: 195px
}

.ml-200 {
    margin-left: 200px
}

.mr-5 {
    margin-right: 5px
}

.mr-10 {
    margin-right: 10px
}

.mr-15 {
    margin-right: 15px
}

.mr-20 {
    margin-right: 20px
}

.mr-25 {
    margin-right: 25px
}

.mr-30 {
    margin-right: 30px
}

.mr-35 {
    margin-right: 35px
}

.mr-40 {
    margin-right: 40px
}

.mr-45 {
    margin-right: 45px
}

.mr-50 {
    margin-right: 50px
}

.mr-55 {
    margin-right: 55px
}

.mr-60 {
    margin-right: 60px
}

.mr-65 {
    margin-right: 65px
}

.mr-70 {
    margin-right: 70px
}

.mr-75 {
    margin-right: 75px
}

.mr-80 {
    margin-right: 80px
}

.mr-85 {
    margin-right: 85px
}

.mr-90 {
    margin-right: 90px
}

.mr-95 {
    margin-right: 95px
}

.mr-100 {
    margin-right: 100px
}

.mr-105 {
    margin-right: 105px
}

.mr-110 {
    margin-right: 110px
}

.mr-115 {
    margin-right: 115px
}

.mr-120 {
    margin-right: 120px
}

.mr-125 {
    margin-right: 125px
}

.mr-130 {
    margin-right: 130px
}

.mr-135 {
    margin-right: 135px
}

.mr-140 {
    margin-right: 140px
}

.mr-145 {
    margin-right: 145px
}

.mr-150 {
    margin-right: 150px
}

.mr-155 {
    margin-right: 155px
}

.mr-160 {
    margin-right: 160px
}

.mr-165 {
    margin-right: 165px
}

.mr-170 {
    margin-right: 170px
}

.mr-175 {
    margin-right: 175px
}

.mr-180 {
    margin-right: 180px
}

.mr-185 {
    margin-right: 185px
}

.mr-190 {
    margin-right: 190px
}

.mr-195 {
    margin-right: 195px
}

.mr-200 {
    margin-right: 200px
}

.pt-5 {
    padding-top: 5px
}

.pt-10 {
    padding-top: 10px
}

.pt-15 {
    padding-top: 15px
}

.pt-20 {
    padding-top: 20px
}

.pt-25 {
    padding-top: 25px
}

.pt-30 {
    padding-top: 30px
}

.pt-35 {
    padding-top: 35px
}

.pt-40 {
    padding-top: 40px
}

.pt-45 {
    padding-top: 45px
}

.pt-50 {
    padding-top: 50px
}

.pt-55 {
    padding-top: 55px
}

.pt-60 {
    padding-top: 60px
}

.pt-65 {
    padding-top: 65px
}

.pt-70 {
    padding-top: 70px
}

.pt-75 {
    padding-top: 75px
}

.pt-80 {
    padding-top: 80px
}

.pt-85 {
    padding-top: 85px
}

.pt-90 {
    padding-top: 90px
}

.pt-95 {
    padding-top: 95px
}

.pt-100 {
    padding-top: 100px
}

.pt-105 {
    padding-top: 105px
}

.pt-110 {
    padding-top: 110px
}

.pt-115 {
    padding-top: 115px
}

.pt-120 {
    padding-top: 120px
}

.pt-125 {
    padding-top: 125px
}

.pt-130 {
    padding-top: 130px
}

.pt-135 {
    padding-top: 135px
}

.pt-140 {
    padding-top: 140px
}

.pt-145 {
    padding-top: 145px
}

.pt-150 {
    padding-top: 150px
}

.pt-155 {
    padding-top: 155px
}

.pt-160 {
    padding-top: 160px
}

.pt-165 {
    padding-top: 165px
}

.pt-170 {
    padding-top: 170px
}

.pt-175 {
    padding-top: 175px
}

.pt-180 {
    padding-top: 180px
}

.pt-185 {
    padding-top: 185px
}

.pt-190 {
    padding-top: 190px
}

.pt-195 {
    padding-top: 195px
}

.pt-200 {
    padding-top: 200px
}

.pb-5 {
    padding-bottom: 5px
}

.pb-10 {
    padding-bottom: 10px
}

.pb-15 {
    padding-bottom: 15px
}

.pb-20 {
    padding-bottom: 20px
}

.pb-25 {
    padding-bottom: 25px
}

.pb-30 {
    padding-bottom: 30px
}

.pb-35 {
    padding-bottom: 35px
}

.pb-40 {
    padding-bottom: 40px
}

.pb-45 {
    padding-bottom: 45px
}

.pb-50 {
    padding-bottom: 50px
}

.pb-55 {
    padding-bottom: 55px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-65 {
    padding-bottom: 65px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-75 {
    padding-bottom: 75px
}

.pb-80 {
    padding-bottom: 80px
}

.pb-85 {
    padding-bottom: 85px
}

.pb-90 {
    padding-bottom: 90px
}

.pb-95 {
    padding-bottom: 95px
}

.pb-100 {
    padding-bottom: 100px
}

.pb-105 {
    padding-bottom: 105px
}

.pb-110 {
    padding-bottom: 110px
}

.pb-115 {
    padding-bottom: 115px
}

.pb-120 {
    padding-bottom: 120px
}

.pb-125 {
    padding-bottom: 125px
}

.pb-130 {
    padding-bottom: 130px
}

.pb-135 {
    padding-bottom: 135px
}

.pb-140 {
    padding-bottom: 140px
}

.pb-145 {
    padding-bottom: 145px
}

.pb-150 {
    padding-bottom: 150px
}

.pb-155 {
    padding-bottom: 155px
}

.pb-160 {
    padding-bottom: 160px
}

.pb-165 {
    padding-bottom: 165px
}

.pb-170 {
    padding-bottom: 170px
}

.pb-175 {
    padding-bottom: 175px
}

.pb-180 {
    padding-bottom: 180px
}

.pb-185 {
    padding-bottom: 185px
}

.pb-190 {
    padding-bottom: 190px
}

.pb-195 {
    padding-bottom: 195px
}

.pb-200 {
    padding-bottom: 200px
}

.pl-5 {
    padding-left: 5px
}

.pl-10 {
    padding-left: 10px
}

.pl-15 {
    padding-left: 15px
}

.pl-20 {
    padding-left: 20px
}

.pl-25 {
    padding-left: 25px
}

.pl-30 {
    padding-left: 30px
}

.pl-35 {
    padding-left: 35px
}

.pl-40 {
    padding-left: 40px
}

.pl-45 {
    padding-left: 45px
}

.pl-50 {
    padding-left: 50px
}

.pl-55 {
    padding-left: 55px
}

.pl-60 {
    padding-left: 60px
}

.pl-65 {
    padding-left: 65px
}

.pl-70 {
    padding-left: 70px
}

.pl-75 {
    padding-left: 75px
}

.pl-80 {
    padding-left: 80px
}

.pl-85 {
    padding-left: 85px
}

.pl-90 {
    padding-left: 90px
}

.pl-95 {
    padding-left: 95px
}

.pl-100 {
    padding-left: 100px
}

.pl-105 {
    padding-left: 105px
}

.pl-110 {
    padding-left: 110px
}

.pl-115 {
    padding-left: 115px
}

.pl-120 {
    padding-left: 120px
}

.pl-125 {
    padding-left: 125px
}

.pl-130 {
    padding-left: 130px
}

.pl-135 {
    padding-left: 135px
}

.pl-140 {
    padding-left: 140px
}

.pl-145 {
    padding-left: 145px
}

.pl-150 {
    padding-left: 150px
}

.pl-155 {
    padding-left: 155px
}

.pl-160 {
    padding-left: 160px
}

.pl-165 {
    padding-left: 165px
}

.pl-170 {
    padding-left: 170px
}

.pl-175 {
    padding-left: 175px
}

.pl-180 {
    padding-left: 180px
}

.pl-185 {
    padding-left: 185px
}

.pl-190 {
    padding-left: 190px
}

.pl-195 {
    padding-left: 195px
}

.pl-200 {
    padding-left: 200px
}

.pr-5 {
    padding-right: 5px
}

.pr-10 {
    padding-right: 10px
}

.pr-15 {
    padding-right: 15px
}

.pr-20 {
    padding-right: 20px
}

.pr-25 {
    padding-right: 25px
}

.pr-30 {
    padding-right: 30px
}

.pr-35 {
    padding-right: 35px
}

.pr-40 {
    padding-right: 40px
}

.pr-45 {
    padding-right: 45px
}

.pr-50 {
    padding-right: 50px
}

.pr-55 {
    padding-right: 55px
}

.pr-60 {
    padding-right: 60px
}

.pr-65 {
    padding-right: 65px
}

.pr-70 {
    padding-right: 70px
}

.pr-75 {
    padding-right: 75px
}

.pr-80 {
    padding-right: 80px
}

.pr-85 {
    padding-right: 85px
}

.pr-90 {
    padding-right: 90px
}

.pr-95 {
    padding-right: 95px
}

.pr-100 {
    padding-right: 100px
}

.pr-105 {
    padding-right: 105px
}

.pr-110 {
    padding-right: 110px
}

.pr-115 {
    padding-right: 115px
}

.pr-120 {
    padding-right: 120px
}

.pr-125 {
    padding-right: 125px
}

.pr-130 {
    padding-right: 130px
}

.pr-135 {
    padding-right: 135px
}

.pr-140 {
    padding-right: 140px
}

.pr-145 {
    padding-right: 145px
}

.pr-150 {
    padding-right: 150px
}

.pr-155 {
    padding-right: 155px
}

.pr-160 {
    padding-right: 160px
}

.pr-165 {
    padding-right: 165px
}

.pr-170 {
    padding-right: 170px
}

.pr-175 {
    padding-right: 175px
}

.pr-180 {
    padding-right: 180px
}

.pr-185 {
    padding-right: 185px
}

.pr-190 {
    padding-right: 190px
}

.pr-195 {
    padding-right: 195px
}

.pr-200 {
    padding-right: 200px
}

@media(min-width: 1400px) {
    .container {
        max-width: 1520px
    }
}

@media(max-width: 767px) {
    .pt-120 {
        padding-top: 60px
    }

    .pb-120 {
        padding-bottom: 60px
    }

    .mt-120 {
        margin-top: 60px
    }

    .mb-120 {
        margin-bottom: 60px
    }

    .pt-100 {
        padding-top: 50px
    }

    .pb-100 {
        padding-bottom: 50px
    }

    .mt-100 {
        margin-top: 50px
    }

    .mb-100 {
        margin-bottom: 50px
    }

    .pt-80 {
        padding-top: 40px
    }

    .pb-80 {
        padding-bottom: 40px
    }

    .mt-80 {
        margin-top: 40px
    }

    .mb-80 {
        margin-bottom: 40px
    }

    .pt-60 {
        padding-top: 30px
    }

    .pb-60 {
        padding-bottom: 30px
    }

    .mt-60 {
        margin-top: 30px
    }

    .mb-60 {
        margin-bottom: 30px
    }
}

.bor {
    border: 1px solid var(--border)
}

.bor-top {
    border-top: 1px solid var(--border)
}

.bor-left {
    border-left: 1px solid var(--border)
}

.bor-bottom {
    border-bottom: 1px solid var(--border)
}

.bor-right {
    border-right: 1px solid var(--border)
}

.border-none {
    border: none !important
}

.text-justify {
    text-align: justify
}

.image img {
    width: 100%
}

.primary-color {
    color: var(--theme-color1) !important
}

.primary-hover:hover {
    color: var(--theme-color1) !important
}

.primary-bg {
    background-color: var(--theme-color1) !important
}

.secondary-color {
    color: var(--theme-color2)
}

.secondary-bg {
    background-color: var(--theme-color2)
}

.sub-bg {
    background-color: var(--sub-bg)
}

.dark-bg {
    background-color: #000
}

.bg-transparent {
    background-color: rgba(0, 0, 0, 0) !important
}

.paragraph-light {
    color: var(--paragraph-light) !important
}

.fs-14 {
    font-size: 14px !important
}

.fs-16 {
    font-size: 16px !important
}

.fs-18 {
    font-size: 18px !important
}

.fs-20 {
    font-size: 20px !important
}

.fs-22 {
    font-size: 22px !important
}

.fs-24 {
    font-size: 24px !important
}

.fs-26 {
    font-size: 26px !important
}

.fs-28 {
    font-size: 28px !important
}

.fs-30 {
    font-size: 30px !important
}

.fs-32 {
    font-size: 32px !important
}

.fw-300 {
    font-weight: 300 !important
}

.fw-400 {
    font-weight: 400 !important
}

.fw-500 {
    font-weight: 500 !important
}

.fw-600 {
    font-weight: 600 !important
}

.fw-700 {
    font-weight: 700 !important
}

.title-font {
    font-family: var(--font-title) !important
}

.text-font {
    font-family: var(--font-body) !important
}

.shadow {
    box-shadow: var(--shadow) !important
}

.bg-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.transition {
    transition: var(--transition)
}

.overlay,
.choose-two__image,
.about-four__image {
    position: relative;
    z-index: 1
}

.overlay::before,
.choose-two__image::before,
.about-four__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1
}

.nice-select {
    width: 100%;
    border-radius: 10px;
    height: 50px;
    line-height: 50px
}

.nice-select:focus {
    border: 1px solid var(--theme-color1)
}

.nice-select .list {
    width: 100%
}

.section-header h4,
.section-header__flex h4,
.section-header__icon h4 {
    font-size: 16px;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--theme-color1)
}

.section-header h2,
.section-header__flex h2,
.section-header__icon h2 {
    text-transform: capitalize
}

.section-header p,
.section-header__flex p,
.section-header__icon p {
    margin-top: 20px
}

.section-header__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    align-items: center
}

@media(max-width: 991px) {
    .section-header__flex {
        gap: 0;
        flex-wrap: wrap
    }
}

.section-header__flex h4 {
    margin-bottom: 10px
}

.section-header__flex p {
    max-width: 480px
}

.section-padding {
    padding: 120px 0
}

.section-margin {
    margin: 120px 0
}

.star i {
    color: #ffc532
}

.star i.disable {
    color: var(--span);
    opacity: 40%
}

.pegi {
    display: flex;
    align-items: center;
    gap: 35px
}

.pegi .next,
.pegi .prev {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--yellow-color);
    color: var(--heading-color);
    font-size: 20px
}

.pegi-dots {
    display: flex;
    align-items: center;
    gap: 12px
}

.pegi-dots a {
    width: 10px;
    height: 10px;
    line-height: 10px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: #e9f1ee;
    position: relative
}

.pegi-dots a.active::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    border: 3px solid #256e56;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition)
}

.swiper__info,
.swiper-two__info,
.swiper-four__info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 200px;
    margin: 0 auto
}

.swiper__info .swiper-pagination-bullet,
.swiper-two__info .swiper-pagination-bullet,
.swiper-four__info .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #e9f1ee;
    opacity: 1
}

.swiper__info .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-two__info .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-four__info .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--yellow-color)
}

.swiper__info .dot,
.swiper-two__info .dot,
.swiper-four__info .dot {
    text-align: center
}

.swiper__info button,
.swiper-two__info button,
.swiper-four__info button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 26px;
    color: var(--border);
    transition: var(--transition)
}

.swiper__info button:hover,
.swiper-two__info button:hover,
.swiper-four__info button:hover {
    color: var(--heading-color)
}

.swiper__info button.active,
.swiper-two__info button.active,
.swiper-four__info button.active {
    color: var(--heading-color)
}

.swiper__info .swiper-pagination-fraction,
.swiper-two__info .swiper-pagination-fraction,
.swiper-four__info .swiper-pagination-fraction {
    font-size: 20px
}

.swiper__info .swiper-pagination-fraction .swiper-pagination-current,
.swiper-two__info .swiper-pagination-fraction .swiper-pagination-current,
.swiper-four__info .swiper-pagination-fraction .swiper-pagination-current {
    color: var(--heading-color)
}

.swiper-two__info,
.swiper-four__info {
    max-width: 260px
}

.swiper-two__info .swiper-pagination-bullet,
.swiper-four__info .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #e9f1ee;
    opacity: 1;
    margin: 0 6px !important
}

.swiper-two__info .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-four__info .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    background-color: #e9f1ee
}

.swiper-two__info .swiper-pagination-bullet.swiper-pagination-bullet-active::after,
.swiper-four__info .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid #256e56;
    content: "";
    top: -3px;
    left: -3px;
    border-radius: 50%
}

.swiper-two__info button,
.swiper-four__info button {
    background-color: var(--yellow-color);
    width: 100%;
    max-width: 48px;
    font-size: 20px;
    line-height: 48px;
    height: 48px
}

.swiper-four__info {
    gap: 20px
}

.swiper-four__info button {
    background-color: var(--white);
    border: 2px solid var(--heading-color);
    line-height: 46px
}

.swiper-four__info button.disable {
    color: rgba(21, 19, 20, .2509803922);
    border: 2px solid rgba(21, 19, 20, .2509803922)
}

.swiper-four__info button:hover {
    border: 2px solid var(--heading-color);
    color: var(--heading-color)
}

.accordion .accordion-item {
    border-radius: 16px;
    background-color: var(--sub-bg-three)
}

.accordion .accordion-item h2 button {
    font-size: 24px;
    line-height: 40px;
    font-family: var(--space-grotesk);
    font-weight: 500;
    box-shadow: none;
    border-radius: 16px !important;
    padding: 20px 30px;
    background-color: var(--sub-bg-three);
    color: var(--heading-color)
}

.accordion .accordion-item .accordion-body {
    padding: 20px 30px;
    padding-top: 0
}

.accordion .accordion-item .accordion-body p {
    color: var(--paragraph);
    font-size: 16px;
    line-height: 28px
}

.accordion-two .accordion .accordion-item,
.accordion-four .accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0px;
    margin-bottom: 10px;
    background-color: var(--white)
}

.accordion-two .accordion .accordion-item h2 button,
.accordion-four .accordion .accordion-item h2 button {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    box-shadow: none;
    border-radius: 0 !important;
    padding: 20px 0px
}

.accordion-two .accordion .accordion-item .accordion-body,
.accordion-four .accordion .accordion-item .accordion-body {
    padding: 20px 0px;
    padding-top: 0
}

.accordion-two .accordion .accordion-item .accordion-body p,
.accordion-four .accordion .accordion-item .accordion-body p {
    color: var(--paragraph);
    font-size: 18px;
    line-height: 32px;
    width: 95%
}

@media(max-width: 575px) {

    .accordion-two .accordion .accordion-item .accordion-body p,
    .accordion-four .accordion .accordion-item .accordion-body p {
        width: 100%;
        font-size: 16px;
        line-height: 28px
    }
}

.accordion-two .accordion .accordion-button,
.accordion-four .accordion .accordion-button {
    background-color: rgba(0, 0, 0, 0);
    color: var(--heading-color)
}

.accordion-two .accordion .accordion-button::after,
.accordion-four .accordion .accordion-button::after {
    display: none
}

.accordion-two .accordion .accordion-button::before,
.accordion-four .accordion .accordion-button::before {
    position: absolute;
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    top: 20px;
    right: 0px;
    font-size: 16px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    color: rgba(21, 19, 20, .4);
    background-color: var(--white);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(21, 19, 20, .4)
}

.accordion-two .accordion .accordion-button.collapsed,
.accordion-four .accordion .accordion-button.collapsed {
    background-color: rgba(0, 0, 0, 0);
    color: var(--heading-color)
}

.accordion-two .accordion .accordion-button.collapsed::before,
.accordion-four .accordion .accordion-button.collapsed::before {
    content: "+";
    background-color: var(--white);
    color: var(--heading-color);
    border: 1px solid var(--heading-color)
}

.accordion-four .accordion-item {
    border: none !important
}

.accordion-four .accordion-item .accordion-body {
    padding: 0px 0 !important;
    padding-top: 0 !important
}

.accordion-four .accordion-button {
    background-color: rgba(0, 0, 0, 0);
    color: var(--heading-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0)
}

.accordion-four .accordion-button::before {
    content: "" !important;
    transform: rotate(90deg);
    top: 50px !important
}

.accordion-four .accordion-button.collapsed {
    border-bottom: 1px solid var(--border)
}

.accordion-four .accordion-button.collapsed::before {
    content: "" !important;
    transform: rotate(0deg)
}

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden
}

.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: #ddd;
    -webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
    -o-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
    transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out
}

.cursor-inner.cursor-hover {
    margin-left: -35px;
    margin-top: -35px;
    width: 70px;
    height: 70px;
    background-color: #ddd;
    opacity: .3
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: .5;
    -webkit-transition: all .08s ease-out;
    -o-transition: all .08s ease-out;
    transition: all .08s ease-out
}

.cursor-outer.cursor-hover {
    opacity: 0
}

.btn-one,
.btn-two {
    padding: 10px 35px;
    background-color: var(--theme-color1);
    color: var(--text-color1);
    font-family: var(--font-title);
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.btn-one i,
.btn-two i {
    margin-left: 5px;
    display: inline-block;
    transition: var(--transition)
}

@media(max-width: 767px) {

    .btn-one,
    .btn-two {
        padding: 6px 20px;
        font-size: 14px
    }
}

.btn-one::before,
.btn-two::before {
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 260%;
    content: "";
    top: 132%;
    left: 50%;
    background-color: var(--theme-color2);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%) rotate(-8deg);
    border-radius: 80%;
    z-index: -1
}

.btn-one:hover,
.btn-two:hover {
    color: var(--text-color2)
}

.btn-one:hover::before,
.btn-two:hover::before {
    top: -60%
}

.btn-one:hover i,
.btn-two:hover i {
    transform: rotate(45deg)
}

.btn-two {
    background-color: var(--theme-color2);
    color: var(--text-color2)
}

.btn-two::before {
    background-color: var(--theme-color1)
}

.btn-arrow {
    font-size: 100px;
    line-height: 100px;
    color: var(--theme-color2);
    display: inline-block
}

@media(max-width: 767px) {
    .btn-arrow {
        font-size: 60px
    }
}

.btn-arrow:hover {
    transform: rotate(45deg);
    opacity: .8
}

.btn-view {
    display: inline-block;
    color: var(--span);
    font-family: var(--font-title);
    font-weight: 600;
    text-transform: uppercase
}

.btn-view i {
    color: var(--theme-color2);
    margin-left: 5px;
    transition: var(--transition)
}

.btn-view:hover i {
    margin-left: 8px
}

.btn__mood-dark,
.btn__mood-light {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 24px;
    color: #fff;
    background-color: #000;
    display: block;
    top: 20%;
    right: 30px;
    position: fixed;
    z-index: 99;
    border: 1px solid #fff
}

.btn__mood-dark:hover,
.btn__mood-light:hover {
    color: #fff
}

.btn-backToTop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border-radius: 12px;
    background-color: var(--theme-color2);
    color: var(--text-color2);
    font-size: 18px;
    box-shadow: var(--shadow);
    position: fixed;
    z-index: 99;
    right: 30px;
    bottom: 30px;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden
}

.btn-backToTop:hover {
    background-color: var(--theme-color1);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .3)
}

.btn-backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0)
}

.arry-prev,
.arry-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--heading-color);
    transition: var(--transition);
    border: 1px solid #75727b;
    font-size: 16px;
    background-color: var(--white)
}

@media(max-width: 767px) {

    .arry-prev,
    .arry-next {
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
        transition: var(--transition);
        font-size: 14px
    }
}

.arry-prev:hover,
.arry-next:hover {
    background-color: var(--theme-color1);
    color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0)
}

.arry-prev.active,
.active.arry-next {
    background-color: var(--theme-color1);
    color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0)
}

.video-btn {
    position: relative;
    text-align: center;
    display: inline-block;
    z-index: 2
}

.video-btn a {
    position: relative;
    color: var(--theme-color1);
    font-size: 24px;
    z-index: 1;
    background-color: var(--white);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: block
}

@media(max-width: 767px) {
    .video-btn a {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 16px
    }
}

.video-btn.video-pulse::after,
.video-btn.video-pulse::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 20px solid var(--white);
    opacity: .7;
    left: 0;
    top: 0;
    border-radius: 50%;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: video-animation;
    animation-name: video-animation;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@-webkit-keyframes video-animation {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.3)
    }

    100% {
        opacity: 0;
        transform: scale(1.5)
    }
}

@keyframes video-animation {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.3)
    }

    100% {
        opacity: 0;
        transform: scale(1.5)
    }
}

.video-btn.video-pulse::before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.progress-area {
    overflow: hidden
}

.progress__item .progress {
    background-color: var(--theme-color2);
    height: 15px;
    border-radius: 15px
}

.progress__item .progress.dark-mode {
    background-color: var(--theme-color2)
}

.progress__item .progress .progress-bar {
    background-color: var(--theme-color1)
}

.progress__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px
}

.progress__title h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    color: var(--heading-color)
}

.progress__title span {
    color: var(--theme-color3);
    font-size: 16px;
    font-weight: 500
}

#preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999
}

#preloader .animation-preloader {
    z-index: 1000
}

#preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(51, 51, 51, .5);
    border-top-color: var(--theme-color1);
    width: 120px;
    height: 120px;
    margin: 30px auto
}

@media(max-width: 991px) {
    #preloader .animation-preloader .spinner {
        width: 60px;
        height: 60px;
        margin: 10px auto
    }
}

#preloader .animation-preloader .txt-loading {
    font-size: 70px;
    line-height: 100px;
    font-weight: 700;
    font-family: var(--font-title);
    text-align: center;
    user-select: none
}

@media(max-width: 991px) {
    #preloader .animation-preloader .txt-loading {
        font-size: 40px;
        line-height: 40px
    }
}

#preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--theme-color1);
    position: relative
}

#preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: .2s
}

#preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: .4s
}

#preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: .6s
}

#preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: .8s
}

#preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s
}

#preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s
}

#preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s
}

#preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: letters-loading 4s infinite;
    color: var(--theme-color2);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: var(--font-title);
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg)
}

#preloader p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--theme-color1)
}

@media(max-width: 991px) {
    #preloader p {
        font-size: 14px;
        margin-top: 10px
    }
}

#preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none
}

#preloader .loader .row {
    height: 100%
}

#preloader .loader .loader-section {
    padding: 0px
}

#preloader .loader .loader-section .bg {
    background-color: var(--white);
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1)
}

#preloader.loaded .animation-preloader {
    opacity: 0;
    transition: .3s ease-out
}

#preloader.loaded .loader-section .bg {
    width: 0;
    transition: .7s;
    -webkit-transition: .7s;
    -moz-transition: .7s;
    -ms-transition: .7s;
    -o-transition: .7s
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}

@-webkit-keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg)
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg)
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg)
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg)
    }
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes width {
    0% {
        width: 0%
    }

    100% {
        width: 100%
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%
    }

    100% {
        width: 100%
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.2)
    }
}

.logo {
    display: block;
    width: 204px
}

.logo img {
    width: 100%
}

.header-top-area {
    overflow: hidden;
    padding: 10px 0;
    border-bottom: 2px solid #f4f4f4
}

.header-top-area.dark-area {
    border-bottom: 2px solid rgba(106, 106, 106, .1019607843)
}

.header-top__wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto
}

.header-top__socials {
    display: flex;
    align-items: center;
    gap: 25px
}

.header-top__socials a:hover {
    color: var(--theme-color1);
    transform: translateY(-2px)
}

.header-top__links {
    display: flex;
    align-items: center;
    gap: 60px
}

.header-top__links li {
    display: flex;
    align-items: center;
    gap: 10px
}

.header-top__links li a:hover {
    color: var(--theme-color1)
}

.header-top__links li:first-child {
    position: relative
}

.header-top__links li:first-child::after {
    position: absolute;
    top: -10px;
    right: -30px;
    height: 50px;
    width: 2px;
    background-color: #f4f4f4;
    content: ""
}

.header-top__links.dark-area li::after {
    background-color: rgba(106, 106, 106, .1019607843)
}

.header-area {
    top: 50px;
    position: fixed;
    width: 100%;
    z-index: 99;
    
}

.header-area.menu-fixed {
    top: 0;
    background-color: var(--white);
    box-shadow: var(--shadow)
}

@media(max-width: 991px) {
    .header-area {
        top: 0
    }
}

.header__main,
.header-four__main,
.header-three__main,
.header-five__main,
.header-two__main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto
}

.header__main .main-menu,
.header-four__main .main-menu,
.header-three__main .main-menu,
.header-five__main .main-menu,
.header-two__main .main-menu {
    display: flex;
    align-items: center;
    gap: 60px
}

.header__main .main-menu ul,
.header-four__main .main-menu ul,
.header-three__main .main-menu ul,
.header-five__main .main-menu ul,
.header-two__main .main-menu ul {
    display: flex;
    align-items: center;
    gap: 40px
}

@media(max-width: 1199px) {

    .header__main .main-menu ul,
    .header-four__main .main-menu ul,
    .header-three__main .main-menu ul,
    .header-five__main .main-menu ul,
    .header-two__main .main-menu ul {
        gap: 20px
    }
}

.header__main .main-menu ul li,
.header-four__main .main-menu ul li,
.header-three__main .main-menu ul li,
.header-five__main .main-menu ul li,
.header-two__main .main-menu ul li {
    position: relative
}

.header__main .main-menu ul li a,
.header-four__main .main-menu ul li a,
.header-three__main .main-menu ul li a,
.header-five__main .main-menu ul li a,
.header-two__main .main-menu ul li a {
    font-weight: 600;
    padding: 30px 0;
    font-size: 14px;
    line-height: 26px;
    color: var(--heading-color);
    text-transform: uppercase
}

@media(max-width: 1199px) {

    .header__main .main-menu ul li a,
    .header-four__main .main-menu ul li a,
    .header-three__main .main-menu ul li a,
    .header-five__main .main-menu ul li a,
    .header-two__main .main-menu ul li a {
        font-size: 16px
    }
}

.header__main .main-menu ul li a i,
.header-four__main .main-menu ul li a i,
.header-three__main .main-menu ul li a i,
.header-five__main .main-menu ul li a i,
.header-two__main .main-menu ul li a i {
    font-size: 12px;
    transition: var(--transition)
}

.header__main .main-menu ul li .sub-menu,
.header-four__main .main-menu ul li .sub-menu,
.header-three__main .main-menu ul li .sub-menu,
.header-five__main .main-menu ul li .sub-menu,
.header-two__main .main-menu ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    width: 220px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px)
}

.header__main .main-menu ul li .sub-menu li,
.header-four__main .main-menu ul li .sub-menu li,
.header-three__main .main-menu ul li .sub-menu li,
.header-five__main .main-menu ul li .sub-menu li,
.header-two__main .main-menu ul li .sub-menu li {
    width: 100%
}

.header__main .main-menu ul li .sub-menu li:not(:last-child),
.header-four__main .main-menu ul li .sub-menu li:not(:last-child),
.header-three__main .main-menu ul li .sub-menu li:not(:last-child),
.header-five__main .main-menu ul li .sub-menu li:not(:last-child),
.header-two__main .main-menu ul li .sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border)
}

.header__main .main-menu ul li .sub-menu li a.arrow:after,
.header-four__main .main-menu ul li .sub-menu li a.arrow:after,
.header-three__main .main-menu ul li .sub-menu li a.arrow:after,
.header-five__main .main-menu ul li .sub-menu li a.arrow:after,
.header-two__main .main-menu ul li .sub-menu li a.arrow:after {
    content: "";
    font-family: "Font Awesome 6 Pro";
    display: block;
    font-size: 11px;
    font-weight: 900;
    line-height: 24px;
    position: absolute;
    right: 15px;
    top: 11px;
    z-index: 5
}

.header__main .main-menu ul li .sub-menu li a,
.header-four__main .main-menu ul li .sub-menu li a,
.header-three__main .main-menu ul li .sub-menu li a,
.header-five__main .main-menu ul li .sub-menu li a,
.header-two__main .main-menu ul li .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--heading-color) !important
}

.header__main .main-menu ul li .sub-menu li a i,
.header-four__main .main-menu ul li .sub-menu li a i,
.header-three__main .main-menu ul li .sub-menu li a i,
.header-five__main .main-menu ul li .sub-menu li a i,
.header-two__main .main-menu ul li .sub-menu li a i {
    float: right;
    transform: rotate(0deg) !important;
    margin-top: 8px;
    color: var(--heading-color) !important
}

.header__main .main-menu ul li .sub-menu li .sub-sub-menu,
.header-four__main .main-menu ul li .sub-menu li .sub-sub-menu,
.header-three__main .main-menu ul li .sub-menu li .sub-sub-menu,
.header-five__main .main-menu ul li .sub-menu li .sub-sub-menu,
.header-two__main .main-menu ul li .sub-menu li .sub-sub-menu {
    position: absolute;
    left: 210px;
    top: 0px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    width: 220px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px)
}

.header__main .main-menu ul li .sub-menu li .sub-sub-menu li,
.header-four__main .main-menu ul li .sub-menu li .sub-sub-menu li,
.header-three__main .main-menu ul li .sub-menu li .sub-sub-menu li,
.header-five__main .main-menu ul li .sub-menu li .sub-sub-menu li,
.header-two__main .main-menu ul li .sub-menu li .sub-sub-menu li {
    width: 100%
}

.header__main .main-menu ul li .sub-menu li .sub-sub-menu li:not(:last-child),
.header-four__main .main-menu ul li .sub-menu li .sub-sub-menu li:not(:last-child),
.header-three__main .main-menu ul li .sub-menu li .sub-sub-menu li:not(:last-child),
.header-five__main .main-menu ul li .sub-menu li .sub-sub-menu li:not(:last-child),
.header-two__main .main-menu ul li .sub-menu li .sub-sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border)
}

.header__main .main-menu ul li .sub-menu li .sub-sub-menu li a,
.header-four__main .main-menu ul li .sub-menu li .sub-sub-menu li a,
.header-three__main .main-menu ul li .sub-menu li .sub-sub-menu li a,
.header-five__main .main-menu ul li .sub-menu li .sub-sub-menu li a,
.header-two__main .main-menu ul li .sub-menu li .sub-sub-menu li a {
    display: block;
    padding: 10px 20px !important;
    color: var(--heading-color) !important
}

.header__main .main-menu ul li .sub-menu li .sub-sub-menu li:hover a,
.header-four__main .main-menu ul li .sub-menu li .sub-sub-menu li:hover a,
.header-three__main .main-menu ul li .sub-menu li .sub-sub-menu li:hover a,
.header-five__main .main-menu ul li .sub-menu li .sub-sub-menu li:hover a,
.header-two__main .main-menu ul li .sub-menu li .sub-sub-menu li:hover a {
    padding-left: 25px !important;
    color: var(--theme-color1) !important
}

.header__main .main-menu ul li .sub-menu li:hover a,
.header-four__main .main-menu ul li .sub-menu li:hover a,
.header-three__main .main-menu ul li .sub-menu li:hover a,
.header-five__main .main-menu ul li .sub-menu li:hover a,
.header-two__main .main-menu ul li .sub-menu li:hover a {
    padding-left: 25px;
    color: var(--theme-color1) !important
}

.header__main .main-menu ul li .sub-menu li:hover a i,
.header-four__main .main-menu ul li .sub-menu li:hover a i,
.header-three__main .main-menu ul li .sub-menu li:hover a i,
.header-five__main .main-menu ul li .sub-menu li:hover a i,
.header-two__main .main-menu ul li .sub-menu li:hover a i {
    transform: rotate(-90deg) !important;
    color: var(--theme-color1) !important
}

.header__main .main-menu ul li .sub-menu li:hover .sub-sub-menu,
.header-four__main .main-menu ul li .sub-menu li:hover .sub-sub-menu,
.header-three__main .main-menu ul li .sub-menu li:hover .sub-sub-menu,
.header-five__main .main-menu ul li .sub-menu li:hover .sub-sub-menu,
.header-two__main .main-menu ul li .sub-menu li:hover .sub-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px)
}

.header__main .main-menu ul li:hover .sub-menu,
.header-four__main .main-menu ul li:hover .sub-menu,
.header-three__main .main-menu ul li:hover .sub-menu,
.header-five__main .main-menu ul li:hover .sub-menu,
.header-two__main .main-menu ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px)
}

.header__main .main-menu ul li:hover:hover a,
.header-four__main .main-menu ul li:hover:hover a,
.header-three__main .main-menu ul li:hover:hover a,
.header-five__main .main-menu ul li:hover:hover a,
.header-two__main .main-menu ul li:hover:hover a {
    color: var(--theme-color1)
}

.header__main .main-menu ul li:hover:hover i,
.header-four__main .main-menu ul li:hover:hover i,
.header-three__main .main-menu ul li:hover:hover i,
.header-five__main .main-menu ul li:hover:hover i,
.header-two__main .main-menu ul li:hover:hover i {
    transform: rotate(-180deg);
    color: var(--theme-color1)
}

.header__main .main-menu-light ul li a,
.header-four__main .main-menu-light ul li a,
.header-three__main .main-menu-light ul li a,
.header-five__main .main-menu-light ul li a,
.header-two__main .main-menu-light ul li a {
    color: var(--white)
}

.header__main .main-menu-light ul li:hover a,
.header-four__main .main-menu-light ul li:hover a,
.header-three__main .main-menu-light ul li:hover a,
.header-five__main .main-menu-light ul li:hover a,
.header-two__main .main-menu-light ul li:hover a {
    color: var(--white) !important
}

.header__main .main-menu-light ul li:hover i,
.header-four__main .main-menu-light ul li:hover i,
.header-three__main .main-menu-light ul li:hover i,
.header-five__main .main-menu-light ul li:hover i,
.header-two__main .main-menu-light ul li:hover i {
    color: var(--white) !important
}

.header__main .main-menu-light ul li .sub-menu,
.header-four__main .main-menu-light ul li .sub-menu,
.header-three__main .main-menu-light ul li .sub-menu,
.header-five__main .main-menu-light ul li .sub-menu,
.header-two__main .main-menu-light ul li .sub-menu {
    background-color: var(--black);
    border: 1px solid var(--border)
}

.header__main .main-menu-light ul li .sub-menu li:not(:last-child),
.header-four__main .main-menu-light ul li .sub-menu li:not(:last-child),
.header-three__main .main-menu-light ul li .sub-menu li:not(:last-child),
.header-five__main .main-menu-light ul li .sub-menu li:not(:last-child),
.header-two__main .main-menu-light ul li .sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border)
}

.header__main .main-menu-light ul li .sub-menu li a,
.header-four__main .main-menu-light ul li .sub-menu li a,
.header-three__main .main-menu-light ul li .sub-menu li a,
.header-five__main .main-menu-light ul li .sub-menu li a,
.header-two__main .main-menu-light ul li .sub-menu li a {
    color: var(--white) !important
}

.header__main .main-menu-light ul li .sub-menu li a i,
.header-four__main .main-menu-light ul li .sub-menu li a i,
.header-three__main .main-menu-light ul li .sub-menu li a i,
.header-five__main .main-menu-light ul li .sub-menu li a i,
.header-two__main .main-menu-light ul li .sub-menu li a i {
    color: var(--white) !important
}

.header__main .main-menu-light ul li .sub-menu li a:hover,
.header-four__main .main-menu-light ul li .sub-menu li a:hover,
.header-three__main .main-menu-light ul li .sub-menu li a:hover,
.header-five__main .main-menu-light ul li .sub-menu li a:hover,
.header-two__main .main-menu-light ul li .sub-menu li a:hover {
    color: var(--theme-color1) !important
}

.header__main .main-menu-light ul li .sub-menu li .sub-sub-menu,
.header-four__main .main-menu-light ul li .sub-menu li .sub-sub-menu,
.header-three__main .main-menu-light ul li .sub-menu li .sub-sub-menu,
.header-five__main .main-menu-light ul li .sub-menu li .sub-sub-menu,
.header-two__main .main-menu-light ul li .sub-menu li .sub-sub-menu {
    background-color: var(--black)
}

.header__main .main-menu-light ul li .sub-menu li .sub-sub-menu li a,
.header-four__main .main-menu-light ul li .sub-menu li .sub-sub-menu li a,
.header-three__main .main-menu-light ul li .sub-menu li .sub-sub-menu li a,
.header-five__main .main-menu-light ul li .sub-menu li .sub-sub-menu li a,
.header-two__main .main-menu-light ul li .sub-menu li .sub-sub-menu li a {
    color: var(--white) !important
}

@media(max-width: 991px) {

    .header__main,
    .header-four__main,
    .header-three__main,
    .header-five__main,
    .header-two__main {
        padding: 15px 0
    }
}

.header__main .menu-btns,
.header-four__main .menu-btns,
.header-three__main .menu-btns,
.header-five__main .menu-btns,
.header-two__main .menu-btns {
    display: flex;
    align-items: center;
    gap: 25px
}

.header__main .menu-btns .search-trigger,
.header-four__main .menu-btns .search-trigger,
.header-three__main .menu-btns .search-trigger,
.header-five__main .menu-btns .search-trigger,
.header-two__main .menu-btns .search-trigger {
    font-size: 24px;
    color: var(--heading-color);
    margin-top: 8px
}

.header__main .menubars,
.header-four__main .menubars,
.header-three__main .menubars,
.header-five__main .menubars,
.header-two__main .menubars {
    width: 28px;
    line-height: 8px;
    text-align: right
}

.header__main .menubars span,
.header-four__main .menubars span,
.header-three__main .menubars span,
.header-five__main .menubars span,
.header-two__main .menubars span {
    width: 100%;
    height: 2px;
    background-color: var(--heading-color);
    transition: var(--transition)
}

.header__main .menubars span:nth-child(2),
.header-four__main .menubars span:nth-child(2),
.header-three__main .menubars span:nth-child(2),
.header-five__main .menubars span:nth-child(2),
.header-two__main .menubars span:nth-child(2) {
    width: 70%;
    text-align: right
}

.header__main .menubars:hover span:nth-child(2),
.header-four__main .menubars:hover span:nth-child(2),
.header-three__main .menubars:hover span:nth-child(2),
.header-five__main .menubars:hover span:nth-child(2),
.header-two__main .menubars:hover span:nth-child(2) {
    width: 100%
}

.header__main .menubars-light span,
.header-four__main .menubars-light span,
.header-three__main .menubars-light span,
.header-five__main .menubars-light span,
.header-two__main .menubars-light span {
    background-color: var(--white)
}

.header-two-area,
.header-four-area,
.header-three-area,
.header-five-area {
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0)
}

.header-two__main {
    max-width: 1560px
}

.header-three-area,
.header-five-area {
    border-bottom: 1px solid rgba(0, 0, 0, .1019607843)
}

.header-three__main,
.header-five__main {
    max-width: 1865px;
    padding: 0 15px
}

@media(max-width: 991px) {

    .header-three__main,
    .header-five__main {
        padding: 15px
    }
}

.header-four-area.menu-fixed {
    background-color: var(--black)
}

.header-four__main {
    max-width: 1370px
}

.header-five__main {
    max-width: 1690px
}

.offcanvas {
    width: 375px !important;
    border-left: 3px solid var(--theme-color1) !important
}

@media screen and (max-width: 375px) {
    .offcanvas {
        width: 320px !important
    }
}

.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, .8);
    cursor: url("../images/icon/x.png") 16 16, auto
}

.offcanvas-backdrop.show {
    opacity: 1
}

.offcanvas .btn-close {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 22px;
    color: var(--white);
    background-color: var(--theme-color1);
    opacity: 1;
    background-image: none;
    transition: var(--transition)
}

.offcanvas .btn-close:hover {
    transform: rotate(90deg)
}

.sidebar-area {
    z-index: 99999;
    background-color: var(--heading-color)
}

.sidebar__socials ul {
    display: flex;
    align-items: center;
    gap: 12px
}

.sidebar__socials ul li {
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--theme-color1)
}

.sidebar__btns {
    display: flex;
    align-items: center;
    gap: 12px
}

.sidebar__btns a {
    padding: 6px 16px;
    border-radius: 8px;
    color: var(--white);
    background-color: var(--theme-color1)
}

.sidebar__contact-info ul li:not(:last-child) {
    margin-bottom: 10px
}

.sidebar__contact-info ul li i {
    color: var(--theme-color1);
    margin-right: 8px
}

.sidebar__contact-info ul li a {
    color: var(--text-color3)
}

.sidebar__text {
    color: var(--text-color3)
}

.sidebar__body {
    margin-top: 30px
}

.sidebar__body .mean-container .mean-nav {
    background-color: var(--heading-color)
}

.sidebar__body .mean-container .mean-nav ul li a.mean-expand {
    background-color: var(--theme-color1)
}

.mobile-menu .meanmenu-reveal {
    display: none !important
}

.mobile-menu.mean-container .mean-nav>ul {
    width: 100%;
    display: block !important
}

.mobile-menu ul li a i {
    display: none
}

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, .8);
    cursor: url(../images/icon/x.png), auto
}

.search-wrap .search-inner {
    position: relative;
    width: 100%;
    height: 100%
}

.search-wrap .search-cell {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%)
}

.search-wrap .search-field-holder {
    width: 50%;
    margin: auto;
    position: relative;
    animation: slideInUp .3s
}

.search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    background: rgba(0, 0, 0, 0);
    font-size: 25px;
    color: var(--white);
    border-bottom: 1px solid var(--white);
    text-align: center;
    letter-spacing: 2px
}

.search-wrap input.main-search-input::placeholder {
    color: var(--white);
    opacity: 1;
    font-size: 24px
}

.search-wrap .search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    transition: var(--transition)
}

.search-wrap .search-close:hover {
    transform: rotate(90deg)
}

.banner-area {
    overflow: hidden;
    padding-top: 90px
}

@media(max-width: 991px) {
    .banner-area {
        padding-top: 80px
    }
}

.banner__image {
    position: relative;
    z-index: 1
}

.banner__image img {
    width: 100%;
    border-radius: 10px
}

.banner__image .parallax-bg {
    overflow: hidden
}

@media(max-width: 991px) {
    .banner__image .parallax-bg {
        height: 400px
    }

    .banner__image .parallax-bg img {
        height: 100%;
        object-fit: cover
    }
}

.banner__content {
    background-color: var(--theme-color3);
    padding: 50px;
    border-radius: var(--radius);
    max-width: 540px;
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    z-index: 1
}

@media(max-width: 991px) {
    .banner__content {
        padding: 30px;
        max-width: 420px;
        left: 20px;
        top: 55%
    }
}

@media(max-width: 575px) {
    .banner__content {
        padding: 20px;
        max-width: 260px;
        left: 15px
    }

    .banner__content .btn-one,
    .banner__content .btn-two {
        margin-top: 15px
    }

    .banner__content .shape {
        max-width: 200px
    }
}

.banner__content h4 {
    font-size: 16px;
    color: var(--text-color3);
    text-transform: uppercase
}

@media(max-width: 575px) {
    .banner__content h4 {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0
    }
}

.banner__content h1 {
    font-size: 36px;
    line-height: 48px;
    color: var(--white);
    text-transform: capitalize
}

@media(max-width: 991px) {
    .banner__content h1 {
        font-size: 24px;
        line-height: 30px
    }
}

@media(max-width: 575px) {
    .banner__content h1 {
        font-size: 18px;
        line-height: 24px
    }
}

.banner__content .shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.banner__slider-arry {
    position: absolute;
    background-color: var(--white);
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    border-top-left-radius: 15px;
    overflow: hidden;
    z-index: 1;
    width: 170px
}

.banner__slider-arry button {
    font-size: 26px;
    color: var(--theme-color2);
    padding: 22px 28px;
    display: inline-block;
    transition: var(--transition)
}

@media(max-width: 575px) {
    .banner__slider-arry button {
        font-size: 18px;
        padding: 10px
    }
}

.banner__slider-arry button:hover {
    background-color: var(--theme-color2);
    color: var(--text-color2)
}

@media(max-width: 575px) {
    .banner__slider-arry {
        width: 80px
    }
}

.banner-two-area {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.banner-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: -1
}

.banner-two__bg img {
    width: 100%;
    height: 100%
}

.banner-two__wrp {
    max-width: 1150px;
    margin: 0 auto
}

.banner-two__content {
    text-align: center;
    max-width: 1040px;
    margin: 0 auto;
    padding-top: 160px;
    padding-bottom: 60px
}

@media(max-width: 991px) {
    .banner-two__content {
        padding-top: 100px;
        padding-bottom: 50px
    }
}

@media(max-width: 767px) {
    .banner-two__content {
        padding-top: 80px;
        padding-bottom: 30px
    }
}

.banner-two__content h1 {
    font-size: 80px;
    line-height: 96px;
    font-weight: 700
}

@media(max-width: 991px) {
    .banner-two__content h1 {
        font-size: 60px;
        line-height: 70px
    }
}

@media(max-width: 767px) {
    .banner-two__content h1 {
        font-size: 46px;
        line-height: 50px
    }
}

@media(max-width: 575px) {
    .banner-two__content h1 {
        font-size: 36px;
        line-height: 40px
    }
}

.banner-two__content h2 {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(187, 154, 101, .5019607843);
    text-transform: uppercase;
    font-size: 128px;
    line-height: 130px;
    font-weight: 700;
    letter-spacing: 40px;
    margin-top: -70px;
    position: relative;
    z-index: -1
}

@media(max-width: 991px) {
    .banner-two__content h2 {
        font-size: 100px;
        line-height: 100px;
        letter-spacing: 30px;
        margin-top: -50px
    }
}

@media(max-width: 767px) {
    .banner-two__content h2 {
        font-size: 50px;
        line-height: 50px;
        letter-spacing: 20px;
        margin-top: -20px
    }
}

@media(max-width: 575px) {
    .banner-two__content h2 {
        font-size: 40px;
        line-height: 40px;
        letter-spacing: 15px
    }
}

.banner-three-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-top: 150px;
    padding-bottom: 350px
}

.banner-three__shape {
    position: absolute;
    bottom: 0;
    right: 110px;
    z-index: -1
}

@media(max-width: 1199px) {
    .banner-three__shape {
        display: none
    }
}

.banner-three__image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 150px
}

@media(max-width: 1199px) {
    .banner-three__image {
        transform: translateX(-10%)
    }
}

.banner-three__image .image-border {
    position: absolute;
    bottom: -20px;
    left: 30px;
    z-index: -1
}

.banner-three__image .stroke-text {
    position: absolute;
    bottom: -105px;
    left: -50px;
    font-size: 147px;
    line-height: 150px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--theme-color2)
}

@media(max-width: 767px) {
    .banner-three__image {
        max-width: 300px;
        left: 30px;
        bottom: 50px;
        transform: unset
    }

    .banner-three__image img {
        width: 100%
    }

    .banner-three__image .stroke-text {
        bottom: -20px;
        left: -20px;
        font-size: 100px;
        line-height: 100px
    }
}

.banner-three__content {
    max-width: 1670px;
    padding: 0 28px;
    margin: 0 auto
}

.banner-three__content h1 {
    font-size: 147px;
    line-height: 150px;
    font-weight: 700;
    color: var(--theme-color3);
    text-transform: uppercase
}

.banner-three__content h1 .stroke-text {
    font-weight: 600;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--theme-color2)
}

@media(max-width: 991px) {
    .banner-three__content h1 {
        font-size: 100px;
        line-height: 100px
    }
}

@media(max-width: 767px) {
    .banner-three__content h1 {
        font-size: 80px;
        line-height: 80px
    }
}

@media(max-width: 575px) {
    .banner-three__content h1 {
        font-size: 40px;
        line-height: 50px
    }
}

.banner-three__content p {
    position: relative;
    max-width: 390px;
    font-size: 18px;
    line-height: 36px
}

@media(max-width: 991px) {
    .banner-three__content p {
        margin-top: 30px;
        font-size: 16px;
        line-height: 30px;
        max-width: 300px
    }
}

@media(max-width: 991px) {
    .banner-three__content p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 26px
    }
}

.banner-three__content p::before {
    position: absolute;
    top: 16px;
    left: -110px;
    width: 100px;
    height: 1px;
    background-color: #111013;
    content: ""
}

@media(max-width: 767px) {
    .banner-three__content .btn-arrow {
        margin-top: 10px
    }
}

.banner-four-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--theme-color3);
    padding-top: 290px;
    padding-bottom: 250px
}

@media(max-width: 991px) {
    .banner-four-area {
        padding-bottom: 80px;
        padding-top: 150px
    }
}

.banner-four__line,
.banner-four__line-five,
.banner-four__line-four,
.banner-four__line-three,
.banner-four__line-two {
    position: absolute;
    z-index: -1;
    display: block;
    width: 1px;
    height: 100%;
    background-color: #202020;
    top: 0;
    left: 14%
}

.banner-four__line-two {
    left: 32%
}

.banner-four__line-three {
    left: 50%
}

.banner-four__line-four {
    left: 68%
}

.banner-four__line-five {
    left: 86%
}

.banner-four__slider-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 60px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
    font-size: 25px;
    transition: var(--transition);
    z-index: 9
}

.banner-four__slider-prev:hover {
    left: 50px
}

@media(max-width: 575px) {
    .banner-four__slider-prev {
        top: unset;
        transform: unset;
        bottom: 20px;
        left: 20px
    }
}

.banner-four__slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 60px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
    font-size: 25px;
    transition: var(--transition);
    z-index: 9
}

.banner-four__slider-next:hover {
    right: 50px
}

@media(max-width: 575px) {
    .banner-four__slider-next {
        top: unset;
        transform: unset;
        bottom: 20px;
        right: 20px
    }
}

.banner-four__shape {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8%;
    z-index: 2
}

@media(max-width: 991px) {
    .banner-four__shape {
        display: none
    }
}

.banner-four__text {
    position: absolute;
    left: 8%;
    top: 170px;
    z-index: 2
}

@media(max-width: 991px) {
    .banner-four__text {
        left: 20px
    }
}

.banner-four__text h2 {
    font-size: 200px;
    line-height: 200px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(170, 170, 170, .1019607843)
}

@media(max-width: 991px) {
    .banner-four__text h2 {
        font-size: 150px;
        line-height: 150px;
        letter-spacing: 10px
    }
}

@media(max-width: 767px) {
    .banner-four__text h2 {
        font-size: 100px;
        line-height: 100px
    }
}

.banner-four__wrp {
    max-width: 1370px;
    margin: 0 auto
}

.banner-four__content {
    position: relative
}

.banner-four__content h1 {
    line-height: 90px;
    color: var(--white)
}

@media(max-width: 767px) {
    .banner-four__content h1 {
        line-height: 50px
    }
}

.banner-four__content p {
    color: #d8d8d8;
    font-size: 24px;
    line-height: 40px;
    font-weight: 600
}

@media(max-width: 767px) {
    .banner-four__content p {
        font-size: 18px;
        line-height: 30px
    }
}

.banner-four__image img {
    width: 100%
}

@media(max-width: 991px) {
    .banner-four__image {
        margin-top: 50px
    }
}

.banner-five-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 250px 0
}

@media(max-width: 991px) {
    .banner-five-area {
        padding-top: 150px;
        padding-bottom: 100px
    }
}

@media(max-width: 575px) {
    .banner-five-area {
        padding-top: 100px
    }
}

.banner-five__shape {
    position: absolute;
    bottom: 60px;
    right: 0;
    z-index: -1
}

.banner-five__content {
    max-width: 1660px;
    margin: 0 auto
}

@media(max-width: 1199px) {
    .banner-five__content {
        padding: 0 30px
    }
}

@media(max-width: 575px) {
    .banner-five__content {
        padding: 0 15px
    }
}

.banner-five__content .top-content {
    max-width: 850px
}

@media(max-width: 1199px) {
    .banner-five__content .top-content {
        max-width: 470px
    }
}

.banner-five__content h1 {
    font-size: 147px;
    line-height: 150px;
    color: var(--theme-color3);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 50px
}

@media(max-width: 1199px) {
    .banner-five__content h1 {
        font-size: 80px;
        line-height: 80px;
        gap: 20px
    }

    .banner-five__content h1 img {
        max-width: 190px
    }
}

@media(max-width: 575px) {
    .banner-five__content h1 {
        font-size: 40px;
        line-height: 40px
    }

    .banner-five__content h1 img {
        display: none
    }
}

.banner-five__content h3 {
    text-transform: uppercase;
    font-size: 64px;
    line-height: 150px;
    color: var(--theme-color1);
    font-style: italic;
    text-align: right
}

@media(max-width: 1199px) {
    .banner-five__content h3 {
        font-size: 40px;
        line-height: 120px
    }
}

@media(max-width: 575px) {
    .banner-five__content h3 {
        font-size: 22px;
        line-height: 50px
    }
}

.banner-inner-area {
    overflow: hidden;
    padding-top: 220px;
    padding-bottom: 150px
}

@media(max-width: 991px) {
    .banner-inner-area {
        padding-top: 120px;
        padding-bottom: 60px
    }
}

.banner-inner__content {
    text-align: center;
    max-width: 580px;
    margin: 0 auto
}

.banner-inner__content a,
.banner-inner__content span {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: var(--theme-color1);
    text-transform: uppercase
}

@media(max-width: 575px) {

    .banner-inner__content a,
    .banner-inner__content span {
        font-size: 16px;
        line-height: 28px
    }
}

.banner-inner__content p {
    font-size: 18px;
    margin-top: 15px
}

@media(max-width: 767px) {
    .banner-inner__content p {
        font-size: 16px
    }
}

.about-area {
    overflow: hidden
}

.about__image {
    max-width: 605px;
    position: relative
}

.about__image .text-shape {
    position: absolute;
    bottom: -80px;
    right: -80px
}

@media(max-width: 575px) {
    .about__image .text-shape {
        display: none
    }
}

.about__image img {
    width: 100%
}

.about__content {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between
}

.about__content ul li {
    color: var(--theme-color2);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px
}

.about__content ul li:not(:last-child) {
    margin-bottom: 8px
}

.about-two-area {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.about-two__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1
}

.about-two__wrp {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 160px
}

@media(max-width: 991px) {
    .about-two__wrp {
        padding-bottom: 0
    }
}

.about-two__text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

@media(max-width: 991px) {
    .about-two__text {
        display: none
    }
}

.about-two__info h2 {
    font-size: 60px;
    color: var(--theme-color3)
}

.about-two__content {
    margin-top: 120px
}

@media(max-width: 991px) {
    .about-two__content {
        margin-top: 60px
    }
}

.about-two__content ul li h2 {
    font-size: 60px;
    color: var(--theme-color3)
}

.about-two__content ul li h2 span {
    color: inherit
}

@media(max-width: 991px) {
    .about-two__content ul li h2 {
        font-size: 40px
    }
}

.about-two__content ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    margin-bottom: 30px;
    padding-bottom: 20px
}

.about-four-area {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.about-four__text {
    position: absolute;
    bottom: 0;
    right: -370px;
    z-index: -1
}

@media(max-width: 767px) {
    .about-four__text {
        right: -20px
    }
}

.about-four__text h2 {
    font-size: 300px;
    line-height: 300px;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(108, 78, 167, .2)
}

@media(max-width: 767px) {
    .about-four__text h2 {
        font-size: 150px;
        line-height: 150px
    }
}

.about-four__image {
    position: relative;
    z-index: 0
}

.about-four__image::before {
    background-color: rgba(0, 0, 0, .3019607843);
    z-index: 1
}

.about-four__content {
    margin-left: 100px;
    max-width: 490px;
    position: relative
}

@media(max-width: 991px) {
    .about-four__content {
        margin-left: 15px
    }
}

.about-four__content h2 {
    font-size: 80px;
    line-height: 90px;
    margin-left: -288px
}

@media(max-width: 991px) {
    .about-four__content h2 {
        margin-left: 0;
        font-size: 40px;
        line-height: 50px
    }
}

.about-five-area {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.about-five__shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1
}

.about-five__wrp {
    max-width: 1270px;
    margin: 0 auto
}

.about-five__image {
    padding: 0 30px
}

.about-five__image img {
    width: 100%
}

.about-five__image.have-margin {
    margin-top: -130px
}

@media(max-width: 1199px) {
    .about-five__image.have-margin {
        margin-top: -80px
    }
}

@media(max-width: 767px) {
    .about-five__image.have-margin {
        margin-top: 0
    }
}

@media(max-width: 767px) {
    .about-five__image {
        padding: 0
    }
}

.about-five__content {
    float: right;
    margin-top: 60px;
    max-width: 500px;
    position: relative;
    text-align: center
}

@media(max-width: 767px) {
    .about-five__content {
        margin-top: 0px
    }
}

.about-five__content h2 {
    font-size: 128px;
    line-height: 130px;
    font-weight: 600;
    color: var(--theme-color3);
    margin-left: -350px
}

@media(max-width: 1199px) {
    .about-five__content h2 {
        font-size: 80px;
        line-height: 80px;
        margin-left: -200px
    }
}

@media(max-width: 767px) {
    .about-five__content h2 {
        margin-left: 0;
        font-size: 48px;
        margin-bottom: 0px
    }
}

.about-five__content p {
    font-size: 24px;
    line-height: 46px;
    font-family: var(--font-title)
}

@media(max-width: 1199px) {
    .about-five__content p {
        font-size: 18px;
        line-height: 30px
    }
}

.about-five__content-bottom {
    text-align: center
}

.about-five__content-bottom h3 {
    font-size: 96px;
    font-weight: 600;
    line-height: 115px;
    letter-spacing: .1em;
    color: rgba(0, 0, 0, .0509803922);
    margin-bottom: -52px
}

@media(max-width: 1199px) {
    .about-five__content-bottom h3 {
        margin-bottom: -30px;
        font-size: 40px;
        line-height: 50px
    }
}

.about-five__content-bottom h2 {
    color: var(--theme-color3)
}

.about-five__content-bottom .line {
    width: 290px;
    margin: 30px auto;
    height: 1px;
    background-color: rgba(0, 0, 0, .1019607843)
}

.about-five__content-bottom p {
    line-height: 30px
}

.blog-area {
    overflow: hidden
}

.blog__wrp {
    max-width: 1210px;
    margin: 0 auto
}

.blog__item .blog__image {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    display: block;
    transition: var(--transition)
}

.blog__item .blog__image img {
    width: 100%;
    transition: var(--transition)
}

.blog__item .blog__content {
    padding: 20px 40px
}

.blog__item .blog__content ul {
    display: flex;
    align-items: center;
    gap: 20px
}

.blog__item .blog__content ul li {
    font-size: 14px
}

.blog__item .blog__content ul li strong {
    color: var(--theme-color3);
    position: relative;
    text-transform: uppercase
}

.blog__item .blog__content ul li strong::after {
    position: absolute;
    top: 8px;
    left: -40px;
    background-color: var(--theme-color3);
    width: 32px;
    height: 2px;
    content: ""
}

.blog__item .blog__content ul li span {
    position: relative
}

.blog__item .blog__content ul li span::after {
    position: absolute;
    top: 12px;
    left: -10px;
    background-color: var(--span);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    content: ""
}

.blog__item .blog__content h4 {
    margin-top: 10px
}

.blog__item .blog__content h4 a:hover {
    color: var(--theme-color1)
}

.blog__item:hover .blog__image {
    -webkit-clip-path: inset(5px 10px);
    clip-path: inset(5px 10px)
}

.blog__item:hover .blog__image img {
    transform: scale(1.05) rotate(-2deg)
}

.brand-area {
    overflow: hidden
}

.brand__wrp {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 991px) {
    .brand__wrp {
        flex-wrap: wrap
    }
}

.brand__item {
    width: 100px;
    text-align: center
}

.brand__item img {
    max-width: 100%
}

.choose-area {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.choose__wrp {
    max-width: 1320px;
    margin: 0 auto
}

.choose__shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1
}

.choose__content {
    max-width: 580px
}

.choose__content ul {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between
}

.choose__content ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 250px
}

.choose__content ul li h3 {
    font-weight: 700
}

.choose__image {
    position: relative
}

.choose__image img {
    width: 100%
}

.choose__image .stroke-text {
    position: absolute;
    left: 0;
    bottom: 0
}

@media(max-width: 1399px) {
    .choose__image .stroke-text {
        display: none
    }
}

.choose__image .stroke-text h2 {
    text-transform: uppercase;
    font-size: 146px;
    line-height: 150px;
    font-weight: 700;
    letter-spacing: 5px;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, .231372549)
}

.choose__image .stroke-text.dark-area h2 {
    -webkit-text-fill-color: rgba(187, 154, 101, .2)
}

.choose-two-area {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.choose-two-area::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 38%;
    width: 100%;
    background-color: var(--sub-bg);
    z-index: -1
}

.choose-two-area.dark-area::before {
    background-color: var(--white)
}

.choose-two__wrp {
    max-width: 1460px;
    margin: 0 auto
}

.choose-two__image {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow)
}

.choose-two__image img {
    width: 100%
}

.choose-two__image::before {
    background-color: rgba(0, 0, 0, .2);
    z-index: 0
}

.choose-two__content {
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    width: 88%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 991px) {
    .choose-two__content {
        width: 92%
    }
}

@media(max-width: 767px) {
    .choose-two__content {
        flex-wrap: wrap;
        gap: 30px;
        bottom: 30px
    }
}

@media(max-width: 575px) {
    .choose-two__content {
        gap: 20px;
        bottom: 20px
    }
}

.choose-two__content h2 {
    max-width: 650px;
    font-weight: 600;
    color: var(--white)
}

@media(max-width: 1199px) {
    .choose-two__content h2 {
        max-width: 450px
    }
}

@media(max-width: 991px) {
    .choose-two__content h2 {
        font-size: 28px;
        line-height: 40px;
        max-width: 300px
    }
}

@media(max-width: 575px) {
    .choose-two__content h2 {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        max-width: 300px
    }
}

.choose-two__video {
    display: flex;
    align-items: center;
    gap: 30px
}

.choose-two__video .info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white)
}

@media(max-width: 575px) {
    .choose-two__video .info h3 {
        font-size: 16px;
        line-height: 26px
    }
}

.contact-area {
    position: relative;
    z-index: 1
}

.contact__wrp {
    max-width: 810px;
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%)
}

@media(max-width: 1600px) {
    .contact__wrp {
        right: 10%
    }
}

@media(max-width: 1399px) {
    .contact__wrp {
        right: 2%
    }
}

@media(max-width: 1199px) {
    .contact__wrp {
        position: unset;
        width: 100%;
        transform: unset;
        max-width: 100%
    }
}

.contact__shape {
    position: absolute;
    bottom: -140px;
    right: 0;
    z-index: -1
}

@media(max-width: 1399px) {
    .contact__shape {
        display: none
    }
}

.contact__image img {
    width: 100%
}

@media(max-width: 1199px) {
    .contact__image {
        display: none
    }
}

.contact__form {
    padding: 15px;
    background-color: var(--white);
    box-shadow: var(--shadow)
}

.contact__form form input,
.contact__form form textarea {
    width: 100%;
    padding: 14px 20px;
    border: none;
    background-color: #f2f2f2
}

.contact__form form textarea {
    height: 105px;
    resize: none
}

.contact__form form button {
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    background-color: var(--theme-color2);
    color: var(--text-color2);
    transition: var(--transition)
}

.contact__form form button:hover {
    letter-spacing: 2px
}

@media(max-width: 575px) {
    .contact__form {
        padding: 30px;
        margin: 0 15px
    }
}

.contact__form.dark-area form input,
.contact__form.dark-area form textarea {
    background-color: rgba(242, 242, 242, .0509803922);
    color: var(--paragraph)
}

.contact__form.dark-area form button {
    background-color: var(--theme-color1)
}

.contact__item {
    position: absolute;
    top: 50%;
    left: -400px;
    transform: translateY(-50%);
    max-width: 400px;
    width: 100%;
    background-color: var(--theme-color2);
    padding: 15px;
    z-index: 1
}

@media(max-width: 1199px) {
    .contact__item {
        position: unset;
        width: 95%;
        transform: unset;
        max-width: 95%;
        margin: 0 auto
    }
}

.contact__item .inner-box {
    border: .5px solid var(--white);
    padding: 40px
}

.contact__item .icon img {
    animation: ring-animation 1.5s ease-in-out infinite
}

.contact__item .icon-two {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: -1
}

.contact__item .info h6 {
    font-weight: 400;
    color: var(--text-color2)
}

.contact__item .info h3 {
    font-weight: 700;
    color: var(--text-color2)
}

.contact__item:hover .icon img {
    animation: unset
}

.contact__item:hover .icon-two {
    animation: ring-animation 1.5s ease-in-out infinite
}

.contact__map {
    overflow: hidden
}

.contact__map iframe {
    width: 100%;
    height: 850px;
    margin-bottom: -10px
}

.experience-area {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.experience__bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1
}

.experience__bg img {
    width: 100%
}

.experience__wrp {
    max-width: 1270px;
    margin: 0 auto
}

.experience__item {
    max-width: 420px;
    margin-right: 0;
    margin-left: auto;
    padding: 50px 0
}

@media(max-width: 1199px) {
    .experience__item {
        padding-bottom: 0
    }
}

.experience__item h2 {
    font-size: 116px;
    line-height: 116px
}

@media(max-width: 575px) {
    .experience__item h2 {
        font-size: 90px;
        line-height: 90px
    }
}

.experience__item h2 span {
    color: inherit
}

.experience__item-left {
    max-width: 575px
}

.experience__item-right {
    border-left: 2px solid var(--border)
}

@media(max-width: 1199px) {
    .experience__item-right {
        border: none
    }
}

.feature-area {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.feature__shape {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

.feature__wrp {
    max-width: 1170px;
    margin: 0 auto
}

.feature__item {
    padding: 20px 0;
    cursor: pointer;
    border-right: 2px solid var(--border)
}

.feature__item .feature__content {
    overflow: hidden
}

.feature__item .feature__content h3 {
    font-weight: 700
}

.feature__item .feature__content .btn-view {
    transform: translateX(-94px)
}

@media(max-width: 575px) {
    .feature__item .feature__content .btn-view {
        transform: unset;
        text-align: center;
        margin-top: 20px
    }
}

@media(max-width: 991px) {
    .feature__item {
        border: none
    }
}

@media(max-width: 575px) {
    .feature__item {
        text-align: center;
        border: 2px solid var(--border) !important;
        padding: 30px
    }
}

.feature__item img {
    transition: var(--transition)
}

.feature__item:hover img {
    transform: translateY(-15px)
}

.feature__item:hover .feature__content .btn-view {
    transform: translateX(0px)
}

.feature-four-area {
    overflow: hidden
}

.feature-four__wrp {
    max-width: 1220px;
    margin: 0 auto
}

.feature-four__item .icon {
    width: 120px;
    height: 120px
}

.feature-four__item .icon img {
    width: 100%
}

.feature-four__item h4 {
    margin-top: 30px;
    margin-bottom: 20px
}

.feature-four__item h4 a:hover {
    color: var(--theme-color1)
}

.feature-four__item .btn-arrow {
    font-size: 50px;
    transform: rotate(45deg)
}

.feature-four__item:hover .btn-arrow {
    transform: rotate(0deg)
}

.feature-five-area {
    overflow: hidden;
    background-color: #eaeaea;
    padding: 30px
}

@media(max-width: 575px) {
    .feature-five-area {
        padding: 30px 12px
    }
}

.feature-five__wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

@media(max-width: 991px) {
    .feature-five__wrp {
        flex-wrap: wrap
    }
}

.feature-five__item {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 25%;
    height: 515px;
    transition: var(--transition)
}

@media(max-width: 991px) {
    .feature-five__item {
        height: 300px;
        width: 100% !important
    }

    .feature-five__item h4 {
        max-width: 300px !important
    }
}

@media(max-width: 575px) {
    .feature-five__item h4 {
        max-width: 250px !important
    }
}

.feature-five__item.active {
    width: 46%
}

.feature-five__item.active h4 {
    max-width: 400px;
    color: var(--white)
}

.feature-five__item.active .icon svg path {
    fill: var(--white)
}

.feature-five__item.active::before {
    opacity: 1;
    visibility: visible;
    width: 100%;
    right: unset;
    left: 0
}

.feature-five__item::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    content: "";
    background: linear-gradient(258.54deg, rgba(0, 0, 0, 0.1843) 3.98%, rgba(0, 0, 0, 0.7275) 91.46%);
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    transition: var(--transition)
}

.feature-five__item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.feature-five__item .icon {
    position: absolute;
    top: 50px;
    left: 40px
}

.feature-five__item .icon svg path {
    transition: var(--transition)
}

@media(max-width: 1199px) {
    .feature-five__item .icon {
        top: 30px;
        left: 20px
    }

    .feature-five__item .icon svg {
        width: 80px
    }
}

.feature-five__item h4 {
    position: absolute;
    left: 40px;
    bottom: 60px;
    max-width: 300px;
    color: var(--theme-color3);
    transition: var(--transition)
}

.feature-five__item h4 a {
    color: inherit;
    transition: unset
}

@media(max-width: 1199px) {
    .feature-five__item h4 {
        font-size: 18px;
        line-height: 30px;
        max-width: 150px;
        left: 20px;
        bottom: 20px
    }
}

.feature-five__item .btn-wrp {
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #eaeaea;
    border-top-left-radius: 30px
}

.feature-five__item .btn-wrp::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0);
    inset: calc(100% - 30px) 0 0 -30px;
    border-bottom-right-radius: 30px;
    box-shadow: 5px 5px 0 5px #eaeaea
}

.feature-five__item .btn-wrp::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0);
    inset: -30px 0 0 50px;
    border-bottom-right-radius: 30px;
    box-shadow: 5px 5px 0 5px #eaeaea
}

.feature-five__item .btn-wrp .go-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
    background-color: var(--theme-color3);
    font-size: 26px
}

.feature-five__item .btn-wrp .go-btn:hover {
    transform: rotate(45deg)
}

.feature-five__item.dark-area .btn-wrp {
    background-color: #000
}

.feature-five__item.dark-area .btn-wrp::before {
    box-shadow: 5px 5px 0 5px #000
}

.feature-five__item.dark-area .btn-wrp::after {
    border-bottom-right-radius: 30px;
    box-shadow: 5px 5px 0 5px #000
}

.funfact-area {
    overflow: hidden
}

.funfact__wrp,
.funfact-five__wrp {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between
}

@media(max-width: 991px) {

    .funfact__wrp,
    .funfact-five__wrp {
        flex-wrap: wrap
    }
}

.funfact__item {
    text-align: center;
    cursor: pointer
}

.funfact__item h2 {
    font-size: 120px;
    line-height: 120px;
    font-weight: 700;
    opacity: .2;
    color: var(--theme-color1);
    transition: var(--transition)
}

.funfact__item h2 span {
    color: inherit
}

@media(max-width: 1199px) {
    .funfact__item h2 {
        font-size: 60px;
        line-height: 70px
    }
}

.funfact__item p {
    color: var(--theme-color3);
    border-bottom: 2px solid var(--theme-color1);
    display: inline-block;
    font-size: 12px;
    font-weight: 700
}

.funfact__item.active h2 {
    opacity: 1
}

.funfact-three-area {
    overflow: hidden
}

.funfact-three__item,
.funfact-three__item-dark {
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    background-color: #ececec
}

@media(max-width: 1199px) {

    .funfact-three__item,
    .funfact-three__item-dark {
        padding: 30px 20px
    }
}

.funfact-three__item h2,
.funfact-three__item-dark h2 {
    font-size: 100px;
    line-height: 100px;
    color: var(--theme-color3)
}

.funfact-three__item h2 span,
.funfact-three__item-dark h2 span {
    color: inherit
}

@media(max-width: 1399px) {

    .funfact-three__item h2,
    .funfact-three__item-dark h2 {
        font-size: 60px;
        line-height: 60px
    }
}

.funfact-three__item h4,
.funfact-three__item-dark h4 {
    font-weight: 600;
    max-width: 260px;
    color: var(--theme-color3)
}

.funfact-three__item-dark {
    background-color: var(--theme-color2)
}

.funfact-three__item-dark h2,
.funfact-three__item-dark h4 {
    color: var(--text-color2)
}

.funfact-three__item-dark.dark-area {
    background-color: #121212
}

.funfact-four-area {
    overflow-x: hidden;
    position: relative;
    z-index: 1
}

.funfact-four__text {
    position: absolute;
    top: 80px;
    left: 30px;
    z-index: -1
}

.funfact-four__shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1
}

.funfact-four__wrp {
    max-width: 1750px;
    padding: 0 15px;
    margin: 0 auto
}

.funfact-four__left {
    max-width: 375px;
    margin-right: 30px;
    float: right
}

.funfact-five-area {
    overflow: hidden
}

.funfact-five__wrp {
    gap: 20px
}

@media(max-width: 575px) {
    .funfact-five__wrp {
        justify-content: center
    }
}

.funfact-five__item {
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 1
}

.funfact-five__item h2 {
    font-size: 120px;
    line-height: 120px;
    font-weight: 700;
    opacity: .2;
    color: var(--theme-color1);
    transition: var(--transition)
}

.funfact-five__item h2 span {
    color: inherit
}

@media(max-width: 1199px) {
    .funfact-five__item h2 {
        font-size: 60px;
        line-height: 70px
    }
}

.funfact-five__item p {
    color: var(--theme-color3);
    border-bottom: 2px solid var(--theme-color1);
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px
}

@media(max-width: 767px) {
    .funfact-five__item p {
        position: unset;
        transform: unset
    }
}

.funfact-five__item.active h2 {
    opacity: 1
}

@media(max-width: 767px) {
    .funfact-five__item {
        width: 48%
    }
}

.marquee-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 150px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.marquee-area::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, .5019607843)
}

@media(max-width: 1399px) {
    .marquee-area {
        padding: 80px
    }
}

@media(max-width: 991px) {
    .marquee-area {
        padding: 60px
    }
}

.marquee__wrp {
    position: relative
}

.marquee__slide {
    display: flex;
    position: relative
}

.marquee__slide.marquee-revers .marquee__item-wrp {
    position: relative;
    -webkit-animation: slide-har-revers 20s linear infinite;
    animation: slide-har-revers 20s linear infinite
}

@-webkit-keyframes slide-har-revers {
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }

    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@keyframes slide-har-revers {
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }

    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

.marquee__item {
    padding: 0 60px
}

@media(max-width: 991px) {
    .marquee__item {
        padding: 0 30px
    }
}

.marquee__item h2 {
    font-size: 106px;
    line-height: 128px;
    font-weight: 700;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, .6980392157);
    text-transform: uppercase;
    white-space: nowrap
}

@media(max-width: 991px) {
    .marquee__item h2 {
        font-size: 60px;
        line-height: 70px
    }
}

.marquee__item-wrp {
    display: flex;
    position: relative;
    -webkit-animation: slide-har 20s linear infinite;
    animation: slide-har 20s linear infinite
}

@-webkit-keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

.marquee-two-area,
.marquee-four-area {
    overflow: hidden;
    background-color: var(--theme-color3)
}

.marquee-two__item,
.marquee-four__item {
    padding: 0 30px
}

@media(max-width: 991px) {

    .marquee-two__item,
    .marquee-four__item {
        padding: 0 15px
    }
}

.marquee-two__item svg,
.marquee-four__item svg {
    margin-top: 15px
}

@media(max-width: 767px) {

    .marquee-two__item svg,
    .marquee-four__item svg {
        margin-top: -3px
    }
}

.marquee-two__item h2,
.marquee-four__item h2 {
    font-weight: 700;
    font-size: 80px;
    line-height: 84px;
    color: var(--white);
    text-transform: uppercase;
    white-space: nowrap
}

@media(max-width: 767px) {

    .marquee-two__item h2,
    .marquee-four__item h2 {
        font-size: 50px;
        line-height: 50px
    }
}

.marquee-two__item .stroke-text,
.marquee-four__item .stroke-text {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    text-transform: uppercase;
    white-space: nowrap
}

.marquee-four-area {
    background-color: var(--white)
}

.marquee-four__item h2 {
    color: var(--theme-color2)
}

.marquee-four__item .stroke-text {
    -webkit-text-stroke-color: var(--theme-color2)
}

.offer-area {
    overflow: hidden
}

.offer__wrp {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px
}

.offer__item h2 {
    font-size: 130px;
    line-height: 96px;
    color: var(--theme-color3);
    position: relative;
    z-index: 1;
    text-transform: uppercase
}

.offer__item h2 img {
    position: absolute;
    left: 25px;
    bottom: -10px;
    z-index: -1
}

.offer__item h4 {
    margin-top: 35px;
    margin-bottom: 20px;
    color: var(--theme-color3)
}

.offer__item ul li {
    color: var(--theme-color3);
    font-weight: 500
}

.offer__item ul li:not(:last-child) {
    margin-bottom: 10px
}

.plan-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.plan-area::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(276.18deg, rgba(0, 0, 0, 0) 2.88%, rgba(0, 0, 0, 0.8) 80.07%);
    content: ""
}

.plan__videoBtn {
    position: absolute;
    top: 50%;
    right: 23%;
    transform: translateY(-50%)
}

.plan__videoBtn a {
    width: 100px;
    height: 100px;
    line-height: 100px;
    background-color: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
    color: var(--theme-color3);
    font-size: 30px
}

@media(max-width: 575px) {
    .plan__videoBtn a {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px
    }
}

@media(max-width: 1199px) {
    .plan__videoBtn {
        right: 10%
    }
}

@media(max-width: 767px) {
    .plan__videoBtn {
        top: 70%
    }
}

@media(max-width: 575px) {
    .plan__videoBtn {
        top: 78%
    }
}

.plan__content {
    padding-left: 170px
}

@media(max-width: 991px) {
    .plan__content {
        padding-left: 30px
    }
}

@media(max-width: 575px) {
    .plan__content {
        padding-left: 15px
    }
}

.plan__content .section-header,
.plan__content .section-header__icon,
.plan__content .section-header__flex {
    max-width: 580px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-bottom: 60px;
    margin-bottom: 50px
}

.plan__content .section-header h2,
.plan__content .section-header__icon h2,
.plan__content .section-header__flex h2 {
    font-size: 80px;
    line-height: 90px
}

@media(max-width: 767px) {

    .plan__content .section-header,
    .plan__content .section-header__icon,
    .plan__content .section-header__flex {
        padding-bottom: 30px;
        margin-bottom: 20
    }

    .plan__content .section-header h2,
    .plan__content .section-header__icon h2,
    .plan__content .section-header__flex h2 {
        line-height: 40px;
        font-size: 36px
    }
}

.plan__content .counter .icon {
    width: 66px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, .6);
    color: var(--white)
}

.plan__content .counter h2 {
    font-size: 80px;
    line-height: 90px;
    color: var(--white);
    display: flex;
    align-items: start
}

.plan__content .counter h2 span {
    color: inherit
}

.plan__content .counter h2 sup {
    font-size: 30px;
    line-height: 90px;
    margin-left: 10px
}

@media(max-width: 575px) {
    .plan__content .counter h2 {
        font-size: 50px;
        line-height: 50px
    }

    .plan__content .counter h2 sup {
        line-height: 50px
    }
}

.project-area {
    overflow: hidden
}

.project__wrp {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: background-image .3s ease-in-out;
    -moz-transition: background-image .3s ease-in-out;
    transition: background-image .3s ease-in-out;
    position: relative;
    z-index: 1
}

.project__wrp:hover .project__slider-arrys button {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px)
}

.project__slider-arrys {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 9
}

.project__slider-arrys button {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border-radius: 12px;
    color: var(--black);
    background-color: var(--white);
    transition: var(--transition);
    font-size: 18px
}

.project__slider-arrys button:last-child {
    transition: all .5s ease-in-out
}

.project__slider-arrys button:hover {
    background-color: var(--theme-color1);
    color: var(--text-color1)
}

@media(max-width: 767px) {
    .project__slider-arrys button {
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
        transition: var(--transition);
        font-size: 16px;
        border-radius: 12px
    }
}

@media(max-width: 767px) {
    .project__slider-arrys {
        top: 20px;
        left: 20px
    }
}

.project__item {
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 700px;
    border-right: 1px solid var(--white)
}

.project__item .project__content {
    padding: 30px;
    position: relative;
    z-index: 1
}

.project__item .project__content::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    content: "";
    background-color: rgba(255, 255, 255, .3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition)
}

.project__item .project__content h6 {
    font-weight: 400;
    color: var(--white)
}

.project__item .project__content h4 {
    margin-top: 10px
}

.project__item .project__content h4 a {
    color: var(--white)
}

.project__item .project__content h4 a:hover {
    color: var(--theme-color1)
}

@media(max-width: 575px) {
    .project__item .project__content {
        padding: 15px
    }

    .project__item .project__content h4 {
        margin-top: 0
    }
}

.project__item .project-four__content {
    padding: 0 40px 40px 40px
}

.project__item .project-four__content h2 {
    font-size: 80px;
    line-height: 70px;
    font-weight: 600;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, .4)
}

.project__item .project-four__content h4 {
    max-width: 200px
}

.project__item .project-four__content h4 a {
    color: var(--white)
}

.project__item .project-four__content .btn-arrow {
    font-size: 40px;
    color: var(--white);
    transform: rotate(45deg)
}

@media(max-width: 1199px) {
    .project__item {
        height: 500px
    }
}

@media(max-width: 991px) {
    .project__item {
        height: 400px
    }
}

@media(max-width: 575px) {
    .project__item {
        height: 350px
    }
}

.project__item:hover .project__content::after {
    height: 100%
}

.project__item:hover .btn-arrow {
    transform: rotate(0deg)
}

.project-two-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--theme-color3)
}

.project-two__shape {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1
}

.project-two__shape-two {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1
}

.project-two__wrp {
    max-width: 1320px;
    margin: 0 auto
}

.project-two__image {
    overflow: hidden;
    position: relative;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition)
}

.project-two__image a {
    display: block
}

.project-two__image img {
    width: 100%;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition)
}

.project-two__image:hover {
    -webkit-clip-path: inset(5px 10px);
    clip-path: inset(5px 10px)
}

.project-two__image:hover img {
    transform: scale(1.05)
}

.project-two__content h5 a {
    color: var(--white);
    text-transform: uppercase
}

.project-two__content h5 a:hover {
    color: var(--theme-color1)
}

.project-two__content span {
    font-style: italic
}

.project-two__item-sm {
    max-width: 480px
}

.project-three-area {
    overflow: hidden
}

.project-three__content h5 a {
    color: var(--theme-color2);
    text-transform: uppercase
}

.project-three__content h5 a:hover {
    color: var(--theme-color1)
}

.project-four-area {
    overflow: hidden
}

.project-four__wrp {
    position: relative;
    z-index: 1
}

.project-four__wrp::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: -1
}

.service-area {
    overflow: hidden;
    padding: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

@media(max-width: 991px) {
    .service-area {
        padding: 60px 30px
    }
}

.service__image img {
    width: 100%;
    border-radius: 10px
}

.service__item {
    max-width: 300px
}

.service__item h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--white)
}

.service__item h4 a {
    color: inherit
}

.service__item h4:hover {
    letter-spacing: 1px;
    color: var(--theme-color1)
}

.talk-area {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.talk__shape {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1
}

.talk__wrp {
    max-width: 1300px;
    margin: 0 auto
}

.talk__form form input,
.talk__form form textarea {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border: 1px solid var(--border)
}

.talk__form form textarea {
    height: 105px;
    resize: none
}

.talk__form form button {
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    background-color: var(--theme-color2);
    color: var(--text-color2);
    font-weight: 600;
    transition: var(--transition)
}

.talk__form form button:hover {
    letter-spacing: 2px
}

.talk__form.dark-area input,
.talk__form.dark-area textarea {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(235, 235, 235, .1019607843)
}

.talk__form.dark-area button {
    background-color: rgba(0, 0, 0, 0)
}

.talk__item {
    padding: 80px 40px;
    border: 1px solid #e5e5e5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.talk__item h3 {
    font-size: 34px;
    font-weight: 600
}

@media(max-width: 991px) {
    .talk__item h3 {
        font-size: 28px
    }
}

.talk__item ul li {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border)
}

.talk__item ul li h4 {
    margin-bottom: 10px
}

.talk__item .socials {
    display: flex;
    align-items: center;
    gap: 10px
}

.talk__item .socials a {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid var(--border);
    background-color: #fafafa
}

.talk__item .socials a:hover {
    transform: translateY(-5px);
    color: var(--theme-color1)
}

.talk-three-area {
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.talk-three__form {
    background-color: rgba(255, 255, 255, .6980392157);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-left: 90px;
    padding-right: 90px
}

@media(max-width: 767px) {
    .talk-three__form {
        padding-left: 30px;
        padding-right: 30px
    }
}

.talk-three__form form {
    max-width: 850px
}

.talk-three__form form input,
.talk-three__form form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(0, 0, 0, 0);
    background-color: rgba(255, 255, 255, .6);
    border-radius: 30px
}

.talk-three__form form input::placeholder,
.talk-three__form form textarea::placeholder {
    color: var(--theme-color2)
}

.talk-three__form form input:focus,
.talk-three__form form textarea:focus {
    border: 1px solid var(--border)
}

.talk-three__form form textarea {
    height: 240px;
    resize: none;
    border-radius: 20px
}

.talk-three__form.dark-area {
    background-color: rgba(16, 16, 16, .6980392157)
}

.talk-three__form.dark-area form {
    max-width: 850px
}

.talk-three__form.dark-area form input::placeholder,
.talk-three__form.dark-area form textarea::placeholder {
    color: #131313
}

.team-area {
    overflow: hidden
}

.team__wrp {
    max-width: 1160px;
    margin: 0 auto
}

.team__item .team__image,
.team__item-add .team__image {
    display: block;
    transition: var(--transition);
    border: 2px solid var(--heading-color)
}

.team__item .team__image img,
.team__item-add .team__image img {
    width: 100%
}

.team__item:hover .team__image,
.team__item-add:hover .team__image {
    border: 2px solid var(--theme-color1)
}

.team__item-add {
    position: relative
}

.team__item-add img {
    opacity: 0;
    visibility: hidden
}

.team__item-add h3 {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px
}

@media(max-width: 575px) {
    .team__item-add h3 {
        font-size: 18px;
        left: 10px;
        bottom: 10px
    }
}

.team__item-add i {
    display: inline-block;
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: var(--transition)
}

.team__item-add:hover i {
    transform: rotate(180deg)
}

.team-five-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-bottom: 280px
}

@media(max-width: 767px) {
    .team-five-area {
        padding-bottom: 60px
    }
}

.team-five__wrp {
    max-width: 1290px;
    margin: 0 auto;
    margin-top: 80px
}

@media(max-width: 991px) {
    .team-five__wrp {
        margin-top: 0
    }
}

.team-five__shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1
}

.team-five__content {
    max-width: 500px
}

.team-five__content .section-header h3,
.team-five__content .section-header__icon h3,
.team-five__content .section-header__flex h3 {
    font-size: 96px;
    line-height: 0px;
    color: rgba(0, 0, 0, .0509803922);
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 700
}

.team-five__content .section-header p,
.team-five__content .section-header__icon p,
.team-five__content .section-header__flex p {
    max-width: 390px
}

.team-five__content .section-header.dark-area h3,
.team-five__content .dark-area.section-header__icon h3,
.team-five__content .dark-area.section-header__flex h3 {
    color: rgba(255, 255, 255, .0509803922)
}

.team-five__item {
    border: 1px solid rgba(0, 0, 0, .1019607843);
    background-color: var(--white);
    border-radius: 40px;
    overflow: hidden
}

.team-five__item .team-five__image {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.team-five__item .team-five__image img {
    width: 100%
}

.team-five__item .team-five__image::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    content: "";
    background: linear-gradient(360deg, #bb9a65 0%, rgba(187, 154, 101, 0) 91.03%);
    transition: var(--transition)
}

.team-five__item .team-five__image .share {
    box-sizing: unset;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--heading-color);
    border: 7px solid var(--white);
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: block;
    cursor: pointer
}

.team-five__item .team-five__image .share .socials {
    background-color: var(--heading-color);
    border-radius: 30px;
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 50px;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition)
}

.team-five__item .team-five__image .share .socials a {
    display: block;
    color: var(--white);
    line-height: 40px
}

.team-five__item .team-five__image .share .socials a:hover {
    color: var(--theme-color1)
}

.team-five__item .team-five__image .share:hover .socials {
    opacity: 1;
    visibility: visible;
    transform: translate(0)
}

.team-five__item .content {
    padding: 40px 35px;
    background-color: var(--white)
}

.team-five__item:hover .team-five__image::before {
    height: 100%
}

.team-five__item.have-margin {
    margin-top: -80px
}

@media(max-width: 991px) {
    .team-five__item.have-margin {
        margin-top: 0
    }
}

.testimonial-area {
    margin-top: 60px
}

@media(max-width: 1399px) {
    .testimonial-area {
        margin-top: 0px
    }
}

.testimonial__wrp {
    width: 90%
}

@media(max-width: 1399px) {
    .testimonial__wrp {
        width: 100%
    }
}

.testimonial__image {
    margin-top: -60px
}

@media(max-width: 1399px) {
    .testimonial__image {
        margin-top: 0px
    }
}

.testimonial__image img {
    width: 100%
}

.testimonial__arry {
    width: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.testimonial__arry button {
    font-size: 20px;
    transition: var(--transition)
}

.testimonial__arry button:hover {
    color: var(--theme-color1)
}

.testimonial__content {
    max-width: 565px
}

.testimonial__content p {
    font-size: 20px;
    line-height: 35px;
    margin-top: 30px
}

@media(max-width: 1399px) {
    .testimonial__content p {
        font-size: 16px;
        line-height: 28px
    }
}

.testimonial__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 490px
}

.testimonial__item {
    position: relative;
    padding: 120px 100px;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.testimonial__item .icon {
    position: absolute;
    top: 90px;
    right: 90px
}

@media(max-width: 1399px) {
    .testimonial__item .icon {
        top: 30px;
        right: 30px
    }

    .testimonial__item .icon svg {
        width: 50px
    }
}

@media(max-width: 1399px) {
    .testimonial__item {
        padding: 60px
    }
}

@media(max-width: 767px) {
    .testimonial__item {
        padding: 20px
    }
}

.testimonial__item.dark-area {
    background-color: var(--white)
}

.testimonial__item.dark-area .testimonial__content button {
    color: var(--theme-color2)
}

.testimonial-four-area {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.testimonial-four__shape {
    position: absolute;
    bottom: 40px;
    left: 0;
    z-index: -1
}

@media(max-width: 575px) {
    .testimonial-four__shape {
        display: none
    }
}

.testimonial-four__wrp {
    max-width: 1220px;
    margin: 0 auto
}

.testimonial-four__arry-wrp {
    position: absolute;
    right: 0;
    bottom: 15px;
    z-index: 1
}

.testimonial-four__item {
    position: relative;
    z-index: 1;
    margin-top: 70px
}

.testimonial-four__item p {
    font-size: 32px;
    line-height: 50px;
    font-family: var(--font-title);
    color: var(--theme-color3);
    padding-bottom: 30px;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--border)
}

@media(max-width: 767px) {
    .testimonial-four__item p {
        font-size: 26px;
        line-height: 40px
    }
}

.testimonial-four__item .quote {
    position: absolute;
    top: -60px;
    left: -40px;
    z-index: -1
}

@media(max-width: 575px) {
    .testimonial-four__item .quote {
        left: 10px;
        top: -100px
    }

    .testimonial-four__item .quote svg {
        width: 80px
    }
}

.footer-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--sub-bg)
}

.footer-area.dark-area {
    background-color: #181818
}

.footer__shape1 {
    position: absolute;
    top: 80px;
    left: 0;
    z-index: -1
}

@media(max-width: 767px) {
    .footer__shape1 {
        display: none
    }
}

.footer__shape2 {
    position: absolute;
    bottom: 50px;
    right: 0;
    z-index: -1
}

.footer__wrp,
.footer-three__wrp {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px
}

@media(max-width: 991px) {

    .footer__wrp,
    .footer-three__wrp {
        flex-wrap: wrap
    }
}

.footer__wrp-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #e4e4e4;
    align-items: start;
    gap: 20px
}

.footer__wrp-bottom.sub-border {
    border-top: 2px solid rgba(106, 106, 106, .2)
}

.footer__wrp-bottom.black-border {
    border-top: 2px solid rgba(228, 228, 228, .1019607843)
}

@media(max-width: 575px) {
    .footer__wrp-bottom {
        flex-wrap: wrap
    }
}

.footer__wrp-bottom p {
    max-width: 360px;
    position: relative;
    color: var(--theme-color2);
    padding-left: 15px
}

.footer__wrp-bottom p::after {
    position: absolute;
    top: 12px;
    left: 0px;
    content: "";
    width: 6px;
    height: 6px;
    line-height: 6px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--theme-color2)
}

.footer__wrp-bottom ul {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap
}

.footer__wrp-bottom ul li a {
    font-weight: 600;
    color: var(--theme-color3);
    font-size: 24px;
    position: relative;
    padding-left: 15px
}

@media(max-width: 575px) {
    .footer__wrp-bottom ul li a {
        font-size: 18px
    }
}

.footer__wrp-bottom ul li a::after {
    position: absolute;
    top: 12px;
    left: 0px;
    content: "";
    width: 8px;
    height: 8px;
    line-height: 8px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--theme-color3)
}

.footer__wrp-bottom ul li a:hover::after {
    background-color: var(--theme-color1)
}

.footer__right,
.footer-three__item-wrp {
    width: 50%;
    display: flex;
    justify-content: space-between;
    gap: 20px
}

@media(max-width: 991px) {

    .footer__right,
    .footer-three__item-wrp {
        flex-wrap: wrap
    }
}

@media(max-width: 767px) {

    .footer__right,
    .footer-three__item-wrp {
        width: 100%
    }
}

.footer__item,
.footer-three__item,
.footer-three__item-last {
    width: 150px
}

.footer__item .title,
.footer-three__item .title,
.footer-three__item-last .title {
    margin-bottom: 15px;
    color: var(--theme-color3)
}

.footer__item ul li:not(:last-child),
.footer-three__item ul li:not(:last-child),
.footer-three__item-last ul li:not(:last-child) {
    margin-bottom: 10px
}

.footer__item ul li a,
.footer-three__item ul li a,
.footer-three__item-last ul li a {
    color: var(--theme-color2);
    font-size: 18px
}

.footer__item ul li a:hover,
.footer-three__item ul li a:hover,
.footer-three__item-last ul li a:hover {
    color: var(--theme-color1);
    padding-left: 5px
}

.footer-bottom {
    background-color: var(--theme-color2);
    padding: 10px 0
}

.footer-bottom__wrp {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px
}

@media(max-width: 575px) {
    .footer-bottom__wrp {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center
    }
}

.footer-bottom__wrp p {
    color: var(--white);
    font-size: 12px
}

.footer-bottom__wrp p a {
    color: inherit
}

.footer-bottom__wrp p a:hover {
    color: var(--theme-color1)
}

.footer-bottom__wrp .socials {
    display: flex;
    align-items: center;
    gap: 30px
}

.footer-bottom__wrp .socials a {
    color: var(--white);
    font-size: 15px
}

.footer-bottom__wrp .socials a:hover {
    color: var(--theme-color1)
}

.footer-two-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--theme-color3)
}

.footer-two__shape {
    position: absolute;
    left: 0;
    bottom: 125px;
    opacity: .051;
    z-index: -1
}

@media(max-width: 991px) {
    .footer-two__shape {
        display: none
    }
}

.footer-two__shape-two {
    position: absolute;
    right: 0;
    bottom: 0px;
    z-index: -1;
    opacity: .22
}

.footer-two__wrp {
    max-width: 1120px;
    margin: 0 auto
}

.footer-two__link {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

@media(max-width: 767px) {
    .footer-two__link {
        flex-wrap: wrap
    }
}

.footer-two__link-item {
    width: 225px
}

.footer-two__item .subscribe,
.footer-two__link-item .subscribe {
    position: relative
}

.footer-two__item .subscribe input,
.footer-two__link-item .subscribe input {
    width: 100%;
    padding: 20px 40px;
    background-color: #1a1a1a;
    border: none;
    color: var(--text-color3)
}

.footer-two__item .subscribe button,
.footer-two__link-item .subscribe button {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border-radius: 0px;
    color: var(--text-color1);
    background-color: var(--theme-color1);
    position: absolute;
    top: 8px;
    right: 10px
}

.footer-two__item ul li:not(:last-child),
.footer-two__link-item ul li:not(:last-child) {
    margin-bottom: 15px
}

.footer-two__item ul li a,
.footer-two__link-item ul li a {
    color: var(--paragraph)
}

.footer-two__item ul li a:hover,
.footer-two__link-item ul li a:hover {
    color: var(--theme-color1)
}

.footer-two__item ul li h4,
.footer-two__link-item ul li h4 {
    font-weight: 600
}

.footer-two__item ul li h4 a,
.footer-two__link-item ul li h4 a {
    color: var(--white)
}

.footer-two__item ul li h4 a:hover,
.footer-two__link-item ul li h4 a:hover {
    color: var(--theme-color1)
}

.footer-two__item-bottom .socials {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px
}

.footer-two__item-bottom .socials a {
    font-size: 20px;
    color: var(--white)
}

.footer-two__item-bottom .socials a:hover {
    color: var(--theme-color1)
}

.footer-two__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 767px) {
    .footer-two__bottom {
        flex-wrap: wrap
    }
}

.footer-two__address {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

@media(max-width: 767px) {
    .footer-two__address {
        flex-wrap: wrap
    }
}

.footer-two__address-item {
    width: 225px
}

.footer-two__address-item h5 {
    color: var(--white);
    margin-bottom: 25px
}

.footer-three-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: #121212
}

.footer-three__shape-left {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1
}

.footer-three__shape-right {
    position: absolute;
    bottom: 15px;
    right: 0;
    z-index: -1
}

@media(max-width: 991px) {
    .footer-three__shape-right {
        display: none
    }
}

.footer-three__wrp {
    position: relative;
    max-width: 1300px
}

.footer-three__wrp::after {
    top: 0;
    left: 22%;
    width: 1px;
    height: 100%;
    background-color: #202020;
    position: absolute;
    content: ""
}

@media(max-width: 1199px) {
    .footer-three__wrp::after {
        display: none
    }
}

.footer-three__item,
.footer-three__item-last {
    width: 190px
}

.footer-three__item-last {
    width: 380px
}

.footer-three__item p,
.footer-three__item-last p {
    font-size: 18px;
    line-height: 34px
}

.footer-three__item .title,
.footer-three__item-last .title {
    color: var(--white)
}

.footer-three__item ul li a,
.footer-three__item-last ul li a {
    color: var(--paragraph)
}

.footer-three__item .socials,
.footer-three__item-last .socials {
    display: flex;
    gap: 15px
}

.footer-three__item .socials a,
.footer-three__item-last .socials a {
    color: var(--paragraph);
    font-size: 18px
}

.footer-three__item .socials a:hover,
.footer-three__item-last .socials a:hover {
    transform: translateY(-2px);
    color: var(--theme-color1)
}

.footer-three__item .mailUs,
.footer-three__item-last .mailUs {
    position: relative
}

.footer-three__item .mailUs input,
.footer-three__item-last .mailUs input {
    width: 100%;
    padding: 20px 40px;
    padding-left: 50px;
    background-color: #202020;
    border: none;
    color: var(--paragraph)
}

.footer-three__item .mailUs span,
.footer-three__item-last .mailUs span {
    position: absolute;
    left: 20px;
    top: 22px;
    color: var(--white)
}

.footer-three__item .mailUs button,
.footer-three__item-last .mailUs button {
    top: 20px;
    right: 20px;
    position: absolute;
    color: var(--theme-color1);
    font-size: 25px
}

.footer-three__item-wrp {
    width: 100%
}

.footer-three__right {
    width: 70%
}

.footer-three__copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #202020
}

.footer-three__copyright p a {
    color: var(--white);
    font-weight: 600
}

.footer-three__copyright p a:hover {
    color: var(--theme-color1)
}

.splt-txt .whitespace {
    width: 8px
}

.splt-txt.animated .char {
    -webkit-animation: fadeInRight .4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeInRight .4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms*var(--char-index));
    animation-delay: calc(30ms*var(--char-index))
}

.imageUpToDown {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
}

.imageUpToDown.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.imageDownToUP {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
}

.imageDownToUP.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.imageLeftToRight {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
}

.imageLeftToRight.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.imageRightToLeft {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
}

.imageRightToLeft.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

@keyframes sway {
    0% {
        transform: translateX(-20px)
    }

    100% {
        transform: translateX(0px)
    }
}

.sway__animation {
    animation: sway 3s linear infinite alternate
}

@keyframes swayX {
    0% {
        transform: translateX(20px)
    }

    100% {
        transform: translateX(0px)
    }
}

.sway__animationX {
    animation: swayX 3s linear infinite alternate
}

@keyframes footer__shadow {
    0% {
        margin-left: -200px
    }

    100% {
        margin-right: -200px
    }
}

@keyframes sway_Y {
    0% {
        transform: translateY(0px)
    }

    100% {
        transform: translateY(20px)
    }
}

.sway_Y__animation {
    animation: sway_Y 3s linear infinite alternate
}

@keyframes sway_YY {
    0% {
        transform: translateY(0px)
    }

    100% {
        transform: translateY(-20px)
    }
}

.sway_Y__animationY {
    animation: sway_YY 3s linear infinite alternate
}

@-webkit-keyframes sunMove {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    25% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    75% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes sunMove {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    25% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    75% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.animation__sunMove {
    -webkit-animation: sunMove 10s linear infinite;
    animation: sunMove 10s linear infinite
}

@-webkit-keyframes floatBob {
    0% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg)
    }

    50% {
        -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
        transform: translateY(10px) translateX(10px) rotate(5deg)
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg)
    }
}

@keyframes floatBob {
    0% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg)
    }

    50% {
        -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
        transform: translateY(10px) translateX(10px) rotate(5deg)
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg)
    }
}

.animation__floatBob {
    -webkit-animation-name: floatBob;
    animation-name: floatBob;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

@keyframes arryUpDown {
    0% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(10px)
    }
}

.animation__arryUpDown {
    animation: arryUpDown 2s ease infinite alternate
}

@keyframes arryLeftRight {
    0% {
        transform: translateX(-10px)
    }

    100% {
        transform: translateX(10px)
    }
}

.animation__arryLeftRight {
    animation: arryLeftRight 2s ease infinite alternate
}

@keyframes pxl_zoom_reverse {
    0% {
        transform: scale(0.8)
    }

    50% {
        transform: scale(1)
    }

    100% {
        transform: scale(0.8)
    }
}

.pxl-image-zoom {
    animation: pxl_zoom_reverse 5s linear infinite
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(0.6, 0.6)
    }

    50% {
        transform: scale(1, 1)
    }

    100% {
        transform: scale(0.6, 0.6)
    }
}

.pxl-image-zoom2 {
    animation: zoom-in-zoom-out 20s linear infinite
}

@keyframes pxl_zigzag {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg)
    }

    60% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
}

.pxl__zigzag {
    animation: pxl_zigzag 1s ease-out infinite;
    -webkit-animation: pxl_zigzag 1s ease-out infinite
}

@keyframes pxl_right_left {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(40px)
    }

    50% {
        transform: translateX(0)
    }

    75% {
        transform: translateX(-40px)
    }

    100% {
        transform: translateX(0)
    }
}

.slide-right-to-left {
    animation: pxl_right_left 12s ease-out infinite;
    -webkit-animation: pxl_right_left 12s ease-out infinite
}

@keyframes pxl_left_right {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(-40px)
    }

    50% {
        transform: translateX(0)
    }

    75% {
        transform: translateX(40px)
    }

    100% {
        transform: translateX(0)
    }
}

.slide-left-to-right {
    animation: pxl_left_right 12s ease-out infinite;
    -webkit-animation: pxl_left_right 12s ease-out infinite
}

@keyframes pxl_float_two {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-20px)
    }
}

.slide-up-down {
    animation: pxl_float_two 2s ease infinite alternate
}

@keyframes pxl_bottom_top {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateY(40px)
    }

    50% {
        transform: translateY(0)
    }

    75% {
        transform: translateY(-40px)
    }

    100% {
        transform: translateY(0)
    }
}

.slide-bottom-to-top {
    animation: pxl_bottom_top 12s ease-out infinite;
    -webkit-animation: pxl_bottom_top 12s ease-out infinite
}

@keyframes pxl_effect1 {
    0% {
        transform: translate(0, 0)
    }

    20% {
        transform: translate(40px, -5px)
    }

    40% {
        transform: translate(60px, 40px)
    }

    60% {
        transform: translate(40px, 60px)
    }

    80% {
        transform: translate(-40px, 60px)
    }

    100% {
        transform: translate(0, 0)
    }
}

.slide-effect1 {
    animation: pxl_effect1 12s ease-out infinite;
    -webkit-animation: pxl_effect1 12s ease-out infinite
}

@keyframes pxl_effect2 {
    0% {
        transform: translate(0, 0)
    }

    20% {
        transform: translate(-30px, 40px)
    }

    40% {
        transform: translate(60px, 60px)
    }

    60% {
        transform: translate(70px, 40px)
    }

    80% {
        transform: translate(40px, -70px)
    }

    100% {
        transform: translate(0, 0)
    }
}

.slide-effect2 {
    animation: pxl_effect2 12s ease-out infinite;
    -webkit-animation: pxl_effect2 12s ease-out infinite
}

@keyframes pxl_effect3 {
    0% {
        transform: translate(0, 0)
    }

    30% {
        transform: translate(40px, 60px)
    }

    45% {
        transform: translate(80px, 90px)
    }

    65% {
        transform: translate(40px, 110px)
    }

    75% {
        transform: translate(20px, 800px)
    }

    100% {
        transform: translate(0, 0)
    }
}

.slide-effect3 {
    animation: pxl_effect3 12s ease-out infinite;
    -webkit-animation: pxl_effect3 12s ease-out infinite
}

@keyframes pxl_top_bottom {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateY(-40px)
    }

    50% {
        transform: translateY(0)
    }

    75% {
        transform: translateY(40px)
    }

    100% {
        transform: translateY(0)
    }
}

.slide-top-to-bottom {
    animation: pxl_top_bottom 12s ease-out infinite;
    -webkit-animation: pxl_top_bottom 12s ease-out infinite
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.animation__rotate {
    animation: rotate 30s linear infinite
}

@keyframes rotateY {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(-360deg)
    }
}

.animation__rotateY {
    animation: rotateY 30s linear infinite
}

@keyframes rotateAndScale {
    0% {
        transform: rotate(0deg) scale(1)
    }

    50% {
        transform: rotate(180deg) scale(0.5)
    }

    100% {
        transform: rotate(360deg) scale(1)
    }
}

.animation__rotateAndScale {
    animation: rotateAndScale 10s linear infinite
}

@keyframes rotateAndScaleY {
    0% {
        transform: rotate(0deg) scale(1)
    }

    50% {
        transform: rotate(-180deg) scale(0.5)
    }

    100% {
        transform: rotate(-360deg) scale(1)
    }
}

.animation__rotateAndScaleY {
    animation: rotateAndScaleY 10s linear infinite
}

@keyframes ring-animation {
    from {
        transform: rotate3d(0, 0, 1, 0deg)
    }

    20%,
    32%,
    44%,
    56%,
    68% {
        transform: rotate3d(0, 0, 1, 0deg)
    }

    23%,
    35%,
    47%,
    59%,
    71% {
        transform: rotate3d(0, 0, 1, 15deg)
    }

    26%,
    38%,
    50%,
    62%,
    74% {
        transform: rotate3d(0, 0, 1, 0deg)
    }

    29%,
    41%,
    53%,
    65%,
    77% {
        transform: rotate3d(0, 0, 1, -15deg)
    }

    80% {
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

.ring__animation {
    animation: ring-animation 1.5s ease-in-out infinite
}

@keyframes bobble {
    0% {
        transform: translateY(0) scale(0.9)
    }

    100% {
        transform: translateY(-20px) scale(1)
    }
}

.bobble__animation {
    animation: bobble 3s ease-in-out infinite alternate
}

@-webkit-keyframes video-animation {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.5)
    }

    100% {
        opacity: 0;
        transform: scale(2)
    }
}

@keyframes video-animation {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.5)
    }

    100% {
        opacity: 0;
        transform: scale(2)
    }
}

@keyframes goAll {
    0% {
        transform: translate(400px, 200px);
        opacity: 30%
    }

    17% {
        transform: translate(600px, 400px);
        opacity: 40%
    }

    33% {
        transform: translate(600px, 600px);
        opacity: 70%
    }

    50% {
        transform: translate(400px, 800px);
        opacity: 20%
    }

    66% {
        transform: translate(200px, 600px);
        opacity: 60%
    }

    83% {
        transform: translate(200px, 400px);
        opacity: 30%
    }

    100% {
        transform: translate(400px, 200px);
        opacity: 30%
    }
}

@keyframes goAll2 {
    0% {
        top: 800px;
        left: 845px;
        opacity: 30%
    }

    25% {
        top: 400px;
        left: 845px;
        opacity: 40%
    }

    50% {
        top: 800px;
        left: 845px;
        opacity: 100%
    }

    75% {
        top: 1200px;
        left: 845px;
        opacity: 20%
    }

    100% {
        top: 800px;
        left: 845px;
        opacity: 30%
    }
}

@keyframes left {
    0% {
        transform: translateX(0px)
    }

    50% {
        transform: translateX(30px)
    }

    100% {
        transform: translateX(0px)
    }
}

.animation__goLeft {
    animation: left infinite 6s
}

@keyframes top-bottom {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        transform: translateY(-8px)
    }

    60% {
        -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
        transform: translateY(-4px)
    }
}

.animation__topBottom {
    animation: top-bottom 2s infinite
}

@keyframes goAll3 {
    0% {
        transform: translate(0px, 0px);
        opacity: 100%
    }

    33% {
        transform: translate(100px, 100px);
        opacity: 30%
    }

    66% {
        transform: translate(0px, 200px);
        opacity: 70%
    }

    100% {
        transform: translate(0px, 0px);
        opacity: 100%
    }
}

.animation__goAll {
    animation: goAll 30s infinite linear
}

.animation__goAll2 {
    animation: goAll2 50s infinite linear
}

.animation__goAll3 {
    animation: goAll3 30s infinite linear
}

.gsap__parallax {
    overflow: hidden
}

.tabs-box {
    position: relative
}

.tabs-box .tab {
    display: none
}

.tabs-box .tab.active-tab {
    display: block
}

.product-details .bxslider .image-box {
    position: relative;
    display: block;
    margin-right: 30px;
    margin-bottom: 10px
}

.product-details .bxslider .image-box img {
    width: 100%
}

.product-details .bxslider .thumb-box li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
    width: 100px;
    height: 100px
}

.product-details .bxslider .thumb-box li:last-child {
    margin: 0px !important
}

.product-details .bxslider .thumb-box li a {
    position: relative;
    display: inline-block
}

.product-details .bxslider .thumb-box li a:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 500ms ease
}

.product-details .bxslider .thumb-box li a.active:before {
    opacity: 1
}

.product-details__top {
    position: relative;
    display: block;
    margin-top: -8px
}

.product-details__title {
    font-size: 40px;
    line-height: 44px;
    font-weight: 700;
    margin: 0
}

.product-details__title span {
    position: relative;
    display: inline-block;
    color: var(--theme-color1);
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-left: 20px;
    letter-spacing: 0
}

.product-details__reveiw {
    display: flex;
    align-items: center;
    margin-top: 22px;
    padding-bottom: 20px;
    margin-bottom: 31px;
    border-bottom: 1px solid #e0e4e8
}

.product-details__reveiw i {
    font-size: 16px;
    color: #fdc009
}

.product-details__reveiw i+i {
    margin-left: 4px
}

.product-details__reveiw span {
    position: relative;
    top: 1px;
    line-height: 1;
    font-size: 16px;
    color: var(--theme-color3);
    margin-left: 18px
}

.product-details__quantity {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px
}

.product-details__quantity .quantity-box {
    position: relative;
    width: 98px;
    border-radius: 10px;
    height: 60px
}

.product-details__quantity .quantity-box input {
    width: 98px;
    border-radius: 10px;
    height: 60px;
    border: 1px solid #e0e4e8;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    padding-left: 30px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-color1)
}

.product-details__quantity .quantity-box button {
    width: 29px;
    height: 29px;
    background-color: rgba(0, 0, 0, 0);
    color: var(--theme-color-light);
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: var(--theme-color1);
    border: none;
    border-left: 1px solid #e0e4e8;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: all 300ms ease
}

.product-details__quantity .quantity-box button:hover {
    color: var(--theme-color-light);
    background-color: var(--theme-color2)
}

.product-details__quantity .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px
}

.product-details__quantity-title {
    margin: 0;
    color: #222;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-right: 20px
}

.product-details__buttons {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 40px
}

.product-details__buttons-1 {
    position: relative;
    display: block
}

.product-details__buttons-2 {
    position: relative;
    display: block;
    margin-left: 10px
}

.product-details__buttons-2 .thm-btn {
    background-color: var(--theme-color2)
}

.product-details__buttons-2 .thm-btn:before {
    background-color: var(--theme-color1)
}

.product-details__buttons-2 .thm-btn:after {
    background-color: var(--theme-color1)
}

.product-details__social {
    position: relative;
    display: flex;
    align-items: center
}

.product-details__social .title {
    position: relative;
    display: block
}

.product-details__social .title h3 {
    color: #222;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700
}

.product-details__social .social-icon-one {
    margin-left: 30px
}

.product-details__social .social-icon-one li a {
    color: var(--theme-color1)
}

.product-details__social .social-icon-one li a:hover {
    color: var(--theme-color2)
}

.product-discription {
    position: relative;
    display: block
}

.product-discription .product-description__title {
    font-size: 30px;
    margin-bottom: 27px
}

.product-discription .product-description__text1 {
    font-size: 16px;
    line-height: 30px;
    margin: 0
}

.product-discription .product-description__list {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px
}

.product-discription .product-description__list ul {
    position: relative;
    display: block
}

.product-discription .product-description__list ul li {
    position: relative;
    display: block;
    margin-bottom: 2px
}

.product-discription .product-description__list ul li:last-child {
    margin-bottom: 0px
}

.product-discription .product-description__list ul li p {
    margin: 0;
    font-weight: 600;
    color: var(--headings-color)
}

.product-discription .product-description__list ul li p span:before {
    position: relative;
    display: inline-block;
    color: var(--theme-color1);
    font-size: 17px;
    line-height: 17px;
    margin-right: 11px;
    top: 2px
}

.product-discription .tabs-content .text p {
    margin-bottom: 17px
}

.product-discription .tabs-content .text p:last-child {
    margin-bottom: 0px
}

.product-discription .tab-btn-box {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 60px
}

.product-discription .tab-btn-box:before {
    position: absolute;
    content: "";
    background-color: #e1e8e4;
    width: 100%;
    height: 1px;
    left: 0px;
    top: 28px
}

.product-discription .tab-btn-box .tab-btns li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    color: #1e2434;
    text-align: center;
    padding: 14px 30px;
    background-color: #fff;
    border: 1px solid #e1e8e4;
    cursor: pointer;
    margin: 0px 8.5px;
    transition: all 500ms ease
}

.product-discription .tab-btn-box .tab-btns li.active-btn {
    color: var(--theme-color-light);
    background-color: var(--theme-color1)
}

.product-discription .single-comment-box .inner-box {
    position: relative;
    display: block;
    background-color: #f4f5f4;
    padding: 34px 30px 34px 125px
}

.product-discription .single-comment-box .inner-box .comment-thumb {
    position: absolute;
    left: 30px;
    top: 40px;
    border-radius: 50%;
    width: 80px
}

.product-discription .single-comment-box .inner-box .comment-thumb img {
    width: 100%;
    border-radius: 50%
}

.product-discription .single-comment-box .inner-box .rating {
    position: relative;
    display: block;
    margin-bottom: 2px
}

.product-discription .single-comment-box .inner-box .rating li {
    position: relative;
    display: inline-block;
    font-size: 12px;
    float: left;
    margin-right: 4px;
    color: #fdc009
}

.product-discription .single-comment-box .inner-box .rating li:last-child {
    margin: 0px !important
}

.product-discription .single-comment-box .inner-box h5 {
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px
}

.product-discription .single-comment-box .inner-box h5 span {
    font-weight: 400;
    text-transform: capitalize;
    margin-left: 10px
}

.product-discription .customer-comment {
    position: relative;
    display: block;
    margin-bottom: 60px
}

.product-discription .comment-box {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 51px 60px 60px 60px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .1)
}

.product-discription .comment-box h3 {
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 23px
}

.product-discription .comment-box .form-group {
    position: relative;
    margin-bottom: 15px
}

.product-discription .comment-box .form-group label {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #707582;
    margin-bottom: 8px
}

.product-discription .comment-box .column:last-child .form-group {
    margin-bottom: 0px
}

.product-discription .comment-box .review-box {
    position: relative;
    display: block;
    margin-top: 8px
}

.product-discription .comment-box .review-box p {
    position: relative;
    float: left;
    margin-right: 10px
}

.product-discription .comment-box .review-box .rating {
    position: relative;
    float: left
}

.product-discription .comment-box .review-box .rating li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 28px;
    float: left;
    margin-right: 4px;
    color: #fdc009
}

.product-discription .comment-box .review-box .rating li:last-child {
    margin: 0px !important
}

.product-discription .comment-box .custom-controls-stacked {
    position: relative;
    float: left
}

.related-product h3 {
    margin-bottom: 30px
}

.categories-section {
    position: relative;
    padding: 100px 0 70px
}

.categories-section .bg-pattern {
    position: absolute;
    left: 0;
    top: -220px;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/icons/pattern-7.html);
    background-repeat: no-repeat;
    background-position: left top;
    z-index: -1
}

.categories-section:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 300px;
    width: 100%;
    background: var(--theme-color3);
    content: "";
    z-index: 1
}

.categories-section:after {
    position: absolute;
    left: 0;
    bottom: -50px;
    height: 70px;
    width: 100%;
    z-index: 2;
    content: "";
    background-image: url(../images/icons/pattern-3.html);
    background-repeat: no-repeat;
    background-position: center bottom
}

.category-block {
    position: relative;
    margin-bottom: 30px;
    z-index: 9
}

.category-block .inner-box {
    position: relative;
    text-align: center;
    background: #fff;
    padding: 40px 30px 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.category-block .inner-box:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 190px;
    background-repeat: no-repeat;
    background-position: center bottom;
    content: ""
}

.category-block .inner-box:hover {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2)
}

.category-block .inner-box:hover .image img {
    -webkit-transform: rotate(10deg) scale(1.2);
    -ms-transform: rotate(10deg) scale(1.2);
    transform: rotate(10deg) scale(1.2)
}

.category-block .inner-box.cat-bg-1:before {
    background-image: url(../images/icons/cat-1-bg.html)
}

.category-block .inner-box.cat-bg-2:before {
    background-image: url(../images/icons/cat-2-bg.html)
}

.category-block .inner-box.cat-bg-3:before {
    background-image: url(../images/icons/cat-3-bg.html)
}

.category-block .inner-box.cat-bg-4:before {
    background-image: url(../images/icons/cat-4-bg.html)
}

.category-block .image {
    position: relative;
    display: inline-block;
    height: 180px;
    width: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 15px
}

.category-block .image img {
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.category-block h4 {
    font-size: 20px;
    color: var(--theme-color3);
    font-weight: 700;
    margin-bottom: 10px
}

.category-block h4 a {
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.category-block h4 a:hover {
    color: var(--theme-color1)
}

.category-block p {
    font-size: 14px;
    color: #797f7d;
    line-height: 26px;
    margin-bottom: 0px
}

.categories-section-two {
    position: relative;
    padding: 120px 0 90px
}

.category-block-two {
    position: relative;
    padding-top: 70px;
    margin-bottom: 30px;
    z-index: 9
}

.category-block-two .inner-box {
    position: relative;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    margin: 0 auto;
    padding: 18px
}

.category-block-two .inner-box:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 60px;
    width: 100%;
    border-radius: 10px;
    background: #e3eee5;
    content: ""
}

.category-block-two .inner-box:hover .image:before {
    left: 100%;
    -webkit-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease
}

.category-block-two .inner-box:hover .image img {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9)
}

.category-block-two .inner-box:hover h4 a {
    color: var(--theme-color1)
}

.category-block-two .content {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 0 40px 40px;
    z-index: 1;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, .07);
    box-shadow: 0 10px 60px rgba(0, 0, 0, .07)
}

.category-block-two .content:before {
    position: absolute;
    top: -88px;
    left: 0;
    width: 180px;
    height: 180px;
    right: 0;
    margin: 0 auto;
    border-radius: 50%;
    background: #e3eee5;
    content: ""
}

.category-block-two .content:after {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    font-size: 30px;
    line-height: 1em;
    color: #e8f3ea;
    height: 15px;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: .1em;
    content: attr(data-text)
}

.category-block-two .image {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin-bottom: 25px;
    margin-top: -70px
}

.category-block-two .image img {
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.category-block-two .image:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 120%;
    width: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#00ffffff", GradientType=1);
    content: "";
    opacity: .3;
    left: -100%;
    pointer-events: none;
    z-index: 1
}

.category-block-two h4 {
    font-size: 22px;
    color: var(--theme-color3);
    font-weight: 700;
    margin-bottom: 15px
}

.category-block-two h4 a {
    color: var(--theme-color3);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.category-block-two p {
    font-size: 16px;
    color: #797f7d;
    line-height: 26px;
    margin-bottom: 0px
}

.category-block-two .link {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 50px;
    background: #e8f3ea;
    border-radius: 50%;
    line-height: 50px;
    margin-top: 25px;
    color: #608174;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.category-block-two .link:hover {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.category-block-two.child-two .link {
    background: #f0e2e3
}

.category-block-two.child-two .inner-box:before {
    background: #f0e2e3
}

.category-block-two.child-two .inner-box:hover h4 a {
    color: #e69da2
}

.category-block-two.child-two .content:before {
    background: #f0e2e3
}

.category-block-two.child-two .content:after {
    color: #f0e2e3
}

.category-block-two.child-three .link {
    background: #f1ede1
}

.category-block-two.child-three .inner-box:before {
    background: #f1ede1
}

.category-block-two.child-three .inner-box:hover h4 a {
    color: #c9b579
}

.category-block-two.child-three .content:before {
    background: #f1ede1
}

.category-block-two.child-three .content:after {
    color: #f1ede1
}

.products-section {
    position: relative;
    padding: 120px 0
}

.products-section .bg-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 670px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed
}

.products-section .bg-image:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #113629;
    opacity: .7;
    content: ""
}

.products-section .bg-image:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50px;
    width: 100%;
    background-image: url(../images/icons/pattern-8.html);
    background-position: center bottom;
    content: ""
}

.products-section .sec-title h2 {
    font-size: 60px
}

.products-section .sec-title .theme-btn {
    margin-top: 30px
}

.products-box {
    max-width: 1530px;
    position: relative;
    padding: 120px 60px 90px;
    margin: 120px auto 0;
    background-color: #f7f5ee;
    overflow: hidden;
    border-radius: 10px
}

.products-box:before {
    position: absolute;
    left: -90px;
    bottom: 0;
    height: 70%;
    width: 100%;
    background: url(../images/icons/shape-7.html) top left no-repeat;
    content: ""
}

.products-box .sec-title {
    margin-bottom: 30px
}

.products-box .outer-box {
    position: relative;
    padding-right: 400px
}

.products-box .outer-box .banner-box-two {
    position: absolute;
    right: 0;
    top: 0
}

.banner-box-two {
    position: relative
}

.banner-box-two .inner-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(22, 67, 51)), to(rgba(229, 229, 229, 0)));
    background: -o-linear-gradient(top, rgb(22, 67, 51) 0%, rgba(229, 229, 229, 0) 100%);
    background: linear-gradient(to bottom, rgb(22, 67, 51) 0%, rgba(229, 229, 229, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--theme-color2)", endColorstr="#00e5e5e5", GradientType=0);
    content: ""
}

.banner-box-two .inner-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 370px;
    background: var(--theme-color2);
    border-radius: 10px;
    min-height: 440px;
    text-align: center;
    overflow: hidden;
    padding: 20px 20px
}

.banner-box-two .title {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px
}

.banner-box-two .title strong {
    font-size: 60px;
    line-height: 1em;
    color: var(--theme-color2);
    font-weight: 400
}

.banner-box-two h4 {
    font-size: 30px;
    line-height: 1.2em;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 30px
}

.product-block-two {
    position: relative;
    margin-bottom: 30px
}

.product-block-two .inner-box {
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 10px;
    background: #fff;
    padding: 20px 20px;
    padding-left: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 150px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.product-block-two .inner-box:hover {
    border: 2px solid var(--theme-color1)
}

.product-block-two .image {
    position: absolute;
    left: 20px;
    top: 20px;
    border-radius: 50%;
    overflow: hidden;
    height: 110px;
    width: 110px;
    border: 1px solid #e4e1d6;
    margin-bottom: 0px
}

.product-block-two .image img {
    width: auto;
    transition: all 300ms ease
}

.product-block-two .inner-box:hover .image img {
    -webkit-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg)
}

.product-block-two h4 {
    display: block;
    color: var(--theme-color2);
    font-weight: 700;
    margin-bottom: 5px
}

.product-block-two h4 a {
    color: var(--theme-color2);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.product-block-two .price {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: var(--theme-color1);
    font-weight: 600
}

.product-block-two .price del {
    display: inline-block;
    margin-left: 15px;
    font-size: 16px;
    color: red;
    line-height: 27px;
    opacity: .3
}

.product-block-two .rating {
    align-items: center;
    color: var(--theme-color2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    font-size: 14px;
    position: relative
}

.products-carousel .owl-nav {
    display: none
}

.products-carousel .owl-dots {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    position: absolute;
    right: 0;
    top: -80px;
    z-index: 8
}

.products-carousel .owl-dot {
    background: #879d91;
    border-radius: 5px;
    display: block;
    height: 7px;
    margin-right: 5px;
    position: relative;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 7px
}

.products-carousel .owl-dot.active {
    background: var(--theme-color2)
}

.featured-products {
    padding: 120px 0 90px;
    position: relative
}

.featured-products .bg-shape {
    background: url(../images/icons/pattern-7.html) left bottom no-repeat;
    background-size: 700px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.featured-products .filters {
    margin-bottom: 40px;
    text-align: center
}

.featured-products .filters .filter-tabs {
    display: inline-block;
    position: relative
}

.featured-products .filters li {
    cursor: pointer;
    color: #797f7d;
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin: 0 5px 0;
    padding: 7px 12px 10px;
    position: relative;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.featured-products .filters li:last-child {
    margin-right: 0
}

.featured-products .filters .filter.active,
.featured-products .filters .filter:hover {
    background-color: var(--theme-color1);
    color: #fff
}

.featured-products .filters li:before {
    background-color: var(--theme-color2);
    bottom: 8px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1)
}

.featured-products .filters li.active:before,
.featured-products .filters li:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left
}

.product-block {
    margin-bottom: 30px;
    position: relative
}

.product-block.mix {
    display: none
}

.product-block .inner-box {
    background: #fff;
    border: 1px solid #e4e1d5;
    overflow: hidden;
    position: relative;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.product-block .inner-box:hover {
    border: 1px solid var(--theme-color1);
    -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, .1);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, .1)
}

.product-block .inner-box:hover .image:before {
    left: 100%;
    -webkit-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease
}

.product-block .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0px;
    overflow: hidden;
    position: relative
}

.product-block .image:before {
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    content: "";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#00ffffff", GradientType=1);
    height: 100%;
    left: 0;
    left: -100%;
    opacity: .3;
    position: absolute;
    pointer-events: none;
    top: 0;
    width: 100%;
    z-index: 1
}

.product-block .image img {
    -webkit-transform: scale(1.1);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    width: auto
}

.product-block .inner-box:hover .image img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.product-block .content {
    padding: 30px 30px 30px;
    position: relative
}

.product-block h4 {
    display: block;
    font-size: 22px;
    margin-top: 0
}

.product-block h4 a {
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.product-block h4 a:hover {
    color: var(--theme-color1)
}

.product-block .price {
    display: block;
    font-size: 18px;
    font-weight: 600
}

.product-block .price del {
    color: red;
    display: inline-block;
    font-size: 16px;
    line-height: 27px;
    margin-left: 15px;
    opacity: .3
}

.product-block .rating {
    color: #ffc737;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.product-block .tag {
    background: #fd5f5c;
    border-radius: 3px;
    color: #fff;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    left: 20px;
    line-height: 23px;
    padding: 0 12px;
    position: absolute;
    text-transform: uppercase;
    top: 30px;
    z-index: 9
}

.product-block .icon-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 20px;
    opacity: 0;
    position: absolute;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    top: 30px;
    visibility: hidden
}

.product-block .inner-box:hover .icon-box {
    opacity: 1;
    top: 20px;
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
    visibility: visible
}

.product-block .ui-btn {
    background-color: var(--theme-color1);
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    display: block;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 40px;
    z-index: 9
}

.product-block .ui-btn:hover {
    background-color: var(--theme-color2)
}

.product-block .cat {
    display: block;
    font-size: 18px;
    color: #707070;
    font-style: italic;
    margin-bottom: 5px
}

table.tbl-shopping-cart .product-thumbnail,
table.cart-total .product-thumbnail {
    min-width: 64px
}

table.tbl-shopping-cart img,
table.cart-total img {
    width: 64px;
    box-shadow: none
}

table.tbl-shopping-cart th,
table.tbl-shopping-cart td,
table.cart-total th,
table.cart-total td {
    vertical-align: middle;
    border-left: 1px solid #e3e3e3;
    padding: 20px 30px
}

table.tbl-shopping-cart .product-name a,
table.cart-total .product-name a {
    color: var(--headings-color)
}

table.tbl-shopping-cart .product-name .variation,
table.cart-total .product-name .variation {
    font-size: .9rem;
    list-style: none
}

table.tbl-shopping-cart .product-remove a,
table.cart-total .product-remove a {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 24px;
    transition: all 300ms ease-out;
    background-color: #757575;
    color: #fff;
    text-align: center
}

table.tbl-shopping-cart .coupon-form .apply-button,
table.cart-total .coupon-form .apply-button {
    position: relative;
    display: inline-block;
    color: #1e2434;
    background: #f4f5f4;
    padding: 15px 29px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 500ms ease
}

table.tbl-shopping-cart .coupon-form .apply-button:hover,
table.cart-total .coupon-form .apply-button:hover {
    color: var(--theme-color-light);
    background-color: var(--theme-color2)
}

table.tbl-shopping-cart>thead>tr>th,
table.tbl-shopping-cart>tbody>tr>th,
table.tbl-shopping-cart>tfoot>tr>th {
    color: #444
}

.payment-method .accordion-box .block {
    background: #f4f5f4;
    box-shadow: none;
    margin-bottom: 20px
}

.payment-method .accordion-box .block .acc-content .payment-info {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 30px 30px 10px 30px
}

.payment-method .accordion-box .block:last-child {
    margin-bottom: 0px
}

.payment-method .accordion-box .block .acc-btn {
    padding: 19px 30px 22px 30px
}

.payment-method .accordion-box .block .acc-btn.active .icon-outer {
    color: #fff
}

.payment-method .accordion-box .block .acc-btn .icon-outer {
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 30px;
    height: auto;
    font-size: 28px;
    color: #1e2434
}

.payment-method .accordion-box .block .acc-btn.active .icon-outer {
    color: var(--text-color-bg-theme-color2)
}

.payment-method .payment-method h3 {
    margin-bottom: 32px
}

.shop-sidebar {
    position: relative;
    display: block
}

.shop-sidebar .sidebar-search {
    margin-bottom: 30px
}

.shop-sidebar .sidebar-search .search-form .form-group {
    position: relative;
    margin: 0px
}

.shop-sidebar .sidebar-search .search-form .form-group input[type=search] {
    position: relative;
    width: 100%;
    height: 52px;
    background-color: var(--sub-bg);
    border: 1px solid var(--theme-light-background);
    border-radius: 5px;
    color: #646578;
    padding: 10px 60px 10px 20px;
    transition: all 500ms ease
}

.shop-sidebar .sidebar-search .search-form .form-group button {
    position: absolute;
    display: inline-block;
    top: 5px;
    right: 5px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    font-size: 18px;
    color: var(--theme-color-light);
    background-color: var(--theme-color1);
    cursor: pointer;
    border-radius: 3px;
    transition: all 500ms ease
}

.shop-sidebar .sidebar-search .search-form .form-group button:hover {
    color: var(--theme-color-light);
    background-color: var(--theme-color2)
}

.shop-sidebar .sidebar-widget {
    position: relative;
    display: block;
    background-color: var(--sub-bg);
    padding: 35px 30px 37px 30px;
    border-radius: 5px;
    margin-bottom: 30px
}

.shop-sidebar .sidebar-widget:last-child {
    margin-bottom: 0px
}

.shop-sidebar .sidebar-widget .widget-title {
    position: relative;
    display: block;
    margin-bottom: 16px
}

.shop-sidebar .category-widget .category-list li {
    position: relative;
    display: block;
    margin-bottom: 14px
}

.shop-sidebar .category-widget .category-list li:last-child {
    margin-bottom: 0px
}

.shop-sidebar .category-widget .category-list li a {
    position: relative;
    display: inline-block;
    color: #646578;
    font-weight: 400;
    padding-left: 20px
}

.shop-sidebar .category-widget .category-list li a:before {
    position: absolute;
    content: "";
    font-family: "Font Awesome 6 Pro";
    left: 0px;
    top: 0px;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color1)
}

.shop-sidebar .category-widget .category-list li a:hover {
    color: var(--theme-color1)
}

.shop-sidebar .price-filters .widget-title {
    margin-bottom: 28px
}

.shop-sidebar .post-widget {
    padding-bottom: 9px
}

.shop-sidebar .post-widget .post {
    position: relative;
    padding-left: 90px;
    padding-bottom: 24px;
    margin-bottom: 23px;
    min-height: 108px;
    border-bottom: 1px solid #e1e1e1
}

.shop-sidebar .post-widget .post:last-child {
    margin-bottom: 0px;
    border-bottom: none
}

.shop-sidebar .post-widget .post .post-thumb {
    position: absolute;
    left: 0px;
    width: 70px;
    height: 70px;
    border: 1px solid #d0d4dd;
    border-radius: 5px;
    transition: all 500ms ease
}

.shop-sidebar .post-widget .post .post-thumb img {
    width: 100%;
    border-radius: 5px
}

.shop-sidebar .post-widget .post a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: var(--body-font-weight-bold);
    line-height: 26px;
    margin-bottom: 7px
}

.shop-sidebar .post-widget .post .price {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: #858585
}

.shop-sidebar .post-widget .post:hover .post-thumb {
    border-color: var(--theme-color1)
}

.shop-sidebar .post-widget .post:hover a {
    color: var(--theme-color1)
}

.range-slider {
    position: relative
}

.range-slider .title {
    display: inline-block;
    line-height: 26px;
    margin-right: 4px;
    position: relative
}

.range-slider .title:before {
    color: #646578;
    content: "$";
    font-size: 18px;
    left: -5px;
    position: absolute;
    top: -19px
}

.range-slider p {
    color: #646578;
    display: inline-block;
    margin-right: 10px !important;
    position: relative
}

.range-slider .input {
    color: #646578;
    display: inline-block;
    font-size: 18px;
    margin-top: 5px;
    max-width: 75px;
    position: relative
}

.range-slider .input input {
    background: none;
    border-color: rgba(0, 0, 0, 0);
    color: #646578;
    font-size: 15px;
    text-align: left
}

.range-slider .ui-widget.ui-widget-content {
    background-color: #d0d4dd;
    border: none;
    border-radius: 2px;
    height: 4px;
    margin-bottom: 14px
}

.range-slider .ui-slider .ui-slider-range {
    background-color: var(--theme-color1);
    height: 4px;
    top: 0px
}

.range-slider .ui-state-default {
    background-color: var(--theme-color1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    height: 14px;
    margin-left: 0px;
    position: absolute;
    top: -5px;
    width: 14px
}

.range-slider .ui-state-default:before {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 4px;
    position: absolute;
    top: 4px;
    width: 6px
}

.range-slider .ui-widget-content .ui-state-default {
    background-color: var(--theme-color1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    height: 14px;
    margin-left: 0px;
    top: -5px;
    width: 14px
}

.range-slider .ui-widget-content .ui-state-default:before {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 4px;
    position: absolute;
    top: 4px;
    width: 6px
}

.range-slider input[type=submit] {
    background: var(--theme-color1);
    border: none;
    border-radius: 10px;
    color: var(--theme-color-light);
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 500;
    float: right;
    margin-top: 0;
    padding: 7px 20px;
    position: relative;
    text-align: center;
    text-transform: capitalize;
    transition: all 500ms ease
}

.range-slider input[type=submit]:hover {
    background-color: var(--theme-color2);
    color: var(--theme-color-light)
}

@-webkit-keyframes "ripple" {
    70% {
        -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
    }
}

@keyframes "ripple" {
    70% {
        -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
    }
}

.page-title {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 86px;
    padding: 100px 0 110px;
    position: relative
}

.page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #131313;
    opacity: .8;
    content: ""
}

.page-title .title {
    font-size: 64px;
    color: #fff;
    margin-bottom: 17px
}

.page-title .text {
    position: relative;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .05em;
    max-width: 520px
}

.page-breadcrumb {
    position: relative;
    margin-top: 5px
}

.page-breadcrumb li {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    padding-right: 13px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize
}

.page-breadcrumb li:after {
    position: absolute;
    content: "";
    right: -6px;
    top: 1px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    font-family: "Font Awesome 6 Pro";
    color: #fff
}

.page-breadcrumb li:last-child {
    padding-right: 0px;
    margin-right: 0px
}

.page-breadcrumb li:last-child::after {
    display: none
}

.page-breadcrumb li a {
    color: var(--theme-color1);
    font-weight: 500;
    text-transform: capitalize;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.page-breadcrumb li a:hover {
    color: #fff
}

.page-title.style-two {
    background-position: center center
}

.page-title.style-two .page-breadcrumb-outer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 8
}

.page-title.style-two .page-breadcrumb li {
    color: #070710;
    font-weight: 600
}

.page-title.style-two .page-breadcrumb li:after {
    color: #070710
}

.page-title.style-two .page-breadcrumb li a {
    color: rgba(7, 7, 16, .6)
}

.page-title.style-two .page-breadcrumb li a:hover {
    color: #070710
}

.background-image {
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.error-page__inner {
    position: relative;
    display: block;
    text-align: center
}

.error-page__inner .error-page__title-box {
    position: relative;
    display: block
}

.error-page__inner .error-page__title {
    position: relative;
    display: inline-block;
    font-size: 280px;
    line-height: 280px;
    margin-bottom: 0;
    color: var(--theme-color1)
}

.error-page__inner .error-page__sub-title {
    font-size: 40px;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 50px;
    margin-top: -16px
}

.error-page__inner .error-page__text {
    font-size: 20px;
    line-height: 30px;
    text-align: center
}

.error-page__inner .error-page__form {
    position: relative;
    display: block;
    margin: 42px auto 20px
}

.error-page__inner .error-page__form input[type=search] {
    height: 60px;
    width: 100%;
    border: none;
    outline: none;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #333;
    padding-left: 50px;
    padding-right: 75px;
    border-radius: 7px
}

.error-page__inner .error-page__form button[type=submit] {
    background-color: rgba(0, 0, 0, 0);
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    width: 72px;
    outline: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0
}

.error-page__inner .error-page__form-input {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
    margin: 0 auto
}

.service-sidebar {
    position: relative;
    display: block;
    max-width: 365px;
    width: 100%
}

.service-sidebar .service-sidebar-single {
    position: relative;
    display: block;
    margin-bottom: 30px
}

.service-sidebar .service-sidebar-single-services {
    position: relative;
    display: block;
    background: #f6f4ec;
    border-radius: 10px;
    padding: 35px 30px 25px
}

.service-sidebar .service-sidebar-single-services .title {
    position: relative;
    display: block;
    margin-bottom: 12px;
    padding-left: 20px
}

.service-sidebar .service-sidebar-single-services .title h3 {
    color: var(--headings-color);
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.02em
}

.service-sidebar .service-sidebar-single-services ul {
    position: relative;
    display: block;
    margin-top: 10px
}

.service-sidebar .service-sidebar-single-services ul li {
    position: relative;
    display: block;
    margin-bottom: 5px;
    margin-top: -10px
}

.service-sidebar .service-sidebar-single-services ul li:last-child {
    margin-bottom: 0
}

.service-sidebar .service-sidebar-single-services ul li a {
    position: relative;
    display: block;
    color: var(--agriox-color-1, #687469);
    font-size: 18px;
    padding: 22px 20px 22px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0);
    transition: all 300ms linear;
    transition-delay: .1s;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.service-sidebar .service-sidebar-single-services ul li a:hover {
    color: var(--headings-color)
}

.service-sidebar .service-sidebar-single-services ul li a:hover::before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms linear;
    transition-delay: .1s
}

.service-sidebar .service-sidebar-single-services ul li a:hover i {
    color: var(--theme-color1)
}

.service-sidebar .service-sidebar-single-services ul li a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
    opacity: 1;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 300ms linear;
    transition-delay: .1s;
    background: #fff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, .05);
    border-radius: 10px
}

.service-sidebar .service-sidebar-single-services ul li a i {
    font-size: 16px
}

.service-sidebar .service-sidebar-single-services ul li.current a::before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms linear;
    transition-delay: .1s
}

.service-sidebar .service-sidebar-single-services ul li.current a i {
    color: var(--theme-color1)
}

.service-sidebar .service-sidebar-single-services ul li.current:first-child {
    margin-top: 20px
}

.service-sidebar .service-sidebar-single-services ul li.current:last-child {
    margin-bottom: 35px
}

.service-sidebar .service-sidebar-single-contact-box {
    position: relative;
    display: block;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 50px 0px 44px;
    z-index: 1
}

.service-sidebar .service-sidebar-single-contact-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(109, 140, 84, .93);
    border-radius: 10px;
    content: "";
    z-index: -1
}

.service-sidebar .service-sidebar-single-contact-box .icon {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    text-align: center;
    transition: all 500ms ease;
    border-radius: 50%;
    background: var(--theme-color2)
}

.service-sidebar .service-sidebar-single-contact-box .icon:hover {
    background-color: var(--headings-color)
}

.service-sidebar .service-sidebar-single-contact-box .icon:hover span::before {
    color: #fff
}

.service-sidebar .service-sidebar-single-contact-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--headings-color);
    font-size: 30px;
    line-height: 60px;
    transition: all 500ms ease
}

.service-sidebar .service-sidebar-single-contact-box .title {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-bottom: 42px
}

.service-sidebar .service-sidebar-single-contact-box .title h2 {
    color: #fff;
    font-size: 36px
}

.service-sidebar .service-sidebar-single-contact-box .phone {
    font-size: 24px;
    line-height: 34px
}

.service-sidebar .service-sidebar-single-contact-box .phone a {
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.service-sidebar .service-sidebar-single-contact-box .phone a:hover {
    color: var(--theme-color1)
}

.service-sidebar .service-sidebar-single-contact-box p {
    color: #fff;
    font-size: 14px;
    line-height: 22px
}

.service-sidebar .service-sidebar-single-btn {
    position: relative;
    display: block
}

.service-sidebar .service-sidebar-single-btn .thm-btn {
    font-size: 16px;
    padding: 13px 50px 28px
}

.service-sidebar .service-sidebar-single-btn .thm-btn span::before {
    position: relative;
    display: inline-block;
    top: 13px;
    color: #334b35;
    font-size: 40px;
    padding-right: 25px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    font-weight: 500
}

.service-sidebar .service-sidebar-single-btn .thm-btn:hover span::before {
    color: #fff
}

.service-sidebar .banner-widget {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, .08)
}

.service-sidebar .banner-widget .widget-content {
    position: relative;
    display: block;
    width: 100%;
    padding: 45px 30px 40px 30px;
    background-size: cover;
    background-repeat: no-repeat
}

.service-sidebar .banner-widget .widget-content .shape {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 278px;
    background-repeat: no-repeat;
    background-size: cover
}

.service-sidebar .banner-widget .content-box {
    position: relative;
    max-width: 200px;
    width: 100%
}

.service-sidebar .banner-widget .content-box .icon-box {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 40px;
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color2);
    text-align: center;
    border-radius: 5px;
    margin-bottom: 23px
}

.service-sidebar .banner-widget .content-box .icon-box .icon-shape {
    position: absolute;
    top: -15px;
    right: -38px;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat
}

.service-sidebar .banner-widget .content-box h3 {
    display: block;
    font-size: 24px;
    line-height: 32px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 22px
}

.service-sidebar .banner-widget .content-box .theme-btn-two:hover {
    background: #0a267a
}

.service-sidebar .service-sidebar-single-btn .theme-btn {
    padding: 20px 50px
}

.service-sidebar .service-sidebar-single-btn .theme-btn .btn-title {
    display: flex;
    align-items: center;
    justify-content: center
}

.service-sidebar .service-sidebar-single-btn .theme-btn span::before {
    position: relative;
    display: inline-block;
    font-size: 36px;
    padding-right: 25px;
    margin-top: 7px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    font-weight: 500
}

.services-details__content .feature-list .single-item {
    position: relative;
    display: block;
    border: 1px solid #e1e8e4;
    padding: 16px 30px 16px 53px;
    margin-bottom: 20px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease
}

.services-details__content .feature-list .single-item .icon-box {
    color: var(--theme-color1);
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: 18px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease
}

.services-details__content .feature-list .single-item .title {
    display: block;
    margin: 0;
    font-size: 16px;
    line-height: 32px;
    font-weight: 600;
    text-transform: uppercase
}

.services-details__content .feature-list .single-item:hover {
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color2)
}

.services-details__content .feature-list .single-item:hover .icon-box {
    color: var(--text-color-bg-theme-color2)
}

.sidebar-service-list {
    margin: 0
}

.sidebar-service-list li+li {
    margin-top: 10px
}

.sidebar-service-list li a {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background-color: #f5faff;
    border-radius: 15px;
    padding: 19px 40px
}

.sidebar-service-list li a:hover {
    color: var(--theme-color1)
}

.sidebar-service-list li a:hover i {
    transform: translateY(-50%);
    color: #fff;
    background-color: var(--theme-color1)
}

.sidebar-service-list li a i {
    height: 32px;
    width: 45px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: #191825;
    background-color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 15px
}

.sidebar-service-list li.current a {
    color: var(--theme-color1)
}

.sidebar-service-list li.current a i {
    transform: translateY(-50%);
    color: #fff;
    background-color: var(--theme-color1)
}

.service-details-help {
    position: relative;
    display: block;
    padding: 57px 55px 50px;
    margin-top: 30px;
    text-align: center;
    z-index: 1;
    background-color: var(--theme-color1);
    border-radius: 15px;
    overflow: hidden
}

.help-shape-1 {
    position: absolute;
    bottom: -215px;
    left: -95px;
    width: 220px;
    height: 500px;
    background-color: #303030;
    mix-blend-mode: soft-light;
    border-radius: 150px;
    transform: rotate(45deg);
    z-index: -1
}

.help-shape-2 {
    background-color: #fff;
    border-radius: 186px;
    height: 350px;
    mix-blend-mode: soft-light;
    position: absolute;
    right: -130px;
    top: -118px;
    transform: rotate(48deg);
    width: 180px
}

.help-icon {
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    color: #191825;
    display: flex;
    font-size: 32px;
    height: 73px;
    justify-content: center;
    margin: 0 auto 0;
    transition: all 500ms ease;
    width: 73px
}

.help-icon:hover {
    background-color: var(--theme-color-dark);
    color: var(--theme-color1)
}

.help-title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 21px
}

.help-contact {
    display: block;
    margin-top: 21px;
    position: relative
}

.help-contact p {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 32px;
    margin: 0;
    opacity: .7
}

.help-contact a {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.help-contact a:hover {
    color: #fff
}

.innerpage .accordion-box {
    position: relative
}

.innerpage .accordion-box .block {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 40px rgba(0, 0, 0, .05);
    box-shadow: 0 5px 40px rgba(0, 0, 0, .05);
    margin-bottom: 10px;
    position: relative
}

.innerpage .accordion-box .acc-content {
    display: none;
    position: relative
}

.innerpage .accordion-box .acc-content .content {
    padding: 25px 30px;
    position: relative
}

.innerpage .accordion-box .acc-content .text {
    color: #808287;
    display: block;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0
}

.innerpage .accordion-box .acc-content.current {
    display: block
}

.innerpage .accordion-box .acc-btn {
    border-bottom: 1px solid #fff;
    color: var(--headings-color);
    cursor: pointer;
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: var(--h4-font-weight);
    padding: 20px 30px;
    padding-right: 70px;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.innerpage .accordion-box .acc-btn.active {
    background-color: var(--theme-color1);
    color: #fff
}

.innerpage .accordion-box .acc-btn.active .icon {
    color: var(--text-color-bg-theme-color2);
    top: 45%
}

.innerpage .accordion-box .acc-btn.active .icon:before {
    content: ""
}

.innerpage .accordion-box .icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--theme-color1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    left: auto;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.project-details__img {
    position: relative;
    display: block
}

.project-details__img img {
    width: 100%;
    border-radius: 10px
}

.project-details__content {
    position: relative;
    display: block
}

.project-details__content-left {
    position: relative;
    display: block;
    margin-top: 31px
}

.project-details__content-right {
    position: relative;
    display: block;
    margin-top: 40px
}

.project-details__details-box {
    position: relative;
    border-radius: 10px;
    background-color: #f5f5f5;
    padding: 43px 50px 50px;
    z-index: 1
}

@media(max-width: 575.98px) {
    .project-details__details-box {
        padding: 30px 20px
    }
}

.project-details__details-list {
    position: relative;
    display: block
}

.project-details__details-list li {
    position: relative;
    display: block
}

.project-details__details-list li+li {
    margin-top: 24px
}

.project-details__client {
    font-size: 16px;
    color: #838d9e;
    line-height: 24px;
    margin: 0
}

.project-details__name {
    font-size: 16px;
    line-height: 24px
}

.project-details__social {
    position: relative;
    display: flex;
    align-items: center
}

.project-details__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color1);
    font-size: 15px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1
}

.project-details__social a:hover {
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color2)
}

.project-details__social a+a {
    margin-left: 10px
}

.project-details__pagination-box {
    position: relative;
    display: block;
    text-align: center;
    border-top: 1px solid #ece9e0;
    border-bottom: 1px solid #ece9e0;
    padding: 30px 0;
    margin-top: 117px
}

.project-details__pagination {
    position: relative;
    display: block
}

.project-details__pagination li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.project-details__pagination li a {
    font-size: 14px;
    color: #757873;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.project-details__pagination li a:hover {
    color: var(--theme-color1)
}

.project-details__pagination li a:hover i {
    background-color: var(--theme-color2);
    border: 2px solid var(--theme-color2);
    color: var(--white)
}

.project-details__pagination li .content {
    position: relative;
    display: block
}

.project-details__pagination li.next {
    float: left;
    position: relative
}

.project-details__pagination li.next i {
    position: relative;
    height: 52px;
    width: 52px;
    border: 2px solid var(--theme-color2);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #0e2207;
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-right: 20px;
    z-index: 1
}

.project-details__pagination li.next .content {
    text-align: left;
    font-weight: var(--body-font-weight-bold)
}

.project-details__pagination li.previous {
    position: relative;
    float: right
}

.project-details__pagination li.previous i {
    position: relative;
    height: 52px;
    width: 52px;
    border: 2px solid var(--theme-color2);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #0e2207;
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-left: 20px;
    z-index: 1
}

.project-details__pagination li.previous .content {
    text-align: right
}

.room-facility-list {
    position: relative
}

.room-facility-list .icon {
    border: 1px solid var(--theme-color1);
    border-radius: 50%;
    display: block;
    font-size: 22px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    width: 64px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.room-facility-list .list-one:hover .icon {
    background-color: var(--theme-color1);
    color: #fff
}

.room-details__content-right {
    display: block;
    margin-top: 40px;
    position: relative
}

.room-details__details-box {
    background-color: #f5f6f7;
    border: 1px solid var(--theme-color1);
    border-radius: 10px;
    padding: 43px 50px 30px 50px;
    position: relative;
    z-index: 1
}

.product-details.rd-page .bx-wrapper {
    margin-bottom: 30px
}

.product-details.rd-page .bx-wrapper .thumb-box li {
    height: auto
}

@media only screen and (max-width: 480px) {
    .room-block .inner-box .box-caption .book-btn {
        padding: 0 10px;
        margin-right: 10px
    }

    .room-block.col-lg-3 .inner-box .box-caption .bx-links li {
        margin-right: 10px
    }

    .rooms-section {
        padding: 80px 0
    }
}

.list-style-two {
    position: relative
}

.list-style-two li {
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative
}

.list-style-two li:last-child {
    margin-bottom: 0
}

.list-style-two li i {
    border-radius: 50%;
    color: var(--theme-color1);
    font-size: 16px;
    left: 0;
    position: absolute;
    top: 7px
}

.list-style-two.light li {
    color: var(--theme-color-light)
}

.list-style-two.two-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.list-style-two.two-column li {
    padding-right: 20px;
    width: 50%
}

@media(max-width: 767.98px) {
    .list-style-two.two-column li {
        width: 100%
    }
}

.blog-details {
    position: relative;
    display: block
}

.blog-details__left {
    position: relative;
    display: block
}

.blog-details__img {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden
}

.blog-details__img img {
    width: 100%;
    border-radius: 10px
}

.blog-details__date {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--theme-color1);
    text-align: center;
    padding: 21px 24px 20px;
    align-items: center;
    display: flex;
    flex-direction: column
}

.blog-details__date .day {
    font-size: 16px;
    color: #fff;
    font-weight: var(--body-font-weight-bold);
    line-height: 16px
}

.blog-details__date .month {
    position: relative;
    display: block;
    font-size: 10px;
    font-weight: var(--body-font-weight-bold);
    color: #fff;
    line-height: 12px;
    text-transform: uppercase
}

.blog-details__content {
    position: relative;
    display: block;
    margin-top: 22px
}

.blog-details__meta {
    position: relative;
    display: flex;
    align-items: center
}

.blog-details__meta li+li {
    margin-left: 18px
}

.blog-details__meta li a {
    font-size: 15px;
    color: #777;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.blog-details__meta li a:hover {
    color: var(--theme-color1)
}

.blog-details__meta li a i {
    color: var(--theme-color1);
    margin-right: 6px
}

.blog-details__title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 12px;
    margin-bottom: 21px
}

.blog-details__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0 30px;
    margin-top: 49px;
    border-top: 1px solid #ece9e0
}

@media only screen and (max-width: 767px) {
    .blog-details__bottom {
        gap: 30px
    }
}

.blog-details__bottom p {
    margin: 0
}

.blog-details__tags span {
    color: #0e2207;
    font-size: 20px;
    margin-right: 14px;
    font-weight: var(--body-font-weight-bold)
}

.blog-details__tags a {
    position: relative;
    font-size: 12px;
    background-color: var(--theme-color1);
    color: var(--white);
    display: inline-block;
    padding: 8px 30px;
    font-weight: var(--body-font-weight-bold);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 35px
}

.blog-details__tags a:hover {
    background-color: var(--theme-color2);
    color: var(--white);
    text-decoration: none
}

.blog-details__tags a+a {
    margin-left: 6px
}

.blog-details__social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.blog-details__social-list a {
    position: relative;
    height: 43px;
    width: 43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background-color: var(--sub-bg);
    color: var(--theme-light-background-text-color);
    font-size: 15px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1
}

.blog-details__social-list a:hover {
    color: var(--white)
}

.blog-details__social-list a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1)
}

.blog-details__social-list a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--theme-color2);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1
}

.blog-details__social-list a+a {
    margin-left: 10px
}

.blog-details__pagenation-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 53px
}

.blog-details__pagenation {
    position: relative;
    display: block
}

.blog-details__pagenation li {
    position: relative;
    float: left;
    font-size: 20px;
    color: #0e2207;
    font-weight: var(--body-font-weight-bold);
    color: var(--theme-light-background-text-color);
    background-color: var(--theme-light-background);
    line-height: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    max-width: 370px;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 52px;
    padding-bottom: 52px;
    border-radius: 10px
}

.blog-details__pagenation li:hover {
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color2)
}

.blog-details__pagenation li+li {
    margin-left: 30px
}

.nav-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 53px
}

@media only screen and (max-width: 767px) {
    .nav-links {
        flex-direction: column;
        gap: 20px
    }
}

.nav-links .prev {
    display: flex;
    align-items: center;
    height: 100%;
    width: calc(50% - 15px);
    margin-right: 30px
}

@media only screen and (max-width: 767px) {
    .nav-links .prev {
        width: 100%
    }
}

.nav-links .prev .thumb {
    margin-right: 20px
}

.nav-links .next {
    display: flex;
    align-items: center;
    height: 100%;
    flex-direction: row-reverse;
    width: calc(50% - 15px)
}

@media only screen and (max-width: 767px) {
    .nav-links .next {
        width: 100%
    }
}

.nav-links .next .thumb {
    margin-left: 20px
}

.nav-links>div {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.nav-links>div .thumb {
    display: inline-block;
    min-width: 60px;
    width: 60px;
    height: 60px;
    overflow: hidden
}

.nav-links>div .thumb a {
    display: inline-block
}

.nav-links>div>a {
    display: inline-block;
    word-wrap: break-word;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    font-size: 20px;
    line-height: 1.637;
    font-weight: var(--body-font-weight-bold);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--theme-light-background-text-color);
    background-color: var(--sub-bg);
    padding: 52px 50px;
    border-radius: 10px;
    width: 100%
}

@media only screen and (max-width: 767px) {
    .nav-links>div>a {
        padding: 30px
    }
}

.nav-links>div>a:hover {
    color: var(--white);
    background-color: var(--theme-color1)
}

@media(max-width: 991px) {
    .sidebar {
        margin-top: 50px
    }
}

.sidebar__single+.sidebar__single {
    margin-top: 30px
}

.sidebar__title {
    margin: 0;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: var(--h4-font-weight)
}

.sidebar__search {
    position: relative;
    display: block
}

.sidebar__search-form {
    position: relative
}

.sidebar__search-form input[type=search] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--theme-color1);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding-left: 50px;
    height: 74px;
    width: 100%;
    padding-right: 80px;
    border-radius: 10px
}

.sidebar__search-form input[type=search]::-webkit-input-placeholder,
.sidebar__search-form input[type=search]:-ms-input-placeholder,
.sidebar__search-form input[type=search]::-ms-input-placeholder,
.sidebar__search-form input[type=search]::placeholder {
    color: var(--white);
    opacity: 1
}

@media only screen and (max-width: 767px) {
    .sidebar__search-form input[type=search] {
        padding-left: 30px
    }
}

.sidebar__search-form button[type=submit] {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 72px;
    outline: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0
}

@media only screen and (max-width: 767px) {
    .sidebar__search-form button[type=submit] {
        width: 42px
    }
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 46px 30px 30px;
    color: var(--theme-light-background-text-color);
    background-color: var(--sub-bg);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1
}

@media only screen and (max-width: 767px) {
    .sidebar__post {
        padding: 30px
    }
}

.sidebar__post .sidebar__title {
    margin-left: 20px
}

@media only screen and (max-width: 767px) {
    .sidebar__post .sidebar__title {
        margin-left: 0
    }
}

.sidebar__post .sidebar__post-list {
    margin: 0
}

.sidebar__post .sidebar__post-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 20px 17px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

@media only screen and (max-width: 767px) {
    .sidebar__post .sidebar__post-list li {
        padding: 16px 0
    }
}

.sidebar__post .sidebar__post-list li:hover {
    background-color: #fff;
    border-radius: 10px
}

.sidebar__post .sidebar__post-list li+li {
    margin-top: 11px
}

.sidebar__post .sidebar__post-list .sidebar__post-image {
    margin-right: 20px;
    flex: 70px 0 0
}

.sidebar__post .sidebar__post-list .sidebar__post-image>img {
    width: 80px;
    border-radius: 10px
}

.sidebar__post .sidebar__post-list .sidebar__post-content {
    position: relative;
    top: -3px
}

.sidebar__post .sidebar__post-list .sidebar__post-content h3 {
    font-size: 18px;
    margin: 0;
    line-height: 26px;
    letter-spacing: 0
}

.sidebar__post .sidebar__post-list .sidebar__post-content h3 a {
    color: #0e2207;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.sidebar__post .sidebar__post-list .sidebar__post-content-meta {
    font-size: 14px;
    font-weight: 500;
    color: #757873 !important;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.sidebar__post .sidebar__post-list .sidebar__post-content-meta i {
    color: var(--theme-color1);
    font-size: 13px;
    padding-right: 5px
}

.sidebar__category {
    position: relative;
    display: block;
    color: var(--theme-light-background-text-color);
    background-color: var(--sub-bg);
    border-radius: 10px;
    padding: 45px 30px 38px;
    overflow: hidden;
    z-index: 1
}

@media only screen and (max-width: 767px) {
    .sidebar__category {
        padding: 30px 15px 30px
    }
}

.sidebar__category .sidebar__title {
    padding-left: 20px;
    margin-bottom: 9px
}

.sidebar__category-list {
    margin: 0
}

.sidebar__category-list li+li {
    margin-top: 4px
}

.sidebar__category-list li a {
    color: #757873;
    font-size: 16px;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 10px
}

.sidebar__category-list li a:hover {
    background-color: #fff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, .05);
    color: #0e2207;
    text-shadow: 1px 0 0 rgba(14, 34, 7, .5)
}

.sidebar__category-list li a:hover span {
    color: #ffcd1e;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1)
}

.sidebar__category-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--theme-color2);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px
}

.sidebar__category-list li.active a {
    background-color: #fff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, .05);
    color: #0e2207;
    border-radius: 10px;
    text-shadow: 1px 0 0 rgba(14, 34, 7, .5)
}

.sidebar__category-list li.active a span {
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    color: #ffcd1e
}

.sidebar__tags {
    position: relative;
    display: block;
    color: var(--theme-light-background-text-color);
    background-color: var(--sub-bg);
    padding: 46px 45px 50px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1
}

@media only screen and (max-width: 767px) {
    .sidebar__tags {
        padding: 30px
    }
}

.sidebar__tags .sidebar__title {
    margin-left: 5px;
    margin-bottom: 25px
}

.sidebar__tags-list {
    margin-top: -10px
}

.sidebar__tags-list a {
    font-size: 14px;
    color: #0e2207;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    background: #fff;
    display: inline-block;
    padding: 5px 28px 5px;
    margin-left: 5px;
    border-radius: 30px
}

.sidebar__tags-list a:hover {
    color: var(--white);
    background: var(--theme-color1)
}

.sidebar__tags-list a+a {
    margin-left: 5px;
    margin-top: 10px
}

.sidebar__comments {
    position: relative;
    display: block;
    color: var(--theme-light-background-text-color);
    background-color: var(--sub-bg);
    padding: 46px 50px 43px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1
}

@media only screen and (max-width: 767px) {
    .sidebar__comments {
        padding: 30px
    }
}

.sidebar__comments .sidebar__title {
    margin-bottom: 25px
}

.sidebar__comments-list {
    position: relative;
    display: block
}

.sidebar__comments-list li {
    position: relative;
    display: block;
    padding-left: 65px
}

.sidebar__comments-list li:hover .sidebar__comments-icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-dark)
}

.sidebar__comments-list li+li {
    margin-top: 23px
}

.sidebar__comments-icon {
    height: 45px;
    width: 45px;
    background-color: var(--theme-color1);
    border-radius: 50%;
    font-size: 15px;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.sidebar__comments-text-box p {
    font-size: 15px;
    margin: 0;
    line-height: 26px;
    font-weight: 500
}

.sidebar__comments-text-box p span {
    color: #0e2207
}

.sidebar__comments-text-box h5 {
    font-size: 15px;
    margin: 0;
    line-height: 26px;
    color: #757873;
    font-weight: 500;
    letter-spacing: 0
}

.comment-one .comment-one__title {
    margin-bottom: 30px
}

.comment-one .comment-one__single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #ece9e0;
    padding-bottom: 60px;
    margin-bottom: 60px;
    align-items: top
}

@media only screen and (max-width: 767px) {
    .comment-one .comment-one__single {
        flex-direction: column
    }
}

.comment-one .comment-one__content {
    position: relative;
    margin-left: 45px
}

@media only screen and (max-width: 767px) {
    .comment-one .comment-one__content {
        margin-top: 20px;
        margin-left: 0
    }
}

.comment-one .comment-one__content h3 {
    margin: 0;
    font-size: 20px;
    color: var(--theme-color2);
    margin-bottom: 24px
}

.comment-one .comment-one__content p {
    font-size: 16px
}

.comment-one .comment-one__btn {
    padding: 2px 30px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    border-radius: 35px
}

.comment-one .comment-one__image {
    position: relative;
    display: block;
    border-radius: 50%;
    flex: 100px 0 0
}

.comment-one .comment-one__image img {
    border-radius: 50%
}

.comment-form .comment-form__title {
    margin-top: -7px
}

.team-details {
    display: block;
    position: relative
}

.team-details__top {
    padding: 0 0 120px
}

.team-details-shape-1 {
    bottom: -270px;
    opacity: .5;
    position: absolute;
    right: 0;
    z-index: 2
}

.team-details-shape-1 img {
    width: auto
}

.team-details__top-left {
    display: block;
    margin-right: 20px;
    position: relative
}

.team-details__top-img {
    border-radius: 30px;
    display: block;
    position: relative
}

.team-details__top-img img {
    border-radius: 30px;
    width: 100%
}

.team-details__big-text {
    color: #eef0f6;
    font-size: 80px;
    line-height: 80px;
    font-weight: 400;
    left: -325px;
    letter-spacing: .35em;
    position: absolute;
    text-transform: uppercase;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 209px
}

.team-details__top-right {
    display: block;
    margin-left: 70px;
    position: relative
}

@media only screen and (max-width: 991px) {
    .team-details__top-right {
        margin-top: 70px;
        margin-left: 0
    }
}

.team-details__top-content {
    display: block;
    margin-top: -11px;
    position: relative
}

.team-details__top-name {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 3px
}

.team-details__top-title {
    color: var(--theme-color1);
    font-size: 16px
}

.team-details__social {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 28px;
    margin-top: 20px;
    position: relative
}

.team-details__social a {
    background-color: var(--theme-color1);
    border-radius: 50%;
    color: var(--theme-color-light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 40px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.team-details__social a:hover {
    background-color: var(--theme-color2);
    color: var(--theme-color-light)
}

.team-details__social a+a {
    margin-left: 10px
}

.team-details__top-text-1 {
    color: var(--theme-color1);
    font-size: 30px;
    font-weight: 400;
    line-height: 45px;
    margin-bottom: 30px
}

.team-details__top-text-2 {
    padding-bottom: 35px;
    padding-top: 23px
}

.team-details__bottom {
    border-top: 1px solid #e4e5ea;
    display: block;
    padding-top: 110px;
    position: relative
}

.team-details__bottom-left {
    display: block;
    margin-right: 70px;
    position: relative
}

.team-details__bottom-left-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px
}

.team-details__bottom-left-text {
    padding-top: 30px
}

.team-details__bottom-right {
    display: block;
    margin-left: 70px;
    margin-top: 1px;
    position: relative
}

@media only screen and (max-width: 991px) {
    .team-details__bottom-right {
        margin-left: 0
    }
}

.team-details__progress {
    display: block;
    position: relative;
    width: 100%
}

.team-details__progress .bar {
    background-color: var(--theme-color2);
    border-radius: 7px;
    height: 13px;
    margin-bottom: 22px;
    position: relative;
    width: 100%
}

.team-details__progress .bar-inner {
    background-color: var(--theme-color1);
    border-radius: 7px;
    display: block;
    height: 13px;
    position: relative;
    transition: all 1500ms ease;
    width: 0px
}

.team-details__progress .count-text {
    bottom: 21px;
    color: var(--theme-color4);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    opacity: 0;
    position: absolute;
    right: 0px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.team-details__progress .bar-inner.counted .count-text {
    opacity: 1
}

.team-details__progress .bar.marb-0 {
    margin-bottom: 0
}

.team-details__progress-single {
    display: block;
    position: relative
}

.team-details__progress-title {
    color: var(--theme-color4);
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 6px
}

.team-contact-form {
    background-color: #eef0f6
}

.team-contact-form input[type=text],
.team-contact-form input[type=email] {
    background-color: #fff
}

.team-contact-form textarea {
    background-color: #fff;
    height: 180px
}

.contact-details__info {
    position: relative;
    display: block;
    margin-top: 41px
}

.contact-details__info li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.contact-details__info li .icon {
    height: 80px;
    width: 80px;
    background-color: var(--theme-color1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 50%
}

.contact-details__info li .icon span {
    color: var(--white);
    font-size: 25px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.contact-details__info li .text h6 {
    margin-bottom: 5px;
    margin-top: 0
}

.contact-details__info li:hover .icon {
    background-color: var(--theme-color2)
}

.contact-details__info li:hover .icon span {
    color: var(--white)
}

.contact-details__info li:hover .text a {
    color: var(--notech-base)
}

.contact-details__info li:hover .text a span {
    color: var(--notech-gray)
}

.contact-details__info li .text {
    margin-left: 30px
}

.contact-details__info li .text p {
    font-size: 14px;
    line-height: 24px
}

.contact-details__info li .text a {
    font-size: 18px;
    color: var(--notech-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.contact-details__info li .text span {
    font-size: 20px;
    color: var(--notech-black)
}

.contact-details__info li+li {
    margin-top: 30px
}

.map {
    height: 550px
}

.form-control,
.input-text {
    background-color: #f4f5f8;
    border: 1px solid #f4f5f8;
    color: #686a6f;
    font-size: .9rem;
    height: calc(2.25rem + 27px);
    outline: 0;
    padding: 14px 30px;
    width: 100%
}

textarea.form-control {
    height: auto
}

.custom-quote-box {
  position: relative;
  
  padding: 2rem;
  font-family: serif;
  text-align: left;
  max-width: 700px;
}

.custom-quote-box .quote-text {
  font-size: 1.25rem;
  font-style: italic;
  color: #ffffff;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.custom-quote-box .quote-mark {
  font-size: 4rem;
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
}
 
.custom-quote-box .quote-open {
  position: absolute;
  top: -10px;
  left: -20px;
}

.custom-quote-box .quote-close {
  text-align: right;
  display: block;
  margin-top: 1rem;
}

.banner__content {
margin-left: 50px;

}



@media only screen and (min-width: 900px) { 

.whatsapp-icon {
    position: fixed;
    width: 50px;
    top: 85%;
    z-index: 1000;
    left: 5%;
}

}

@media only screen and (max-width: 500px) { 

.whatsapp-icon {
    position: fixed;
    width: 55px;
    top: 85%;
    z-index: 1000;
    left: 5%;
}
}


/* insta icon */


@media only screen and (min-width: 900px) { 

.insta-icon {
    position: fixed;
    width: 50px;
    top: 73%;
    z-index: 1000;
    left: 5%;
}

}

@media only screen and (max-width: 500px) { 

.insta-icon {
    position: fixed;
    width: 55px;
    top: 73%;
    z-index: 1000;
    left: 5%;
}
}


@media(max-width: 500px) {
    .choose__image img {
        display: none
    }
}


/*# sourceMappingURL=style.css.map */