/* @import"https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&amp;family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Outfit:wght@100..900&amp;family=Syne:wght@400..800&amp;family=Teko:wght@300..700&amp;display=swap"; */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Outfit:wght@100..900&family=Syne:wght@400..800&family=Teko:wght@300..700&display=swap');

:root {
    --body: #fffaf3;
    --black: #000;
    --white: #fff;
    --theme: #00bdad;
    --theme2: #f5f1ea;
    --theme3: #8a5133;
    --theme4: #B90808;
    --title: #282c32;
    --orange: #e78c45;
    --text: #0c0c0c;
    --text2: #cbcbcb;
    --border: #0C0C0C;
    --border-2: #d9d9d9;
    --border-3: #3D3D3D;
    --border-4: #e0e0e0;
    --border-5: #424242;
    --border-6: #cccccc;
    --button-bg-1: #0c0c0c;
    --button-bg-2: #ffffff;
    --bg-1: #0c0c0c;
    --bg-2: #3c2bff;
    --theme-color-3: #FFE175;
    --head-color-3: #00bdad;
    --title-color-3: #252525;
    --text-color-3: #737373;
    --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06)
}

body {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color: var(--text);
    background-color: var(--body);
    padding: 0;
    margin: 0;
    overflow-x: hidden
}

ul {
    padding: 0;
    margin: 0;
    list-style: none
}

button {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    padding: 0
}

input:focus {
    color: var(--text);
    outline: none
}

input::-moz-placeholder {
    color: #767771
}

input::placeholder {
    color: #767771
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Syne", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--title);
    text-transform: capitalize;
    transition: all .4s ease-in-out
}

h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 120%
}

h2 {
    font-size: 40px;
    line-height: 145%;
    font-weight: 700
}

@media(max-width: 767px) {
    h2 {
        font-size: 34px
    }
}

@media(max-width: 575px) {
    h2 {
        font-size: 28px
    }
}

h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 145%
}

@media(max-width: 767px) {
    h3 {
        font-size: 16px
    }
}

h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%
}

h5 {
    font-size: 18px;
    font-weight: 700
}

h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 145%
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--title);
    transition: all .4s ease-in-out
}

a:hover {
    color: var(--theme) !important
}

p {
    margin: 0px;
    transition: all .4s ease-in-out
}

span {
    margin: 0px;
    transition: all .4s ease-in-out
}

.info-text-style {
    color: var(--white);
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 35.04px
}

.form-contl {
    position: relative;
    margin-top: 30px
}

.form-contl input {
    position: relative;
    padding: 17px 20px;
    height: 60px;
    background: var(--theme2);
    width: 100%;
    border: 1px solid #6e6e6e;
    opacity: .8
}

.form-contl input::-moz-placeholder {
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.08px
}

.form-contl input::placeholder {
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.08px
}

.form-contl input.style2 {
    border: none
}

.form-contl button {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--theme);
    color: var(--white)
}

.form-contl button.style2 {
    background: rgba(0, 0, 0, 0);
    color: var(--theme)
}

input.form-control,
textarea.form-control {
    outline: none;
    box-shadow: none;
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 17px 10px;
    font-size: 1rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px
}

input.form-control:focus,
textarea.form-control:focus {
    background-color: var(--white);
    border: 1px solid var(--border);
    outline: none;
    box-shadow: none
}

label {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 35.04px
}

.form-group {
    margin-bottom: var(--bs-gutter-x);
    position: relative
}

.form-group>i {
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 13px;
    font-size: 16px;
    color: var(--text)
}

.form-group>i.fa-envelope {
    padding-top: 1px
}

input[type=number] {
    -moz-appearance: textfield
}

input[type=checkbox] {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-radius: 10px
}

input[type=checkbox]:checked~label:after {
    opacity: 1
}

input[type=checkbox]~label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: block;
    line-height: 30px
}

input[type=checkbox]~label:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 3.5px;
    background: var(--white);
    border: 1px solid var(--border-2);
    height: 20px;
    width: 20px;
    text-align: center;
    z-index: 9
}

input[type=checkbox]~label:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 9px;
    background: var(--theme);
    height: 8px;
    width: 8px;
    opacity: 0;
    transition: .4s;
    z-index: 9
}

input[type=checkbox].style2~label {
    color: #8b929c;
    padding-left: 23px;
    margin-bottom: -0.5em
}

input[type=checkbox].style2~label:before {
    background-color: #fff;
    border: 1px solid #f7ccd7;
    height: 14px;
    width: 14px;
    line-height: 14px;
    border-radius: 3px;
    top: 6px
}

input[type=checkbox].style2:checked~label:before {
    color: var(--theme)
}

input[type=radio] {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    display: none
}

input[type=radio]~label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0
}

input[type=radio]~label::before {
    content: "";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    padding-left: 0;
    font-size: .6em;
    line-height: 19px;
    text-align: center;
    border: 1px solid var(--theme);
    border-radius: 100%;
    font-weight: 700;
    background: var(--white);
    color: rgba(0, 0, 0, 0);
    transition: all .2s ease
}

input[type=radio]:checked~label::before {
    border-color: var(--theme);
    background-color: var(--theme);
    color: var(--white)
}

.btn-wrapper {
    min-width: -moz-max-content;
    min-width: max-content;
    line-height: 1
}

.btn-wrapper .theme-btn-2 {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid var(--border);
    color: var(--title)
}

.btn-wrapper .theme-btn-2:before {
    transition-duration: 800ms;
    position: absolute;
    width: 210%;
    height: 290%;
    content: "";
    top: 162%;
    left: 50%;
    background: var(--title);
    transform: translateX(-50%) rotate(-8deg);
    border-radius: 80%;
    z-index: -1
}

.btn-wrapper .transparent-btn-3 {
    padding: 16px 100px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid var(--white);
    color: var(--white);
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    white-space: nowrap
}

.btn-wrapper .transparent-btn-3:before {
    transition-duration: 800ms;
    position: absolute;
    width: 210%;
    height: 290%;
    content: "";
    top: 162%;
    left: 50%;
    background: var(--title);
    border: 1px solid var(--title);
    transform: translateX(-50%) rotate(-8deg);
    border-radius: 80%;
    z-index: -1
}

.btn-wrapper .theme-btn-3 {
    padding: 16px 32px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: var(--theme-color-3);
    border: 1px solid var(--theme-color-3);
    color: var(--title);
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    white-space: nowrap
}

.btn-wrapper .theme-btn-3:before {
    transition-duration: 800ms;
    position: absolute;
    width: 210%;
    height: 290%;
    content: "";
    top: 162%;
    left: 50%;
    background: var(--title);
    color: var(--white);
    border: 1px solid var(--title);
    transform: translateX(-50%) rotate(-8deg);
    border-radius: 80%;
    z-index: -1
}

.theme-btn,
.theme-btn-2 {
    display: inline-block;
    position: relative;
    color: var(--white);
    font-family: "Syne", sans-serif;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
    background: var(--title);
    border-radius: 20px;
    border: 1px solid var(--title);
    padding: 20px 20px;
    min-width: 174px;
    height: 60px;
    z-index: 1;
    overflow: hidden;
    border: none;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

.theme-btn i,
.theme-btn-2 i {
    margin-left: 6px
}

.theme-btn:before,
.theme-btn-2:before {
    transition-duration: 800ms;
    position: absolute;
    width: 210%;
    height: 290%;
    content: "";
    top: 162%;
    left: 50%;
    background: var(--theme);
    transform: translateX(-50%) rotate(-8deg);
    border-radius: 80%;
    z-index: -1
}

.theme-btn.style2,
.theme-btn-2.style2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--theme2);
    color: var(--title)
}

.theme-btn.style2:before,
.theme-btn-2.style2:before {
    transition-duration: 800ms;
    background: var(--theme)
}

.theme-btn.style2 svg path,
.theme-btn.style2 svg rect,
.theme-btn-2.style2 svg path,
.theme-btn-2.style2 svg rect {
    fill: var(--title);
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s
}

.theme-btn.style2:hover svg path,
.theme-btn.style2:hover svg rect,
.theme-btn-2.style2:hover svg path,
.theme-btn-2.style2:hover svg rect {
    fill: var(--white)
}

.theme-btn.style3,
.theme-btn-2.style3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--theme);
    color: var(--white)
}

.theme-btn.style3:before,
.theme-btn-2.style3:before {
    transition-duration: 800ms;
    background: var(--theme2);
    color: var(--title)
}

.theme-btn.style3 svg path,
.theme-btn.style3 svg rect,
.theme-btn-2.style3 svg path,
.theme-btn-2.style3 svg rect {
    fill: var(--white);
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s
}

.theme-btn.style3:hover,
.theme-btn-2.style3:hover {
    color: var(--title) !important
}

.theme-btn.style3:hover svg path,
.theme-btn.style3:hover svg rect,
.theme-btn-2.style3:hover svg path,
.theme-btn-2.style3:hover svg rect {
    fill: var(--title)
}

.theme-btn.style4,
.theme-btn-2.style4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    color: var(--title);
    border: 1px solid var(--border-4)
}

.theme-btn.style4:before,
.theme-btn-2.style4:before {
    transition-duration: 800ms;
    background: var(--theme);
    color: var(--white)
}

.theme-btn.style4 svg path,
.theme-btn.style4 svg rect,
.theme-btn-2.style4 svg path,
.theme-btn-2.style4 svg rect {
    fill: var(--title);
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s
}

.theme-btn.style4:hover,
.theme-btn-2.style4:hover {
    color: var(--white) !important
}

.theme-btn.style4:hover svg path,
.theme-btn.style4:hover svg rect,
.theme-btn-2.style4:hover svg path,
.theme-btn-2.style4:hover svg rect {
    fill: var(--white)
}

.theme-btn.style5,
.theme-btn-2.style5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--theme-color-3);
    color: var(--title);
    border: 1px solid var(--border-4);
    border-radius: 100px
}

.theme-btn.style5:before,
.theme-btn-2.style5:before {
    transition-duration: 800ms;
    background: var(--theme);
    color: var(--white)
}

.theme-btn.style5 svg path,
.theme-btn.style5 svg rect,
.theme-btn-2.style5 svg path,
.theme-btn-2.style5 svg rect {
    fill: var(--title);
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s
}

.theme-btn.style5:hover,
.theme-btn-2.style5:hover {
    color: var(--white) !important
}

.theme-btn.style5:hover svg path,
.theme-btn.style5:hover svg rect,
.theme-btn-2.style5:hover svg path,
.theme-btn-2.style5:hover svg rect {
    fill: var(--white)
}

.theme-btn.style6,
.theme-btn-2.style6 {
    display: inline-flex;
    height: 51px;
    width: -moz-max-content;
    width: max-content;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: var(--theme4);
    color: var(--white);
    border-radius: 4px
}

.theme-btn.style6:before,
.theme-btn-2.style6:before {
    transition-duration: 800ms;
    background: var(--theme);
    color: var(--white)
}

.theme-btn.style6 svg path,
.theme-btn.style6 svg rect,
.theme-btn-2.style6 svg path,
.theme-btn-2.style6 svg rect {
    fill: var(--white);
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s
}

.theme-btn.style6:hover,
.theme-btn-2.style6:hover {
    color: var(--white) !important
}

.theme-btn.style6:hover svg path,
.theme-btn.style6:hover svg rect,
.theme-btn-2.style6:hover svg path,
.theme-btn-2.style6:hover svg rect {
    fill: var(--white)
}

.theme-btn:hover,
.theme-btn-2:hover {
    color: var(--white) !important
}

.theme-btn:hover:before,
.theme-btn-2:hover:before {
    top: -96%
}

.slider-arrow-btn {
    display: flex;
    gap: 15px
}

.slider-arrow.style1 {
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    background: var(--theme);
    color: var(--white);
    margin-top: -0.4em;
    box-shadow: 0px 10px 30px 0px rgba(52, 55, 170, .15);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all .4s ease-in-out
}

.slider-arrow.style1:hover {
    background: var(--white);
    color: var(--theme);
    box-shadow: 0px 10px 30px 0px rgba(52, 55, 170, .15)
}

.slider-arrow.style1.style2 {
    background: var(--theme2);
    color: var(--title)
}

.slider-arrow.style1.style2:hover {
    background: var(--theme);
    color: var(--white)
}

.link-btn.style1 {
    color: var(--title);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.link-btn.style1 i,
.link-btn.style1 svg {
    margin-left: 0px
}

.link-btn.style3 {
    display: inline-block;
    background: var(--theme);
    color: var(--title);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center
}

.link-btn.style3 i path,
.link-btn.style3 svg path {
    fill: var(--white)
}

@media(min-width: 1600px) {
    .gx-25 {
        --bs-gutter-x: 25px
    }

    .gx-30 {
        --bs-gutter-x: 30px
    }

    .gx-40 {
        --bs-gutter-x: 40px
    }

    .gx-60 {
        --bs-gutter-x: 60px
    }

    .gx-80 {
        --bs-gutter-x: 80px
    }

    .gx-95 {
        --bs-gutter-x: 95px
    }

    .gx-114 {
        --bs-gutter-x: 114px
    }

    .gx-85 {
        --bs-gutter-x: 85px
    }

    .gx-134 {
        --bs-gutter-x: 134px
    }

    .gx-165 {
        --bs-gutter-x: 165px
    }
}

@media(min-width: 1600px) {
    .gx-253 {
        --bs-gutter-x: 253px
    }

    .gx-141 {
        --bs-gutter-x: 141px
    }

    .gx-55 {
        --bs-gutter-x: 55px
    }

    .gx-160 {
        --bs-gutter-x: 165px
    }
}

.gy-30 {
    --bs-gutter-y: 30px
}

@media(min-width: 1600px) {
    .gy-70 {
        --bs-gutter-y: 70px
    }
}

.gx-0 {
    --bs-gutter-x: 0px
}

@media(min-width: 1700px) {
    .breadcumb .container {
        max-width: 1620px
    }
}

@keyframes rippleOne {
    70% {
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0)
    }
}

.ripple-effect {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #f3e7e0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 #ffd9c4;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
    animation: rippleOne 2s infinite;
    -webkit-animation: rippleOne 2s infinite
}

.ripple-effect .playerImg {
    width: 44px;
    height: 44px
}

.ripple-effect2 {
    display: inline-block;
    width: 186px;
    height: 186px;
    line-height: 186px;
    text-align: center;
    background-color: var(--theme4);
    border-radius: 50%;
    box-shadow: 0 0 0 0 #ffd9c4;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
    animation: rippleOne 2s infinite;
    -webkit-animation: rippleOne 2s infinite
}

.ripple-effect2 .playerImg {
    width: 44px;
    height: 44px
}

.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) .4s;
    opacity: 0
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        -webkit-clip-path: inset(0 0 0 100%);
        clip-path: inset(0 0 0 100%);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) .4s;
    opacity: 0
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        -webkit-clip-path: inset(0 0 100% 0);
        clip-path: inset(0 0 100% 0);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px)
    }

    100% {
        transform: translateY(-10px)
    }
}

@keyframes spinner {
    to {
        transform: rotateZ(360deg)
    }
}

@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% {
        transform: rotate(20deg)
    }

    100% {
        transform: rotate(0deg)
    }
}

@keyframes width {
    0% {
        width: 0%
    }

    100% {
        width: 100%
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.2)
    }
}

@keyframes rounded {
    50% {
        transform: rotate(20deg)
    }
}

.cir36 {
    animation: cir36 20s linear infinite;
    -webkit-animation: cir36 20s linear infinite
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg)
    }
}

.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-30px)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(-30px)
    }
}

.float-bob-x {
    animation-name: float-bob-x;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

@keyframes float-bob-x {
    0% {
        transform: translateX(30px)
    }

    50% {
        transform: translateX(10px)
    }

    100% {
        transform: translateX(30px)
    }
}

@keyframes bounce-x {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(30px)
    }

    100% {
        transform: translateX(0)
    }
}

.bounce-x {
    animation: bounce-x 7s infinite linear
}

@keyframes criss-cross-left {
    0% {
        left: -20px
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px
    }
}

@keyframes rotated2 {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(-360deg)
    }
}

@keyframes wave {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-25%)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes animate-positive {
    0% {
        width: 0
    }

    100% {
        width: var(--progress-width)
    }
}

.reveal {
    position: relative;
    display: -ms-inline-flexbox;
    visibility: hidden;
    overflow: hidden
}

.reveal img {
    height: 100%;
    width: 100%;
    display: inline-block;
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: left
}

.image-anime {
    position: relative;
    overflow: hidden
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: rgba(0, 0, 0, 0)
}

.ripple-animation,
.play-btn:after,
.play-btn:before {
    animation-duration: var(--ripple-ani-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0
    }

    30% {
        opacity: .4
    }

    100% {
        transform: scale(1.8);
        opacity: 0
    }
}

@keyframes ripple2 {
    0% {
        transform: scale(1);
        opacity: 0
    }

    30% {
        opacity: .4
    }

    100% {
        transform: scale(2.8);
        opacity: 0
    }
}

.wave-anim {
    width: 105px;
    height: 69px;
    background-repeat: repeat;
    background-size: auto;
    animation: wave 70s linear infinite
}

@keyframes wave {
    0% {
        background-position: top left
    }

    100% {
        background-position: top left -2000px
    }
}

.fancy-animation {
    animation: morph 8s ease-in-out infinite
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
    }

    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%
    }

    100% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
    }
}

.movingX {
    animation: movingX 8s linear infinite
}

@keyframes movingX {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(50px)
    }

    100% {
        transform: translateX(0)
    }
}

.movingCar {
    animation: movingCar 25s linear infinite
}

@keyframes movingCar {
    0% {
        transform: translateX(0) rotateY(0deg)
    }

    50% {
        transform: translateX(calc(-100vw + 108%))
    }

    51% {
        transform: translateX(calc(-100vw + 108%)) rotateY(180deg)
    }

    100% {
        transform: translateX(0) rotateY(180deg)
    }
}

.moving {
    animation: moving 8s linear infinite
}

@keyframes moving {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-50px)
    }

    100% {
        transform: translateX(0)
    }
}

.moving2 {
    animation: moving2 8s linear infinite
}

@keyframes moving2 {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(0)
    }
}

.moving3 {
    animation: moving3 8s linear infinite
}

@keyframes moving3 {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(10px)
    }

    100% {
        transform: translateX(0)
    }
}

.jump {
    animation: jumpAni 7s linear infinite
}

@keyframes jumpAni {
    0% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-30px)
    }

    100% {
        transform: translateY(0)
    }
}

.jump-reverse {
    animation: jumpReverseAni 7s linear infinite
}

@keyframes jumpReverseAni {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(30px)
    }

    100% {
        transform: translateY(0)
    }
}

.spin {
    animation: spin 10s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.bg-color-ani,
.color-animate {
    animation: bgColor 6s linear infinite
}

@keyframes bgColor {
    0% {
        background-color: #f2ba4c
    }

    25% {
        background-color: #81f24c
    }

    50% {
        background-color: #41f27d
    }

    75% {
        background-color: #0500ff
    }

    100% {
        background-color: #f2ba4c
    }
}

@keyframes animate-positive {
    0% {
        width: 0
    }
}

.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-duration: 1.3s;
    animation-delay: .3s;
    animation-name: var(--animation-name)
}

.swiper-slide-active .fadein {
    --animation-name: fadein
}

.swiper-slide-active .scalein {
    --animation-name: scalein
}

.swiper-slide-active .slidetopleft {
    --animation-name: slidetopleft
}

.swiper-slide-active .slidebottomright {
    --animation-name: slidebottomright
}

.swiper-slide-active .slideinleft {
    --animation-name: slideinleft
}

.swiper-slide-active .slideinright {
    --animation-name: slideinright
}

.swiper-slide-active .slideinup {
    --animation-name: slideinup
}

.swiper-slide-active .slideindown {
    --animation-name: slideindown
}

.swiper-slide-active .rollinleft {
    --animation-name: rollinleft
}

.swiper-slide-active .rollinright {
    --animation-name: rollinright
}

@keyframes fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes scalein {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.3)
    }
}

@keyframes slideinup {
    0% {
        opacity: 0;
        transform: translateY(100px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideinright {
    0% {
        opacity: 0;
        transform: translateX(180px)
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideindown {
    0% {
        opacity: 0;
        transform: translateY(-100px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideinleft {
    0% {
        opacity: 0;
        transform: translateX(-100px)
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slidebottomright {
    0% {
        opacity: 0;
        transform: translateX(120px) translateY(120px)
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0)
    }
}

@keyframes slidetopleft {
    0% {
        opacity: 0;
        transform: translateX(-100px) translateY(-100px)
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0)
    }
}

.spin2 {
    animation: spin2 10s linear infinite
}

@keyframes spin2 {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(-360deg)
    }
}

.animation-bubble {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none
}

.animation-bubble div[class^=bubble-] {
    height: 1px;
    width: 1px;
    position: absolute;
    background: url(../img/shape/star.html) no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    transform: translateX(-50%);
    pointer-events: none
}

@media(max-width: 1024px) {
    .animation-bubble>:nth-child(even) {
        display: none
    }
}

.bubble-1 {
    bottom: -5px;
    left: 68%;
    animation: bubble-animation 4.5s infinite ease-in -6.57s
}

.bubble-2 {
    bottom: -71px;
    left: 97%;
    animation: bubble-animation 4.5s infinite ease-in -5.07s
}

.bubble-3 {
    bottom: -71px;
    left: 43%;
    animation: bubble-animation 4.5s infinite ease-in -6.73s
}

.bubble-4 {
    bottom: -3.8px;
    left: 82%;
    animation: bubble-animation 4.5s infinite ease-in -4.04s
}

.bubble-5 {
    bottom: -73.4px;
    left: 29%;
    animation: bubble-animation 4.5s infinite ease-in -3.11s
}

.bubble-6 {
    bottom: -71px;
    left: 41%;
    animation: bubble-animation 4.5s infinite ease-in -5.95s
}

.bubble-7 {
    bottom: -79.4px;
    left: 14%;
    animation: bubble-animation 4.5s infinite ease-in -3.68s
}

.bubble-8 {
    bottom: -115.4px;
    left: 90%;
    animation: bubble-animation 4.5s infinite ease-in -3.89s
}

.bubble-9 {
    bottom: -44.6px;
    left: 33%;
    animation: bubble-animation 4.5s infinite ease-in -1.09s
}

.bubble-10 {
    bottom: -6.2px;
    left: 59%;
    animation: bubble-animation 4.5s infinite ease-in -0.96s
}

@keyframes bubble-animation {
    0% {
        transform: translate3d(-50%, 0, 0);
        height: 1px;
        width: 1px
    }

    100% {
        transform: translate3d(-50%, -280px, 0);
        height: 30px;
        width: 30px
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%)
    }

    50% {
        opacity: 0;
        transform: translateY(100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes icon-anim {
    0% {
        top: 26px;
        right: 90px
    }

    25% {
        top: 86px;
        right: 110px
    }

    100% {
        top: 26px;
        right: 90px
    }
}

.img-shine {
    position: relative
}

.img-shine:after {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-20deg)
}

.img-shine:hover:after {
    animation: imgShine 1s
}

@keyframes imgShine {
    100% {
        left: 125%
    }
}

::-webkit-scrollbar {
    width: 8px;
    height: 4px
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--theme)
}

::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px
}

.fix {
    overflow: hidden
}

.ralt {
    position: relative
}

.ripple {
    position: relative
}

.ripple::before,
.ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(56, 75, 255, .5);
    animation: rippleOne 3s infinite
}

.ripple::before {
    animation-delay: .9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0
}

.ripple::after {
    animation-delay: .6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0
}

.mega-hover {
    position: relative;
    overflow: hidden;
    z-index: 2
}

.mega-hover:after,
.mega-hover:before {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 1;
    z-index: -1
}

.mega-hover:before {
    top: 0;
    right: 51%;
    bottom: 0;
    left: 50%;
    background: rgba(255, 255, 255, .2)
}

.mega-hover:after {
    top: 50%;
    right: 0;
    bottom: 50%;
    left: 0;
    background: rgba(245, 255, 255, .3)
}

.mega-hover:hover:before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 900ms linear
}

.mega-hover:hover:after {
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 900ms linear
}

@media(max-width: 767px) {
    br {
        display: none
    }
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center
}

.bg-cover-2 {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    width: 100%;
    height: 100%
}

.page-nav-wrap ul li {
    display: inline-block;
    text-align: center
}

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: rgba(0, 0, 0, 0);
    font-weight: 600;
    transition: all .3s ease-in-out;
    margin: 0 2px;
    border: 1px solid #e3e3e3;
    color: var(--title)
}

.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme);
    color: var(--white)
}

@media(max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px
    }
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px
}

.page-nav-wrap ul li .page-numbers.icon {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    color: var(--theme)
}

.page-nav-wrap ul li .page-numbers.icon:hover {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    color: var(--theme)
}

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0)
}

.box-shadow {
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, .06)
}

.pt-100 {
    padding-top: 100px
}

@media(max-width: 991px) {
    .pt-100 {
        padding-top: 80px
    }
}

.pt-110 {
    padding-top: 110px
}

@media(max-width: 991px) {
    .pt-110 {
        padding-top: 80px
    }
}

.pb-100 {
    padding-bottom: 100px
}

@media(max-width: 991px) {
    .pb-100 {
        padding-bottom: 80px
    }
}

.pb-110 {
    padding-bottom: 110px
}

@media(max-width: 991px) {
    .pb-110 {
        padding-bottom: 80px
    }
}

.pb-30 {
    padding-bottom: 30px
}

.pt-30 {
    padding-top: 30px
}

.margin-top-10 {
    margin-top: -10px
}

.margin-top-5 {
    margin-top: -5px
}

.margin-top-60 {
    margin-top: -65px
}

@media(max-width: 1399px) {
    .margin-top-60 {
        margin-top: -25px
    }
}

@media(max-width: 1199px) {
    .margin-top-60 {
        margin-top: -27px
    }
}

@media(max-width: 991px) {
    .margin-top-60 {
        margin-top: -75px
    }
}

@media(max-width: 767px) {
    .margin-top-60 {
        margin-top: -65px
    }
}

.margin-top-8 {
    margin-top: -10px
}

.mt-n30 {
    margin-top: -30px !important
}

.mt-n50 {
    margin-top: -50px !important
}

.mt-10 {
    margin-top: 10px
}

.mt-15 {
    margin-top: 15px
}

.mr-7 {
    margin-right: 7px
}

.mb-20 {
    margin-bottom: 20px
}

.mr-44 {
    margin-right: 44px
}

.mb-40 {
    margin-bottom: 40px
}

@media(max-width: 767px) {
    .mb-40 {
        margin-bottom: 35px
    }
}

@media(max-width: 575px) {
    .mb-40 {
        margin-bottom: 25px
    }
}

.ml-50 {
    margin-left: 50px
}

@media(max-width: 1199px) {
    .ml-50 {
        margin-left: 0
    }
}

.mt-n10 {
    margin-top: -10px
}

.mt-n5 {
    margin-top: -5px
}

.mt-10 {
    margin-top: 10px
}

.mt-15 {
    margin-top: 15px
}

.mt-25 {
    margin-top: 25px
}

.mt-40 {
    margin-top: 40px
}

.mt-60 {
    margin-top: 60px
}

.mt-90 {
    margin-top: 90px
}

.mb-20 {
    margin-bottom: 20px !important
}

.mb-30 {
    margin-bottom: 30px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-55 {
    margin-bottom: 55px
}

.mb-60 {
    margin-bottom: 60px !important
}

.mb-70 {
    margin-bottom: 70px
}

.mb-80 {
    margin-bottom: 80px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-100 {
    margin-bottom: 100px
}

@media(min-width: 992px) {
    .mb-md-100 {
        margin-bottom: 100px
    }
}

.pb-262 {
    padding-bottom: 262px !important
}

@media(max-width: 767px) {
    .pb-262 {
        padding-bottom: 80px !important
    }
}

.mxw-345 {
    max-width: 345px
}

.mxw-410 {
    max-width: 410px
}

.mxw-440 {
    max-width: 440px
}

.mxw-530 {
    max-width: 530px
}

.mxw-565 {
    max-width: 565px
}

.mxw-570 {
    max-width: 570px
}

.mxw-586 {
    max-width: 586px
}

.mxw-630 {
    max-width: 630px
}

.mxw-685 {
    max-width: 685px
}

.mxw-750 {
    max-width: 750px
}

.mxw-850 {
    max-width: 850px
}

.mxw-848 {
    max-width: 848px
}

.mxw-705 {
    max-width: 705px
}

.mxw-770 {
    max-width: 770px
}

.mxw-300 {
    max-width: 300px
}

.bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.center {
    text-align: center;
    margin: 0 auto
}

.bg-body-color {
    background: var(--body) !important
}

.bg-theme {
    background-color: var(--theme) !important
}

.bg-theme2 {
    background: var(--theme2) !important
}

.bg-orange {
    background-color: var(--orange) !important
}

.bg-color1 {
    background-color: #161921
}

.bg-color2 {
    background-color: #fffaf3
}

.bg-title {
    background-color: var(--title)
}

.text-title {
    color: var(--title)
}

.text-dark2 {
    color: #838387 !important
}

.text-bg-color2 {
    color: var(--theme2) !important
}

.text-theme-color {
    color: var(--theme) !important
}

.text-theme-color2 {
    color: var(--theme2) !important
}

.text-orange-color {
    color: var(--orange) !important
}

.bg-transparent {
    background: rgba(0, 0, 0, 0)
}

.border-theme {
    border: 1px solid var(--theme)
}

.border-dark {
    border-bottom: 1px solid #54595f
}

.lime-bg {
    background-color: #f6f8f0
}

.green-bg {
    background-color: var(--head-color-3)
}

.bg-color3 {
    background: linear-gradient(0deg, #151515 0%, #151515 100%), #fff
}

.mb-45 {
    margin-bottom: 45px
}

.mean-container a.meanmenu-reveal {
    display: none
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none
}

.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important
}

.mean-container .mean-nav>ul .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between
}

@media(max-width: 1199px) {
    .mean-container .mean-nav>ul .homemenu-items {
        flex-wrap: wrap
    }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu {
    position: relative
}

@media(max-width: 1199px) {
    .mean-container .mean-nav>ul .homemenu-items .homemenu {
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
        border: 1px solid var(--border);
        padding: 10px
    }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb {
    position: relative
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out;
    margin-top: 20px
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 12px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 16px;
    text-align: center;
    border-radius: 0
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb::before {
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
    content: ""
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%)
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px
}

.mean-container a.meanmenu-reveal {
    display: none !important
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--white) !important;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border) !important;
    border: none
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme)
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme2)
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important
}

.mean-container .mean-nav ul li>a>i {
    display: none
}

.mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
    font-size: 18px
}

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all .4s ease-in-out
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px
}

.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(0, 0, 0, .2);
    border-top-color: var(--theme);
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em
}

@media(max-width: 767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto
    }
}

.preloader .animation-preloader .txt-loading {
    font: bold 5em "Syne", sans-serif, "Outfit", sans-serif;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

@media(max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 2.5em
    }
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--theme);
    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(--title);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: "Syne", sans-serif;
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg)
}

.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--theme)
}

.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(--title);
    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
}

.back-to-top {
    border-radius: 12px;
    background-color: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 99;
    right: 30px;
    bottom: 30px;
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px)
}

.back-to-top:hover {
    background-color: var(--title)
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0)
}

.single-section-title {
    color: var(--title);
    text-align: center;
    font-family: "Syne", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.96px
}

.section-title .title {
    color: var(--white);
    font-family: "Syne", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 66.9px
}

.section-title .title .color-text {
    color: var(--theme);
    font-family: "Syne", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 66.9px
}

@media(max-width: 767px) {
    .section-title .title {
        font-size: 45px;
        line-height: 1
    }

    .section-title .title .color-text {
        font-size: 45px;
        line-height: 1
    }
}

.section-title .section-desc {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.32px;
    margin-bottom: 30px
}

.section-title .section-desc2 {
    color: rgba(255, 255, 255, .7);
    text-align: center;
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-top: 20px
}

.section-title.style2 {
    max-width: 750px;
    margin: 0 auto
}

.section-title.style2 .title {
    color: var(--text);
    text-align: center;
    font-family: "Syne", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 66.9px;
    margin-bottom: 66px
}

@media(max-width: 575px) {
    .section-title.style2 .title {
        font-size: 50px;
        line-height: 55.9px
    }
}

@media(max-width: 470px) {
    .section-title.style2 .title {
        font-size: 38px;
        line-height: 45.9px
    }
}

.section-title.style2 .title span {
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 5px
}

.section-title.style2 p {
    color: var(--800, #444);
    text-align: center;
    font-feature-settings: "liga" off, "clig" off;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.section-title.style3 .title {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 20px
}

.section-title.style3 ul {
    margin: 10px 0;
}

.section-title.style3 ul li {
    margin: 5px 0;
}

.section-title.style3 ul li i {
    color: var(--theme);
    margin-right: 10px;
}

@media(max-width: 991px) {
    .section-title.style3 .title {
        font-size: 31px;
        line-height: 39.9px
    }
}

@media(max-width: 767px) {
    .section-title.style3 .title {
        font-size: 55px
    }
}

@media(max-width: 575px) {
    .section-title.style3 .title {
        font-size: 50px;
        line-height: 55.9px
    }
}

@media(max-width: 470px) {
    .section-title.style3 .title {
        font-size: 38px;
        line-height: 45.9px
    }
}

@media(max-width: 450px) {
    .section-title.style3 .title {
        font-size: 30px;
        line-height: 40px
    }
}

.section-title.style3 .title span {
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 5px
}

.section-title.style4 {
    max-width: 780px;
    margin: 0 auto
}

.section-title.style4 .title {
    color: var(--text);
    text-align: center;
    font-family: "Syne", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 66.9px;
    margin-bottom: 20px
}

@media(max-width: 575px) {
    .section-title.style4 .title {
        font-size: 50px;
        line-height: 55.9px
    }
}

@media(max-width: 470px) {
    .section-title.style4 .title {
        font-size: 35px;
        line-height: 45.9px
    }
}

.section-title.style4 .title span {
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 5px
}

.section-title.style4 p {
    margin: 0 80px;
    color: #444;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.section-title.style5 {
    max-width: 730px;
    margin: 0 auto;
    text-align: center
}

.section-title.style5 .subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 15px
}

@media(max-width: 767px) {
    .section-title.style5 .subtitle {
        padding-bottom: 8px
    }
}

.section-title.style5 .subtitle .sub-text {
    color: var(--head-color-3);
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px
}

.section-title.style5 .subtitle .shape {
    height: 2px;
    width: 40px;
    background-color: var(--head-color-3)
}

.section-title.style5 .title {
    color: var(--title-color-3);
    text-align: center;
    font-family: "Syne", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58.56px
}

@media(max-width: 767px) {
    .section-title.style5 .title {
        font-size: 36px;
        line-height: 40px
    }
}

@media(max-width: 767px) {
    .section-title.style5 .title {
        font-size: 28px;
        line-height: 36px
    }
}

.section-title.style5 .text {
    color: var(--text-color-3);
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding-top: 14px
}

@media(max-width: 767px) {
    .section-title.style5 .text {
        padding-top: 7px
    }
}

.section-title.style5.title-left {
    text-align: left;
    margin-right: auto;
    margin-left: 0
}

.section-title.style5.title-left .subtitle {
    justify-content: left
}

.section-title.style5.title-left .title {
    text-align: left
}

.section-title.style6 .title {
    color: var(--white);
    font-family: "Teko", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 300;
    line-height: 75px;
    text-transform: uppercase;
    margin-bottom: 15px
}

@media(max-width: 767px) {
    .section-title.style6 .title {
        font-size: 50px;
        line-height: 60px
    }
}

@media(max-width: 450px) {
    .section-title.style6 .title {
        font-size: 36px;
        line-height: 42px
    }
}

.section-title.style6 .desc {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px;
    text-transform: capitalize
}

.section-title.style7 {
    color: var(--white);
    text-align: center;
    font-family: "Teko", sans-serif;
    font-size: 182.516px;
    font-style: normal;
    font-weight: 300;
    line-height: 139.288px;
    text-transform: uppercase;
    margin-bottom: 100px
}

@media(max-width: 991px) {
    .section-title.style7 {
        font-size: 100px;
        line-height: 120px;
        margin-bottom: 40px
    }
}

@media(max-width: 450px) {
    .section-title.style7 {
        font-size: 80px;
        line-height: 80px;
        margin-bottom: 20px
    }
}

.flexbox-title {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 450px) {
    .flexbox-title {
        flex-wrap: wrap;
        gap: 16px
    }
}

.brandSliderTwo .brand-logo {
    text-align: center
}

.theme-color-text {
    color: var(--theme)
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--theme-color-3);
    opacity: .5;
    border-radius: 50%;
    margin: 0 6px;
    transition: all .3s ease
}

.swiper-pagination-bullet-active {
    width: 28px;
    background-color: var(--theme);
    opacity: 1;
    border-radius: 8px
}

.social-profile {
    position: absolute;
    left: 40px;
    bottom: 100px;
    text-align: center;
    content: "";
    transition: all .4s ease-in-out;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    z-index: 9
}

.social-profile ul {
    padding-left: 0;
    margin-bottom: 5px;
    transform: translateY(100px);
    transition: all .6s ease-in-out;
    opacity: 0;
    visibility: hidden
}

.social-profile ul li {
    margin-bottom: 5px
}

.social-profile ul li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 14px;
    display: block;
    background: var(--white);
    color: var(--theme);
    transition: all .4s ease-in-out;
    text-align: center;
    margin: 0 auto;
    border-radius: 50%
}

.social-profile ul li a:hover {
    background-color: var(--theme);
    color: var(--white) !important
}

.social-profile .plus-btn {
    position: relative;
    z-index: 2;
    cursor: pointer;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 14px;
    display: inline-block;
    background: var(--theme);
    color: var(--white);
    transition: all .4s ease-in-out;
    border-radius: 50%
}

.social-profile .plus-btn:hover {
    background: var(--theme) !important
}

.social-profile:hover .plus-btn {
    background-color: var(--theme-color-3);
    color: var(--white)
}

.social-profile:hover ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0)
}

.social-media {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5
}

.social-media li a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--theme2);
    color: var(--theme);
    transition: all .4s;
    border-radius: 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s
}

.social-media li a:hover {
    background: var(--theme);
    color: var(--white) !important;
    border: 1px solid var(--border)
}

.social-media.style2 li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--white);
    color: var(--title);
    transition: all .4s;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s
}

.social-media.style2 li a:hover {
    background: var(--theme);
    color: var(--white) !important;
    border: 1px solid var(--theme)
}

.social-media.style3 li a {
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    background: rgba(0, 0, 0, 0);
    color: var(--title);
    transition: all .4s;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s
}

.social-media.style3 li a:hover {
    color: var(--theme) !important;
    border: none
}

.fancy-box-wrapper.style3 {
    display: flex;
    padding: 20px;
    gap: 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px
}

.fancy-box-wrapper.style3 .box-text {
    max-width: 245px
}

@media(max-width: 1899px) {
    .fancy-box-wrapper.style3 {
        padding: 10px
    }
}

@media(max-width: 767px) {
    .fancy-box-wrapper.style3 {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px
    }
}

.fancy-box.style1 {
    display: flex;
    align-items: center;
    gap: 20px
}

.fancy-box.style1 .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--theme2);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

.fancy-box.style1 h4 {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.54px
}

.fancy-box.style2 {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-bottom: 30px
}

.fancy-box.style2 .content {
    max-width: 205px
}

.fancy-box.style2 .content h4 {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.48px;
    margin-bottom: 1px
}

.fancy-box.style2 .content .text {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.32px
}

.fancy-box.style3 {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 30px;
    border-right: 1px solid var(--border)
}

.fancy-box.style3 .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--theme);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

.fancy-box.style3 h6 {
    color: var(--title);
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    max-width: 130px
}

@media(max-width: 767px) {
    .fancy-box.style3 {
        border-right: 0;
        border-bottom: 1px solid var(--border-4);
        padding-right: 0;
        padding-bottom: 20px
    }
}

.fancy-box.style4 {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    background: var(--white);
    box-shadow: 0px 6px 25px 0px rgba(0, 0, 0, .05)
}

.fancy-box.style4 .icon {
    width: 63px;
    height: 63px;
    line-height: 63px;
    text-align: center;
    background: var(--theme);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

.fancy-box.style4 .text {
    max-width: 110px
}

.fancy-box.style5 {
    display: flex;
    align-items: center;
    gap: 20px
}

.fancy-box.style5 .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: var(--theme2)
}

.fancy-box.style6 {
    display: flex;
    align-items: center;
    gap: 13px
}

.counter-box.style1 .counter {
    color: var(--theme);
    font-family: "Syne", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.9px
}

.counter-box.style1 p {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px
}

.counter-box.style2 {
    padding: 20px;
    background: var(--theme);
    border: 4px solid var(--white);
    min-width: 205px
}

.counter-box.style2 .counter {
    color: var(--white);
    font-family: "Syne", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.44px
}

.counter-box.style2 h6 {
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0
}

.counter-box.style3 {
    padding: 50px 30px;
    background: var(--theme);
    display: inline-block
}

.counter-box.style3 .counter {
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.44px
}

.counter-box.style3 .text {
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.6px
}

.checklist-wrapper.style1 {
    display: flex;
    align-items: center;
    gap: 40px
}

.checklist.style1 li {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.36px;
    margin-bottom: 20px
}

.checklist.style1 li img {
    margin-right: 10px
}

.contact-meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px
}

.contact-meta .video-box {
    display: flex;
    align-items: center;
    gap: 10px
}

.contact-meta .video-box .video-wrap {
    position: relative
}

.contact-meta .video-box .video-wrap .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    animation: 6s rippleOne linear infinite
}

.contact-meta .video-box h4 {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 35.04px
}

@media(max-width: 767px) {
    .contact-meta {
        display: flex;
        flex-direction: column;
        align-items: start
    }
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    height: 107px;
    padding-top: 24px;
    background: var(--theme);
    z-index: 9
}

.marquee-wrapper.style-1 {
    background-color: rgba(0, 0, 0, 0);
    line-height: 55px
}

@media(max-width: 1399px) {
    .marquee-wrapper.style-1 {
        margin-bottom: 0px;
        margin: 30px 0
    }
}

@media(max-width: 767px) {
    .marquee-wrapper.style-1 {
        margin-bottom: -50px;
        margin: 0px 0px
    }
}

.marquee-wrapper.style-1.text-slider {
    height: auto
}

.marquee-wrapper.style-2 {
    line-height: 55px
}

.text-slider {
    font-family: var(--title);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 57.6px;
    color: var(--white)
}

@media(max-width: 767px) {
    .text-slider {
        font-size: 36px
    }
}

.text-slider img {
    margin-bottom: 10px;
    margin-right: 8px;
    margin-left: 10px
}

.marquee-inner {
    position: absolute;
    display: inline-flex;
    width: 200%
}

.marquee-list {
    float: left;
    width: 50%
}

.marquee-item {
    float: left;
    transition: animation .2s ease-out
}

.marquee-item.style1 .text-style {
    transition: all .4s ease-in-out;
    background-image: linear-gradient(var(--theme), var(--theme));
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px #bcb8b1;
    font-family: "Syne", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.marquee-item.style1 .text-style:hover {
    color: var(--theme);
    background-size: 100% 3px;
    opacity: 1
}

.marquee-item.style-2 .text-slider {
    font-family: var(--title);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 57.6px;
    color: var(--white)
}

@media(max-width: 767px) {
    .marquee-item.style-2 .text-slider {
        font-size: 36px
    }
}

.marquee-item.style-2 .text-style {
    transition: all .4s ease-in-out;
    background-image: linear-gradient(var(--theme2), var(--theme2));
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px
}

.marquee-item.style-2 .text-style:hover {
    color: var(--theme2);
    background-size: 100% 3px;
    opacity: .7
}

.marquee-inner.to-left {
    animation: marqueeLeft 25s linear infinite
}

@keyframes marqueeLeft {
    0% {
        left: 0
    }

    100% {
        left: -100%
    }
}

.marquee-inner.to-right {
    animation: marqueeRight 25s linear infinite
}

@keyframes marqueeRight {
    0% {
        right: 0
    }

    100% {
        right: -100%
    }
}

.marque-section-2 {
    position: relative
}

.modal-details .title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5
}

.modal-details .title-box .title h3 {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    text-transform: capitalize
}

.modal-details .title-box .price {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize
}

.modal-details .desc p {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px
}

.progress-wrap {
    margin-bottom: 15px
}

.progress-wrap .progress-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px
}

.progress-wrap .progress-meta .title {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%
}

.progress-wrap .progress-meta .percentage {
    color: var(--theme);
    font-family: "Syne", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%
}

@media(max-width: 500px) {
    .progress-wrap .progress-meta {
        gap: 210px
    }
}

@media(max-width: 470px) {
    .progress-wrap .progress-meta {
        gap: 150px
    }
}

.progress-wrap .progress-container {
    position: relative;
    max-width: 504px;
    height: 7px;
    background-color: #d9ddff !important;
    border-radius: 10px;
    overflow: visible
}

.progress-wrap .progress-container .progress-bar {
    height: 7px;
    background-color: var(--theme2);
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    z-index: 1
}

@media(max-width: 575px) {
    .progress-wrap .progress-container {
        width: 85%
    }
}

.progress-wrap .progress-container.style2:before,
.progress-wrap .progress-container.style2:after {
    background-color: var(--theme2)
}

.arrow-button {
    position: absolute;
    z-index: 9
}

.arrow-button .arrow-prev {
    margin-right: 12px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--white);
    color: var(--theme);
    border: 1px solid var(--theme);
    border-radius: 50%;
    transition: all .4s ease-in-out;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out
}

.arrow-button .arrow-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin-right: 8px;
    background-color: var(--white);
    color: var(--theme);
    border: 1px solid var(--theme);
    border-radius: 50%;
    transition: all .4s ease-in-out;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out
}

.arrow-button .arrow-next:hover,
.arrow-button .arrow-prev:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme)
}

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translateZ(0);
    visibility: hidden
}

.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--theme2);
    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: var(--theme2);
    opacity: .3
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--theme2);
    box-sizing: border-box;
    z-index: 10000000;
    opacity: .5;
    transition: all .08s ease-out
}

.cursor-outer.cursor-hover {
    opacity: 0
}

.before-after-section .thumb {
    width: 100%
}

.before-after-section .thumb img {
    width: 100%
}

.comment-list .comment-item {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-2)
}

.comment-list .comment-item .post-comment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.comment-list .comment-item .post-comment .comment-content .name {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 5px
}

.comment-list .comment-item .post-comment .comment-content .commented-on {
    margin-bottom: 15px
}

@media(max-width: 575px) {
    .comment-list .comment-item .post-comment .comment-content .commented-on {
        margin-bottom: -10px
    }
}

.comment-list .comment-item .post-comment .comment-content .star {
    position: absolute;
    top: 15px;
    right: 15px
}

@media(max-width: 575px) {
    .comment-list .comment-item .post-comment .comment-content .star {
        position: relative;
        margin: 0px 0 25px 12px
    }
}

@media(max-width: 575px) {
    .comment-list .comment-item .post-comment {
        display: flex;
        flex-direction: column
    }
}

.star-wrapper.style1 {
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.star-wrapper.style1 li {
    color: var(--theme)
}

.profile-meta {
    display: flex;
    align-items: center;
    gap: 20px
}

.profile-meta .content h6 {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px
}

.profile-meta .content p {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.comment-form {
    margin-top: var(--blog-space-y, 50px);
    padding: 60px;
    position: relative;
    border-radius: 0;
    background: var(--theme2);
    border: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px
}

.comment-form .inner-title {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px;
    text-transform: capitalize;
    margin-bottom: 25px
}

.comment-form .rating {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 15px;
    margin-bottom: 35px
}

@media(max-width: 575px) {
    .comment-form {
        padding: 30px
    }
}

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: rgba(255, 255, 255, .9)
}

.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
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .search-wrap .search-field-holder {
        width: 70%
    }
}

@media(max-width: 575px) {
    .search-wrap .search-field-holder {
        width: 80%
    }
}

.search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: capitalize;
    background: rgba(0, 0, 0, 0);
    font-size: 25px;
    color: var(--theme);
    border-bottom: 2px solid var(--theme);
    text-align: center;
    letter-spacing: 2px
}

@media(max-width: 575px) {
    .search-wrap .main-search-input {
        height: 50px;
        padding: 0 0;
        line-height: 50px;
        font-size: 18px
    }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
    background-color: var(--theme)
}

input.main-search-input::-moz-placeholder {
    color: var(--theme);
    opacity: 1;
    font-size: 25px
}

input.main-search-input::placeholder {
    color: var(--theme);
    opacity: 1;
    font-size: 25px
}

@media(max-width: 575px) {
    input.main-search-input::-moz-placeholder {
        font-size: 18px
    }

    input.main-search-input::placeholder {
        font-size: 18px
    }
}

.search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    color: var(--theme);
    cursor: pointer
}

.inner-section-padding {
    padding: 100px 0
}

@media(max-width: 1199px) {
    .inner-section-padding {
        padding: 100px 0
    }
}

@media(max-width: 991px) {
    .inner-section-padding {
        padding: 90px 0
    }
}

@media(max-width: 575px) {
    .inner-section-padding {
        padding: 80px 0
    }
}

.section-padding {
    padding: 120px 0
}

@media(max-width: 1199px) {
    .section-padding {
        padding: 120px 0
    }
}

@media(max-width: 991px) {
    .section-padding {
        padding: 120px 0
    }
}

@media(max-width: 767px) {
    .section-padding {
        padding: 80px 0
    }
}

.section-padding1 {
    padding: 200px 0 110px
}

@media(max-width: 1199px) {
    .section-padding1 {
        padding: 180px 0 90px
    }
}

@media(max-width: 991px) {
    .section-padding1 {
        padding: 170px 0 80px
    }
}

.section-padding2 {
    padding: 110px 0 270px
}

@media(max-width: 1199px) {
    .section-padding2 {
        padding: 90px 0 240px
    }
}

@media(max-width: 991px) {
    .section-padding2 {
        padding: 80px 0 230px
    }
}

@media(max-width: 767px) {
    .section-padding2 {
        padding: 80px 0 190px
    }
}

.section-padding4 {
    padding: 150px 0
}

@media(max-width: 1199px) {
    .section-padding4 {
        padding: 120px 0
    }
}

@media(max-width: 991px) {
    .section-padding4 {
        padding: 120px 0
    }
}

@media(max-width: 767px) {
    .section-padding4 {
        padding: 80px 0
    }
}

.background-image,
[data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.mask-content {
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-position: center center;
    -webkit-mask-position: center center;
    width: 100%
}

.bg-dark .section-title .subtitle {
    color: var(--orange)
}

.bg-dark .section-title h2 {
    color: var(--white)
}

.bg-dark .intro-content-wrapper.style1 h1 {
    color: var(--white)
}

.bg-dark .intro-content-wrapper.style1 p {
    color: var(--text2)
}

.bg-dark .about-wrapper.style1 .about-content .section-title {
    padding-bottom: 40px;
    border-bottom: 1px solid #424242
}

.bg-dark .counter-box.style1 p {
    color: var(--text2)
}

.bg-dark .progress-wrap.style1 .progress-meta .title {
    color: var(--text2)
}

.bg-dark .fancy-box.style1 h4 {
    color: var(--text2)
}

.bg-dark .fancy-box.style2 .fancy-item h4 {
    color: var(--white)
}

.bg-dark .shop-card-items.style1 {
    background: #212529
}

.bg-dark .shop-card-items.style1 .shop-content h3 a {
    color: var(--white)
}

.bg-dark .shop-card-items.style1 .shop-content .price {
    color: var(--text2)
}

.bg-dark .profile-meta .content h6 {
    color: var(--white)
}

.bg-dark .profile-meta .content p {
    color: var(--text2)
}

.bg-dark .testimonial-card-items.style1 .body p {
    color: var(--text2)
}

.bg-dark .blog-card-items.style1 .blog-content {
    background: #3e3e3f
}

.bg-dark .blog-card-items.style1 .blog-content h3 a {
    color: var(--white)
}

.bg-dark .blog-card-items.style1 .blog-content ul li {
    color: var(--text2)
}

.bg-dark .progress-wrap.style1 .progress-meta .percentage {
    color: var(--text2)
}

.bg-dark .skills-wrapper.style1 .skills-content .text {
    color: var(--text2);
    border-top: 1px solid var(--border-3)
}

.bg-dark .intro-content-wrapper.style2 .intro-title {
    color: var(--white)
}

.bg-dark .intro-content-wrapper.style2 .desc {
    color: var(--text2)
}

.bg-dark .intro-content-wrapper.style2 .stroke-text {
    color: var(--white)
}

.bg-dark .brand-slider-container-wrapper.style2 .brandSliderTwo {
    border-bottom: 1px solid var(--border-5)
}

.bg-dark .service-card.style2 {
    background-color: #343434
}

.bg-dark .service-card.style2 .content h3 a {
    color: var(--white)
}

.bg-dark .service-card.style2 .content .text {
    color: var(--text2)
}

.bg-dark .service-card.style2 .content .number {
    -webkit-text-stroke: 2px var(--text2)
}

.bg-dark .about-wrapper.style2 .about-content .section-title .desc {
    color: var(--text2)
}

.bg-dark .about-wrapper.style2 .about-content .progress-wrap.style2 .progress-meta .title {
    color: var(--orange)
}

.bg-dark .about-wrapper.style2 .about-content .progress-wrap.style2 .progress-meta .percentage {
    color: var(--orange)
}

.bg-dark .about-wrapper.style2 .about-content .section-title {
    border-bottom: 1px solid var(--border-5)
}

.bg-dark .skills-wrapper.style2 .skills-content .section-title .desc {
    color: var(--text2)
}

.bg-dark .skills-wrapper.style2 .skills-content .section-title .desc {
    color: var(--text2);
    border-bottom: 1px solid var(--border-5)
}

.bg-dark .checklist.style2 li {
    color: var(--text2)
}

.bg-dark .faq-wrapper.style1 .section-title .desc {
    color: var(--text2)
}

.bg-dark .team-card.style2 {
    background-color: #161921
}

.bg-dark .team-card.style2 .team-content h3 a {
    color: var(--white)
}

.bg-dark .team-card.style2 .team-content p {
    color: var(--text2)
}

.bg-dark .testimonial-card-items.style2 {
    background-color: #161921
}

.bg-dark .testimonial-card-items.style2 .profile-meta .content h6 {
    color: var(--white)
}

.bg-dark .testimonial-card-items.style2 .profile-meta .content p {
    color: var(--text2)
}

.bg-dark .testimonial-card-items.style2 .body p {
    color: var(--text2)
}

.bg-dark .blog-card-items.style2 {
    background-color: rgba(0, 0, 0, 0)
}

.bg-dark .blog-card-items.style2 .blog-content {
    background-color: #161921
}

.bg-dark .blog-card-items.style2 .blog-content h3 a {
    color: var(--white)
}

.bg-dark .blog-card-items.style2 .blog-content ul li {
    color: var(--text2)
}

.bg-dark .blog-card-items.style2 .blog-content .blog-desc {
    color: var(--text2)
}

.bg-dark .link-btn.style2 {
    color: var(--text2)
}

.bg-dark .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
    background-color: #161921;
    color: var(--white)
}

.bg-dark .faq-content .accordion-item {
    background-color: #161921
}

.bg-dark .faq-content .accordion-item .accordion-header .accordion-button {
    background-color: #161921;
    color: var(--white)
}

.bg-dark .faq-content .accordion-item .accordion-collapse .accordion-body {
    background-color: #161921;
    color: var(--text2)
}

.bg-dark .faq-content .accordion-item .accordion-collapse .accordion-body {
    border-top: 1px solid var(--border-5)
}

.bg-dark .faq-box.style1 {
    background-color: #161921;
    border: 1px solid var(--border-5)
}

.bg-dark .faq-box.style1 .text {
    color: var(--text2)
}

.bg-dark .faq-box.style1 .header h6 {
    color: var(--white)
}

.bg-dark .faq-box.style1 .header h6 .counter-number,
.bg-dark .faq-box.style1 .header h6 .counter-text {
    color: var(--white)
}

.bg-dark .faq-wrapper.style1 .section-title {
    border-bottom: 1px solid var(--border-5)
}

.bg-dark .about-wrapper.style3 .about-content .section-title .text {
    color: var(--text2)
}

.bg-dark .about-wrapper.style3 .fancy-box.style5 .content h6 {
    color: var(--white)
}

.bg-dark .about-wrapper.style3 .fancy-box.style5 .content p {
    color: var(--text2)
}

.bg-dark .fancy-box.style5 .icon {
    background-color: #161921
}

.bg-dark .service-card.style3 .thumb .content {
    background-color: #161921
}

.bg-dark .service-card.style3 .thumb .content h3 a {
    color: var(--white)
}

.bg-dark .service-card.style3 .thumb .content svg path {
    fill: var(--white)
}

.bg-dark .testimonial-card-items.style3 {
    background-color: #161921
}

.bg-dark .testimonial-card-items.style3 .text {
    color: var(--text2)
}

.bg-dark .testimonial-card-items.style3 .profile-wrapper .profile h6 {
    color: var(--white)
}

.bg-dark .testimonial-card-items.style3 .profile-wrapper .profile .text {
    color: var(--text2)
}

.bg-dark .testimonial-wrapper.style3 .section-title .text {
    color: var(--text2)
}

.bg-dark .testimonial-wrapper.style3 .section-title .rating-wrapper .item .text2 {
    color: var(--white)
}

.bg-dark .work-process-card.style3 .content h3 {
    color: var(--white)
}

.bg-dark .work-process-card.style3 .content p {
    color: var(--text2)
}

.bg-dark .fancy-box.style3 h6 {
    color: var(--text2)
}

.bg-dark .fancy-box-wrapper.style3 .box-text {
    color: var(--text2)
}

.bg-dark .fancy-box-wrapper.style3 {
    border-top: 1px solid var(--border-3);
    border-bottom: 1px solid var(--border-3)
}

.bg-dark .fancy-box.style3 {
    border-right: 1px solid var(--border-3)
}

.bg-dark .blog-card-items.style3 .blog-content {
    background: #161921
}

.bg-dark .blog-card-items.style3 {
    background: #161921
}

.bg-dark .blog-card-items.style3 .blog-content h3 a {
    color: var(--white)
}

.bg-dark .link-btn.style1 {
    color: var(--white)
}

.bg-dark .blog-card-items.style3 {
    border: 1px solid var(--border-5)
}

.bg-dark .blog-card-items.style3 .blog-content ul li {
    color: var(--text2)
}

.bg-dark .blog-card-items.style3 .blog-meta .month {
    background: #2c2c2e;
    color: var(--text2)
}

.bg-dark .blog-card-items.style3 .blog-meta {
    background: #2c2c2e
}

.bg-dark .faq-content.style2 .accordion-item {
    background: #2c2c2e
}

.bg-dark .faq-content.style2 .accordion-item .accordion-header .accordion-button.collapsed {
    background: #2c2c2e
}

.bg-dark .faq-content.style2 .accordion-item .accordion-collapse .accordion-body {
    background: #2c2c2e
}

.bg-dark .faq-content.style2 .accordion-item .accordion-header .accordion-button {
    background: #2c2c2e
}

.bg-dark .header-main .main-menu ul li .submenu li a {
    color: var(--title) !important
}

.header-section {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 150
}

.header-section-3 {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 150
}

.header-section-4 {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 150
}

.main-header-wrapper {
    display: flex;
    align-items: center;
    gap: 100px
}

@media(max-width: 1899px) {
    .main-header-wrapper {
        gap: 70px
    }
}

@media(max-width: 1600px) {
    .main-header-wrapper {
        gap: 40px
    }
}

@media(max-width: 1199px) {
    .main-header-wrapper {
        padding: 15px 0
    }
}

.main-header-wrapper .main-header-items {
    width: 100%
}

.main-header-wrapper .main-header-items .header-contact-info-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    border: 1px solid #d4dced
}

@media(max-width: 1600px) {
    .main-header-wrapper .main-header-items .header-contact-info-area {
        padding: 0 30px
    }
}

@media(max-width: 1199px) {
    .main-header-wrapper .main-header-items .header-contact-info-area {
        display: none
    }
}

@media(max-width: 575px) {
    .main-header-wrapper .main-header-items .header-contact-info-area {
        gap: 30px
    }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    position: relative;
    padding: 30px 0;
    border-right: 1px solid #d4dced;
    padding-right: 50px
}

@media(max-width: 1399px) {
    .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
        border-right: none;
        padding-right: 0
    }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: relative;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--theme);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, .06);
    position: relative
}

@media(max-width: 1399px) {
    .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
        width: 30px;
        height: 30px;
        line-height: 30px
    }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    content: "";
    background-color: rgba(0, 0, 0, 0);
    border-radius: 50%;
    border: 1px solid rgba(30, 32, 35, .1);
    transform: translate(-50%, -50%)
}

@media(max-width: 1399px) {
    .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
        width: 54px;
        height: 54px
    }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content p {
    color: var(--text);
    margin-bottom: 5px;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    opacity: .7
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
    font-size: 20px;
    color: var(--title);
    text-transform: initial
}

@media(max-width: 1600px) {
    .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
        font-size: 18px
    }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 a {
    color: var(--title)
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items.style-2 {
    border: none;
    padding-right: 0
}

@media(max-width: 1600px) {
    .main-header-wrapper .main-header-items .header-contact-info-area .header-button .theme-btn {
        font-size: 14px;
        padding: 24px 27px
    }
}

.header-1 {
    background-color: rgba(0, 0, 0, 0)
}

.header-1.sticky-bg-dark .header-main .main-menu ul li a {
    color: var(--white) !important
}

.header-1 .mega-menu-wrapper {
    position: relative;
    z-index: 1;
    background: var(--white);
    border: 1px solid var(--border-6);
    border-radius: 10px
}

.header-1 .mega-menu-wrapper-2 {
    background: var(--white);
    border: 1px solid var(--border-6);
    border-radius: 10px;
    padding: 8px 20px;
}

@media(max-width: 470px) {
    .header-1 .mega-menu-wrapper {
        padding: 0 15px
    }
}

@media(max-width: 450px) {
    .header-1 .mega-menu-wrapper {
        padding: 0
    }
}

@media(max-width: 1399px) {
    .header-1 .mega-menu-wrapper .header-main {
        gap: 30px
    }
}

@media(max-width: 450px) {
    .header-1 .mega-menu-wrapper .header-main {
        gap: 0
    }
}

@media(max-width: 1399px) {
    .header-1 .mega-menu-wrapper .header-main .main-menu ul li {
        margin-inline-end: 5px
    }

    .header-1 .mega-menu-wrapper .header-main .main-menu ul li a {
        font-size: 14px
    }
}

@media(max-width: 1899px) {
    .header-1 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
        left: -50px
    }
}

@media(max-width: 1399px) {
    .header-1 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
        left: -250px
    }
}

.header-1 .header-right {
    gap: 5px !important
}

@media(max-width: 1399px) {
    .header-1 .header-right {
        gap: 3px !important
    }
}

@media(max-width: 450px) {
    .header-1 .header-right {
        gap: 5px !important
    }
}

.header-1 .header-right .header-button {
    margin-left: 25px
}

@media(max-width: 767px) {
    .header-1 .header-right .header-button {
        display: none
    }
}

.header-1 .header-right .sidebar__toggle {
    color: var(--white);
    margin-left: 30px
}

@media(max-width: 1399px) {
    .header-1 .header-right .sidebar__toggle {
        color: var(--theme)
    }
}

.header-1 .navbar-toggler {
    color: var(--theme);
    border: none;
    padding: 0;
}

.header-1 .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.header-2 {
    background-color: rgba(0, 0, 0, 0)
}

.header-2.sticky-bg-dark .header-main .main-menu ul li a {
    color: var(--white) !important
}

.header-2 .header-main {
    height: 82px
}

.header-2 .header-main .main-menu ul li .submenu {
    top: 103%
}

.header-2 .mega-menu-wrapper {
    position: relative;
    z-index: 1;
    background: var(--white);
    border: 1px solid var(--border-6);
    border-radius: 10px
}

@media(max-width: 470px) {
    .header-2 .mega-menu-wrapper {
        padding: 0 15px
    }
}

@media(max-width: 450px) {
    .header-2 .mega-menu-wrapper {
        padding: 0
    }
}

@media(max-width: 1399px) {
    .header-2 .mega-menu-wrapper .header-main {
        gap: 30px
    }
}

@media(max-width: 450px) {
    .header-2 .mega-menu-wrapper .header-main {
        gap: 0
    }
}

@media(max-width: 1399px) {
    .header-2 .mega-menu-wrapper .header-main .main-menu ul li {
        margin-inline-end: 5px
    }

    .header-2 .mega-menu-wrapper .header-main .main-menu ul li a {
        font-size: 14px
    }
}

@media(max-width: 1899px) {
    .header-2 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
        left: -50px
    }
}

@media(max-width: 1399px) {
    .header-2 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
        left: -250px
    }
}

.header-2 .header-right {
    gap: 5px !important
}

@media(max-width: 1399px) {
    .header-2 .header-right {
        gap: 3px !important
    }
}

@media(max-width: 450px) {
    .header-2 .header-right {
        gap: 5px !important
    }
}

.header-2 .header-right .header-button {
    margin-left: 25px
}

@media(max-width: 767px) {
    .header-2 .header-right .header-button {
        display: none
    }
}

.header-2 .header-right .sidebar__toggle {
    color: var(--white);
    margin-left: 30px
}

@media(max-width: 1399px) {
    .header-2 .header-right .sidebar__toggle {
        color: var(--theme)
    }
}

.header-3 .mega-menu-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0);
    border: none;
    border-radius: 0
}

.header-3 .mega-menu-wrapper .header-main {
    height: 90px
}

.header-3 .mega-menu-wrapper .header-main .main-menu ul li a {
    color: var(--white)
}

.header-3 .mega-menu-wrapper .header-main .main-menu ul li a:hover,
.header-3 .mega-menu-wrapper .header-main .main-menu ul li a.active {
    color: var(--orange) !important
}

.header-3 .mega-menu-wrapper .header-main .submenu li a {
    position: relative;
    z-index: 999;
    color: var(--title) !important;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    color: var(--title);
    padding: 0 25px;
    padding-bottom: 11px;
    padding-top: 11px;
    width: 100%;
    border-bottom: 1px solid #eee
}

.header-3 .mega-menu-wrapper .header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
    color: var(--theme-color-3)
}

.header-3 .header-button .btn-wrapper .theme-btn,
.header-3 .header-button .btn-wrapper .theme-btn-2 {
    border-radius: 100px;
    border: 1px solid var(--white);
    background: var(--head-color-3);
    white-space: nowrap;
    width: 220px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px
}

@media(max-width: 767px) {

    .header-3 .header-button .btn-wrapper .theme-btn,
    .header-3 .header-button .btn-wrapper .theme-btn-2 {
        display: none
    }
}

.header-4 .mega-menu-wrapper {
    position: relative;
    z-index: 1;
    background-color: #1e1e1e;
    border: none;
    border-radius: 0
}

.header-4 .mega-menu-wrapper .header-main {
    height: 90px
}

.header-4 .mega-menu-wrapper .header-main .main-menu ul li a {
    color: var(--white);
    font-family: "Teko", sans-serif;
    font-size: 23px
}

.header-4 .mega-menu-wrapper .header-main .main-menu ul li a:hover,
.header-4 .mega-menu-wrapper .header-main .main-menu ul li a.active {
    color: var(--theme4) !important
}

.header-4 .mega-menu-wrapper .header-main .submenu li a {
    position: relative;
    z-index: 999;
    color: var(--title) !important;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    color: var(--title);
    padding: 0 25px;
    padding-bottom: 11px;
    padding-top: 11px;
    width: 100%;
    border-bottom: 1px solid #eee
}

.header-4 .mega-menu-wrapper .header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
    color: var(--theme4)
}

.header-4.sticky {
    top: 0 !important
}

.header-4.sticky.sticky-bg-dark {
    background-color: #1e1e1e
}

.header-4 .header-main {
    height: 82px
}

.header-4 .header-main .main-menu ul li .submenu {
    top: 103%
}

.header-4 .header-button .btn-wrapper .theme-btn,
.header-4 .header-button .btn-wrapper .theme-btn-2 {
    text-transform: uppercase;
    font-size: 14px
}

.header-right {
    gap: 30px
}

@media(max-width: 1399px) {
    .header-right {
        gap: 20px
    }
}

@media(max-width: 767px) {
    .header-right {
        gap: 5px
    }

    .header-right .theme-btn {
        display: none
    }
}

.header-right .search-icon {
    color: var(--text);
    font-size: 18px
}

.header-right .header__cart {
    padding: 0 8px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%
}

@media(max-width: 991px) {
    .header-right .header__cart {
        padding: 0px 10px
    }
}

.header-right .header__cart:hover>a {
    color: var(--theme)
}

.header-right .header__cart:hover .header__right__dropdown__wrapper {
    visibility: visible;
    opacity: 1;
    top: 100%;
    transition: .3s
}

.header-right .header__cart>a {
    font-size: 18px;
    color: var(--text);
    padding: 15px 0;
    position: relative
}

.header-right .header__cart>a::before {
    font-size: 10px;
    font-weight: 500;
    line-height: 15px;
    position: absolute;
    top: 0;
    right: -10px;
    width: 15px;
    height: 15px;
    padding: 0 4px;
    content: "3";
    text-align: center;
    border-radius: 100%;
    background: var(--theme);
    color: var(--white)
}

@media(max-width: 991px) {
    .header-right .header__cart>a::before {
        top: 7px;
        right: 11px
    }
}

.header-right .header__cart .header__right__dropdown__wrapper {
    position: absolute;
    width: 300px;
    max-height: 700px;
    padding: 20px;
    border-bottom: 3px solid var(--border);
    background-color: var(--white);
    box-shadow: 0 0 50px 10px rgba(95, 45, 237, .15);
    top: 100%;
    left: -235px;
    opacity: 0;
    visibility: hidden;
    z-index: 999
}

@media(max-width: 767px) {
    .header-right .header__cart .header__right__dropdown__wrapper {
        left: -220px
    }
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close {
    position: absolute;
    right: 0;
    top: -10px
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close a :hover {
    color: var(--theme2)
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner {
    border-bottom: 1px solid var(--border-2);
    margin-bottom: 30px
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img {
    width: 30%
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img a {
    display: inline-block;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img img {
    width: 100%;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content {
    text-align: left;
    width: 70%;
    margin-left: 15px
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--title)
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a:hover {
    color: var(--theme2)
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p {
    color: var(--title);
    font-size: 14px
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p span {
    color: var(--theme)
}

.header-right .header__cart .header__right__dropdown__wrapper .dropdown__price {
    text-align: left;
    font-size: 17px;
    margin-bottom: 20px
}

.header-right .header__cart .header__right__dropdown__wrapper .dropdown__price span {
    float: right;
    color: var(--theme);
    font-weight: 700
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    padding: 10px 0px
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color {
    border: 1px solid var(--theme2);
    margin-bottom: 20px
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color:hover {
    background: var(--theme2);
    color: var(--white)
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color {
    background: var(--title);
    color: var(--white)
}

.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color:hover {
    background: var(--theme2)
}

.sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
    color: var(--text)
}

@media(max-width: 1199px) {
    .menu-thumb {
        display: none !important
    }
}

.header-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    padding: 8px 20px;
}

.header-main {
    position: relative;
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    z-index: 99;
    padding: 8px 20px;
}

/* @media(max-width: 450px) {
    .header-main {
        height: 65px
    }
} */

.header-main .main-menu ul {
    margin-bottom: 0
}

.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 30px
}

.header-main .main-menu ul li:last-child {
    margin-inline-end: 0
}

.header-main .main-menu ul li a {
    display: inline-block;
    padding: 20px 0;
    text-align: left;
    position: relative;
    color: var(--title);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    text-transform: capitalize;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all .4s ease-in-out;
}

.header-main .main-menu ul li a.theme-btn {
    color: var(--white);
    font-family: "Syne", sans-serif;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
    padding-inline: 18px;
}

@media(max-width: 1399px) {
    .header-main .main-menu ul li a {
        letter-spacing: 1px
    }
}

.header-main .main-menu ul li a i {
    margin-left: 7px
}

.header-main .main-menu ul li a:hover,
.header-main .main-menu ul li a.active {
    color: var(--title) !important
}

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 108%;
    inset-inline-start: 0;
    min-width: 200px;
    background: var(--white);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--title);
    border-top: 6px solid var(--theme);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    transition: all .4s ease-in-out;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px)
}

.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0
}

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 999;
    color: var(--title);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    color: var(--title);
    padding: 0 25px;
    padding-bottom: 11px;
    padding-top: 11px;
    width: 100%;
    border-bottom: 1px solid #eee
}

.header-main .main-menu ul li .submenu li a.active,
.header-main .main-menu ul li .submenu li a:hover {
    background-color: var(--theme2);
    color: var(--title) !important
}

.header-main .main-menu ul li .submenu li:last-child a {
    border: none
}

.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0
}

.header-main .main-menu ul li .submenu li:hover>a {
    background: var(--theme2);
    color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
    color: var(--theme2)
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
    visibility: visible;
    opacity: 1
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    transform: translateY(-50%);
    color: var(--theme)
}

.header-main .main-menu ul li .has-homemenu {
    width: 1100px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -250px;
    visibility: hidden;
    padding: 30px 30px 10px 30px
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
    position: relative;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between
}

@media(max-width: 991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap
    }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
    position: relative
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out;
    margin-top: 20px
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 20px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 14px;
    text-align: center;
    border-radius: 0px !important;
    background-color: var(--theme)
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--title) !important
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
    background-color: var(--theme2)
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
    content: ""
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%)
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px
}

.header-main .main-menu ul li:hover>a {
    color: var(--title)
}

.header-main .main-menu ul li:hover>a::after {
    color: var(--theme)
}

.header-main .main-menu ul li:hover>.submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px)
}

.header-main .header-right {
    gap: 30px
}

@media(max-width: 1399px) {
    .header-main .header-right {
        gap: 20px
    }
}

.header-main .header-right .search-icon {
    color: var(--title);
    font-size: 18px
}

.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
    color: var(--title)
}

.sticky {
    position: fixed !important;
    top: 10px !important;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .9s;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown
}

.sticky.sticky-bg-dark {
    background-color: #161921
}

.sticky.sticky-bg-dark .header-main .main-menu ul li a {
    color: var(--white)
}

.sticky.header-1 {
    padding: 0 10px
}

.sticky.header-1 .logo {
    display: block
}

.sticky.header-1 .navbar-brand {
    display: block
}

.header-1 .navbar-brand .header-logo {
    height: 50px;
    object-fit: contain;
    object-position: center;
}

.sticky.header-1 .header-main .main-menu ul li .submenu li a {
    color: var(--title)
}

.sticky.header-1 .header-main .main-menu ul li a {
    color: var(--title);
}

.sticky.header-1 .header-main .main-menu ul li a.active,
.sticky.header-1 .header-main .main-menu ul li a:hover {
    color: var(--title) !important
}

@media(max-width: 450px) {
    .sticky.header-1 {
        padding: 0
    }
}

.sticky.header-1 .theme-btn {
    background: var(--title);
    color: var(--white) !important;
}

.sticky.header-2 {
    padding: 0 10px
}

.sticky.header-2 .logo {
    display: block
}

.sticky.header-2 .header-main .main-menu ul li .submenu li a {
    color: var(--title)
}

.sticky.header-2 .header-main .main-menu ul li a {
    color: var(--title)
}

.sticky.header-2 .header-main .main-menu ul li a.active,
.sticky.header-2 .header-main .main-menu ul li a:hover {
    color: var(--title) !important
}

@media(max-width: 450px) {
    .sticky.header-2 {
        padding: 0
    }
}

.sticky.header-2 .theme-btn {
    background: var(--white);
    color: var(--title)
}

.sticky.header-3 {
    padding: 0 10px
}

.sticky.header-3.sticky {
    top: 0 !important
}

.sticky.header-3 .logo {
    display: block
}

.sticky.header-3 .header-main .main-menu ul li .submenu li a {
    color: var(--white)
}

.sticky.header-3 .header-main .main-menu ul li a {
    color: var(--white)
}

.sticky.header-3 .header-main .main-menu ul li a.active,
.sticky.header-3 .header-main .main-menu ul li a:hover {
    color: var(--theme-color-3) !important
}

@media(max-width: 450px) {
    .sticky.header-3 {
        padding: 0
    }
}

.sticky.header-3 .theme-btn {
    background: var(--white);
    color: var(--title)
}

.offcanvas__info {
    background: var(--title) none repeat scroll 0 0;
    border-left: 2px solid var(--theme);
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    transform: translateX(calc(100% + 80px));
    transition: transform .45s ease-in-out, opacity .45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none
}

.offcanvas__info::-webkit-scrollbar {
    display: none
}

.offcanvas__info.info-open {
    opacity: 1;
    transform: translateX(0)
}

.offcanvas__logo a img {
    width: 150px
}

.offcanvas__wrapper {
    position: relative;
    height: 130vh;
    padding: 30px 30px;
    background-color: var(--bg-1)
}

.offcanvas__wrapper .offcanvas__content .text {
    color: var(--white)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    position: relative;
    z-index: 9;
    cursor: pointer
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
    color: var(--theme2)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
    color: var(--white)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 15px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-right: 20px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
    color: var(--theme2)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 16px 40px;
    text-transform: capitalize !important
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: var(--theme);
    color: var(--white);
    border-radius: 50%;
    transition: all .4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color: var(--theme2);
    color: var(--title) !important
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0
}

.offcanvas__overlay.overlay-open {
    opacity: .8;
    visibility: visible
}

@media(max-width: 450px) {
    .offcanvas__info {
        width: 300px
    }
}

@media(max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px
    }
}

.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 9;
    padding-top: 150px;
    padding-bottom: 50px
}

.breadcrumb-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background: var(--theme)
}

.breadcrumb-wrapper .shape-image {
    position: absolute;
    right: 0;
    bottom: 10%
}

@media(max-width: 991px) {
    .breadcrumb-wrapper .shape-image {
        display: none
    }
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: space-between
}

.breadcrumb-wrapper .page-heading .shape {
    position: absolute;
    top: 0px;
    right: 180px;
    animation: float-bob-x 5s linear infinite;
    -webkit-animation: float-bob-x 5s linear infinite
}

.breadcrumb-wrapper .page-heading .title .title-heading {
    display: inline-block;
    padding: 8px 24px;
    background-color: var(--theme2);
    color: var(--title);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 20px;
    border-radius: 60px;
    transform: rotate(-20deg);
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg)
}

.breadcrumb-wrapper .page-heading h1 {
    color: var(--white);
    color: var(--theme2);
    font-family: "Syne", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    max-width: 528px
}

@media(max-width: 991px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 60px
    }
}

@media(max-width: 575px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 42px
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px
}

@media(max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        margin-top: 15px
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: var(--theme2);
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--white);
    transition: all .4s ease-in-out
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: var(--theme)
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: var(--white);
    opacity: .8
}

@media(max-width: 991px) {
    .breadcrumb-wrapper .page-heading {
        display: block
    }

    .breadcrumb-wrapper .page-heading h1 {
        max-width: 100%
    }
}

.breadcrumb-wrapper .breadcrumb-wrapper-items {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 991px) {
    .breadcrumb-wrapper .breadcrumb-wrapper-items {
        flex-wrap: wrap
    }
}

.breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image {
    position: relative;
    height: 380px;
    margin-bottom: -50px
}

@media(max-width: 991px) {
    .breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image {
        margin-bottom: 0
    }

    .breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image img {
        width: 100%;
        height: 100%
    }
}

.breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image .bar-shape {
    position: absolute;
    top: -60px;
    bottom: 0;
    left: -27%;
    z-index: -1
}

@media(max-width: 991px) {
    .breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image .bar-shape {
        display: none
    }
}

.breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.breadcumb .breadcumb-wrapper {
    overflow: hidden;
    border-radius: 0px 0px 20px 20px;
    background: #f5f1ea;
    padding: 250px 0 180px 0;
    margin: 0 auto;
    position: relative;
    margin-bottom: 120px
}

@media(max-width: 767px) {
    .breadcumb .breadcumb-wrapper {
        padding: 180px 0 100px 0
    }
}

.breadcumb .breadcumb-wrapper .breadcumb-bg {
    position: absolute;
    left: 0;
    top: 0;
    opacity: .4
}

.breadcumb .breadcumb-wrapper .page-heading h1 {
    color: var(--text);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 66.9px;
    text-align: center
}

.breadcumb .breadcumb-wrapper .page-heading p {
    color: var(--text);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    margin: 15px 0;
}

@media(max-width: 450px) {
    .breadcumb .breadcumb-wrapper .page-heading h1 {
        font-size: 40px
    }
}

.breadcumb .breadcumb-wrapper .page-heading h1 span {
    color: var(--theme);
    font-family: "Syne", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 66.9px
}

.error-wrapper {
    position: relative
}

.error-wrapper .shape1 {
    position: absolute;
    top: 60%;
    left: 10%;
    z-index: 1
}

.error-wrapper .shape2 {
    position: absolute;
    top: 10%;
    right: 8%;
    z-index: 1
}

.error-wrapper .error-items h1 {
    color: var(--title);
    text-align: center;
    font-family: "Syne", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-top: 15px;
    margin-bottom: 15px
}

.error-wrapper .error-items p {
    color: var(--text);
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 30px
}

.error-wrapper .error-items .btn-wrapper {
    text-align: center;
    max-width: 160px;
    margin: 0 auto
}

.footer-top {
    padding: 50px 50px;
    background: var(--theme);
    margin-bottom: 40px
}

.footer-top .fancy-box {
    display: flex;
    align-items: center;
    gap: 15px
}

.footer-top .fancy-box .item1 i {
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    background: var(--white);
    color: var(--theme);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

.footer-top .fancy-box .item2 h6 {
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 10px
}

.footer-top .fancy-box .item2 p {
    color: var(--white);
    font-family: "Syne", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

.footer-thumb {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .2
}

.footer-thumb3 {
    position: absolute;
    bottom: 0px;
    right: 0;
    z-index: 1;
    opacity: .5
}

.nice-select .option img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle
}

.nice-select .current img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle
}

.footer-widgets-wrapper {
    border-radius: 40px 40px 0px 0px;
    background-color: #0c0c0c;
    padding: 50px 0 60px;
    position: relative;
    z-index: 9
}

.footer-widgets-wrapper .nice-select {
    background: #3d3d3d;
    color: var(--white) !important;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
    max-width: 120px;
    height: 41px
}

.footer-widgets-wrapper .footer_top-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-3);
    margin-bottom: 10px
}

.footer-widgets-wrapper .footer_top-head .footer-logo>img {
    height: 60px;
    object-fit: contain;
    object-position: center;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(322deg) brightness(102%) contrast(102%);
}

.footer-widgets-wrapper .footer_top-head h3 {
    color: var(--White, #fff);
    font-feature-settings: "liga" off, "clig" off;
    font-family: Syne;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px
}

.footer-widgets-wrapper.style1 {
    background-color: var(--title)
}

.footer-widgets-wrapper.style2 {
    background-color: rgba(0, 0, 0, 0);
    padding: 0px 0 120px
}

.footer-widgets-wrapper.style2 .single-footer-widget {
    margin-top: 0px
}

.footer-widgets-wrapper.style2 .single-footer-widget .widget-head h3 {
    color: var(--title)
}

.footer-widgets-wrapper.style2 .single-footer-widget .list-area li a {
    color: var(--title)
}

.footer-widgets-wrapper.style2 .single-footer-widget .list-area li .language {
    color: var(--title)
}

.footer-widgets-wrapper.style2 .nice-select {
    background: var(--white);
    color: var(--title) !important;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
    max-width: 120px;
    height: 41px
}

.footer-widgets-wrapper.style2 .single-footer-contact-widget .footer-logo {
    margin-bottom: 20px
}

.footer-widgets-wrapper.style2 .single-footer-contact-widget .text {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    max-width: 377px;
    margin-bottom: 40px
}

.footer-widgets-wrapper.style2 .single-footer-contact-widget .social-items {
    display: flex;
    gap: 10px
}

.footer-widgets-wrapper.style2 .single-footer-contact-widget .social-items li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 45px;
    border: 1px solid #ccc
}

.footer-widgets-wrapper.style2 .single-footer-contact-widget .social-items li a:hover {
    background-color: var(--title);
    color: var(--white) !important
}

.footer-widgets-wrapper.style3 {
    background-color: rgba(0, 0, 0, 0);
    padding-top: 350px
}

@media(max-width: 1199px) {
    .footer-widgets-wrapper.style3 {
        padding-top: 0px
    }
}

.footer-widgets-wrapper.style3 .single-footer-contact-widget {
    max-width: 375px;
    position: relative
}

.footer-widgets-wrapper.style3 .single-footer-contact-widget::after {
    position: absolute;
    right: -120px;
    top: 40px;
    content: "";
    background-color: var(--text);
    height: 215px;
    width: 1px
}

@media(max-width: 1399px) {
    .footer-widgets-wrapper.style3 .single-footer-contact-widget::after {
        display: none
    }
}

.footer-widgets-wrapper.style3 .single-footer-contact-widget .footer-logo {
    margin-bottom: 10px
}

.footer-widgets-wrapper.style3 .single-footer-contact-widget .text {
    color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px
}

.footer-widgets-wrapper.style3 .single-footer-contact-widget .email-signup {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 3
}

.footer-widgets-wrapper.style3 .single-footer-contact-widget .email-signup input {
    flex: 1;
    padding: 16px 21px;
    border: none;
    border-radius: 999px;
    color: var(--text);
    outline: none;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    border: 1px solid var(--text);
    height: 56px
}

.footer-widgets-wrapper.style3 .single-footer-contact-widget .email-signup button {
    position: absolute;
    right: 12px;
    background-color: var(--theme-color-3);
    border: none;
    padding: 10px 30px;
    border-radius: 350px;
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    cursor: pointer;
    transition: background-color .3s ease
}

.footer-widgets-wrapper.style3 .single-footer-widget {
    margin-top: 0px
}

.footer-widgets-wrapper.style3 .single-footer-widget .widget-head h3 {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.28px
}

.footer-widgets-wrapper.style3 .single-footer-widget .list-area li a {
    color: var(--title);
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px
}

.footer-widgets-wrapper.style4 {
    padding: 70px 0 80px 0;
    background-color: rgba(0, 0, 0, 0)
}

.footer-widgets-wrapper.style4 .single-footer-contact-widget {
    max-width: 230px;
    position: relative
}

.footer-widgets-wrapper.style4 .single-footer-contact-widget .text {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-transform: capitalize
}

.footer-widgets-wrapper.style4 .single-footer-contact-widget .social-items {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 40px
}

.footer-widgets-wrapper.style4 .single-footer-contact-widget .social-items li a {
    font-size: 18px;
    color: var(--white)
}

.footer-widgets-wrapper.style4 .single-footer-contact-widget .email-signup {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 30px;
    margin: 0 auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 3
}

.footer-widgets-wrapper.style4 .single-footer-contact-widget .email-signup input {
    flex: 1;
    padding: 16px 21px;
    border: none;
    border-radius: 999px;
    color: var(--text);
    outline: none;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    border: 1px solid var(--text);
    height: 56px
}

.footer-widgets-wrapper.style4 .single-footer-contact-widget .email-signup button {
    position: absolute;
    right: 12px;
    background-color: var(--theme-color-3);
    border: none;
    padding: 10px 30px;
    border-radius: 350px;
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    cursor: pointer;
    transition: background-color .3s ease
}

.footer-widgets-wrapper.style4 .single-footer-widget {
    margin-top: 0px
}

.footer-widgets-wrapper.style4 .single-footer-widget .list-area li a {
    color: var(--white);
    font-family: "Teko", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 29.26px;
    text-transform: uppercase
}

.footer-widgets-wrapper.style4 .single-footer-widget .email-signup {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 30px;
    margin: 0 auto;
    position: relative;
    z-index: 3
}

.footer-widgets-wrapper.style4 .single-footer-widget .email-signup input {
    flex: 1;
    padding: 16px 21px;
    border: none;
    border-radius: 0;
    color: var(--text);
    outline: none;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    max-width: 345px;
    border: 1px solid rgba(255, 255, 255, .29);
    height: 56px;
    background-color: rgba(0, 0, 0, 0)
}

.footer-widgets-wrapper.style4 .single-footer-widget .email-signup input ::-moz-placeholder {
    color: rgba(255, 255, 255, .29)
}

.footer-widgets-wrapper.style4 .single-footer-widget .email-signup input ::placeholder {
    color: rgba(255, 255, 255, .29)
}

@media(max-width: 1199px) {
    .footer-widgets-wrapper.style4 .single-footer-widget .email-signup input {
        max-width: 100%
    }
}

.footer-widgets-wrapper.style4 .single-footer-widget .email-signup button {
    position: absolute;
    right: 70px;
    border: none;
    display: inline-flex;
    height: 42px;
    width: -moz-max-content;
    width: max-content;
    padding: 14px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: var(--theme4);
    color: var(--white);
    border-radius: 0px;
    cursor: pointer;
    transition: background-color .3s ease
}

@media(max-width: 1399px) {
    .footer-widgets-wrapper.style4 .single-footer-widget .email-signup button {
        right: 12px
    }
}

.footer-widgets-wrapper.style4 .single-footer-widget .contact {
    padding-top: 20px
}

.footer-widgets-wrapper.style4 .single-footer-widget .contact ul li {
    padding-bottom: 10px
}

.footer-widgets-wrapper.style4 .single-footer-widget .contact ul li a {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.94px
}

.footer-widgets-wrapper.style4 .single-footer-widget .contact ul li a span {
    padding: 0 16px
}

@media(max-width: 1199px) {
    .footer-widgets-wrapper {
        padding: 70px 0 100px
    }
}

@media(max-width: 991px) {
    .footer-widgets-wrapper {
        padding: 50px 0 70px
    }
}

.footer-widgets-wrapper .single-footer-widget {
    margin-top: 30px
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 30px
}

@media(max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head {
        margin-bottom: 20px
    }
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    color: rgba(255, 255, 255, .5);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-bottom: 20px
}

@media(max-width: 1399px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
        padding-bottom: 0
    }
}

@media(max-width: 767px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
        font-size: 23px
    }
}

@media(max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
        font-size: 20px
    }
}

.footer-widgets-wrapper .single-footer-widget .widget-head h4 {
    font-weight: bold;
    color: var(--white);
    font-size: 24px;
    display: inline-block
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input {
    position: relative
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input input {
    background: rgba(0, 0, 0, 0);
    border: none;
    outline: none;
    width: 100%;
    color: rgba(255, 255, 255, .69);
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    padding-bottom: 20px
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input input::-moz-placeholder {
    color: rgba(255, 255, 255, .69)
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input input::placeholder {
    color: rgba(255, 255, 255, .69)
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input .newsletter-btn {
    position: absolute;
    top: 10px;
    right: 0;
    color: var(--white)
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input .newsletter-btn i {
    font-size: 22px;
    transform: rotate(-40deg)
}

.footer-widgets-wrapper .single-footer-widget .footer-content p {
    color: rgba(255, 255, 255, .85)
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 40px;
    gap: 10px;
    position: relative;
    z-index: 9
}

@media(max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
        margin-top: 20px
    }
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .2);
    background-color: rgba(0, 0, 0, 0);
    color: var(--white)
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
    background-color: var(--theme2);
    color: var(--title) !important
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
    position: relative;
    margin-top: 40px
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
    background: rgba(0, 0, 0, 0);
    border: none;
    outline: none;
    padding: 18px 20px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .8)
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::-moz-placeholder {
    color: rgba(255, 255, 255, .8)
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
    color: rgba(255, 255, 255, .8)
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 60px;
    height: 55px;
    line-height: 60px;
    border-radius: 8px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    bottom: 5px
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn i {
    font-size: 24px
}

.footer-widgets-wrapper .single-footer-widget .list-area li {
    transition: all .4s ease-in-out;
    font-weight: 500
}

.footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
    margin-bottom: 13px
}

.footer-widgets-wrapper .single-footer-widget .list-area li .language {
    color: rgba(255, 255, 255, .5);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 20px
}

.footer-widgets-wrapper .single-footer-widget .list-area .icon {
    min-width: 40px;
    min-height: 40px;
    background-color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--theme);
}

.footer-widgets-wrapper .single-footer-widget .list-area li a {
    color: var(--white);
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

@media(max-width: 767px) {
    .footer-widgets-wrapper .single-footer-widget .list-area li a {
        font-size: 18px;
        line-height: 28.5px
    }
}

.footer-widgets-wrapper .single-footer-widget .list-area li a i {
    margin-right: 5px
}

.footer-widgets-wrapper .single-footer-widget .list-area li a:hover {
    margin-left: 5px
}

.footer-widgets-wrapper .single-footer-widget .list-area li a:hover a {
    color: var(--theme2)
}

.footer-top-logo {
    position: relative
}

.footer-top-logo:before {
    position: absolute;
    content: "";
    top: 35px;
    left: -555px;
    width: 515px;
    height: 1px;
    background: var(--border-2)
}

.footer-top-logo:after {
    position: absolute;
    content: "";
    top: 35px;
    right: -555px;
    width: 515px;
    height: 1px;
    background: var(--border-2)
}

.footer-bottom {
    position: relative;
    z-index: 3;
    background: #0c0c0c
}

.footer-bottom.style1 {
    background: rgba(255, 255, 255, .05)
}

.footer-bottom.style1 .footer-wrapper {
    border-top: none
}

.footer-bottom.style2 {
    background: rgba(0, 0, 0, 0)
}

.footer-bottom.style2 .footer-wrapper {
    border-top: 1px solid var(--border-2)
}

.footer-bottom .footer-wrapper {
    padding: 18px 0;
    border-top: 1px solid var(--border-3)
}

@media(max-width: 767px) {
    .footer-bottom .footer-wrapper {
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center !important
    }
}

.footer-bottom .footer-wrapper p {
    color: #7a7a7a;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

@media(max-width: 500px) {
    .footer-bottom .footer-wrapper p {
        font-size: 14px
    }
}

.footer-bottom .footer-wrapper p a {
    color: var(--white);
    font-weight: 600
}

.footer-bottom .footer-wrapper .brand-logo {
    display: flex;
    align-items: center
}
.footer-bottom .footer-wrapper .brand-logo li {
    position: relative;
}
.footer-bottom .footer-wrapper .brand-logo li:not(:last-child)::after {
    content: '';
    display: block;
    height: 15px;
    width: 1px;
    background: #7a7a7a;
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 0;
    align-content: center;
}

@media(max-width: 767px) {
    .footer-bottom .footer-wrapper .brand-logo {
        gap: 2px
    }
}

.footer-bottom .footer-wrapper .brand-logo li {
    padding: 5px 7px;
    border-radius: 6px;
    line-height: 27px
}

.footer-bottom .footer-wrapper .brand-logo li a {
    color: #7a7a7a;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.footer-bottom .footer-wrapper .brand-logo li a .line {
    margin-left: 10px
}

@media(max-width: 991px) {
    .footer-bottom .footer-wrapper .brand-logo li a {
        font-size: 14px
    }
}

@media(max-width: 500px) {
    .footer-bottom .footer-wrapper .brand-logo li a {
        font-size: 13px
    }
}

.footer-bottom.style3 .footer-wrapper {
    padding: 18px 0;
    border-top: 1px solid var(--border)
}

@media(max-width: 767px) {
    .footer-bottom.style3 .footer-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center !important
    }
}

.footer-bottom.style3 .footer-wrapper p {
    color: var(--text)
}

.footer-bottom.style3 .footer-wrapper p a {
    color: var(--text) !important;
    font-weight: 600
}

.footer-bottom.style3 .footer-wrapper ul {
    display: flex;
    align-items: center;
    gap: 30px
}

.footer-bottom.style3 .footer-wrapper ul li a {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.08px
}

.footer-bottom.style4 {
    background-color: rgba(0, 0, 0, 0)
}

.footer-bottom.style4 .footer-wrapper p {
    color: #a4a4a4;
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.94px
}

.footer-bottom .footer-wrapper.style3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 27px 0
}

@media(max-width: 767px) {
    .footer-bottom .footer-wrapper.style3 {
        flex-wrap: wrap;
        justify-content: center
    }
}

.footer-bottom .footer-wrapper.style3 .text {
    color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px
}

.footer-bottom .footer-wrapper.style3 .social-items {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #444;
    font-size: 20px
}

.contact-info-area {
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-bottom: 50px
}

@media(max-width: 1399px) {
    .contact-info-area {
        flex-wrap: wrap;
        gap: 40px;
        padding-top: 80px;
        justify-content: initial
    }
}

@media(max-width: 575px) {
    .contact-info-area {
        gap: 30px
    }
}

.contact-info-area .contact-info-items {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    position: relative
}

@media(max-width: 1199px) {
    .contact-info-area .contact-info-items {
        flex-wrap: wrap
    }
}

.contact-info-area .contact-info-items .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    position: relative;
    border: 2px dotted var(--white);
    border-radius: 50%;
    font-size: 30px;
    color: var(--white)
}

.contact-info-area .contact-info-items .content p {
    color: var(--white);
    margin-bottom: 5px
}

.contact-info-area .contact-info-items .content h3 {
    font-size: 24px;
    color: var(--white);
    text-transform: initial
}

.contact-info-area .contact-info-items .content h3 a {
    color: var(--white)
}

.footer-section.style2 {
    background: #fffaf3
}

.intro-wrapper.style1 {
    position: relative;
    border-radius: 50px;
    background: rgba(116, 68, 253, .06);
    margin-top: 40px
}

.intro-wrapper.style1 .shape1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1
}

.intro-wrapper.style1 .shape2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1
}

.intro-wrapper.style1 .shape3 {
    position: absolute;
    top: 110px;
    left: 34px;
    z-index: 1
}

.intro-wrapper.style1 .shape4 {
    position: absolute;
    bottom: 111px;
    right: 22px;
    z-index: 1
}

.intro-wrapper.style1 .shape5 {
    position: absolute;
    bottom: 162px;
    right: 874px;
    z-index: 1
}

.intro-wrapper.style1 .intro-content {
    position: relative;
    padding: 223px 0;
    z-index: 5;
    max-width: 720px
}

.intro-wrapper.style1 .intro-content .intro-section-title .intro-subtitle {
    display: inline-flex;
    padding: 5px 7px;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: rgba(116, 68, 253, .15);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    color: var(--theme);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.32px
}

.intro-wrapper.style1 .intro-content .intro-section-title .intro-subtitle span {
    display: inline-block;
    padding: 5px 15px;
    gap: 10px;
    border-radius: 30px;
    background: var(--white);
    color: var(--title);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.32px
}

.intro-wrapper.style1 .intro-content .intro-section-title .intro-title {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: -1.28px
}

.intro-wrapper.style1 .intro-content .intro-section-title .intro-desc {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.32px
}

.intro-wrapper.style1 .intro-thumb {
    position: relative;
    padding: 223px 0 0;
    z-index: 3
}

.intro-wrapper.style1 .intro-thumb .main-thumb {
    position: relative;
    z-index: 3
}

.intro-wrapper.style1 .intro-thumb .thumbShape1 {
    position: absolute;
    top: 260px;
    right: 0px;
    z-index: 1
}

.intro-wrapper.style1 .intro-thumb .thumbShape2 {
    position: absolute;
    top: 328px;
    right: 40px;
    z-index: 2
}

.intro-section.style3 .slider-arrow-btn {
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 9
}

@media(max-width: 767px) {
    .intro-section.style3 .slider-arrow-btn {
        display: none
    }
}

.intro-container-wrapper.style1 {
    position: relative
}

.intro-container-wrapper.style1.bg-ct {
    background: #f5f1ea;
    border-radius: 0px 0px 40px 40px;
}

.intro-container-wrapper.style1::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    border-radius: 0px 0px 60px 60px;
    background: #f5f1ea;
    z-index: -1
}

@media(max-width: 991px) {
    .intro-container-wrapper.style1::after {
        height: 100%
    }
}

.intro-container-wrapper.style1 .intro_content {
    padding: 180px 0 100px
}

@media(max-width: 991px) {
    .intro-container-wrapper.style1 .intro_content {
        padding-bottom: 60px
    }
}

.intro-container-wrapper.style1 .intro_content_title {
    color: #000;
    text-align: center;
    font-size: 72px;
    line-height: 1.15
}

@media(max-width: 991px) {
    .intro-container-wrapper.style1 .intro_content_title {
        font-size: 60px
    }
}

@media(max-width: 767px) {
    .intro-container-wrapper.style1 .intro_content_title {
        font-size: 48px
    }
}

@media(max-width: 575px) {
    .intro-container-wrapper.style1 .intro_content_title {
        font-size: 40px
    }
}

@media(max-width: 500px) {
    .intro-container-wrapper.style1 .intro_content_title {
        font-size: 34px
    }
}

.intro-container-wrapper.style1 .intro_content_info {
    display: grid;
    grid-template-columns: 300px 1fr 330px;
    margin-top: 80px;
    align-items: flex-start
}

@media(max-width: 991px) {
    .intro-container-wrapper.style1 .intro_content_info {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }
}

@media(max-width: 767px) {
    .intro-container-wrapper.style1 .intro_content_info {
        margin-top: 30px;
        grid-template-columns: 1fr
    }
}

.intro-container-wrapper.style1 .intro_content_info_left {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px 16px;
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 8
}

.intro-container-wrapper.style1 .intro_content_info_left_user_title {
    color: var(--text);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px
}

.intro-container-wrapper.style1 .intro_content_info_left_user_subtitle {
    color: var(--text);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.intro-container-wrapper.style1 .intro_content_info_center {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 400px
}

@media(max-width: 1399px) {
    .intro-container-wrapper.style1 .intro_content_info_center {
        min-height: 300px
    }
}

@media(max-width: 1199px) {
    .intro-container-wrapper.style1 .intro_content_info_center {
        min-height: 0
    }
}

@media(max-width: 991px) {
    .intro-container-wrapper.style1 .intro_content_info_center {
        display: none
    }
}

.intro-container-wrapper.style1 .intro_content_info_center img {
    position: absolute;
    width: 130%;
    top: -50px
}

.intro-container-wrapper.style1 .intro_content_info_right {
    position: relative;
    z-index: 1
}

.intro-container-wrapper.style1 .intro_content_info_right p {
    color: var(--text);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 12px
}

.intro-container-wrapper.style1 .intro_content_info_right .intro_content_info_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px
}

.intro-container-wrapper.style1 .intro_content_info_right .intro_content_info_btn svg {
    width: 40px;
    height: 40px
}

.intro-container-wrapper.style2 {
    padding: 207px 0 100px 0;
    border-radius: 0px 0px 40px 40px;
    background: #fffaf3
}

@media(max-width: 991px) {
    .intro-container-wrapper.style2 {
        padding: 207px 0 70px 0;
        margin-left: 0
    }
}

.intro-container-wrapper.style2 .intro_content_info {
    margin-bottom: 57px
}

.intro-container-wrapper.style2 .intro_content_info_left_user_title {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px
}

.intro-container-wrapper.style2 .intro_content_info_left_user_subtitle {
    position: relative;
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    display: inline-block;
    padding-bottom: 10px
}

.intro-container-wrapper.style2 .intro_content_info_left_user_subtitle:before {
    position: absolute;
    top: 50px;
    content: "";
    width: 300px;
    height: 1px;
    background-color: #444
}

.intro-container-wrapper.style2 .intro_content .btn-wrapper {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 36px
}

.intro-container-wrapper.style2 .intro_content .btn-wrapper a {
    display: inline-block
}

@media(max-width: 767px) {
    .intro-container-wrapper.style2 .intro_content .btn-wrapper {
        flex-direction: column
    }
}

.intro-container-wrapper.style2 .intro-content-right {
    display: flex;
    gap: 10px;
    position: relative
}

.intro-container-wrapper.style2 .intro-content-right .shape1 {
    position: absolute;
    top: 150px;
    left: -52px
}

@media(max-width: 1399px) {
    .intro-container-wrapper.style2 .intro-content-right .shape1 {
        left: 0
    }
}

.intro-container-wrapper.style2 .intro-content-right .shape2 {
    position: absolute;
    bottom: 0;
    left: 255px
}

@media(max-width: 991px) {
    .intro-container-wrapper.style2 .intro-content-right .shape2 {
        bottom: 150px;
        left: 266px
    }
}

@media(max-width: 767px) {
    .intro-container-wrapper.style2 .intro-content-right .shape2 {
        display: none
    }
}

.intro-container-wrapper.style2 .intro-content-right .intro-content-thumb {
    width: 100%;
    height: 100%;
    text-align: center
}

@media(max-width: 1399px) {
    .intro-container-wrapper.style2 .intro-content-right .intro-content-thumb img {
        max-width: 100%;
        max-height: 100%
    }
}

.intro-container-wrapper.style2 .intro-content-right .intro-content-thumb .content-shape-1 {
    margin-top: 10px
}

.intro-container-wrapper.style2 .intro-content-right .intro-content-thumb .content-shape-2 {
    margin: 0 135px 10px 0
}

@media(max-width: 1199px) {
    .intro-container-wrapper.style2 .intro-content-right .intro-content-thumb .content-shape-2 {
        margin: 0 57px 10px 0
    }
}

@media(max-width: 470px) {
    .intro-container-wrapper.style2 .intro-content-right .intro-content-thumb .content-shape-2 {
        margin: 0 30px 10px 0
    }
}

.intro-container-wrapper.style3 {
    padding: 280px 0 240px 0
}

@media(max-width: 1399px) {
    .intro-container-wrapper.style3 {
        padding: 220px 0 200px 0
    }
}

@media(max-width: 767px) {
    .intro-container-wrapper.style3 {
        padding: 150px 0 100px 0
    }
}

.intro-container-wrapper.style3 .intro_content.style3 .title {
    color: var(--white);
    text-align: center;
    font-family: "Syne", sans-serif;
    font-size: 85px;
    font-style: normal;
    font-weight: 700;
    line-height: 94.242px;
    padding-bottom: 20px
}

@media(max-width: 1399px) {
    .intro-container-wrapper.style3 .intro_content.style3 .title {
        font-size: 74px
    }
}

@media(max-width: 767px) {
    .intro-container-wrapper.style3 .intro_content.style3 .title {
        font-size: 52px;
        line-height: 60px
    }
}

@media(max-width: 500px) {
    .intro-container-wrapper.style3 .intro_content.style3 .title {
        font-size: 36px;
        line-height: 40px
    }
}

@media(max-width: 470px) {
    .intro-container-wrapper.style3 .intro_content.style3 .title {
        font-size: 30px;
        line-height: 40px
    }
}

.intro-container-wrapper.style3 .intro_content.style3 .text {
    color: var(--white);
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 40px
}

.intro-container-wrapper.style3 .intro_content.style3 .btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px
}

@media(max-width: 767px) {
    .intro-container-wrapper.style3 .intro_content.style3 .btn-wrapper {
        flex-wrap: wrap;
        justify-content: center
    }
}

.intro-container-wrapper.style3 .intro_content.style3 .btn-wrapper .theme-btn.style5 {
    width: 220px
}

.intro-container-wrapper.style4 {
    padding-top: 80px
}

.intro-container-wrapper.style4 .content .title {
    color: var(--white);
    text-align: center;
    font-family: "Teko", sans-serif;
    font-size: 151.115px;
    font-style: normal;
    font-weight: 300;
    line-height: 115.325px;
    text-transform: uppercase;
    padding-bottom: 19px
}

@media(max-width: 1199px) {
    .intro-container-wrapper.style4 .content .title {
        font-size: 100px;
        line-height: 100px
    }
}

@media(max-width: 767px) {
    .intro-container-wrapper.style4 .content .title {
        font-size: 70px;
        line-height: 80px
    }
}

@media(max-width: 450px) {
    .intro-container-wrapper.style4 .content .title {
        font-size: 50px;
        line-height: 50px
    }
}

.intro-container-wrapper.style4 .content .title span {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

@media(max-width: 767px) {
    .intro-container-wrapper.style4 .content .title span {
        display: none
    }
}

.intro-container-wrapper.style4 .content .text {
    color: var(--white);
    text-align: center;
    font-family: "Kanit", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    max-width: 648px;
    margin: 0 auto
}

.intro-container-wrapper.style4 .intro-thumb-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 150px;
    position: relative
}

@media(max-width: 767px) {
    .intro-container-wrapper.style4 .intro-thumb-wrapper {
        margin-top: 130px
    }
}

.intro-container-wrapper.style4 .intro-thumb-wrapper::before {
    content: "";
    position: absolute;
    top: -95px;
    left: -11px;
    width: 30%;
    height: 500px;
    background: linear-gradient(to right, rgb(0, 0, 0), transparent);
    z-index: 9
}

.intro-container-wrapper.style4 .intro-thumb-wrapper::after {
    content: "";
    position: absolute;
    top: -95px;
    right: 0;
    width: 30%;
    height: 500px;
    background: linear-gradient(to left, rgb(0, 0, 0), transparent);
    z-index: 9
}

.brandSliderOne {
    padding: 130px 0 0 0
}

@media(max-width: 991px) {
    .brandSliderOne {
        padding: 80px 0 0 0
    }
}

.about-container-wrapper.style1 .about_wrapper {
    border-radius: 60px;
    background: var(--theme2)
}

@media(max-width: 991px) {
    .about-container-wrapper.style1 .about_wrapper {
        padding: 80px 0
    }
}

@media(max-width: 991px) {
    .about-container-wrapper.style1 .about_wrapper .about_content_info {
        margin-bottom: 30px
    }
}

.about-container-wrapper.style1 .about_wrapper .about_content_info .title {
    color: var(--title);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px
}

@media(max-width: 1199px) {
    .about-container-wrapper.style1 .about_wrapper .about_content_info .title {
        font-size: 45px
    }
}

@media(max-width: 767px) {
    .about-container-wrapper.style1 .about_wrapper .about_content_info .title {
        font-size: 40px
    }
}

@media(max-width: 500px) {
    .about-container-wrapper.style1 .about_wrapper .about_content_info .title {
        font-size: 30px
    }
}

.about-container-wrapper.style1 .about_wrapper .about_content_info p {
    color: var(--text);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px
}

.about-container-wrapper.style1 .about_wrapper .about_content_info .counter {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 20px
}

.about-container-wrapper.style1 .about_wrapper .about_content_info .counter_item h3 {
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 66.9px
}

@media(max-width: 991px) {
    .about-container-wrapper.style1 .about_wrapper .about_content_info .counter_item h3 {
        font-size: 48px
    }
}

@media(max-width: 767px) {
    .about-container-wrapper.style1 .about_wrapper .about_content_info .counter_item h3 {
        font-size: 40px
    }
}

@media(max-width: 500px) {
    .about-container-wrapper.style1 .about_wrapper .about_content_info .counter_item h3 {
        font-size: 30px
    }
}

.about-container-wrapper.style1 .about_wrapper .about_content_info .btn-wrapper {
    width: -moz-max-content;
    width: max-content
}

.about-container-wrapper.style1 .about_wrapper .about_content_img img {
    width: 100%
}

.about-container-wrapper.style2 {
    background: #f5f1ea;
    margin: -71px 0 0 0px;
    padding: 150px 0 125px 0;
    border-radius: 40px
}

.about-container-wrapper.style2 .section-title {
    max-width: 825px;
    margin-bottom: 40px
}

.about-container-wrapper.style2 .about-content p {
    margin-bottom: 103px;
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

@media(max-width: 991px) {
    .about-container-wrapper.style2 .about-content p {
        font-size: 16px;
        margin-bottom: 70px
    }
}

.about-container-wrapper.style2 .about-content .btn-wrapper a {
    display: inline-block
}

.about-container-wrapper.style2 .about-right-content .about-thumb {
    display: flex;
    justify-content: end;
    gap: 30px;
    width: 100%;
    height: 100%
}

.about-container-wrapper.style2 .about-right-content .about-thumb img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 20px
}

@media(min-width: 470px) {
    .about-container-wrapper.style2 .about-right-content .about-thumb img {
        max-width: 50%
    }
}

@media(min-width: 450px) {
    .about-container-wrapper.style2 .about-right-content .about-thumb img {
        max-width: 47%
    }
}

@media(max-width: 767px) {
    .about-container-wrapper.style2 .about-right-content .about-thumb {
        justify-content: center;
        flex-direction: column
    }
}

.about-container-wrapper.style2 .about-right-content .counter {
    display: grid;
    justify-items: end;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    margin-left: 189px
}

@media(max-width: 1199px) {
    .about-container-wrapper.style2 .about-right-content .counter {
        margin-left: 95px
    }
}

@media(max-width: 767px) {
    .about-container-wrapper.style2 .about-right-content .counter {
        align-items: start;
        justify-items: center;
        grid-template-columns: repeat(1, 1fr);
        margin: 20px 20px;
        gap: 30px
    }
}

.about-container-wrapper.style2 .about-right-content .counter .counter_item h3 {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 80.28px;
    margin-bottom: 10px
}

@media(max-width: 575px) {
    .about-container-wrapper.style2 .about-right-content .counter .counter_item h3 {
        font-size: 54px;
        line-height: 50px
    }
}

.about-container-wrapper.style2 .about-right-content .counter .counter_item p {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.about-container-wrapper.style3 {
    padding: 112px 60px 120px 60px;
    border-radius: 30px
}

@media(max-width: 767px) {
    .about-container-wrapper.style3 {
        padding: 80px 40px
    }
}

@media(max-width: 450px) {
    .about-container-wrapper.style3 {
        padding: 40px 0px
    }
}

.about-container-wrapper.style3 .about-main-content .about-content .title {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58.56px;
    padding-right: 32px
}

@media(max-width: 1199px) {
    .about-container-wrapper.style3 .about-main-content .about-content .title {
        padding-right: 0;
        font-size: 40px;
        line-height: 50px
    }
}

@media(max-width: 767px) {
    .about-container-wrapper.style3 .about-main-content .about-content .title {
        font-size: 30px;
        line-height: 40px
    }
}

@media(max-width: 450px) {
    .about-container-wrapper.style3 .about-main-content .about-content .title {
        font-size: 25px;
        line-height: 30px
    }
}

.about-container-wrapper.style3 .about-main-content .about-content .about-clint-box {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 36px
}

@media(max-width: 991px) {
    .about-container-wrapper.style3 .about-main-content .about-content .about-clint-box {
        margin-bottom: 30px
    }
}

@media(max-width: 767px) {
    .about-container-wrapper.style3 .about-main-content .about-content .about-clint-box {
        flex-wrap: wrap
    }
}

.about-container-wrapper.style3 .about-main-content .about-content .about-clint-box .about-auth {
    max-width: 225px;
    text-align: center;
    border: 1px solid var(--border-2);
    padding: 27px 52px;
    border-radius: 10px
}

.about-container-wrapper.style3 .about-main-content .about-content .about-clint-box .about-auth .title {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    padding-top: 6px
}

.about-container-wrapper.style3 .about-main-content .about-content .about-clint-box .about-auth .text {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    padding-top: 6px
}

.about-container-wrapper.style3 .about-main-content .about-content .about-clint-box .about-text .text {
    color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding-right: 50px;
    padding-bottom: 20px
}

.about-container-wrapper.style3 .about-main-content .about-content .about-clint-box .about-text ul li {
    margin-bottom: 20px;
    color: var(--text);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding: 0 0 0 25px;
    position: relative;
}

.about-container-wrapper.style3 .about-main-content .about-content .about-clint-box .about-text ul li {}

.about-container-wrapper.style3 .about-main-content .about-content .about-clint-box .about-text ul li::before {
    content: "";
    color: var(--theme);
    font-family: "Font Awesome 5 pro";
    position: absolute;
    height: auto;
    width: auto;
    display: block;
    left: 0;
    font-size: 20px;
    font-weight: 900;
}

@media(max-width: 1199px) {
    .about-container-wrapper.style3 .about-main-content .about-content .about-clint-box .about-text .text {
        padding-right: 0
    }
}

.about-container-wrapper.style3 .about-main-content .about-content .about-clint-box .about-text .btn-wrapper .theme-btn {
    padding: 16px 26px;
    white-space: nowrap
}

.about-container-wrapper.style3 .about-main-content .about-thumb img {
    width: 100%;
    border-radius: 20px
}

.about-container-wrapper.style3 .counter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px
}

@media(max-width: 1199px) {
    .about-container-wrapper.style3 .counter-wrapper {
        padding-top: 80px
    }
}

@media(max-width: 767px) {
    .about-container-wrapper.style3 .counter-wrapper {
        padding-top: 40px;
        flex-wrap: wrap
    }
}

.about-container-wrapper.style3 .counter-wrapper .counter_item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative
}

@media(max-width: 575px) {
    .about-container-wrapper.style3 .counter-wrapper .counter_item {
        justify-content: left
    }
}

.about-container-wrapper.style3 .counter-wrapper .counter_item:last-child::after {
    display: none
}

.about-container-wrapper.style3 .counter-wrapper .counter_item::after {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background-color: var(--head-color-3);
    width: 1px;
    height: 60px
}

@media(max-width: 991px) {
    .about-container-wrapper.style3 .counter-wrapper .counter_item::after {
        display: none
    }
}

.about-container-wrapper.style3 .counter-wrapper .counter_item h3 {
    color: var(--head-color-3);
    font-family: "Jost", sans-serif;
    font-size: 101px;
    font-style: normal;
    font-weight: 300;
    line-height: 120px
}

@media(max-width: 1199px) {
    .about-container-wrapper.style3 .counter-wrapper .counter_item h3 {
        font-size: 60px;
        line-height: 80px
    }
}

@media(max-width: 470px) {
    .about-container-wrapper.style3 .counter-wrapper .counter_item h3 {
        font-size: 40px;
        line-height: 50px
    }
}

.about-container-wrapper.style3 .counter-wrapper .counter_item .text {
    color: var(--head-color-3);
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase
}

.about-container-wrapper.style4 {
    background-color: #1e1e1e;
    margin: 0 80px
}

@media(max-width: 767px) {
    .about-container-wrapper.style4 {
        margin: 0
    }
}

.about-container-wrapper.style4 .about-wrapper.style4 .about_top .about-content .text {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px;
    text-transform: capitalize;
    padding-bottom: 30px
}

.about-container-wrapper.style4 .about-wrapper.style4 .about_top .about-content .about-list li {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px;
    text-transform: capitalize;
    padding-bottom: 10px
}

.about-container-wrapper.style4 .about-wrapper.style4 .about_top .about-content .about-list li span {
    padding-right: 10px
}

.about-container-wrapper.style4 .about-wrapper.style4 .about_top .about-content .btn-wrapper {
    margin-top: 40px
}

.about-container-wrapper.style4 .about-wrapper.style4 .about_top .about-content .btn-wrapper .theme-btn {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--theme4);
    border-radius: 0;
    font-family: "Kanit", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    text-transform: uppercase
}

.counter-wrapper.style4 {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-top: 120px
}

@media(max-width: 1199px) {
    .counter-wrapper.style4 {
        margin-top: 80px;
        flex-wrap: wrap;
        gap: 30px
    }
}

.counter-wrapper.style4 .counter_item {
    display: flex;
    align-items: center;
    position: relative
}

.counter-wrapper.style4 .counter_item::after {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background-color: var(--theme4);
    width: 1px;
    height: 60px
}

@media(max-width: 1199px) {
    .counter-wrapper.style4 .counter_item::after {
        display: none
    }
}

.counter-wrapper.style4 .counter_item:last-child::after {
    display: none
}

.counter-wrapper.style4 .counter_item h3 {
    font-family: "Teko", sans-serif;
    font-size: 190px;
    font-style: normal;
    font-weight: 300;
    line-height: 190px
}

@media(max-width: 1399px) {
    .counter-wrapper.style4 .counter_item h3 {
        font-size: 150px;
        line-height: 150px
    }
}

@media(max-width: 767px) {
    .counter-wrapper.style4 .counter_item h3 {
        font-size: 100px;
        line-height: 100px
    }
}

.counter-wrapper.style4 .counter_item p {
    font-family: "Teko", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    text-transform: uppercase
}

.bg-text {
    background: linear-gradient(180deg, #FFF 20%, #B90808 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.work-process-box.style1 {
    text-align: center;
    max-width: 210px;
    margin: auto
}

.work-process-box.style1.child2 {
    margin-top: 55px
}

.work-process-box.style1 .step {
    color: var(--theme);
    text-align: center;
    font-family: "Syne", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.32px;
    display: inline-flex;
    height: 24px;
    padding: 7px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: rgba(116, 68, 253, .15);
    margin-bottom: 10px
}

.work-process-box.style1 .title {
    color: var(--title);
    text-align: center;
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: -0.48px;
    margin-bottom: 8px
}

.work-process-box.style1 .text {
    color: var(--text);
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.32px
}

.work-process-wrapper.style1 {
    position: relative;
    margin-top: 85px
}

.work-process-wrapper.style1 .shape {
    position: absolute;
    bottom: 0;
    right: 0
}

.work-process-container-wrapper.style4 {
    background-color: #1e1e1e;
    margin: 0 80px
}

@media(max-width: 767px) {
    .work-process-container-wrapper.style4 {
        margin: 0
    }
}

.work-process-container-wrapper.style4 .work-process-top .thumb img {
    width: 100%
}

@media(max-width: 1399px) {
    .work-process-container-wrapper.style4 .work-process-top .title {
        font-size: 70px
    }
}

@media(max-width: 1199px) {
    .work-process-container-wrapper.style4 .work-process-top .title {
        margin-top: 30px
    }
}

@media(max-width: 767px) {
    .work-process-container-wrapper.style4 .work-process-top .title {
        font-size: 46px;
        line-height: 50px
    }
}

@media(max-width: 450px) {
    .work-process-container-wrapper.style4 .work-process-top .title {
        font-size: 36px;
        line-height: 40px
    }
}

.work-process-container-wrapper .work-process-item-wrapper {
    position: relative;
    margin-top: 80px
}

.work-process-container-wrapper .work-process-item-wrapper::after {
    position: absolute;
    left: 0;
    top: 45px;
    content: "";
    background: rgba(255, 255, 255, .5);
    height: 1px;
    width: 80%;
    z-index: 1
}

@media(max-width: 991px) {
    .work-process-container-wrapper .work-process-item-wrapper::after {
        display: none
    }
}

.work-process-item.style3 {
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.work-process-item.style3 .serial-number {
    position: relative
}

.work-process-item.style3 .serial-number .icon-wrapper {
    stroke-width: 4px;
    filter: 0px 4px 13px rgba(19, 16, 34, .06) 0px 4.8px 24.4px rgba(19, 16, 34, .1);
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 4px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%)
}

.work-process-item.style3 .serial-number .icon-wrapper.bg_one {
    background-color: var(--theme-color-3)
}

.work-process-item.style3 .serial-number .icon-wrapper.bg_two {
    background-color: #fed5b7
}

.work-process-item.style3 .serial-number .icon-wrapper.bg_three {
    background-color: #e2ffd0
}

.work-process-item.style3 .serial-number .icon-wrapper.bg_four {
    background-color: #e2ffd0
}

.work-process-item.style3 .serial-number .number-block {
    border-radius: 50%;
    border: 1px solid #e3e3e3;
    background: var(--white);
    height: 160px;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto
}

.work-process-item.style3 .serial-number .number-block .number {
    color: var(--text);
    text-align: center;
    font-family: "Syne", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58.56px
}

.work-process-item.style3 .content {
    padding-top: 10px
}

.work-process-item.style3 .content .text {
    color: var(--title-color-3);
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px
}

.work-process-item.style3 .content-over {
    position: absolute;
    min-height: 300px;
    width: 100%;
    top: auto;
    left: 0;
    right: 0;
    bottom: 100%;
    opacity: 0;
    border-radius: 10px;
    background: var(--theme);
    color: var(--white);
    padding: 30px 20px;
    transition: all 0.5s ease-in-out;

}

.work-process-item.style3 .content-over p {
    text-align: center;
}

.work-process-item.style3:hover .content-over {
    bottom: 0;
    opacity: 1;
}

.work-process-item.style4 {
    position: relative;
    z-index: 9
}

@media(max-width: 991px) {
    .work-process-item.style4 {
        margin-bottom: 30px
    }
}

.work-process-item.style4 .icon-wrapper {
    background-color: #313131;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9
}

.work-process-item.style4 .icon-wrapper .badge {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: var(--theme4);
    display: flex;
    align-items: center;
    justify-content: center
}

.work-process-item.style4 .content {
    padding-top: 30px
}

@media(max-width: 1199px) {
    .work-process-item.style4 .content {
        padding-top: 0
    }
}

.work-process-item.style4 .content .title {
    color: var(--white);
    font-family: "Teko", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase;
    padding-bottom: 10px
}

.work-process-item.style4 .content .text {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.94px;
    text-transform: capitalize
}

.wcu-wrapper.style1 {
    margin-top: 60px
}

.wcu-wrapper.style1 .wcu-thumb img {
    max-width: 100%
}

.counter-wrapper.style1 {
    border-radius: 30px;
    background: var(--theme);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px
}

.counter-box.style1 .counter .counter-number {
    color: var(--white);
    font-family: "Syne", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100px;
    letter-spacing: -1.6px
}

.counter-box.style1 .counter .plus {
    color: var(--white);
    font-family: "Syne", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100px;
    letter-spacing: -1.6px
}

.counter-box.style1 .text {
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.36px
}

.cta-container-wrapper.style1 {
    /* margin-top: -418px; */
    padding: 140px 0
}

@media(max-width: 991px) {
    .cta-container-wrapper.style1 {
        padding: 80px 0
    }
}

.cta-container-wrapper.style1 .cta_content {
    position: relative;
    border: 1px solid var(--text);
    padding: 30px;
    border-radius: 20px
}

.cta-container-wrapper.style1 .cta_content_top {
    display: grid;
    align-items: center;
    grid-template-columns: 1.1fr .9fr;
    border-bottom: 1px solid var(--text);
    margin-bottom: 50px
}

@media(max-width: 991px) {
    .cta-container-wrapper.style1 .cta_content_top {
        grid-template-columns: 1.2fr .8fr
    }
}

@media(max-width: 767px) {
    .cta-container-wrapper.style1 .cta_content_top {
        grid-template-columns: 1fr
    }
}

.cta-container-wrapper.style1 .cta_content_top .title {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700
}

@media(max-width: 1199px) {
    .cta-container-wrapper.style1 .cta_content_top .title {
        font-size: 45px
    }

    .cta-container-wrapper.style1 .cta_content_top .title br {
        display: none
    }
}

@media(max-width: 767px) {
    .cta-container-wrapper.style1 .cta_content_top .title {
        font-size: 40px
    }
}

@media(max-width: 500px) {
    .cta-container-wrapper.style1 .cta_content_top .title {
        font-size: 30px
    }
}

.cta-container-wrapper.style1 .cta_content_top img {
    margin-top: -173px;
    width: 100%
}

@media(max-width: 991px) {
    .cta-container-wrapper.style1 .cta_content_top img {
        margin-top: -100px
    }
}

@media(max-width: 767px) {
    .cta-container-wrapper.style1 .cta_content_top img {
        display: none
    }
}

.cta-container-wrapper.style1 .cta_content_bottom {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 410px
}

@media(max-width: 991px) {
    .cta-container-wrapper.style1 .cta_content_bottom {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.cta-container-wrapper.style1 .cta_content_bottom_left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap
}

@media(max-width: 575px) {
    .cta-container-wrapper.style1 .cta_content_bottom_left {
        gap: 10px
    }
}

.cta-container-wrapper.style1 .cta_content_bottom_left .video_play_btn {
    display: flex;
    align-items: center;
    gap: 10px
}

.cta-container-wrapper.style1 .cta_content_bottom_left .video_play_btn svg circle {
    fill: var(--theme)
}

.cta-container-wrapper.style1 .cta_content_bottom_left .video_play_btn svg path {
    fill: var(--black)
}

.cta-container-wrapper.style1 .cta_content_bottom_left .video_play_btn .video-wrap {
    position: relative
}

.cta-container-wrapper.style1 .cta_content_bottom_left .video_play_btn .video-wrap .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    animation: 6s rippleOne linear infinite
}

.cta-container-wrapper.style1 .cta_content_bottom_right p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    text-align: right
}

@media(max-width: 991px) {
    .cta-container-wrapper.style1 .cta_content_bottom_right p {
        text-align: left
    }
}

.cta-container-wrapper.style2 {
    padding: 205px 0 120px 0
}

@media(max-width: 991px) {
    .cta-container-wrapper.style2 {
        padding: 80px 0
    }
}

.cta-container-wrapper.style2 .cta-wrapper {
    border-radius: 40px;
    background: var(--theme)
}

.cta-container-wrapper.style2 .cta-wrapper .cta-content {
    padding: 80px 0 40px 80px
}

@media(max-width: 470px) {
    .cta-container-wrapper.style2 .cta-wrapper .cta-content {
        padding: 40px 0 20px 20px
    }
}

.cta-container-wrapper.style2 .cta-wrapper .cta-content h2 {
    color: var(--white);
    font-family: "Syne", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px
}

@media(max-width: 470px) {
    .cta-container-wrapper.style2 .cta-wrapper .cta-content h2 {
        font-size: 43px;
        line-height: 53px
    }
}

.cta-container-wrapper.style2 .cta-wrapper .cta-content p {
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.cta-container-wrapper.style2 .cta-wrapper .btn-wrapper {
    padding: 0 0 30px 80px;
}

@media(max-width: 470px) {
    .cta-container-wrapper.style2 .cta-wrapper .btn-wrapper {
        padding-left: 20px
    }
}

.cta-container-wrapper.style2 .cta-wrapper .btn-wrapper a {
    display: inline-block
}

.cta-container-wrapper.style2 .cta-wrapper .cta-thumb {
    padding: 60px 60px 0 0;
    text-align: end
}

@media(max-width: 470px) {
    .cta-container-wrapper.style2 .cta-wrapper .cta-thumb {
        padding: 40px 0 0 0
    }
}

.cta-container-wrapper.style2 .cta-wrapper .cta-thumb img {
    max-width: 100%;
    max-height: 100%
}

@media(max-width: 991px) {
    .cta-container-wrapper.style2 .cta-wrapper .cta-thumb {
        text-align: center
    }
}

@media(max-width: 767px) {
    .cta-container-wrapper.style2 .cta-wrapper .cta-thumb {
        text-align: center
    }
}

.cta-container-wrapper.style3 {
    margin-top: -420px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9
}

@media(max-width: 1199px) {
    .cta-container-wrapper.style3 {
        margin-top: 0;
        position: static;
        left: 0;
        transform: translateX(0)
    }
}

.cta-container-wrapper.style3 .cta-wrapper {
    background-color: var(--theme-color-3);
    padding: 90px 150px 70px 150px;
    border-radius: 15px;
    width: 100%
}

@media(max-width: 1199px) {
    .cta-container-wrapper.style3 .cta-wrapper {
        padding: 60px
    }
}

@media(max-width: 450px) {
    .cta-container-wrapper.style3 .cta-wrapper {
        padding: 40px
    }
}

.cta-container-wrapper.style3 .cta-wrapper .cta-top {
    max-width: 600px;
    margin: 0 auto;
    text-align: center
}

.cta-container-wrapper.style3 .cta-wrapper .cta-top .title {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 120px;
    font-style: normal;
    font-weight: 400;
    line-height: 112px;
    text-transform: capitalize;
    padding-bottom: 30px
}

@media(max-width: 1199px) {
    .cta-container-wrapper.style3 .cta-wrapper .cta-top .title {
        font-size: 90px;
        line-height: 100px
    }
}

@media(max-width: 767px) {
    .cta-container-wrapper.style3 .cta-wrapper .cta-top .title {
        font-size: 52px;
        line-height: 60px
    }
}

@media(max-width: 450px) {
    .cta-container-wrapper.style3 .cta-wrapper .cta-top .title {
        font-size: 30px;
        line-height: 40px
    }
}

.cta-container-wrapper.style3 .cta-wrapper .cta-top .btn-wrapper .theme-btn {
    border-radius: 100px;
    width: 225px;
    margin: 0 auto;
    text-align: center;
    padding: 16px 32px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center
}

.cta-container-wrapper.style3 .cta-wrapper .cta-thumb-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 40px
}

@media(max-width: 450px) {
    .cta-container-wrapper.style3 .cta-wrapper .cta-thumb-wrapper {
        display: none
    }
}

.cta-container-wrapper.style3 .cta-wrapper .cta-thumb-wrapper .thumb img {
    border-radius: 12px
}

@media(max-width: 1199px) {
    .cta-container-wrapper.style3 .cta-wrapper .cta-thumb-wrapper .thumb img {
        width: 100%
    }
}

.cta-container-wrapper.style4 {
    padding: 200px 0 140px 0
}

@media(max-width: 1199px) {
    .cta-container-wrapper.style4 {
        padding: 150px 0 100px 0
    }
}

.cta-container-wrapper.style4 .cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.cta-container-wrapper.style4 .cta-wrapper .content .title {
    color: var(--white);
    font-family: "Teko", sans-serif;
    font-size: 150px;
    font-style: normal;
    font-weight: 300;
    line-height: 90px;
    text-transform: uppercase
}

@media(max-width: 1199px) {
    .cta-container-wrapper.style4 .cta-wrapper .content .title {
        font-size: 120px
    }
}

@media(max-width: 991px) {
    .cta-container-wrapper.style4 .cta-wrapper .content .title {
        font-size: 100px
    }
}

@media(max-width: 575px) {
    .cta-container-wrapper.style4 .cta-wrapper .content .title {
        font-size: 60px;
        line-height: 80px
    }
}

.cta-container-wrapper.style4 .cta-wrapper .content .title span {
    display: block;
    font-size: 80px;
    padding-top: 10px
}

@media(max-width: 1199px) {
    .cta-container-wrapper.style4 .cta-wrapper .content .title span {
        font-size: 60px
    }
}

@media(max-width: 575px) {
    .cta-container-wrapper.style4 .cta-wrapper .content .title span {
        font-size: 40px;
        padding-top: 0;
        line-height: 50px
    }
}

.cta-container-wrapper.style4 .cta-wrapper .cta_play_btn {
    display: flex;
    align-items: center;
    gap: 10px
}

@media(max-width: 767px) {
    .cta-container-wrapper.style4 .cta-wrapper .cta_play_btn {
        display: none
    }
}

.faq-container-wrapper .section-title {
    margin-bottom: 60px;
    max-width: 750px
}

.faq-container-wrapper .section-title p {
    max-width: 570px
}

.faq-container-wrapper .content-thumb img {
    max-width: 100%;
    max-height: 100%
}

.faq-content .accordion-item {
    border: 0;
    background-color: var(--white);
    border: 2px solid var(--title);
    border-radius: 20px
}

.faq-content .accordion-item .accordion-header {
    border-radius: 20px
}

.faq-content .accordion-item .accordion-header .accordion-button {
    font-weight: 600;
    color: var(--title);
    box-shadow: none;
    background-color: var(--white);
    padding: 25px 30px 0;
    text-transform: capitalize;
    font-size: 30px;
    border-radius: 20px
}

@media(max-width: 767px) {
    .faq-content .accordion-item .accordion-header .accordion-button {
        padding: 25px 25px 0px 25px;
        font-size: 20px;
        line-height: 30px
    }
}

.faq-content .accordion-item .accordion-header .accordion-button:after {
    font-weight: 500;
    transition: all .3s ease-in-out !important;
    background-image: url(../images/logo/faqIcon.svg);
    color: #fff;
    transform: rotate(0deg)
}

.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed) :after {
    background-image: url(../images/logo/faqIcon.svg);
    font-weight: 500;
    color: #fff;
    transform: rotate(90deg)
}

.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
    background-color: rgba(0, 0, 0, 0);
    padding: 31px 30px;
    color: var(--900, #0C0C0C);
    font-family: Syne;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    text-transform: capitalize;
    border-radius: 20px
}

@media(max-width: 767px) {
    .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
        padding: 25px;
        font-size: 20px;
        line-height: 30px
    }
}

@media(max-width: 450px) {
    .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
        padding: 16px;
        font-size: 18px
    }
}

.faq-content .accordion-item .accordion-collapse {
    border: none
}

.faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 150px;
    padding-left: 30px;
    padding-top: 15px;
    color: var(--title);
    background-color: var(--white);
    border-radius: 20px
}

@media(max-width: 767px) {
    .faq-content .accordion-item .accordion-collapse .accordion-body {
        padding: 25px
    }
}

.faq-wrapper.style3 .accordion {
    margin-top: 30px
}

.faq-wrapper.style3 .accordion .er-accordion-item {
    border: 1px solid var(--text);
    margin-bottom: 30px;
    border-radius: 20px
}

.faq-wrapper.style3 .accordion .er-accordion-item:last-child {
    margin-bottom: 0
}

.faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-header {
    margin: 0;
    transition: all .3s ease
}

.faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-button {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    display: flex;
    text-transform: capitalize;
    padding: 23px 30px 23px 30px;
    width: 100%;
    justify-content: space-between;
    align-items: start;
    position: relative;
    cursor: pointer;
}

@media(max-width: 1199px) {
    .faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-button {
        font-size: 24px
    }
}

@media(max-width: 767px) {
    .faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-button {
        font-size: 20px;
        padding: 15px 30
    }
}

@media(max-width: 450px) {
    .faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-button {
        padding: 10px
    }
}

.faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-button .icon {
    z-index: 11
}

.faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-button .icon i {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    border: 1px solid var(--text);
    color: var(--title);
    font-size: 16px;
    display: inline-block
}

.faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-button.collapsed .icon {
    transform: rotate(-90deg)
}

.faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-button.collapsed .icon i {
    color: var(--title)
}

.faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-body {
    padding: 0 30px 30px 30px;
    fill: var(--white);
    border-top: 0
}

@media(max-width: 500px) {
    .faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-body {
        padding: 0 30px 30px 30px
    }
}

@media(max-width: 450px) {
    .faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-body {
        padding: 10px
    }
}

.faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-body p {
    color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px
}

.faq-wrapper.style3 .accordion .er-accordion-item .er-accordion-body ul {
    list-style: circle;
    margin: 5px 0;
    padding: 0 0 0 20px;
}

.mugli-accordion-header {
    background: #fff;
    box-shadow: 20px 20px 60px 0px rgba(0, 0, 1, .05);
    margin: 0;
    transition: all .4s ease-in-out
}

.mugli-accordion-button {
    padding: 34px 34px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1e1e;
    color: var(--white);
    font-family: "Teko", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0);
    transition: all .3s linear
}

@media(max-width: 450px) {
    .mugli-accordion-button {
        padding: 10px 10px 10px;
        font-size: 24px
    }
}

.mugli-accordion-button span {
    margin-left: 30px;
    font-size: 16px;
    display: inline-block;
    color: #fff;
    z-index: 11
}

.mugli-accordion-button.collapsed {
    padding: 34px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #151515;
    color: var(--white);
    font-family: "Teko", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase;
    border: 1px solid #1e1e1e
}

@media(max-width: 450px) {
    .mugli-accordion-button.collapsed {
        padding: 10px;
        font-size: 24px
    }
}

.mugli-accordion-button.collapsed span {
    transform: rotate(-90deg)
}

.mugli-accordion-button.collapsed:after {
    border-bottom: 64px solid #202020
}

.mugli-accordion-body {
    padding: 0px 40px 35px;
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.94px;
    text-transform: capitalize;
    background-color: #1e1e1e;
    color: var(--white)
}

@media(max-width: 450px) {
    .mugli-accordion-body {
        padding: 0 10px 10px;
        font-size: 16px
    }
}

.blog_wrapper.style1 {
    padding: 120px 0 553px
}

@media(max-width: 767px) {
    .blog_wrapper.style1 {
        padding: 120px 0 380px
    }
}

.blog_wrapper {
    background: var(--theme2);
    border-radius: 60px
}

@media(max-width: 991px) {
    .blog_wrapper {
        padding: 80px 0
    }
}

.blog_wrapper .blog_content_title {
    display: grid;
    grid-template-columns: 700px max-content;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px
}

@media(max-width: 991px) {
    .blog_wrapper .blog_content_title {
        grid-template-columns: 1fr;
        justify-content: flex-start
    }
}

.blog_wrapper .blog_content_title_left .title {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px
}

@media(max-width: 1199px) {
    .blog_wrapper .blog_content_title_left .title {
        font-size: 45px
    }

    .blog_wrapper .blog_content_title_left .title br {
        display: none
    }
}

@media(max-width: 767px) {
    .blog_wrapper .blog_content_title_left .title {
        font-size: 40px
    }
}

@media(max-width: 500px) {
    .blog_wrapper .blog_content_title_left .title {
        font-size: 30px
    }
}

.blog_wrapper .blog_content_title_right .btn-wrapper {
    width: -moz-max-content;
    width: max-content
}

@media(max-width: 1199px) {
    .blog_wrapper .blog_content_title_right .btn-wrapper {
        margin-top: 20px
    }
}

.single_blog.style1 {
    display: grid;
    grid-template-columns: 1fr .5fr .5fr;
    align-items: center;
    gap: 70px;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 30px
}

@media(max-width: 1199px) {
    .single_blog.style1 {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px
    }
}

.single_blog.style1 .single_blog_thumb img {
    width: 100%
}

.single_blog.style1 .single_blog_info_head {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

@media(max-width: 1199px) {
    .single_blog.style1 .single_blog_info_head {
        gap: 10px
    }
}

.single_blog.style1 .single_blog_info_head .comments,
.single_blog.style1 .single_blog_info_head .date {
    color: var(--text);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

@media(max-width: 1199px) {

    .single_blog.style1 .single_blog_info_head .comments,
    .single_blog.style1 .single_blog_info_head .date {
        font-size: 16px;
        margin-bottom: 10px
    }
}

.single_blog.style1 .single_blog_info_body h2 {
    line-height: 37.5px
}

.single_blog.style1 .single_blog_info_body h2 a {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    text-transform: capitalize
}

@media(max-width: 767px) {
    .single_blog.style1 .single_blog_info_body h2 a {
        font-size: 20px;
        margin-bottom: 30px
    }
}

.single_blog.style1 .single_blog_button .btn-wrapper .theme-btn-2 {
    border: 1px solid
}

.blog-page {
    margin-bottom: 120px
}

.blog-page .blog-post-details .single-blog-post {
    background: #f5f1ea;
    border-radius: 20px;
    margin-bottom: 60px
}

.blog-page .blog-post-details .single-blog-post .post-featured-thumb {
    position: relative
}

.blog-page .blog-post-details .single-blog-post .post-featured-thumb img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 20px 20px 0px 0px
}

.blog-page .blog-post-details .single-blog-post .post-featured-thumb .content-date {
    position: absolute;
    top: 0;
    right: 2px
}

.blog-page .blog-post-details .single-blog-post .post-featured-thumb .content-date h4 {
    padding: 10px 15px;
    background: var(--theme);
    border-radius: 0px 20px 0px 5px;
    display: inline-block;
    color: var(--white);
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px
}

.blog-page .blog-post-details .single-blog-post .post-featured-thumb .content-meta {
    position: absolute;
    bottom: 0;
    left: auto
}

.blog-page .blog-post-details .single-blog-post .post-featured-thumb .content-meta ul {
    display: flex;
    align-items: center;
    background: var(--theme);
    border-radius: 0px 5px 0px 0px;
    width: 328px;
    height: 47px;
    justify-content: space-between;
    padding: 10px
}

@media(max-width: 450px) {
    .blog-page .blog-post-details .single-blog-post .post-featured-thumb .content-meta ul {
        width: 290px
    }
}

.blog-page .blog-post-details .single-blog-post .post-featured-thumb .content-meta ul li {
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.blog-page .blog-post-details .single-blog-post .post-featured-thumb .content-meta ul li i {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    padding-right: 5px
}

.blog-page .blog-post-details .single-blog-post .post-content {
    padding: 40px
}

@media(max-width: 767px) {
    .blog-page .blog-post-details .single-blog-post .post-content {
        padding: 25px
    }
}

.blog-page .blog-post-details .single-blog-post .post-content h3 {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 20px
}

.blog-page .blog-post-details .single-blog-post .post-content h3 a {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px
}

@media(max-width: 767px) {
    .blog-page .blog-post-details .single-blog-post .post-content h3 {
        font-size: 26px;
        line-height: 35px
    }

    .blog-page .blog-post-details .single-blog-post .post-content h3 a {
        font-size: 26px;
        line-height: 35px
    }
}

@media(max-width: 767px)and (max-width: 450px) {
    .blog-page .blog-post-details .single-blog-post .post-content h3 a {
        font-size: 22px;
        line-height: 30px
    }
}

@media(max-width: 450px) {
    .blog-page .blog-post-details .single-blog-post .post-content h3 {
        font-size: 22px
    }
}

.blog-page .blog-post-details .single-blog-post .post-content p {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 40px
}

.blog-page .blog-post-details .single-blog-post .post-content a {
    display: inline-block;
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px
}

.blog-page .blog-post-details .single-blog-post .post-content a i {
    color: var(--theme);
    font-size: 14px;
    font-weight: 900;
    line-height: normal;
    padding-left: 10px
}

.blog-page .blog-post-details .single-blog-post.style2 {
    background: rgba(0, 0, 0, 0);
    border-radius: 20px;
    margin-bottom: 0
}

.blog-page .blog-post-details .single-blog-post.style2 .post-content {
    padding: 40px 0 0 0
}

.blog-page .blog-post-details .single-blog-post.style2 .post-content p {
    margin-bottom: 30px
}

.blog-page .blog-post-details.style2 .hilight-text {
    padding: 60px 60px 40px 60px;
    border-radius: 10px;
    border: 1px solid var(--theme);
    background: #f5f1ea;
    position: relative;
    margin-top: 60px
}

@media(max-width: 1199px) {
    .blog-page .blog-post-details.style2 .hilight-text {
        padding: 40px 25px 25px
    }
}

.blog-page .blog-post-details.style2 .hilight-text p {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 20px
}

.blog-page .blog-post-details.style2 .hilight-text h4 {
    color: #1a1a1a;
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px
}

.blog-page .blog-post-details.style2 .hilight-text span {
    color: #898989;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-top: 60px
}

.blog-page .blog-post-details.style2 .hilight-text .icon {
    position: absolute;
    top: -30px;
    left: 60px
}

.blog-page .blog-post-details.style2 .details-image {
    margin-top: 60px
}

.blog-page .blog-post-details.style2 .details-image img {
    border-radius: 20px
}

@media(max-width: 767px) {
    .blog-page .blog-post-details.style2 .details-image img {
        max-width: 100%
    }
}

.blog-page .blog-post-details.style2 .content-items {
    margin-top: 30px
}

.blog-page .blog-post-details.style2 .content-items ul li {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 20px
}

.blog-page .blog-post-details.style2 .content-items ul li::before {
    content: "";
    color: #3c2bff;
    font-family: "Font Awesome 5 pro";
    position: relative;
    font-size: 20px;
    font-weight: 900;
    margin-right: 10px
}

.blog-page .blog-post-details.style2 .comment-part .comment-header {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    align-items: center
}

.blog-page .blog-post-details.style2 .comment-part .comment-header h5 a {
    color: #1a1a1a;
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px
}

.blog-page .blog-post-details.style2 .comment-part .comment-header h5 a i {
    color: #3c2bff;
    font-size: 14px;
    font-weight: 900
}

@media(max-width: 1199px) {
    .blog-page .blog-post-details.style2 .comment-part .comment-header h5 a {
        font-size: 20px;
        line-height: 1
    }
}

.blog-page .blog-post-details.style2 .comment-part .comment-title {
    margin-top: 60px;
    padding-bottom: 20px
}

.blog-page .blog-post-details.style2 .comment-part .comment-title h4 {
    color: #1a1a1a;
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px
}

.blog-page .blog-post-details.style2 .comment-part .comment-items {
    display: flex;
    margin-top: 20px
}

.blog-page .blog-post-details.style2 .comment-part .comment-items .itens-thumb img {
    border-radius: 20px;
    border: 1px solid var(--White, #FFF);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, .1);
    max-width: 100%;
    max-height: 100%
}

.blog-page .blog-post-details.style2 .comment-part .comment-items .items-content {
    margin-left: 24px;
    margin-right: 116px;
    border-bottom: 1px solid #ccc
}

@media(max-width: 767px) {
    .blog-page .blog-post-details.style2 .comment-part .comment-items .items-content {
        margin-right: 30px
    }
}

.blog-page .blog-post-details.style2 .comment-part .comment-items .items-content h4 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px
}

.blog-page .blog-post-details.style2 .comment-part .comment-items .items-content p {
    color: #898989;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 20px
}

.blog-page .blog-post-details.style2 .comment-part .comment-items .items-content .content-meta {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 450px) {
    .blog-page .blog-post-details.style2 .comment-part .comment-items .items-content .content-meta {
        flex-wrap: wrap
    }
}

.blog-page .blog-post-details.style2 .comment-part .comment-items .items-content .content-meta span {
    color: var(--800, #898989);
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 17px
}

@media(max-width: 450px) {
    .blog-page .blog-post-details.style2 .comment-part .comment-items .items-content .content-meta span {
        margin-bottom: 7px
    }
}

.blog-page .blog-post-details.style2 .comment-part .comment-items .items-content .content-meta a {
    color: #1a1a1a;
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.blog-page .contact-items {
    margin-top: 60px
}

.blog-page .contact-items .title-area {
    margin-bottom: 40px
}

.blog-page .contact-items .title-area h2 {
    color: var(--900, #1A1A1A);
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px
}

@media(max-width: 450px) {
    .blog-page .contact-items .title-area h2 {
        font-size: 30px
    }
}

.blog-page .contact-items .contact-content {
    padding: 60px;
    border-radius: 20px;
    background: #f5f1ea
}

@media(max-width: 767px) {
    .blog-page .contact-items .contact-content {
        padding: 25px
    }
}

.blog-page .contact-items .contact-content h2 {
    margin-bottom: 10px
}

.blog-page .contact-items .contact-content .contact-form-items .form-clt span {
    color: var(--title);
    font-weight: 600;
    text-transform: capitalize
}

.blog-page .contact-items .contact-content .contact-form-items .form-clt input,
.blog-page .contact-items .contact-content .contact-form-items .form-clt textarea {
    margin-bottom: 35px;
    color: red;
    padding: 15px 20px;
    border-radius: 5px;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    border: 1px solid #ccc;
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.blog-page .contact-items .contact-content .contact-form-items .form-clt input::-moz-placeholder,
.blog-page .contact-items .contact-content .contact-form-items .form-clt textarea::-moz-placeholder {
    color: var(--title)
}

.blog-page .contact-items .contact-content .contact-form-items .form-clt input::placeholder,
.blog-page .contact-items .contact-content .contact-form-items .form-clt textarea::placeholder {
    color: var(--title)
}

.blog-page .contact-items .contact-content .contact-form-items .form-clt textarea {
    padding-bottom: 150px;
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    border: 1px solid #ccc;
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    height: 158px
}

.blog-page .contact-items .contact-content .contact-form-items button.gt-btn {
    color: var(--White, #FFF);
    font-family: Syne;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
    border-radius: 5px;
    background: var(--P2, #00bdad);
    padding: 20px 30px;
    width: 100%;
    text-align: center
}

.blog-container-wrapper.style3 {
    padding: 120px 0 545px 0
}

@media(max-width: 1199px) {
    .blog-container-wrapper.style3 {
        padding: 80px 0
    }
}

.blog-container-wrapper.style3 .flexbox-title {
    padding-bottom: 30px
}

.blog-container-wrapper.style3 .flexbox-title .btn-wrapper .theme-btn {
    background-color: var(--head-color-3);
    color: var(--white);
    white-space: nowrap;
    width: 207px;
    text-align: center;
    padding: 21px 36px
}

.blog-item.style3 {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px 47px 30px 30px;
    display: flex;
    align-items: center;
    gap: 30px
}

@media(max-width: 1399px) {
    .blog-item.style3 {
        padding: 30px
    }
}

@media(max-width: 1199px) {
    .blog-item.style3 {
        flex-wrap: wrap
    }
}

@media(max-width: 450px) {
    .blog-item.style3 {
        padding: 20px
    }
}

.blog-item.style3 .thumb {
    min-width: 220px
}

.blog-item.style3 .thumb img {
    max-width: 100%
}

.blog-item.style3 .content .text {
    color: var(--text-color-3);
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 14px
}

.blog-item.style3 .content .title {
    color: var(--title-color-3);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.28px
}

@media(max-width: 450px) {
    .blog-item.style3 .content .title {
        font-size: 20px
    }
}

.pagination_area.style1 {
    margin-top: 80px
}

.pagination_area.style1 .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.pagination_area.style1 .pagination .page-item .page-link {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    height: 67px;
    width: 67px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

@media(max-width: 450px) {
    .pagination_area.style1 .pagination .page-item .page-link {
        width: 50px;
        height: 50px;
        font-size: 20px
    }
}

.pagination_area.style1 .pagination .page-item .page-link:focus {
    z-index: 2;
    color: var(--text);
    background-color: var(--theme);
    outline: none;
    box-shadow: none
}

.pagination_area.style1 .pagination .page-item .page-link:hover {
    z-index: 2;
    color: var(--text) !important;
    background-color: var(--theme);
    outline: none;
    box-shadow: none
}

.main-sidebar .single-sidebar-widget {
    padding: 30px;
    background-color: var(--theme2);
    margin-bottom: 30px
}

.widget-title {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 5px;
    color: var(--title);
    font-family: var(--title);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize
}

.widget-title::before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 83px;
    content: "";
    background-color: var(--theme)
}

.search-widget form {
    width: 100%;
    position: relative
}

.search-widget form input {
    background: var(--white);
    font-size: 15px;
    padding: 12px 20px;
    width: 100%;
    border: none;
    color: var(--text);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px
}

.search-widget form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    font-size: 18px;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    border: none;
    color: var(--title);
    text-align: center;
    transition: background .3s ease;
    -webkit-transition: background .3s ease;
    -moz-transition: background .3s ease;
    -ms-transition: background .3s ease;
    -o-transition: background .3s ease;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px
}

.search-widget form button:hover {
    background: var(--theme);
    color: var(--white)
}

.tagcloud {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.tagcloud h6 {
    font-size: 20px
}

.tagcloud a.active {
    background: var(--theme) !important;
    color: var(--white) !important
}

.tagcloud li {
    margin-right: 5px
}

.tagcloud li a {
    display: inline-flex;
    padding: 10px 16px;
    background: var(--white);
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-transform: capitalize;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    transition: all .4s ease-in-out;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px
}

.tagcloud li a:last-child {
    margin-right: 0
}

.tagcloud li a:hover {
    background: var(--theme) !important;
    color: var(--white) !important
}

.range__barcustom {
    padding: 16px 22px 0px 10px;
    border: 1px solid #f9f3ef;
    background: var(--white)
}

.range__barcustom .price-input {
    margin-top: 10px;
    position: relative
}

@media(max-width: 1600px) {
    .range__barcustom .price-input {
        flex-wrap: wrap
    }
}

.range__barcustom .price-input .price-wrapper {
    gap: 10px
}

.range__barcustom .price-input .field {
    display: flex;
    align-items: center;
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    text-transform: capitalize;
    width: 16%
}

.range__barcustom .price-input .field span {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    text-transform: capitalize
}

.range__barcustom .separators {
    font-size: 24px;
    line-height: 42px;
    font-weight: 500
}

.range__barcustom .field input {
    height: 100%;
    outline: none;
    background: rgba(0, 0, 0, 0);
    border: unset;
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    text-transform: capitalize;
    padding: 0
}

.range__barcustom .field input span {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    text-transform: capitalize
}

.range__barcustom input[type=number]::-webkit-outer-spin-button,
.range__barcustom input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none
}

.range__barcustom .price-input .separator {
    font-size: 14px;
    font-weight: 400;
    color: var(--white)
}

.range__barcustom .slider {
    height: 6.75px;
    position: relative;
    background: var(--title);
    border-radius: 5px
}

.range__barcustom .slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--theme)
}

.range__barcustom .range-input {
    position: relative;
    display: flex;
    justify-content: center
}

.range__barcustom .range-input input {
    position: absolute;
    width: 100%;
    height: 6.75px;
    top: -7px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0;
    outline: none
}

.range__barcustom input[type=range]::-webkit-slider-thumb {
    height: 17px;
    width: 7px;
    border-radius: 5px;
    background: var(--theme);
    border: 1.125px solid var(--theme);
    pointer-events: auto;
    -webkit-appearance: none
}

.range__barcustom .price-input .filter-btn {
    padding: 8px 30px;
    margin-left: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.range__barcustom .price-input .filter-btn:hover {
    background-color: var(--theme);
    color: var(--white) !important
}

.filter-size .input-save:not(:last-child) {
    margin-bottom: 20px
}

.filter-size .input-save input {
    width: 20px;
    height: 19px;
    background-color: var(--theme);
    outline: none;
    color: var(--theme);
    padding: 5px;
    border-radius: 4px
}

.filter-size .input-save label {
    margin-left: 20px;
    color: var(--title);
    text-transform: capitalize;
    font-weight: 600;
    text-transform: capitalize
}

.recent-box {
    padding: 20px 30px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 30px;
    border-radius: 10px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px
}

.recent-box .recent-thumb img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

.recent-box .recent-content .star {
    margin-bottom: 10px;
    margin-top: 5px
}

.recent-box .recent-content .price {
    display: flex;
    gap: 10px
}

.recent-box .recent-content .price .regular-price {
    color: var(--theme);
    font-family: "Syne", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.recent-box .recent-content .price .offer-price {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.recent-box a {
    color: var(--title);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px
}

.recent-box a:hover {
    color: var(--theme)
}

.recent-box:hover {
    border: 1px solid var(--theme)
}

.recent-box:hover a {
    color: var(--theme)
}

.recent-box:last-child {
    margin-bottom: 0
}

.page-nav-wrap {
    margin-top: 50px
}

@media(max-width: 575px) {
    .page-nav-wrap {
        margin-bottom: 30px
    }
}

.page-nav-wrap ul {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center
}

@media(max-width: 1199px) {
    .page-nav-wrap ul {
        flex-wrap: wrap
    }
}

.page-nav-wrap ul li .previous {
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    margin-right: 10px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0);
    color: var(--title);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all .4s ease-in-out
}

.page-nav-wrap ul li .previous:hover {
    background-color: var(--theme);
    color: var(--white) !important;
    border: 1px solid rgba(0, 0, 0, 0)
}

@media(max-width: 575px) {
    .page-nav-wrap ul li .previous {
        width: 35px
    }
}

.page-nav-wrap ul li .next {
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    margin-right: 10px;
    background-color: var(--white);
    color: var(--title);
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all .4s ease-in-out
}

.page-nav-wrap ul li .next:hover {
    background-color: var(--theme);
    color: var(--white) !important;
    border: 1px solid rgba(0, 0, 0, 0)
}

@media(max-width: 575px) {
    .page-nav-wrap ul li .next {
        width: 35px
    }
}

.page-nav-wrap ul li .page-numbers {
    display: block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    margin-right: 10px;
    background-color: var(--white);
    color: var(--title);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px
}

.page-nav-wrap ul li .page-numbers:hover,
.page-nav-wrap ul li .page-numbers.active {
    background-color: var(--theme);
    color: var(--white) !important;
    border: 1px solid rgba(0, 0, 0, 0)
}

@media(max-width: 575px) {
    .page-nav-wrap ul li .page-numbers {
        width: 36px;
        height: 36px;
        line-height: 36px;
        text-align: center
    }
}

.sort-bar {
    padding: 0;
    margin: 0 0 10px 0;
    border-radius: 5px
}

.sort-bar .woocommerce-result-count {
    margin-bottom: 0
}

.sort-bar .single-select {
    height: 46px;
    line-height: 46px;
    border: 1px solid #e8e8e8;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 209px;
    font-size: 16px;
    margin: 0;
    padding: 0 40px 0 20px;
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    background: var(--theme2);
    margin-bottom: 20px
}

.sort-bar .nav-pills {
    margin-left: 10px
}

.sort-bar .nav-pills .nav-link.active,
.sort-bar .nav-pills .nav-pills .show>.nav-link {
    color: var(--theme);
    background-color: rgba(0, 0, 0, 0)
}

.sort-bar .nav-link {
    color: var(--text);
    padding: 5px;
    margin-left: 5px
}

.sort-bar .nav a.active,
.sort-bar .nav a:hover {
    color: var(--theme) !important
}

.categories-list .checkbox-single {
    position: relative;
    padding-left: 18px;
    cursor: pointer
}

.categories-list .checkbox-single input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.categories-list .checkbox-single:not(:last-child) {
    margin-bottom: 10px
}

.categories-list .checkbox-single .checkbox-area .checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #e5e5e5;
    top: 9px
}

.categories-list .checkbox-single .checkbox-area .checkmark::after {
    content: ""
}

.categories-list .checkbox-single .checkbox-area input:checked~.checkmark {
    background-color: var(--theme)
}

.categories-list .checkbox-single .checkbox-area input:checked~.checkmark::after {
    content: "";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    top: -8px;
    left: 5px;
    color: var(--theme);
    font-size: 11px
}

.categories-list .checkbox-single .checkbox-area input:checked~.checkmark:after {
    display: block;
    color: var(--white)
}

.categories-list .checkbox-single .text-color {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400
}

.categories-list .checkbox-single .text-color .star {
    color: var(--theme);
    margin-right: 5px;
    font-size: 15px
}

.shop-category-list li {
    margin-bottom: 10px
}

.shop-category-list li a {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    text-transform: capitalize
}

.shop-category-list li i {
    margin-right: 8px
}

.main-sidebar2 .single-sidebar-widget {
    padding: 40px;
    background-color: var(--theme2);
    margin-bottom: 40px;
    border-radius: 20px
}

@media(max-width: 767px) {
    .main-sidebar2 .single-sidebar-widget {
        padding: 25px
    }
}

.main-sidebar2 .single-sidebar-widget:nth-child(1) {
    background: var(--theme)
}

.main-sidebar2 .single-sidebar-widget .wid-title {
    margin-bottom: 27px
}

.main-sidebar2 .single-sidebar-widget .wid-title h3 {
    position: relative;
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    text-decoration: underline;
    text-underline-offset: 8px
}

.main-sidebar2 .single-sidebar-widget .wid-title h3.fast-title {
    color: var(--white)
}

@media(max-width: 450px) {
    .main-sidebar2 .single-sidebar-widget .wid-title h3 {
        font-size: 30px
    }
}

.main-sidebar2 .single-sidebar-widget .search-widget form {
    width: 100%;
    position: relative
}

.main-sidebar2 .single-sidebar-widget .search-widget form input {
    border-radius: 10px;
    background: #fd9f8a;
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    padding: 15px 20px;
    width: 100%;
    color: var(--white)
}

.main-sidebar2 .single-sidebar-widget .search-widget form input::-moz-placeholder {
    color: var(--white);
    opacity: 100
}

.main-sidebar2 .single-sidebar-widget .search-widget form input::placeholder {
    color: var(--white);
    opacity: 100
}

.main-sidebar2 .single-sidebar-widget .search-widget form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 58px;
    height: 100%;
    color: var(--900, #0C0C0C);
    font-weight: 900;
    line-height: normal;
    background: var(--theme);
    border-radius: 0px 10px 10px 0px;
    background: #ffc121;
    color: var(--white);
    text-align: center;
    transition: background .3s ease;
    -webkit-transition: background .3s ease;
    -moz-transition: background .3s ease;
    -ms-transition: background .3s ease;
    -o-transition: background .3s ease
}

.main-sidebar2 .single-sidebar-widget .search-widget form button:hover {
    background: var(--title)
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px 15px 15px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background: #f5f1ea;
    margin-bottom: 20px
}

@media(max-width: 1199px) {
    .main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items {
        padding: 10px;
        gap: 10px
    }
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
    width: 98px;
    height: 103px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 8px
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.36px
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
    color: var(--theme);
    margin-right: 5px
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
    font-weight: 700;
    margin-bottom: 0
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a {
    color: #0c0c0c;
    font-family: var(--text);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
    color: var(--theme2)
}

@media(max-width: 767px) {
    .main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a {
        line-height: 1
    }
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul {
    padding-left: 0;
    list-style-type: none
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li {
    padding: 10px 19px 10px 15px;
    border-radius: 10px;
    border: 1px solid var(--200, #CCC);
    transition: all .4s ease-in-out
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li a {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px
}

@media(max-width: 1199px) {
    .main-sidebar2 .single-sidebar-widget .news-widget-categories ul li a {
        font-size: 18px;
        line-height: 1
    }
}

@media(max-width: 450px) {
    .main-sidebar2 .single-sidebar-widget .news-widget-categories ul li a {
        font-size: 16px
    }
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
    margin-bottom: 12px
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li::before {
    content: "";
    color: var(--text);
    font-family: "Font Awesome 5 pro";
    position: relative;
    font-size: 20px;
    font-weight: 900;
    margin-right: 10px
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li:hover {
    background: var(--theme);
    color: var(--white)
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li:hover a {
    color: var(--white) !important
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li:hover span {
    color: var(--white)
}

.main-sidebar2 .single-sidebar-widget .tagcloud a {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 10px;
    border-radius: 10px;
    border: 1px solid var(--200, #CCC);
    background: #f5f1ea;
    color: #444;
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-right: 8px;
    margin-bottom: 20px;
    transition: all .4s ease-in-out
}

.main-sidebar2 .single-sidebar-widget .tagcloud a:last-child {
    margin-right: 0
}

.main-sidebar2 .single-sidebar-widget .tagcloud a.active,
.main-sidebar2 .single-sidebar-widget .tagcloud a:hover {
    background: var(--theme);
    color: var(--white) !important
}

.main-sidebar2 .single-sidebar-image {
    height: 400px;
    max-width: 500px;
    margin-bottom: 30px;
    position: relative
}

.main-sidebar2 .single-sidebar-image:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, #8A5133 0%, rgba(0, 6, 12, 0) 100%);
    opacity: .9;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px
}

.main-sidebar2 .single-sidebar-image .contact-text {
    position: relative;
    text-align: center;
    padding: 130px 30px;
    margin: 0 auto
}

.main-sidebar2 .single-sidebar-image .contact-text .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background-color: var(--white);
    text-align: center;
    color: var(--theme);
    border-radius: 50%;
    margin: 0 auto;
    position: relative
}

.main-sidebar2 .single-sidebar-image .contact-text .icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--white);
    content: "";
    transform: translate(-50%, -50%)
}

.main-sidebar2 .single-sidebar-image .contact-text h4 {
    color: var(--white);
    margin-top: 30px
}

.main-sidebar2 .single-sidebar-image .contact-text h5 {
    margin-top: 15px
}

.main-sidebar2 .single-sidebar-image .contact-text h5 a {
    color: var(--white)
}

.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 25px
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0
}

.recent-post .media-img {
    margin-right: 20px;
    width: 95px;
    overflow: hidden;
    flex: none
}

.recent-post .media-img img {
    width: 100%;
    transition: .4s ease-in-out
}

.recent-post .post-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25;
    margin: 10px 0 0px;
    font-family: "Syne", sans-serif;
    text-transform: capitalize
}

.recent-post .recent-post-meta {
    margin-bottom: -2px
}

.recent-post .recent-post-meta .price {
    font-size: 18px;
    font-weight: 700;
    color: #c5c5c5
}

.recent-post .recent-post-meta .price del {
    margin-right: 10px
}

.recent-post .recent-post-meta .price strong {
    color: var(--theme);
    font-weight: 700
}

.recent-post .recent-post-meta a {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    color: var(--text)
}

.recent-post .recent-post-meta a i {
    margin-right: 9px;
    color: var(--theme2);
    transition: .4s
}

.recent-post .recent-post-meta a:hover {
    color: var(--theme)
}

.recent-post .recent-post-meta a:hover i {
    color: var(--theme)
}

.recent-post:hover .media-img img {
    transform: scale(1.1)
}

.widget_shopping_cart .widget_title {
    margin-bottom: 30px;
    border-bottom: none
}

.widget_shopping_cart ul {
    margin: 0;
    padding: 0
}

.widget_shopping_cart ul li {
    list-style-type: none
}

.widget_shopping_cart .mini_cart_item {
    position: relative;
    padding: 30px 30px 30px 90px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 0;
    text-align: left
}

.widget_shopping_cart .mini_cart_item:first-child {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.widget_shopping_cart .cart_list a:not(.remove) {
    display: block;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    font-family: "Syne", sans-serif;
    font-weight: 600;
    color: var(--title);
    margin-bottom: 6px
}

.widget_shopping_cart .cart_list a:not(.remove):hover {
    color: var(--theme)
}

.widget_shopping_cart .cart_list a.remove {
    position: absolute;
    top: 50%;
    left: 95%;
    transform: translateY(-50%);
    color: var(--text)
}

.widget_shopping_cart .cart_list a.remove:hover {
    color: var(--theme)
}

.widget_shopping_cart .cart_list img {
    width: 75px;
    height: 75px;
    position: absolute;
    left: 0;
    top: 18px
}

.widget_shopping_cart .quantity {
    display: inline-flex;
    white-space: nowrap;
    vertical-align: top;
    margin-right: 20px;
    font-size: 14px;
    font-weight: 500
}

.widget_shopping_cart .total {
    margin-top: 20px;
    font-size: 18px;
    color: var(--title);
    font-family: "Outfit", sans-serif
}

.widget_shopping_cart .total strong {
    font-family: "Syne", sans-serif
}

.widget_shopping_cart .amount {
    padding-left: 5px
}

.widget_shopping_cart .as-btn {
    margin-right: 15px
}

.widget_shopping_cart .as-btn:last-child {
    margin-right: 0
}

@media(max-width: 1199px) {
    .widget_title {
        font-size: 22px;
        margin: -0.12em 0 24px 0
    }
}

@media(max-width: 330px) {
    .recent-post .post-title {
        font-size: 16px;
        line-height: 24px
    }

    .recent-post .recent-post-meta a {
        font-size: 12px
    }
}

.service-container-wrapper.style1 .service_content_title {
    display: grid;
    grid-template-columns: 1fr 396px;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center
}

@media(max-width: 991px) {
    .service-container-wrapper.style1 .service_content_title {
        grid-template-columns: 1fr
    }
}

.service-container-wrapper.style1 .service_content_title .title {
    font-size: 60px;
    line-height: 1.2
}

@media(max-width: 1199px) {
    .service-container-wrapper.style1 .service_content_title .title {
        font-size: 45px
    }
}

@media(max-width: 767px) {
    .service-container-wrapper.style1 .service_content_title .title {
        font-size: 40px
    }
}

.service-container-wrapper.style1 .service_content_info {
    display: flex;
    align-items: center;
    gap: 30px
}

@media(max-width: 1399px) {
    .service-container-wrapper.style1 .service_content_info {
        flex-wrap: wrap
    }
}

.service-container-wrapper.style1 .service_content_info_item2 {
    margin-top: 30px;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 2px solid var(--border);
    grid-column: 1/4;
    min-height: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

@media(max-width: 767px) {
    .service-container-wrapper.style1 .service_content_info_item2 {
        min-height: 250px
    }
}

@media(max-width: 991px) {
    .service-container-wrapper.style1 .service_content_info_item2 {
        gap: 40px
    }
}

@media(max-width: 767px) {
    .service-container-wrapper.style1 .service_content_info_item2 {
        grid-column: unset;
        display: grid
    }
}

@media(max-width: 500px) {
    .service-container-wrapper.style1 .service_content_info_item2 {
        font-size: 30px
    }
}

.service-container-wrapper.style4 .service_content .service_content_info_bottom {
    background-color: #1e1e1e;
    text-align: center;
    padding: 16px 0;
    margin: 60px auto 0 auto
}

.service-container-wrapper.style4 .service_content .service_content_info_bottom .text {
    color: #999;
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px;
    text-transform: capitalize
}

.service-container-wrapper.style4 .service_content .service_content_info_bottom .text a {
    color: var(--theme4);
    text-align: center;
    font-family: "Kanit", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 11.2px;
    text-transform: capitalize;
    border-bottom: 1px solid #999
}

.service-container-wrapper.style4 .service_content .service-slider-arrow {
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    gap: 16px;
    top: 20px;
    right: 0
}

.service-container-wrapper.style4 .service_content .service-slider-arrow button {
    border: 1px solid var(--theme4);
    height: 60px;
    width: 60px;
    color: var(--white);
    border-radius: 50%
}

.service_content_info_item.style1 {
    overflow: hidden;
    border: 2px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    min-height: 470px;
    width: 300px !important;
    height: 476px;
    transition: all .4s ease-in-out
}

@media(max-width: 767px) {
    .service_content_info_item.style1 {
        height: auto;
        padding: 25px
    }
}

.service_content_info_item.style1 h2 {
    font-size: 140px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #777;
    position: absolute;
    top: -35px;
    right: 20px
}

.service_content_info_item.style1 img {
    width: 80px;
    margin-top: 130px;
    margin-bottom: 60px
}

.service_content_info_item.style1 h3 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 10px
}

@media(max-width: 991px) {
    .service_content_info_item.style1 h3 br {
        display: none
    }
}

@media(max-width: 500px) {
    .service_content_info_item.style1 h3 {
        font-size: 24px
    }
}

.service_content_info_item.style1 .content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: all .4s ease-in-out
}

.service_content_info_item.style1.active {
    width: 630px !important
}

.service_content_info_item.style1.active .content {
    opacity: 1;
    visibility: visible;
    position: relative
}

.service_content_info_item.style4 {
    overflow: hidden;
    background-color: #1e1e1e;
    position: relative;
    width: 100% !important;
    transition: all .4s ease-in-out
}

@media(max-width: 767px) {
    .service_content_info_item.style4 {
        padding: 25px
    }
}

.service_content_info_item.style4 .thumb {
    border-bottom: 1px solid var(--theme4)
}

.service_content_info_item.style4 .thumb img {
    width: 60px;
    margin: 36px 58px
}

.service_content_info_item.style4 .content-wrapper {
    padding: 50px 30px 57px 30px;
    position: relative
}

.service_content_info_item.style4 .content-wrapper .title a {
    color: var(--white);
    font-family: "Teko", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: .5s all ease-in-out
}

@media(max-width: 500px) {
    .service_content_info_item.style4 .content-wrapper .title a {
        font-size: 24px
    }
}

.service_content_info_item.style4 .content-wrapper .content {
    position: static
}

.service_content_info_item.style4 .content-wrapper .content .text {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px;
    padding: 18px 20px 27px 0
}

.service_content_info_item.style4 .content-wrapper .content .service-list li {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding-bottom: 14px
}

.service-wrapper.style3 .service-top {
    margin-bottom: 40px
}

.service-wrapper.style3 .service-top .service-title {
    max-width: 490px
}

.service-wrapper.style3 .service-top .service-title .subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px
}

.service-wrapper.style3 .service-top .service-title .subtitle .sub-text {
    color: var(--head-color-3);
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px
}

.service-wrapper.style3 .service-top .service-title .subtitle .shape {
    height: 2px;
    width: 40px;
    background-color: var(--head-color-3)
}

.service-wrapper.style3 .service-top .service-title .title {
    color: var(--title-color-3);
    font-family: "Syne", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58.56px
}

.service-wrapper.style3 .service-top .service-text .text {
    color: var(--text-color-3);
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 30px
}

.service-wrapper.style3 .service-top .service-text .btn-wrapper .theme-btn {
    border-color: var(--head-color-3);
    color: var(--head-color-3)
}

.service-wrapper.style3 .service-main-thumb {
    border-radius: 20px;
    margin-right: -70px
}

@media(max-width: 1199px) {
    .service-wrapper.style3 .service-main-thumb {
        margin-right: 0;
        margin-bottom: 30px
    }
}

.service-wrapper.style3 .service-main-thumb img {
    border-radius: 20px;
    width: 100%
}

.service-wrapper.style3 .service-card-wrapper.style3 {
    margin-left: -70px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px
}

@media(max-width: 1199px) {
    .service-wrapper.style3 .service-card-wrapper.style3 {
        margin-left: 0
    }
}

.card-itams.style3 {
    border: 1px solid var(--head-color-3);
    padding: 30px 20px 30px;
    border-radius: 20px;
}

@media(max-width: 1399px) {
    .card-itams.style3 {
        padding: 30px 0 30px 30px
    }
}

.card-itams.style3 .title {
    color: var(--title-color-3);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.28px;
    padding-top: 20px
}

@media(max-width: 500px) {
    .card-itams.style3 .title {
        font-size: 20px;
        line-height: 30px
    }
}

.card-itams.style3 .text {
    color: var(--text-color-3);
    font-family: var(--title-color-3);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-top: 10px;
    padding-right: 10px;
    height: 130px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.card-itams.style3 .text::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f5f1ea;
    border-radius: 50px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #3cbeae;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.service-details {
    padding-bottom: 120px
}

.service-details .service-details-info {
    border-radius: 20px;
    background: #fffaf3;
    padding: 20px 30px 30px 30px
}

.service-details .service-details-info .content-heading h2 {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 40px;
    text-decoration: underline
}

@media(max-width: 450px) {
    .service-details .service-details-info .content-heading h2 {
        font-size: 30px
    }
}

.service-details .service-details-info .items-wrapper {
    cursor: pointer
}

.service-details .service-details-info .items-wrapper ul li {
    position: relative;
    padding-bottom: 7px;
    margin-bottom: 13px
}

.service-details .service-details-info .items-wrapper ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px
}

@media(max-width: 450px) {
    .service-details .service-details-info .items-wrapper ul li a {
        font-size: 20px
    }
}

.service-details .service-details-info .items-wrapper ul li::before {
    content: "";
    width: 101px;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0
}

.service-details .single-sidebar-content {
    margin-top: 10px;
    position: relative
}

.service-details .single-sidebar-content .content-overlay {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: #00bdad;
    mix-blend-mode: multiply
}

.service-details .single-sidebar-content .contact-text {
    position: relative;
    z-index: 99;
    text-align: center;
    padding: 130px 30px;
    margin: 0 auto
}

.service-details .single-sidebar-content .contact-text .icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    text-align: center;
    background-color: var(--white);
    text-align: center;
    color: var(--theme);
    border-radius: 50%;
    margin: 0 auto;
    position: relative
}

.service-details .single-sidebar-content .contact-text .icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--white);
    content: "";
    transform: translate(-50%, -50%)
}

.service-details .single-sidebar-content .contact-text h4 {
    margin: 20px 0 5px 0
}

.service-details .single-sidebar-content .contact-text h4 a {
    color: var(--white);
    text-align: center;
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px
}

@media(max-width: 450px) {
    .service-details .single-sidebar-content .contact-text h4 a {
        font-size: 20px
    }
}

.service-details .single-sidebar-content .contact-text h5 {
    color: var(--white);
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px
}

.service-details .service-details-news .service-details-content h6 {
    color: #1a1a1a;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    margin: 20px 0;
}

.service-details .service-details-news .service-details-content h2 {
    color: #1a1a1a;
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    margin: 20px 0;
}

.service-details .service-details-news .service-details-content h3 {
    color: #1a1a1a;
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    margin: 20px 0;
}

@media(max-width: 450px) {
    .service-details .service-details-news .service-details-content h2 {
        font-size: 30px
    }
    .service-details .service-details-news .service-details-content h3 {
        font-size: 22px
    }
}

.service-details .service-details-news .service-details-content p {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.service-details .service-details-news .service-details-content .hilight {
    margin: 30px 0 40px 0
}

.service-details .service-details-news .service-details-content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 82%
}

/* @media(max-width: 767px) {
    .service-details .service-details-news .service-details-content ul {
        width: 100%;
        grid-template-columns: repeat(1, 1fr)
    }
} */

.service-details .service-details-news .service-details-content ul li {
    padding: 0 0 0 20px;
    position: relative;
}
.service-details .service-details-news .service-details-content ul.info {
    gap: 10px;
    margin: 10px;
}
.service-details .service-details-news .service-details-content ul.info li {
    padding: 0;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}
.service-details .service-details-news .service-details-content ul.info li i {
    color: var(--theme);
}
.service-details .service-details-news .service-details-content ul.info li::before {
    content: '';
    display: none;
}

.service-details .service-details-news .service-details-content ul li::before {
    content: "";
    font-family: "Font Awesome 5 pro";
    font-weight: 900;
    margin-right: 15px;
    color: var(--theme);
    position: absolute;
    top: 0;
    left: 0;
}
.service-details .service-details-news .service-details-content ul li>ul {
    margin: 10px 0;
}
.service-details .service-details-news .service-details-content ul li>ul li::before {
    content: "\f111";
    font-family: "Font Awesome 5 pro";
    font-weight: 400;
    margin-right: 15px;
    color: var(--theme);
    position: absolute;
    top: 0;
    left: 0;
}

.service-details .service-details-news .service-details-content .card {
    border-radius: 20px;
    border: 2px solid #ccc;
    background: #fffaf3;
    padding: 38px;
    width: 630px;
    height: 386px;
    margin: 30px 0
}

@media(max-width: 767px) {
    .service-details .service-details-news .service-details-content .card {
        width: 100%;
        height: auto;
        margin: 25px 0;
        padding: 25px
    }
}

.service-details .service-details-news .service-details-content .card h3 {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    text-transform: capitalize;
    margin: 60px 0 20px 0
}

@media(max-width: 450px) {
    .service-details .service-details-news .service-details-content .card h3 {
        font-size: 26px;
        margin-top: 30px
    }
}

.service-details .service-details-news .service-details-content .card P {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.pricing-container-wrapper .pricing_content_title {
    display: grid;
    grid-template-columns: 700px max-content;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px
}

@media(max-width: 991px) {
    .pricing-container-wrapper .pricing_content_title {
        grid-template-columns: 1fr
    }
}

.pricing-container-wrapper .pricing_content_title_left .title {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px
}

@media(max-width: 1199px) {
    .pricing-container-wrapper .pricing_content_title_left .title {
        font-size: 45px
    }
}

@media(max-width: 767px) {
    .pricing-container-wrapper .pricing_content_title_left .title {
        font-size: 40px
    }
}

@media(max-width: 500px) {
    .pricing-container-wrapper .pricing_content_title_left .title {
        font-size: 30px
    }
}

.pricing-container-wrapper .pricing_content_title_right .nav-tabs {
    border: 1px solid var(--text);
    border-radius: 15px;
    padding: 4px;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto
}

@media(max-width: 767px) {
    .pricing-container-wrapper .pricing_content_title_right .nav-tabs {
        margin-left: unset;
        margin-top: 20px
    }
}

.pricing-container-wrapper .pricing_content_title_right .nav-tabs .nav-item .nav-link {
    border: none;
    margin-bottom: 0;
    border-radius: 14px;
    padding: 10px 30px;
    color: var(--title);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize
}

.pricing-container-wrapper .pricing_content_title_right .nav-tabs .nav-item .nav-link:hover {
    color: var(--white) !important;
    border-radius: 14px;
    background: var(--theme)
}

.pricing-container-wrapper .pricing_content_title_right .nav-tabs .nav-item .nav-link.active {
    background: var(--theme);
    color: var(--white);
    border-radius: 14px
}

.pricing-container-wrapper .pricing_content .pricing_content_info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px
}

@media(max-width: 991px) {
    .pricing-container-wrapper .pricing_content .pricing_content_info {
        grid-template-columns: 1fr
    }
}

@media(max-width: 767px) {
    .pricing-container-wrapper .pricing_content .pricing_content_info {
        grid-template-columns: 1fr
    }
}

.pricing-container-wrapper.style2 {
    background: var(--theme2);
    border-radius: 40px
}

.pricing-container-wrapper.style2 .pricing-info-wrapper {
    margin-top: 60px
}

.pricing-container-wrapper.style2 .pricing-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--text);
    margin-top: 30px
}

@media(max-width: 767px) {
    .pricing-container-wrapper.style2 .pricing-bottom-content {
        padding: 25px
    }
}

@media(max-width: 575px) {
    .pricing-container-wrapper.style2 .pricing-bottom-content {
        flex-direction: column;
        gap: 30px
    }
}

.pricing-container-wrapper.style2 .pricing-bottom-content h3 {
    color: #444;
    font-family: Syne;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    text-transform: capitalize;
    max-width: 440px
}

.pricing_card.style1 {
    border: 1px solid var(--text);
    border-radius: 15px;
    padding: 30px
}

.pricing_card.style1 .pricing_card_content_top {
    text-align: center;
    padding: 14px;
    border-radius: 14px
}

.pricing_card.style1 .pricing_card_content_top.card_1 {
    background: var(--text)
}

.pricing_card.style1 .pricing_card_content_top.card_2 {
    background: var(--theme)
}

.pricing_card.style1 .pricing_card_content_top.card_3 {
    background: var(--bg-2)
}

.pricing_card.style1 .pricing_card_content_top p,
.pricing_card.style1 .pricing_card_content_top h3 {
    color: var(--white)
}

.pricing_card.style1 .pricing_card_content_top .price {
    display: flex;
    justify-content: center;
    align-items: flex-end
}

.pricing_card.style1 .pricing_card_content_top .price h3 {
    font-size: 60px;
    line-height: 1
}

@media(max-width: 991px) {
    .pricing_card.style1 .pricing_card_content_top .price h3 {
        font-size: 48px
    }
}

@media(max-width: 767px) {
    .pricing_card.style1 .pricing_card_content_top .price h3 {
        font-size: 40px
    }
}

@media(max-width: 500px) {
    .pricing_card.style1 .pricing_card_content_top .price h3 {
        font-size: 30px
    }
}

.pricing_card.style1 .pricing_card_content_top .price p {
    font-size: 18px
}

.pricing_card.style1 .pricing_card_content_middle {
    padding: 30px 0
}

.pricing_card.style1 .pricing_card_content_middle ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px
}

@media(max-width: 1199px) {
    .pricing_card.style1 .pricing_card_content_middle ul li {
        font-size: 18px
    }
}

@media(max-width: 767px) {
    .pricing_card.style1 .pricing_card_content_middle ul li {
        font-size: 16px
    }
}

.pricing_card.style1 .pricing_card_content_middle ul li i {
    color: var(--theme)
}

.pricing_card.style1 .pricing_card_content_bottom .btn-wrapper .theme-btn-2 {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0);
    color: var(--text);
    border: 1px solid var(--border)
}

.pricing_card.style2 {
    border-radius: 20px;
    border: 2px solid var(--text);
    padding: 40px
}

.pricing_card.style2 .pricing_card_content h4 {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px
}

.pricing_card.style2 .pricing_card_content .price h3 {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 66.9px;
    margin-bottom: 20px
}

.pricing_card.style2 .pricing_card_content .price h3.text-red {
    color: var(--theme)
}

.pricing_card.style2 .pricing_card_content .price h3 span {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.pricing_card.style2 .pricing_card_content .price p {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 50px
}

@media(min-width: 992px) {
    .pricing_card.style2 .pricing_card_content .price p {
        margin-bottom: 20px
    }
}

.pricing_card.style2 .pricing_card_content_middle ul {
    margin-bottom: 50px
}

@media(min-width: 992px) {
    .pricing_card.style2 .pricing_card_content_middle ul {
        margin-bottom: 25px
    }
}

.pricing_card.style2 .pricing_card_content_middle ul li {
    margin-bottom: 10px;
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px
}

.pricing_card.style2 .pricing_card_content_middle ul li svg,
.pricing_card.style2 .pricing_card_content_middle ul li img,
.pricing_card.style2 .pricing_card_content_middle ul li i {
    margin-right: 5px
}

.pricing_card.style2 .pricing_card_content_middle ul li.unavailable {
    opacity: .5
}

@media(max-width: 991px) {
    .pricing_card.style2 .pricing_card_content_middle ul li {
        font-size: 17px;
        margin-bottom: 5px
    }

    .pricing_card.style2 .pricing_card_content_middle ul li svg {
        width: 15px;
        height: 15px;
        margin-right: 5px
    }
}

.pricing_card.style2 .pricing_card_content_bottom {
    margin-top: 50px
}

@media(max-width: 767px) {
    .pricing_card.style2 {
        padding: 25px
    }
}

.pricing_card.style3 {
    border-radius: 30px
}

.pricing_card.style3 .pricing_card_content {
    padding: 57px 32px 32px 32px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0);
    position: relative;
    transition: .3s all ease-in-out
}

.pricing_card.style3 .pricing_card_content.bg_one {
    background-color: #e2ffd0
}

.pricing_card.style3 .pricing_card_content.bg_two {
    background: var(--theme-color-3)
}

.pricing_card.style3 .pricing_card_content.bg_three {
    background: #fed5b7
}

@media(max-width: 1399px) {
    .pricing_card.style3 .pricing_card_content {
        padding: 50px 20px 30px 20px
    }
}

@media(max-width: 991px) {
    .pricing_card.style3 .pricing_card_content {
        margin-bottom: 30px
    }
}

.pricing_card.style3 .pricing_card_content .badge {
    position: absolute;
    border-radius: 35px;
    background: rgba(0, 69, 64, .11);
    right: 20px;
    top: 20px;
    padding: 10px 20px
}

.pricing_card.style3 .pricing_card_content .badge .text {
    color: var(--text);
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.8px
}

.pricing_card.style3 .pricing_card_content .pricing_card_content_top {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 40px;
    position: relative
}

.pricing_card.style3 .pricing_card_content .pricing_card_content_top .price .title {
    color: var(--text);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px
}

.pricing_card.style3 .pricing_card_content .pricing_card_content_top .price .text-red {
    color: var(--text);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px
}

@media(max-width: 450px) {
    .pricing_card.style3 .pricing_card_content .pricing_card_content_top .price .text-red {
        font-size: 30px;
        line-height: 30px;
        padding-top: 4px
    }
}

.pricing_card.style3 .pricing_card_content .pricing_card_content_top .price .text-red span {
    color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px
}

.pricing_card.style3 .pricing_card_content .pricing_card_content_middle ul li {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.pricing_card.style3 .pricing_card_content .pricing_card_content_bottom {
    margin-top: 50px
}

.pricing_card.style3 .pricing_card_content .pricing_card_content_bottom .btn-wrapper .theme-btn-2 {
    border-radius: 100px
}

.pricing_card.style3 .pricing_card_content:hover {
    border: 1px solid var(--text-color-3);
    transform: translateY(-5px)
}

.testimonial-container-wrapper.style1 .testimonials_content .testimonials_title {
    text-align: center;
    max-width: 770px;
    margin: 0 auto;
    margin-bottom: 60px
}

.testimonial-container-wrapper.style1 .testimonials_content .testimonials_title .title {
    color: var(--title);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px
}

@media(max-width: 1199px) {
    .testimonial-container-wrapper.style1 .testimonials_content .testimonials_title .title {
        font-size: 45px
    }

    .testimonial-container-wrapper.style1 .testimonials_content .testimonials_title .title br {
        display: none
    }
}

@media(max-width: 767px) {
    .testimonial-container-wrapper.style1 .testimonials_content .testimonials_title .title {
        font-size: 40px
    }
}

@media(max-width: 500px) {
    .testimonial-container-wrapper.style1 .testimonials_content .testimonials_title .title {
        font-size: 30px
    }
}

.testimonial-container-wrapper.style1 .testimonials_content .testimonials_title p {
    color: var(--text);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px
}

.testimonial-container-wrapper.style1 .testimonials_content .testimonials_slider .testimonials-slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px
}

.testimonial-container-wrapper.style1 .testimonials_content .testimonials_slider .testimonials-slider-button button {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bg-1);
    font-size: 30px
}

.testimonial-container-wrapper.style1 .testimonials_content .testimonials_slider .testimonials-slider-button button:hover {
    background-color: var(--bg-1)
}

.testimonial-container-wrapper.style1 .testimonials_content .testimonials_slider .testimonials-slider-button button:hover i {
    font-size: 20px;
    color: #fff
}

.testimonial-container-wrapper.style2 .testimonials-top-content {
    display: flex;
    justify-content: space-between
}

@media(max-width: 767px) {
    .testimonial-container-wrapper.style2 .testimonials-top-content {
        flex-direction: column
    }
}

@media(max-width: 575px) {
    .testimonial-container-wrapper.style2 .testimonials-top-content {
        flex-direction: column
    }
}

@media(max-width: 470px) {
    .testimonial-container-wrapper.style2 .testimonials-top-content {
        flex-direction: column
    }
}

.testimonial-container-wrapper.style2 .testimonials-top-content .section-title {
    max-width: 655px
}

@media(max-width: 991px) {
    .testimonial-container-wrapper.style2 .testimonials-top-content .section-title {
        max-width: 435px
    }
}

.testimonial-container-wrapper.style2 .testimonials-top-content .btn-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 30vh
}

@media(max-width: 767px) {
    .testimonial-container-wrapper.style2 .testimonials-top-content .btn-wrapper {
        height: 18vh
    }
}

@media(max-width: 575px) {
    .testimonial-container-wrapper.style2 .testimonials-top-content .btn-wrapper {
        height: 15vh
    }
}

@media(max-width: 470px) {
    .testimonial-container-wrapper.style2 .testimonials-top-content .btn-wrapper {
        height: 15vh
    }
}

@media(max-width: 767px) {
    .testimonial-container-wrapper.style2 .testimonials-top-content .btn-wrapper a {
        display: inline-flex
    }
}

@media(max-width: 575px) {
    .testimonial-container-wrapper.style2 .testimonials-top-content .btn-wrapper a {
        display: inline-flex
    }
}

@media(max-width: 470px) {
    .testimonial-container-wrapper.style2 .testimonials-top-content .btn-wrapper a {
        display: inline-flex
    }
}

.testimonial-container-wrapper.style2 .testimonials-info-wrapper {
    margin-top: 60px
}

@media(max-width: 991px) {
    .testimonial-container-wrapper.style2 .testimonials-info-wrapper .testimonials-thumb {
        text-align: center
    }
}

@media(max-width: 767px) {
    .testimonial-container-wrapper.style2 .testimonials-info-wrapper .testimonials-thumb {
        text-align: center
    }

    .testimonial-container-wrapper.style2 .testimonials-info-wrapper .testimonials-thumb img {
        max-width: 100%
    }
}

@media(max-width: 500px) {
    .testimonial-container-wrapper.style2 .testimonials-info-wrapper .testimonials-thumb {
        text-align: center
    }
}

@media(max-width: 470px) {
    .testimonial-container-wrapper.style2 .testimonials-info-wrapper .testimonials-thumb {
        text-align: center
    }
}

.testimonial-container-wrapper.style3 {
    position: relative
}

.testimonial-container-wrapper.style3 .section-title {
    text-align: left;
    margin-right: auto;
    margin-left: 0
}

.testimonial-container-wrapper.style3 .section-title .subtitle {
    justify-content: left
}

.testimonial-container-wrapper.style3 .section-title .subtitle .sub-text {
    color: var(--white)
}

.testimonial-container-wrapper.style3 .section-title .subtitle .shape {
    background-color: var(--white)
}

.testimonial-container-wrapper.style3 .section-title .title {
    color: var(--white);
    text-align: left
}

.testimonial-container-wrapper.style3 .arrow-btn {
    display: flex;
    align-items: center;
    gap: 12px
}

@media(max-width: 767px) {
    .testimonial-container-wrapper.style3 .arrow-btn {
        display: none
    }
}

.testimonial-container-wrapper.style3 .arrow-btn button {
    border-radius: 60px;
    background: #e2ffd0;
    height: 60px;
    width: 60px;
    font-size: 22px;
    transition: .3s all ease-in
}

.testimonial-container-wrapper.style3 .arrow-btn button:hover {
    background: var(--theme-color-3)
}

.testimonial-container-wrapper.style3 .testimonials_slider {
    margin-right: -350px;
    padding-top: 46px
}

@media(max-width: 767px) {
    .testimonial-container-wrapper.style3 .testimonials_slider {
        margin-right: 0
    }
}

.testimonial-container-wrapper.style3 .testimonials_slider .testimonials-slider-button {
    position: absolute;
    top: 0px;
    z-index: 9
}

.testimonials_item.style1 {
    border: 1px solid var(--text);
    padding: 30px;
    border-radius: 20px
}

@media(max-width: 767px) {
    .testimonials_item.style1 {
        padding: 25px
    }
}

.testimonials_item.style1 .testimonials_item_img {
    margin-bottom: 20px
}

.testimonials_item.style1 .testimonials_item_content>p {
    margin-bottom: 20px;
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px
}

@media(max-width: 991px) {
    .testimonials_item.style1 .testimonials_item_content>p {
        font-size: 24px
    }
}

@media(max-width: 767px) {
    .testimonials_item.style1 .testimonials_item_content>p {
        font-size: 18px;
        line-height: 28px
    }
}

.testimonials_item.style1 .testimonials_item_content .profile {
    display: grid;
    grid-template-columns: 70px max-content;
    gap: 20px;
    align-items: center
}

@media(max-width: 767px) {
    .testimonials_item.style1 .testimonials_item_content .profile {
        gap: 10px
    }
}

.testimonials_item.style1 .testimonials_item_content .profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%
}

.testimonials_item.style1 .testimonials_item_content .profile_info h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5
}

@media(max-width: 767px) {
    .testimonials_item.style1 .testimonials_item_content .profile_info h4 {
        font-size: 18px
    }
}

.testimonials_item.style1 .testimonials_item_content .profile_info p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5
}

@media(max-width: 767px) {
    .testimonials_item.style1 .testimonials_item_content .profile_info p {
        font-size: 15px
    }
}

.testimonials_item.style2 .testimonials_item_content {
    padding: 60px;
    border-radius: 40px;
    border: 3px solid var(--title);
    background: var(--white)
}

.testimonials_item.style2 .testimonials_item_content:nth-child(1) {
    margin-bottom: 30px
}

.testimonials_item.style2 .testimonials_item_content p {
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 40px
}

@media(max-width: 767px) {
    .testimonials_item.style2 .testimonials_item_content p {
        font-size: 20px;
        line-height: 30px
    }
}

.testimonials_item.style2 .testimonials_item_content .profile {
    display: flex;
    align-items: center;
    gap: 20px
}

@media(max-width: 767px) {
    .testimonials_item.style2 .testimonials_item_content .profile {
        font-size: 20px;
        line-height: 30px
    }
}

.testimonials_item.style2 .testimonials_item_content .profile .profile_info h4 {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px
}

@media(max-width: 767px) {
    .testimonials_item.style2 .testimonials_item_content .profile .profile_info h4 {
        font-size: 20px;
        line-height: 30px
    }
}

.testimonials_item.style2 .testimonials_item_content .profile .profile_info span {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

@media(max-width: 767px) {
    .testimonials_item.style2 .testimonials_item_content .profile .profile_info span {
        font-size: 15px;
        line-height: 25px
    }
}

@media(max-width: 767px) {
    .testimonials_item.style2 .testimonials_item_content {
        padding: 25px
    }
}

.testimonials_item.style3 {
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

@media(max-width: 450px) {
    .testimonials_item.style3 {
        padding: 20px;
        min-height: 100%
    }
}

.testimonials_item.style3 .testimonial_ratings ul {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 20px
}

.testimonials_item.style3 .testimonial_ratings ul li a {
    color: var(--theme-color-3);
    font-size: 24px
}

.testimonials_item.style3 .testimonial_ratings .text {
    color: var(--text-color-3);
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px
}

.testimonials_item.style3 .testimonial_content .profile {
    display: flex;
    align-items: center;
    gap: 26px
}

@media(max-width: 450px) {
    .testimonials_item.style3 .testimonial_content .profile {
        flex-wrap: wrap;
        gap: 16px
    }
}

.testimonials_item.style3 .testimonial_content .profile .profile_info .name {
    color: var(--title-color-3);
    font-family: "Syne", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.28px
}

.testimonials_item.style3 .testimonial_content .profile .profile_info .title {
    color: var(--text-color-3);
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px
}

.testimonials.style4 .section-title .title {
    margin-top: 35px
}

.testimonials.style4 .btn-wrapper {
    margin-top: 40px
}

.testimonial-card.style4 {
    padding: 45px;
    display: flex;
    align-items: center;
    gap: 43px;
    background-color: #1e1e1e
}

@media(max-width: 575px) {
    .testimonial-card.style4 {
        flex-wrap: wrap;
        gap: 20px
    }
}

@media(max-width: 450px) {
    .testimonial-card.style4 {
        padding: 16px
    }
}

.testimonial-card.style4:not(:last-child) {
    margin-bottom: 40px
}

.testimonial-card.style4 .testimonial-thumb {
    flex-shrink: 0
}

.testimonial-card.style4 .testimonial-thumb img {
    max-width: 100%
}

.testimonial-card.style4 .testimonial-content .desc {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px;
    text-transform: capitalize;
    margin-bottom: 30px
}

@media(max-width: 575px) {
    .testimonial-card.style4 .testimonial-content .desc {
        margin-bottom: 16px
    }
}

.testimonial-card.style4 .testimonial-content .name {
    color: var(--white);
    font-family: "Teko", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase
}

.testimonial-card.style4 .testimonial-content .designation {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px;
    text-transform: capitalize
}

.testimonial-card.style4.child1 {
    margin-right: 85px
}

@media(max-width: 767px) {
    .testimonial-card.style4.child1 {
        margin: 0 0 30px 0
    }
}

.testimonial-card.style4.child2 {
    margin-left: 85px
}

@media(max-width: 767px) {
    .testimonial-card.style4.child2 {
        margin: 0 0 30px 0
    }
}

.testimonial-card.style4.child3 {
    margin-right: 85px
}

@media(max-width: 767px) {
    .testimonial-card.style4.child3 {
        margin: 0
    }
}

.features-container-wrapper.style2 {
    background: #fffaf3;
    padding: 120px 0 114px 0
}

.features-container-wrapper.style2 .features-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.features-container-wrapper.style2 .features-thumb img {
    width: 100%
}

.features-container-wrapper.style2 .feature-card {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px
}

.feature-card-itams.style2 {
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #444;
    gap: 30px
}

.feature-card-itams.style2 .card-content span {
    color: #ccc;
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    margin-bottom: 20px;
    display: inline-block
}

.feature-card-itams.style2 .card-content h3 {
    color: #0c0c0c;
    font-family: "Syne", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    text-transform: capitalize;
    margin-bottom: 20px
}

.feature-card-itams.style2 .card-content P {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0
}

.scrolling-wrap {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    gap: 20px;
    background-color: var(--bg-1);
    padding: 140px 0 48px 0;
    position: relative;
    z-index: -1;
    margin: -95px 0 0 -10px
}

@media(max-width: 991px) {
    .scrolling-wrap {
        margin: -95px 0 0 0
    }
}

.scrolling-wrap .comm {
    display: flex;
    align-items: center;
    animation: scroll 60s linear infinite;
    gap: 40px;
    cursor: pointer
}

.scrolling-wrap .comm .cmn-textslide-1 {
    color: var(--white);
    font-feature-settings: "liga" off, "clig" off;
    font-family: Syne;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px
}

.scrolling-wrap .comm .cmn-textslide-2 {
    color: var(--white);
    font-feature-settings: "liga" off, "clig" off;
    font-family: Syne;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    opacity: .5
}

.scrolling-wrap:hover .comm {
    animation-play-state: paused
}

@media(max-width: 1399px) {
    .scrolling-wrap .comm {
        gap: 20px
    }
}

@media(max-width: 991px) {
    .scrolling-wrap {
        gap: 14px
    }

    .scrolling-wrap .comm {
        gap: 14px
    }
}

@media(max-width: 575px) {
    .scrolling-wrap .comm {
        gap: 12px
    }
}

.scrolling-wrap.style3 {
    background-color: var(--theme-color-3);
    margin: 0;
    padding: 10px 0
}

.scrolling-wrap.style3 .cmn-textslide-1 {
    color: var(--black);
    font-family: "Syne", sans-serif;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 1
}

@media(max-width: 767px) {
    .scrolling-wrap.style3 .cmn-textslide-1 {
        font-size: 36px;
        line-height: 40px
    }
}

.scrolling-wrap.style4 {
    padding: 0;
    background-color: rgba(0, 0, 0, 0)
}

.scrolling-wrap.style4 .comm {
    display: flex;
    align-items: center;
    animation: scroll4 60s linear infinite;
    gap: 24px;
    cursor: pointer
}

.scrolling-wrap.style4 .thumb {
    height: 280px;
    width: 500px
}

@media(max-width: 767px) {
    .scrolling-wrap.style4 .thumb {
        height: 215px;
        width: 335px
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}

@keyframes scroll2 {
    0% {
        transform: translateX(0%)
    }

    100% {
        transform: translateX(-200%)
    }
}

@keyframes scroll4 {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.gallery-container-wrapper.style2 {
    border-radius: 40px;
    background: var(--text)
}

.gallery-container-wrapper.style2 .section-title {
    max-width: 750px;
    margin-bottom: 40px
}

.gallery-container-wrapper.style2 .section-title .title {
    color: var(--white) !important
}

.gallery-container-wrapper.style2 .accordion-item.style2 {
    border-radius: 20px;
    background: #181818;
    margin-bottom: 30px;
    border: 3px solid var(--text)
}

.gallery-container-wrapper.style2 .accordion-item.style2 .accordion-header {
    padding: 40px 41px;
    cursor: pointer;
}


.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .flex-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 20px 0 0 0;
}

.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp {
    display: flex;
    align-items: center;
    gap: 20px;

}

.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp .swiper-button-next,
.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp .swiper-button-prev {
    position: relative;
    inset: 0;
}

.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp .swiper-button-next::after,
.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp .swiper-button-prev::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 700;
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp .swiper-button-prev::after {
    content: '\f060';
}

.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp .swiper-button-next:hover::after,
.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp .swiper-button-prev:hover::after {
    color: var(--theme);
}

.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp .swiper-button-next,
.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp .swiper-button-prev {
    height: 42.6px;
    width: 42.6px;
    border-radius: 11px;
    border: 1px solid var(--theme);
    margin: 0;
    background: var(--theme);
    transition: all 0.3s ease-in-out;
}

.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp .swiper-button-next {
    margin: 0;
}

.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp .swiper-button-next:hover,
.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swp-grp .swiper-button-prev:hover {
    background: transparent;
}

.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swiper-pagination {
    position: relative;
    border-radius: 100px;
    height: 5px;
    background: rgb(255 255 255 / 0.5);
    width: 80%;
}

.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swiper-pagination::before {
    content: '';
    position: absolute;
    inset: auto auto auto 0;
    height: 5px;
    width: 5px;
    background: var(--theme);
    border-radius: 100px;
}

.gallery-container-wrapper.style2 .accordion-item.style2 .test-slider .swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--primary-color);
    border-radius: 100px;
    left: 4px;
}

@media(max-width: 991px) {
    .gallery-container-wrapper.style2 .accordion-item.style2 .accordion-header {
        padding: 25px
    }
}

.gallery-container-wrapper.style2 .accordion-item.style2 .accordion-header .row {
    align-items: center
}

.gallery-container-wrapper.style2 .accordion-item.style2 .accordion-header .arrow {
    margin-right: 10px
}

.gallery-container-wrapper.style2 .accordion-item.style2 .accordion-header .arrow svg {
    transition: transform .3s ease
}

.gallery-container-wrapper.style2 .accordion-item.style2 .accordion-header h3 {
    flex: 1;
    color: var(--white);
    font-family: "Syne", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    text-transform: capitalize
}

.gallery-container-wrapper.style2 .accordion-item.style2 .accordion-header p {
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.gallery-container-wrapper.style2 .accordion-item.style2 .accordion-header .btn-wrapper .theme-btn {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 20px;
    border: 1px solid var(--white)
}

@media(max-width: 1199px) {
    .gallery-container-wrapper.style2 .accordion-item.style2 .accordion-header .btn-wrapper {
        margin-top: 30px
    }
}

.gallery-container-wrapper.style2 .accordion-item.style2 .accordion-content {
    display: none;
    padding: 0 60px 50px 0;
    border-radius: 20px;
    background: #181818;
    text-align: end
}

@media(max-width: 991px) {
    .gallery-container-wrapper.style2 .accordion-item.style2 .accordion-content {
        padding: 25px
    }
}

.gallery-container-wrapper.style2 .accordion-item.style2 .accordion-content img {
    max-width: 100%;
    height: 300px;
    border-radius: 30px;
    object-fit: cover;
    object-position: center;
}

.gallery-container-wrapper.style2 .accordion-item.style2.active .accordion-content {
    display: block
}

.gallery-container-wrapper.style2 .accordion-item.style2.active .accordion-header .arrow svg {
    transform: rotate(90deg)
}

.gallery-wrapper.style3 {
    display: flex;
    justify-content: space-between
}

@media(max-width: 1399px) {
    .gallery-wrapper.style3 {
        gap: 20px
    }
}

.gallery-wrapper.style3 .thumb {
    text-align: center
}

.gallery-wrapper.style3 .thumb img {
    max-width: 100%
}

@media(max-width: 1399px) {
    .gallery-wrapper.style3 .thumb img {
        width: 100%
    }
}

.project-details {
    margin-bottom: 120px
}

.project-details .project-details-info {
    margin-bottom: 80px
}

.project-details .project-details-info .content-thumb {
    width: 100%;
    height: 100%
}

.project-details .project-details-info .content-thumb img {
    width: 100%;
    height: 95%;
    border-radius: 20px
}

@media(max-width: 1199px) {
    .project-details .project-details-info .content-thumb {
        margin-top: 50px
    }
}

.project-details .project-details-info .project-details-content h2 {
    color: #1a1a1a;
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 20px
}

@media(max-width: 450px) {
    .project-details .project-details-info .project-details-content h2 {
        font-size: 28px;
        margin-bottom: 10px
    }
}

.project-details .project-details-info .project-details-content p {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 40px
}

.project-details .project-details-info .project-details-content ul li {
    margin-bottom: 20px;
    color: var(--800, #444);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    padding: 0 0 0 25px;
    position: relative;
}

.project-details .project-details-info .project-details-content ul li::before {
    /* content: "";
    color: #3c2bff;
    font-family: "Font Awesome 5 pro"; */
    position: absolute;
    height: auto;
    width: auto;
    display: block;
    left: 0;
    font-size: 20px;
    font-weight: 900;

    content: "";
    font-family: "Font Awesome 5 pro";
    /* font-weight: 900;
    position: relative;
    margin-right: 15px; */
    color: var(--theme);
}

.project-details .project-details-info .project-details-content h3 {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    text-transform: capitalize
}

.project-details .project-details-info .project-details-content .items-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px
}

.project-details .project-details-info .project-details-content .items-wrapper .single-items {
    border-radius: 0px 5px 5px 0px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 5px 70px 5px 0;
    background: var(--white)
}

.project-details .project-details-info .project-details-content .items-wrapper .single-items h4 {
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700
}

.project-details .project-details-info .project-details-content .items-wrapper .single-items h4 span {
    margin-left: 12px;
    color: #444;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.project-details .project-details-info .project-details-content .items-wrapper .single-items h4 span i {
    color: #cdd81a;
    font-family: "Font Awesome 5 pro";
    font-size: 14px;
    font-weight: 900
}

.project-details .project-summery .content h2 {
    color: #1a1a1a;
    font-family: "Syne", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 66.9px
}

@media(max-width: 1199px) {
    .project-details .project-summery .content h2 {
        font-size: 45px;
        line-height: 1
    }
}

@media(max-width: 450px) {
    .project-details .project-summery .content h2 {
        font-size: 30px
    }
}

.project-details .project-summery .content p {
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.project-details .project-summery .content .hilight {
    margin-top: 30px
}

.project-container-wrapper.style1 {
    border-radius: 60px;
    background: #0c0c0c;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px
}

.project-container-wrapper.style1 .section-title {
    margin-bottom: 60px
}

.project-container-wrapper.style4 {
    background-color: #1e1e1e;
    margin: 0 80px
}

@media(max-width: 767px) {
    .project-container-wrapper.style4 {
        margin: 0
    }
}

.project.style4 .btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 105px
}

@media(max-width: 767px) {
    .project.style4 .btn-wrapper {
        margin-top: 40px
    }
}

@media(max-width: 450px) {
    .project.style4 .btn-wrapper {
        margin-top: 10px
    }
}

.project.style4 .btn-wrapper .theme-btn-4 svg {
    width: 13px;
    height: 13px
}

.project-card.style1 {
    overflow: hidden;
    position: relative
}

.project-card.style1 .project-thumb {
    border-radius: 20px
}

.project-card.style1 .project-thumb img {
    border-radius: 20px;
    width: 100%;
    height: 100%
}

@media(max-width: 1399px) {
    .project-card.style1 .project-thumb img {
        height: 270px
    }
}

.project-card.style1 .project-content {
    opacity: 0;
    visibility: hidden;
    margin-bottom: -100px;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-radius: 20px;
    background: var(--white);
    transition: all .4s ease-in-out
}

@media(max-width: 767px) {
    .project-card.style1 .project-content {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px
    }
}

.project-card.style1 .project-content .title-wrap .subtitle {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.project-card.style1 .project-content .title-wrap .title {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px;
    text-transform: capitalize
}

@media(max-width: 1199px) {
    .project-card.style1 .project-content .title-wrap .subtitle {
        font-size: 15px;
        line-height: 25px
    }

    .project-card.style1 .project-content .title-wrap .title {
        font-size: 20px;
        line-height: 27.5px
    }
}

.project-card.style1 .project-content .arrow-btn {
    width: 65px;
    height: 65px;
    line-height: 65px;
    font-size: 30px;
    text-align: center;
    background-color: #3c2bff;
    color: var(--white);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

@media(max-width: 767px) {
    .project-card.style1 .project-content .arrow-btn {
        width: 55px;
        height: 55px;
        line-height: 55px;
        font-size: 20px
    }
}

.project-card.style1 .project-content .arrow-btn:hover {
    background-color: var(--title)
}

.project-card.style1 .project-content.style2 {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 20px
}

.project-card.style1 .project-content.style2 .title-wrap .subtitle {
    font-size: 15px;
    line-height: 25px
}

.project-card.style1 .project-content.style2 .title-wrap .title {
    font-size: 20px;
    line-height: 27.5px
}

.project-card.style1 .project-content.style2 .arrow-btn {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 20px
}

.project-card.style1 .project-content.style2 .arrow-btn:hover {
    background-color: var(--title)
}

.project-card.style1:hover .project-content {
    opacity: 1;
    visibility: visible;
    margin-bottom: 0
}

@media(max-width: 1399px) {
    .project-card.style4 {
        margin-bottom: 30px
    }
}

.project-card.style4 .project-thumb .icon a {
    line-height: 1;
    color: var(--theme4);
    transform: rotate(-45deg);
    background-color: var(--white);
    border: 3px solid var(--theme4);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    opacity: 0;
    transition: .4s all ease-in-out
}

.project-card.style4 .project-thumb .icon a i {
    transform: rotate(-40deg)
}

.project-card.style4 .project-thumb::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--theme4);
    opacity: 0;
    transition: all .3s ease-out 0s
}

.project-card.style4 .project-thumb img {
    max-width: 100%
}

.project-card.style4 .project-content {
    margin-top: 19px
}

.project-card.style4 .project-content h4 {
    margin-bottom: 5px
}

.project-card.style4 .project-content h4 a {
    color: var(--white);
    font-family: "Teko", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase
}

.project-card.style4 .project-content p {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px;
    text-transform: capitalize
}

.project-card.style4:hover .project-thumb .icon a {
    opacity: 1
}

.project-card.style4:hover .project-thumb::before {
    opacity: .2
}

.contact-section {
    margin-bottom: 120px
}

.contact-section .contact-left-items .title-area {
    margin-bottom: 40px
}

.contact-section .contact-left-items .title-area h2 {
    color: var(--900, #1A1A1A);
    font-family: Syne;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px
}

.contact-section .contact-left-items .contact-info-items {
    display: flex;
    align-items: center;
    border-radius: 20px;
    background: #f5f1ea;
    padding: 29px 0 40px 40px;
    margin-bottom: 30px
}

@media(max-width: 767px) {
    .contact-section .contact-left-items .contact-info-items {
        padding: 20px
    }
}

@media(max-width: 450px) {
    .contact-section .contact-left-items .contact-info-items {
        flex-wrap: wrap
    }
}

.contact-section .contact-left-items .contact-info-items .icon {
    width: 65px;
    height: 65px;
    background-color: var(--white);
    text-align: center;
    line-height: 65px;
    border-radius: 50%;
    color: var(--theme)
}

@media(max-width: 450px) {
    .contact-section .contact-left-items .contact-info-items .icon {
        flex: none
    }
}

.contact-section .contact-left-items .contact-info-items .content {
    margin-left: 23px
}

.contact-section .contact-left-items .contact-info-items .content h4 {
    color: var(--title);
    font-family: "Syne", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.5px
}

.contact-section .contact-left-items .contact-info-items .content a,
.contact-section .contact-left-items .contact-info-items .content span {
    display: block;
    color: var(--800, #444);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-top: 5px
}

.contact-section .contact-right-items .title-area {
    margin-bottom: 40px
}

.contact-section .contact-right-items .title-area h2 {
    color: var(--900, #1A1A1A);
    font-family: Syne;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px
}

.contact-section .contact-right-items .contact-content {
    padding: 60px;
    border-radius: 20px;
    background: #f5f1ea
}

@media(max-width: 450px) {
    .contact-section .contact-right-items .contact-content {
        padding: 30px 20px
    }
}

.contact-section .contact-right-items .contact-content h2 {
    margin-bottom: 10px
}
.contact-section .contact-right-items .contact-content .contact-form-items .form-clt {
    padding-bottom: 20px;
        margin-bottom: 15px;
        position: relative;
}
.contact-section .contact-right-items .contact-content .contact-form-items .form-clt label.error {
    line-height: normal;
    font-size: 12px;
    color: red;
    position: absolute;
    bottom: 0;
    left: 0;
}
.contact-section .contact-right-items .contact-content .contact-form-items .form-clt span {
    color: var(--title);
    font-weight: 600;
    text-transform: capitalize
}

.contact-section .contact-right-items .contact-content .contact-form-items .form-clt input,
.contact-section .contact-right-items .contact-content .contact-form-items .form-clt textarea {
    color: red;
    padding: 15px 20px;
    border-radius: 5px;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    border: 1px solid #ccc;
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.contact-section .contact-right-items .contact-content .contact-form-items .form-clt input::-moz-placeholder,
.contact-section .contact-right-items .contact-content .contact-form-items .form-clt textarea::-moz-placeholder {
    color: var(--title)
}

.contact-section .contact-right-items .contact-content .contact-form-items .form-clt input::placeholder,
.contact-section .contact-right-items .contact-content .contact-form-items .form-clt textarea::placeholder {
    color: var(--title)
}

.contact-section .contact-right-items .contact-content .contact-form-items .form-clt textarea {
    padding-bottom: 150px;
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    border: 1px solid #ccc;
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    height: 158px
}

.contact-section .contact-right-items .contact-content .contact-form-items button.gt-btn {
    color: var(--White, #FFF);
    font-family: Syne;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
    border-radius: 5px;
    background: var(--P2, #00bdad);
    padding: 20px 30px;
    width: 100%;
    text-align: center
}

.contact-section .contact-maps {
    margin: 90px 100px 0 100px
}

@media(max-width: 767px) {
    .contact-section .contact-maps {
        margin: 25px
    }
}

.contact-wrapper.style3 .contact-input-wrapper .contact-form-items {
    margin-top: 40px
}

.contact-wrapper.style3 .contact-input-wrapper .contact-form-items .form-clt span {
    color: var(--title);
    font-weight: 600;
    text-transform: capitalize
}

.contact-wrapper.style3 .contact-input-wrapper .contact-form-items .form-clt input,
.contact-wrapper.style3 .contact-input-wrapper .contact-form-items .form-clt textarea {
    margin-bottom: 35px;
    padding: 15px 20px;
    border-radius: 16px;
    width: 100%;
    background-color: #f6f8f0;
    border-radius: 10px;
    border: 1px solid #ccc;
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px
}

.contact-wrapper.style3 .contact-input-wrapper .contact-form-items .form-clt input::-moz-placeholder,
.contact-wrapper.style3 .contact-input-wrapper .contact-form-items .form-clt textarea::-moz-placeholder {
    color: var(--title)
}

.contact-wrapper.style3 .contact-input-wrapper .contact-form-items .form-clt input::placeholder,
.contact-wrapper.style3 .contact-input-wrapper .contact-form-items .form-clt textarea::placeholder {
    color: var(--title)
}

.contact-wrapper.style3 .contact-input-wrapper .contact-form-items .form-clt textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid #ccc;
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    height: 158px;
    background-color: #f6f8f0;
    margin-bottom: 20px
}

.contact-wrapper.style3 .contact-input-wrapper .contact-form-items button.gt-btn {
    color: var(--white);
    font-family: "Jost", sans-serif;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    padding: 16px 47px;
    background-color: var(--head-color-3);
    display: inline-block;
    border-radius: 72px
}

.contact-wrapper.style3 .thumb img {
    width: 100%
}

@media(max-width: 991px) {
    .contact-wrapper.style3 .thumb {
        margin-bottom: 30px
    }
}

.contact-container-wrapper.style4 {
    background-color: #1e1e1e;
    margin: 0 80px
}

@media(max-width: 1199px) {
    .contact-container-wrapper.style4 {
        margin: 0
    }
}

.contact-info.style4 {
    padding: 40px 30px;
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 80px;
    background: rgba(255, 255, 255, .05);
    max-width: 420px
}

@media(max-width: 450px) {
    .contact-info.style4 {
        flex-wrap: wrap;
        gap: 16px;
        padding: 30px 20px;
        margin-top: 30px
    }
}

.contact-info.style4 .content p {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.94px;
    margin-bottom: 6px
}

.contact-info.style4 .content a {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 27.982px;
    font-style: normal;
    font-weight: 400;
    line-height: 37.217px
}

.contact-form.style4 {
    background-color: #202020;
    padding: 20px;
    border-radius: 8px
}

.contact-form.style4 form {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.contact-form.style4 form .form-group {
    display: flex;
    gap: 10px
}

@media(max-width: 1199px) {
    .contact-form.style4 form .form-group {
        flex-wrap: wrap
    }
}

.contact-form.style4 form .form-group input,
.contact-form.style4 form .form-group select {
    flex: 1;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    background-color: #1e1e1e;
    color: rgba(255, 255, 255, .5);
    outline: 0
}

.contact-form.style4 form .form-group input::-moz-placeholder,
.contact-form.style4 form .form-group select::-moz-placeholder {
    color: rgba(255, 255, 255, .5);
    font-family: "Teko", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase
}

.contact-form.style4 form .form-group input::placeholder,
.contact-form.style4 form .form-group select::placeholder {
    color: rgba(255, 255, 255, .5);
    font-family: "Teko", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase
}

.contact-form.style4 form textarea {
    width: 100%;
    height: 165px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    background-color: #1e1e1e;
    outline: 0
}

.contact-form.style4 form textarea::-moz-placeholder {
    color: rgba(255, 255, 255, .5);
    font-family: "Teko", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase
}

.contact-form.style4 form textarea::placeholder {
    color: rgba(255, 255, 255, .5);
    font-family: "Teko", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase
}

.contact-form.style4 form button {
    cursor: pointer;
    width: 100%
}

/* float-form */
.float-area {
    position: fixed;
    top: calc(100% - 70vh);
    left: calc(100% - 50px);
    z-index: 10000;
    transition: all 0.5s ease-in-out;
    width: 500px;
    display: flex;
    align-items: center;
}

.float-area.active {
    left: calc(100% - 500px);
}

@media only screen and (min-width: 300px) and (max-width: 575px){
  .float-area {
        display: none;
  }  
}

.float-area .form-trigger {
    height: 200px;
    width: 50px;
    border-radius: 30px 0 0 30px;
    vertical-align: top;
    background: var(--theme);
    cursor: pointer;
    display: inline-flex;
align-items: center;
    justify-content: center;
    position: relative;
}

.float-area .form-trigger>h6 {
    text-transform: capitalize;
    font-weight: 700;
    color: #fff;
    transform: rotate(-90deg);
    display: inline-block;
    white-space: pre;
}

.float-area .float-form-area {
    padding: 20px;
    border-radius: 20px;
    background: #f5f1ea;
    box-shadow: 0px 0px 15px 7px rgba(170, 170, 170, 0.5);
}
.float-area .float-form-area .form-clt {
    margin-bottom: 5px;
    padding-bottom: 15px;
    position: relative;
}
.float-area .float-form-area .form-clt input {
    padding: 10px 15px;
    border-radius: 5px;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    border: 1px solid #ccc;
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}
.float-area .float-form-area .form-clt .form-select {
    padding: 10px 15px;
    border-radius: 5px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px;
    border: 1px solid #ccc;
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}
.float-area .float-form-area .form-clt .form-select:focus {
    outline: none;
    box-shadow: none;
}

.float-area .float-form-area .form-clt label.error {
    font-size: 12px;
    color: red;
    line-height: normal;
    position: absolute;
    bottom: 0;
    left: 0;
}

.float-area .float-form-area .form-clt .iti--allow-dropdown {
    width: 100%;
}

.float-area .float-form-area .form-clt textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    border: 1px solid #ccc;
    color: #444;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

.float-area .float-form-area .gt-btn {
    color: var(--White, #FFF);
    font-family: Syne;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
    border-radius: 5px;
    background: var(--P2, #00bdad);
    padding: 10px 20px;
    max-width: 50%;
    text-align: center;
    margin-inline: auto;
}

.team-container-wrapper.style4 .team_content .team_content_title .title {
    color: var(--white);
    font-family: "Teko", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 300;
    line-height: 75px;
    text-transform: uppercase
}

@media(max-width: 767px) {
    .team-container-wrapper.style4 .team_content .team_content_title .title {
        font-size: 60px;
        line-height: 80px
    }
}

@media(max-width: 450px) {
    .team-container-wrapper.style4 .team_content .team_content_title .title {
        font-size: 40px;
        line-height: 50px
    }
}

.team-container-wrapper.style4 .team_content .team_content_title .text {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.94px;
    text-transform: capitalize
}

.team-container-wrapper.style4 .team_content_info {
    display: flex;
    align-items: center;
    gap: 30px
}

@media(max-width: 1399px) {
    .team-container-wrapper.style4 .team_content_info {
        flex-wrap: wrap
    }
}

.team_content_info_item.style4 {
    overflow: hidden;
    background-color: #1e1e1e;
    position: relative;
    width: 300px !important;
    height: 370px;
    text-align: end;
    transition: all .4s ease-in-out;
    position: relative
}

.team_content_info_item.style4::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    background-color: var(--theme4);
    width: 0%;
    height: 40px;
    z-index: 1;
    transition: .4s all ease-in-out
}

.team_content_info_item.style4 .team-content-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between
}

.team_content_info_item.style4 .team-content-wrapper .content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    text-align: left;
    padding-top: 60px;
    padding-left: 30px;
    transition: .5s all ease-in-out
}

.team_content_info_item.style4 .team-content-wrapper .content .title {
    color: var(--white);
    font-family: "Teko", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase;
    padding-bottom: 10px;
    white-space: nowrap
}

@media(max-width: 575px) {
    .team_content_info_item.style4 .team-content-wrapper .content .title {
        font-size: 30px;
        line-height: 30px;
        white-space: wrap
    }
}

.team_content_info_item.style4 .team-content-wrapper .content .text {
    color: var(--white);
    font-family: "Kanit", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.94px;
    text-transform: capitalize
}

@media(max-width: 450px) {
    .team_content_info_item.style4 .team-content-wrapper .content .text {
        font-size: 16px
    }
}

.team_content_info_item.style4 .team-content-wrapper .thumb {
    position: relative;
    text-align: center;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in-out
}

.team_content_info_item.style4 .team-content-wrapper .icon a {
    line-height: 1;
    color: var(--theme4);
    transform: rotate(-45deg);
    background-color: var(--white);
    border: 3px solid var(--theme4);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 30px;
    bottom: 20px;
    z-index: 9;
    opacity: 0;
    transition: .4s all ease-in-out
}

.team_content_info_item.style4.active {
    width: 630px !important
}

.team_content_info_item.style4.active::after {
    width: 100%
}

.team_content_info_item.style4.active .content {
    opacity: 1;
    visibility: visible;
    position: relative
}

.team_content_info_item.style4.active .icon a {
    opacity: 1
}

/*# sourceMappingURL=main.css.map */

.sec-thanks {
    min-height: 100vh;
    align-content: center;
}
.sec-thanks .desc {
    text-align: center;
}
.sec-thanks .desc .logo {
    height: 100px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 20px;
}
.sec-thanks .desc h1 {
    text-transform: capitalize;
    font-size: clamp(24px,8vw,70px);
    color: var(--theme);
    margin-bottom: 20px;
}
.sec-thanks .desc h6 {
    text-transform: capitalize;
    font-size: clamp(16px,2vw,40px);
        margin-bottom: 20px;
}