@charset "UTF-8";

/*=================================
01. Theme Base
==================================*/


/*------------------- 1.1. Mixin -------------------*/

@use "sass:math";

/*------------------- 1.2. Function -------------------*/


/*------------------- 1.3. Variable-------------------*/

:root {
    --theme-color: #2a276a;
    --theme-color2: #af8b2d;
    --title-color: #0A0A0A;
    --title-color2: #161921;
    --body-color: #4B4B4B;
    --smoke-color: #F3F1F2;
    --smoke-color2: #F6F7F9;
    --black-color: #000000;
    --black-color-2: #4B4B4B;
    --gray-color: #D2D2D2;
    --white-color: #ffffff;
    --light-color: #CDCDCD;
    --yellow-color: #FFB539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #D2D2D2;
    --title-font: 'Open Sans', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --style-font: 'Open Sans', sans-serif;
    --icon-font: "Font Awesome 6 Pro";
    --main-container: 1290px;
    --container-gutters: 24px;
    --section-space: 80px;
    --section-space-mobile: 50px;
    --section-title-space: 40px;
    --ripple-ani-duration: 5s;
}


/*------------------- 1.5. Typography -------------------*/

html,
body {
    scroll-behavior: smooth !important;
    overflow-x: hidden !important;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 26px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

iframe {
    border: none;
    width: 100%;
}

button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
    outline: none;
}

input:focus {
    outline: none;
    box-shadow: none;
}


/* img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
} */

ul {
    list-style-type: disc;
}

a {
    color: var(--theme-color);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

a:hover {
    color: var(--title-color);
}

a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
    outline: 0;
}

button {
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

img {
    border: none;
    max-width: 100%;
    border-radius: 6px;
}

p {
    font-family: var(--body-font);
    margin: 0 0 18px 0;
    color: var(--body-color);
    line-height: 1.75;
}

p a,
span a {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: var(--title-font);
    color: var(--title-color);
    text-transform: none;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

h1 {
    font-size: 64px;
    line-height: 1.167;
}

h2 {
    font-size: 48px;
    line-height: 1.227;
}

h3 {
    font-size: 36px;
    line-height: 1.278;
}

h4 {
    font-size: 30px;
    line-height: 1.333;
}


/* Medium Large devices */

@media (max-width: 1399px) {
    h1 {
        font-size: 48px;
    }
}


/* Large devices */

@media (max-width: 1199px) {
    h1 {
        font-size: 44px;
        line-height: 1.3;
    }
    h2 {
        font-size: 40px;
        line-height: 1.25;
    }
    h3 {
        font-size: 30px;
    }
    h4 {
        font-size: 24px;
    }
}


/* Small devices */

@media (max-width: 767px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 30px;
        line-height: 1.3;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 22px;
    }
}


/* Extra small devices */

@media (max-width: 575px) {
    h1 {
        font-size: 34px;
        line-height: 1.35;
    }
    h2 {
        font-size: 30px;
    }
}


/* Extra small devices */

@media (max-width: 375px) {
    h1 {
        font-size: 32px;
    }
}


/*------------------- 1.6. Extend -------------------*/


/*------------------- 1.7. Wordpress Default -------------------*/


/* Large devices */


/* Small devices */


/*=================================
02. Reset
==================================*/


/*------------------- 2.1. Container -------------------*/


/* Medium Large devices */

@media (max-width: 1399px) {
     :root {
        --main-container: 1250px;
    }
}


/* Hight Resoulation devices */

@media only screen and (min-width: 1300px) {
    .container {
        max-width: calc(var(--main-container) + var(--container-gutters));
        padding-left: calc(var(--container-gutters) / 2);
        padding-right: calc(var(--container-gutters) / 2);
    }
}


/*------------------- 2.2. Grid -------------------*/

@media (min-width: 1399px) {
    .gx-25 {
        --bs-gutter-x: 25px;
    }
}


/* Medium devices */


/*------------------- 2.3. Input -------------------*/

.form-control,
textarea,
input {
    height: 56px;
    padding: 0 25px 0 25px;
    padding-right: 45px;
    border: 1px solid transparent;
    color: var(--body-color);
    background-color: var(--smoke-color);
    border-radius: 0;
    font-size: 16px;
    width: 100%;
    font-family: var(--body-font);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.form-control:focus,
textarea:focus,
input:focus {
    outline: 0;
    box-shadow: none;
    border-color: var(--theme-color);
    background-color: var(--white-color);
}

.form-control::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
    color: var(--body-color);
}

.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
    color: var(--body-color);
}

.form-control:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
    color: var(--body-color);
}

.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
    color: var(--body-color);
}

.form-control::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
    color: var(--body-color);
}

.form-control:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
    color: var(--body-color);
}

.form-control::-ms-input-placeholder,
textarea::-ms-input-placeholder,
input::-ms-input-placeholder {
    color: var(--body-color);
}

textarea.form-control,
textarea {
    min-height: 150px;
    padding: 25px 20px;
}

.form-group {
    margin-bottom: var(--bs-gutter-x);
    position: relative;
}

.form-group>i {
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 19px;
    font-size: 16px;
    color: var(--theme-color);
}

.form-group>i.fa-comment {
    margin-top: -2px;
}

[class*="col-"].form-group>i {
    right: calc((var(--bs-gutter-x) / 2) + 25px);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */


/*------------------- 2.4. Slick Slider -------------------*/

.slick-track>[class*=col] {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

.slick-track {
    min-width: 100%;
}

.slick-list {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}

.slick-slide img {
    display: inline-block;
}

.slick-dots {
    list-style-type: none;
    padding: 2px 0;
    margin: 38px 0 30px 0;
    line-height: 0;
    text-align: center;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

.slick-dots li {
    display: inline-block;
    margin-right: 25px;
}

.slick-dots li:last-child {
    margin-right: 0;
}

.slick-dots button {
    font-size: 0;
    padding: 0;
    background-color: transparent;
    width: 8px;
    height: 8px;
    line-height: 0;
    border-radius: 9999px;
    border: none;
    background-color: var(--dots-bg, #D8D8D8);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    position: relative;
}

.slick-dots button:hover {
    border-color: var(--theme-color);
}

.slick-dots button:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 2px solid var(--theme-color);
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    opacity: 0;
    visibility: hidden;
}

.slick-dots .slick-active button {
    background-color: var(--theme-color);
}

.slick-dots .slick-active button::before {
    opacity: 1;
    visibility: visible;
}

.slick-arrow {
    display: inline-block;
    padding: 0;
    background-color: var(--theme-color2);
    color: var(--white-color);
    position: absolute;
    top: 50%;
    border: 1px solid var(--theme-color);
    border-radius: 50%;
    left: var(--pos-x, -200px);
    width: var(--icon-size, 60px);
    height: var(--icon-size, 60px);
    line-height: var(--icon-size, 60px);
    font-size: var(--icon-font-size, 18px);
    margin-top: calc(var(--icon-size, 60px) / -2);
    z-index: 2;
}

.slick-arrow.default {
    position: relative;
    --pos-x: 0;
    margin-top: 0;
}

.slick-arrow.slick-next {
    right: var(--pos-x, -200px);
    left: auto;
}

.slick-arrow:hover {
    background-color: var(--title-color);
    color: var(--white-color);
    border-color: var(--title-color);
}

.arrow-margin .slick-arrow {
    top: calc(50% - 30px);
}

.arrow-wrap .slick-arrow {
    opacity: 0;
    visibility: hidden;
}

.arrow-wrap:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
    left: var(--pos-x, -100px);
}

.arrow-wrap:hover .slick-arrow.slick-next {
    right: -100px;
    left: auto;
}


/* Extra large devices */

@media (max-width: 1500px) {
    .slick-arrow {
        --arrow-horizontal: -20px;
        --pos-x: -70px;
    }
}


/* Medium Large devices */

@media (max-width: 1399px) {
    .slick-arrow {
        --arrow-horizontal: 40px;
        --pos-x: -17px;
    }
}


/* Medium devices */

@media (max-width: 991px) {
    .slick-arrow {
        --icon-size: 40px;
        line-height: 38px;
        margin-right: 40px;
        font-size: 14px;
    }
    .slick-arrow.slick-next {
        margin-right: 0;
        margin-left: 40px;
    }
    .slick-dots {
        margin: 40px 0 0 0;
    }
    .icon-box .slick-arrow {
        margin-right: 0;
    }
}

.slick-3d-active {
    margin-left: -12%;
    margin-right: -12%;
}

.slick-3d-active .slick-list {
    padding-left: 30% !important;
    padding-right: 30% !important;
}

.slick-3d-active .slick-track {
    max-width: 100% !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    -webkit-perspective: 100px;
    perspective: 100px;
}

.slick-3d-active .slick-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    width: 100% !important;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, -webkit-transform 1s;
    transition: transform 1s, opacity 1s;
    transition: transform 1s, opacity 1s, -webkit-transform 1s;
}

.slick-3d-active .slick-3d-next,
.slick-3d-active .slick-3d-prev,
.slick-3d-active .slick-3d-next2,
.slick-3d-active .slick-3d-prev2 {
    display: block;
}

.slick-3d-active .slick-current {
    opacity: 1;
    position: relative;
    display: block;
    z-index: 2;
}

.slick-3d-active .slick-3d-next {
    opacity: 1;
    -webkit-transform: translate3d(50%, 0, -21px);
    transform: translate3d(50%, 0, -21px);
    z-index: 1;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.slick-3d-active .slick-3d-next2 {
    opacity: 1;
    -webkit-transform: translate3d(40%, 0, -23px);
    transform: translate3d(40%, 0, -23px);
    z-index: 0;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.slick-3d-active .slick-3d-prev {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, -21px);
    transform: translate3d(-50%, 0, -21px);
}

.slick-3d-active .slick-3d-prev .testi-card {
    box-shadow: none;
}

.slick-3d-active .slick-3d-prev2 {
    opacity: 1;
    -webkit-transform: translate3d(-40%, 0, -23px);
    transform: translate3d(-40%, 0, -23px);
}


/* Extra large devices */


/* Medium Large devices */


/* Medium devices */


/*------------------- 2.5. Mobile Menu -------------------*/


/*------------------- 2.6. Mobile Menu -------------------*/

:root {
    --input-height: 56px;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}


/*=================================
03. Utilities
==================================*/


/*------------------- 3.1. Preloader -------------------*/


/*------------------- 3.1. Preloader -------------------*/

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*------------------- 3.2. Buttons -------------------*/

.th-btn {
    font-family: var(--body-font);
    background-color: var(--theme-color);
    color: var(--white-color);
    position: relative;
    padding: 17px 36px;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    z-index: 2;
    border-radius: 6px;
    overflow: hidden;
    border: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
}

.th-btn span {
    position: relative;
    z-index: 1;
}

.th-btn.style2:before,
.th-btn.style2:after {
    background-color: var(--theme-color2);
}

.th-btn.style2:after {
    background-color: var(--theme-color2);
}

.th-btn.style2:hover {
    color: var(--white-color);
}

.th-btn.style3 {
    background-color: var(--theme-color2);
}

.th-btn.style3:before,
.th-btn.style3:after {
    background-color: var(--white-color);
}

.th-btn.style3:after {
    background-color: var(--white-color);
}

.th-btn.style3:hover {
    color: var(--title-color);
}

.th-btn:before,
.th-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 100%;
    top: 0;
    width: 150%;
    height: 100%;
    background-color: var(--title-color);
    color: var(--white-color);
    -webkit-transform: skew(30deg) translate3d(0, 0, 0);
    transform: skew(30deg) translate3d(0, 0, 0);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.th-btn:before {
    left: auto;
    right: 100%;
    -webkit-transform: skew(-30deg) translate3d(0, 0, 0);
    transform: skew(-30deg) translate3d(0, 0, 0);
}

.th-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 100%;
    top: 0;
    width: 150%;
    height: 100%;
    background-color: var(--title-color);
    -webkit-transform: skew(30deg) translate3d(0, 0, 0);
    transform: skew(30deg) translate3d(0, 0, 0);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.th-btn:hover {
    color: var(--white-color);
}

.th-btn:hover:before {
    -webkit-transform: skew(-30deg) translate3d(70%, 0, 0);
    transform: skew(-30deg) translate3d(70%, 0, 0);
    opacity: 1;
}

.th-btn:hover:after {
    -webkit-transform: skew(30deg) translate3d(-70%, 0, 0);
    transform: skew(30deg) translate3d(-70%, 0, 0);
    opacity: 1;
}

.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.play-btn>i {
    display: inline-block;
    width: var(--icon-size, 60px);
    height: var(--icon-size, 60px);
    line-height: var(--icon-size, 60px);
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: var(--icon-font-size, 1.1em);
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.play-btn>i.fa-play {
    padding-right: 0.18em;
}

.play-btn:after,
.play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-color);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.play-btn:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.play-btn:hover:after,
.play-btn:hover::before,
.play-btn:hover i {
    background-color: var(--theme-color);
    color: var(--white-color);
}


/* Small devices */

@media (max-width: 767px) {
    .play-btn {
        --icon-size: 60px;
    }
}


/*------------------- 3.3. Titles -------------------*/

.sec-title {
    margin-bottom: calc(var(--section-title-space) - 12px);
    margin-top: -0.25em;
}

.sub-title:has(img) {
    margin-top: 0;
}

.shadow-title {
    font-family: var(--title-font);
    font-size: 150px;
    font-weight: bold;
    line-height: initial;
    background: -webkit-linear-gradient(top, #E9E9E9 0%, transparent 84.54%);
    background: linear-gradient(180deg, #E9E9E9 0%, transparent 84.54%);
    -webkit-background-clip: text;
    background-clip: text;
    text-fill-color: transparent;
    color: transparent;
    position: absolute;
    top: 47%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}

.shadow-title.dark-color {
    background: -webkit-linear-gradient(top, #232732 0%, transparent 84.54%);
    background: linear-gradient(180deg, #232732 0%, transparent 84.54%);
    -webkit-background-clip: text;
    background-clip: text;
    text-fill-color: transparent;
}

.title-area {
    margin-bottom: calc(var(--section-title-space) - 12px);
    position: relative;
    z-index: 2;
    margin-top: -6px;
}

.title-area.text-lg-start {
    /* Medium devices */
}

@media (max-width: 991px) {
    .title-area.text-lg-start {
        text-align: center !important;
    }
}

.title-area.text-xl-start {
    /* Large devices */
}

@media (max-width: 1199px) {
    .title-area.text-xl-start {
        text-align: center !important;
    }
}

.title-area .sec-title {
    margin-bottom: 0 !important;
    font-size: 36px;
    line-height: 46px;
}

.title-area.mb-0 .sec-title {
    margin-bottom: -0.41em;
}


/* Large devices */

@media (max-width: 1199px) {
    .shadow-title {
        font-size: 96px;
    }
    .title-area,
    .sec-title {
        --section-title-space: 60px;
    }
}


/* Medium devices */

@media (max-width: 991px) {
    .shadow-title {
        font-size: 88px;
    }
    .title-area,
    .sec-title {
        --section-title-space: 50px;
    }
}


/* Small devices */

@media (max-width: 767px) {
    .shadow-title {
        font-size: 60px;
    }
}


/* Extra small devices */


/*------------------- 3.4. Common -------------------*/

.shape-mockup {
    position: absolute;
    z-index: -1;
}

.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.btn-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    /* Small devices */
}

@media (max-width: 767px) {
    .btn-group {
        gap: 20px;
    }
}

.btn-group.style1 {
    gap: 30px;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    /* Small devices */
}

@media (max-width: 767px) {
    .btn-group.style1 {
        gap: 20px;
    }
}

.btn-group.style-2 {
    -webkit-column-gap: 55px;
    -moz-column-gap: 55px;
    column-gap: 55px;
    /* Medium Large devices */
}

@media (max-width: 1299px) {
    .btn-group.style-2 {
        -webkit-column-gap: 25px;
        -moz-column-gap: 25px;
        column-gap: 25px;
    }
}

.call-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    /* Extra small devices */
}

@media (max-width: 575px) {
    .call-btn {
        gap: 20px;
    }
}

@media (max-width: 470px) {
    .call-btn {
        display: block;
    }
    .call-btn .th-btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        /* max-width: 204px; */
    }
}

.call-btn:has(.call-btn) {
    gap: 50px;
}

.call-btn_icon {
    color: var(--title-color);
    font-size: 24px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    border-radius: 50%;
}

.call-btn_label {
    font-size: 14px;
    font-family: var(--title-font);
    text-transform: uppercase;
    color: var(--white-color);
    display: block;
    margin-bottom: 4px;
}

.call-btn_link {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 600;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.call-btn_link:hover {
    color: var(--theme-color2);
}

.call-btn_link a {
    color: inherit;
}


/*------------------- 3.6. Font -------------------*/


/*------------------- 3.7. Background -------------------*/

.bg-smoke {
    background-color: var(--smoke-color) !important;
}

.bg-smoke2 {
    background-color: var(--smoke-color2) !important;
}

.bg-title2 {
    background-color: var(--title-color2) !important;
}

[data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}


/*------------------- 3.8. Text Color -------------------*/

.text-white {
    color: var(--white-color) !important;
}


/*------------------- 3.9. Overlay -------------------*/

[data-overlay] {
    position: relative;
    z-index: 2;
}

[data-overlay] [class^="col-"],
[data-overlay] [class*="col-"] {
    z-index: 1;
}

[data-overlay]:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

[data-overlay="title"]:before {
    background-color: var(--title-color);
}

[data-opacity="2"]:before {
    opacity: 0.2;
}

[data-opacity="6"]:before {
    opacity: 0.6;
}

[data-opacity="7"]:before {
    opacity: 0.7;
}


/*------------------- 3.10. Animation -------------------*/

.ripple-animation,
.play-btn:after,
.play-btn:before {
    -webkit-animation-duration: var(--ripple-ani-duration);
    animation-duration: var(--ripple-ani-duration);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}

@-webkit-keyframes headerSticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes headerSticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.sectionShape {
    -webkit-animation: sectionShape 8s linear infinite;
    animation: sectionShape 8s linear infinite;
}

@-webkit-keyframes sectionShape {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}

@keyframes sectionShape {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}

@-webkit-keyframes left-right-img {
    0% {
        right: 0px;
    }
    50% {
        right: -50px;
    }
    100% {
        right: 0px;
    }
}

@keyframes left-right-img {
    0% {
        right: 0px;
    }
    50% {
        right: -50px;
    }
    100% {
        right: 0px;
    }
}

@-webkit-keyframes top {
    0% {
        padding-top: 30px;
    }
    50% {
        padding-top: 10px;
    }
    100% {
        padding-top: 0px;
    }
}

@keyframes top {
    0% {
        padding-top: 30px;
    }
    50% {
        padding-top: 10px;
    }
    100% {
        padding-top: 0px;
    }
}

@-webkit-keyframes top-bottom {
    0% {
        padding-bottom: 0;
    }
    50% {
        padding-bottom: 30px;
    }
    100% {
        padding-bottom: 30px;
    }
}

@keyframes top-bottom {
    0% {
        padding-bottom: 0;
    }
    50% {
        padding-bottom: 30px;
    }
    100% {
        padding-bottom: 30px;
    }
}

.movingX {
    -webkit-animation: movingX 8s linear infinite;
    animation: movingX 8s linear infinite;
}

@-webkit-keyframes movingX {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes movingX {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.moving_X {
    -webkit-animation: moving_X 8s linear infinite;
    animation: moving_X 8s linear infinite;
}

@-webkit-keyframes moving_X {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes moving_X {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.moving {
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}

@-webkit-keyframes moving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes moving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.line-animation {
    -webkit-animation: line-animation 5s ease-out infinite;
    animation: line-animation 5s ease-out infinite;
}

@-webkit-keyframes line-animation {
    0% {
        width: 0;
        overflow: hidden;
    }
    50% {
        width: 200px;
        overflow: hidden;
    }
    100% {
        width: 0;
        overflow: hidden;
    }
}

@keyframes line-animation {
    0% {
        width: 0;
        overflow: hidden;
    }
    50% {
        width: 200px;
        overflow: hidden;
    }
    100% {
        width: 0;
        overflow: hidden;
    }
}

.jump {
    -webkit-animation: jumpAni 5s linear infinite;
    animation: jumpAni 5s linear infinite;
}

@-webkit-keyframes jumpAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes jumpAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.jump-reverse {
    -webkit-animation: jumpReverseAni 7s linear infinite;
    animation: jumpReverseAni 7s linear infinite;
}

@-webkit-keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        -webkit-transform: rotate(40deg);
        transform: rotate(40deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        -webkit-transform: rotate(40deg);
        transform: rotate(40deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

.rotate-x {
    -webkit-animation: rotate-x 15s linear infinite;
    animation: rotate-x 15s linear infinite;
}

@-webkit-keyframes rotate-x {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-x {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.zoom {
    -webkit-animation: zoom 15s linear infinite;
    animation: zoom 15s linear infinite;
}

@-webkit-keyframes left-right-video-img {
    0% {
        right: 0px;
    }
    50% {
        right: -50px;
    }
    100% {
        right: 0px;
    }
}

@keyframes left-right-video-img {
    0% {
        right: 0px;
    }
    50% {
        right: -50px;
    }
    100% {
        right: 0px;
    }
}

.draw {
    -webkit-animation: draw 3s linear alternate infinite;
    animation: draw 3s linear alternate infinite;
}

@-webkit-keyframes draw {
    0% {
        stroke-dashoffset: 280;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes draw {
    0% {
        stroke-dashoffset: 280;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes bounceSlide {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounceSlide {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce-slide {
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: bounceSlide;
    animation-name: bounceSlide;
}

@-webkit-keyframes zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.spin {
    -webkit-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Bottom to Top key frame*/

.BottomToTop {
    -webkit-animation: BottomToTop 15s linear infinite;
    animation: BottomToTop 15s linear infinite;
}

@-webkit-keyframes BottomToTop {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes BottomToTop {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@-webkit-keyframes headerSlideDown {
    0% {
        margin-top: -100px;
    }
    to {
        margin-top: 0;
    }
}

@keyframes headerSlideDown {
    0% {
        margin-top: -100px;
    }
    to {
        margin-top: 0;
    }
}

@-webkit-keyframes animate-positive {
    0% {
        width: 0;
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

.scalein.th-animated {
    --animation-name: scalein;
}

.slidetopleft.th-animated {
    --animation-name: slidetopleft;
}

.slidebottomright.th-animated {
    --animation-name: slidebottomright;
}

.slideinleft.th-animated {
    --animation-name: slideinleft;
}

.slideinright.th-animated {
    --animation-name: slideinright;
}

.slideinup.th-animated {
    --animation-name: slideinup;
}

.slideindown.th-animated {
    --animation-name: slideindown;
}

.rollinleft.th-animated {
    --animation-name: rollinleft;
}

.rollinright.th-animated {
    --animation-name: rollinright;
}

.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
    opacity: 0;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-name: var(--animation-name);
    animation-name: var(--animation-name);
}

.th-animated {
    opacity: 1;
}

@-webkit-keyframes slideinup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70px);
        transform: translateY(70px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideinup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70px);
        transform: translateY(70px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slideinright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(70px);
        transform: translateX(70px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideinright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(70px);
        transform: translateX(70px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes slideindown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-70px);
        transform: translateY(-70px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideindown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-70px);
        transform: translateY(-70px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slideinleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-70px);
        transform: translateX(-70px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideinleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-70px);
        transform: translateX(-70px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes slidebottomright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px) translateY(100px);
        transform: translateX(100px) translateY(100px);
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}

@keyframes slidebottomright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px) translateY(100px);
        transform: translateX(100px) translateY(100px);
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}

@-webkit-keyframes slidetopleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px) translateY(-100px);
        transform: translateX(-100px) translateY(-100px);
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}

@keyframes slidetopleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px) translateY(-100px);
        transform: translateX(-100px) translateY(-100px);
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}


/* Bottom to Top key frame*/


/*=================================
04. Template Style
==================================*/


/*------------------- 4.1. Widget  -------------------*/

.wp-block-archives a:not(:hover) {
    color: inherit;
}


/*Page Title -------------------------*/


/* recent  details -------------------*/

.widget_banner:has(.widget-map) {
    padding: 0;
    line-height: 0px;
}


/* Large devices */


/* Medium devices */


/* Small devices */


/* Large devices */


/* Medium devices */


/* Small devices */

.form-control,
textarea,
input {
    height: 55px;
    padding: 0 25px 0 25px;
    padding-right: 45px;
    border: 1px solid var(--border-color);
    color: var(--body-color);
    background-color: var(--white-color);
    border-radius: 0;
    font-size: 16px;
    width: 100%;
    font-family: var(--body-font);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}


/* Large devices */


/* Small devices */


/*------------------- 4.2. Header  -------------------*/

.th-header {
    position: absolute;
    z-index: 41;
    width: 100%;
}


/*------------------- 4.3. Footer  -------------------*/

.footer-wrapper {
    --border-color: rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.copyright-wrap {
    padding: 15px 0;
    background-size: 100% auto;
}

.copyright-text {
    margin: 0;
    text-align: center;
}


/* .footer-layout1,
.footer-layout2 {
  background-color: var(--title-color);
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 9;
} */


/* .footer-layout1:before,
.footer-layout2:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, #121212 42.92%, rgba(18, 18, 18, 0.97) 100%);
  background: linear-gradient(180deg, #121212 42.92%, rgba(18, 18, 18, 0.97) 100%);
  z-index: -1;
} */

.footer-layout1 .copyright-wrap {
    background-color: var(--black-color);
}

.footer-layout1 .copyright-wrap .copyright-text {
    color: var(--light-color);
}


/* Medium Large devices */

@media (max-width: 1299px) {
    .footer-layout1 {
        background-size: cover;
    }
}


/* Medium devices */

@media (max-width: 991px) {
    .copyright-text {
        text-align: center;
    }
}


/* Extra small devices */

@media (max-width: 575px) {
    .copyright-wrap {
        background-size: cover;
    }
}


/* footer 2 ---------------------------------- */


/* footer 3 ---------------------------------- */


/*------------------- 4.4. Breadcumb  -------------------*/


/* Large devices */


/* Medium devices */


/* Extra small devices */


/* Extra small devices */


/*------------------- 4.5. Pagination  -------------------*/


/* Small devices */


/*------------------- 4.6. Blog  -------------------*/


/* Medium Large devices */


/* Large devices */


/* Medium devices */


/* Small devices */


/* Extra small devices */


/*------------------- 4.7. Comments  -------------------*/


/* Large devices */


/* Small devices */


/*------------------- 4.8. Hero Area  -------------------*/


/* Hero Global ---------------------------------- */

.th-hero-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.th-hero-bg {
    position: absolute;
    inset: 0;
}

.th-hero-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/* Hero 1 ---------------------------------- */

.hero-title {
    font-weight: 800;
    font-size: 100px;
    line-height: 110px;
    color: var(--white-color);
    margin-top: 0px;
    margin-bottom: 50px;
    display: block;
    /* Extra large devices */
    /* Medium devices */
    /* Small devices */
    /* Extra small devices */
}

@media (max-width: 1500px) {
    .hero-title {
        font-size: 80px;
        line-height: 90px;
    }
}

@media (max-width: 1399px) {
    .hero-title {
        font-size: 64px;
        line-height: 74px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 60px;
        line-height: 70px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 35px;
        line-height: 45px;
    }
}

.hero-title:last-of-type {
    margin-bottom: 22px;
}


/* Extra small devices */

@media (max-width: 575px) {
    .hero-title {
        font-size: 44px;
        line-height: 1.2;
    }
}

@media (max-width: 390px) {
    .hero-title {
        font-size: 36px;
        line-height: 1.3;
    }
}


/*------------------- 4.00. Popup  -------------------*/

.popup-form {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0 0 0 / .4)
}

.popup-content {
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    background-color: #f5f7f7;
}

@media(min-width:768px) and (max-width:1200px) {
    .popup-content {
        width: 350px
    }
}

@media(min-width:1200px) {
    .popup-content {
        width: 30%;
    }
}

@media(max-width:547px) {
    .popup-content {
        width: 95%
    }
    .logo_img img {
        width: 250px !important
    }
    .call-do-action-area {
        padding: 60px 0;
    }
}

@media(max-width: 768px) {
    .header-top-address a span {
        display: none;
    }
}

.form-trigger {
    cursor: pointer
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    cursor: pointer;
    top: 10px;
    right: 18px;
    z-index: 99;
}

.close:hover {
    color: #fff;
}

#popupFormContainer .request-quote-form {
    padding: 25px !important;
}

#popupFormContainer .request-quote-form h4 {
    margin-bottom: 10px !important;
}

#popupFormContainer .request-shape {
    display: none;
}


/*------------------- 4.00. Popup Side Menu  -------------------*/

.star-rating {
    overflow: hidden;
    position: relative;
    width: 100px;
    height: 1.2em;
    line-height: 1.2em;
    display: block;
    font-family: var(--icon-font);
    font-weight: 700;
    font-size: 12px;
}

.star-rating:before {
    content: "\e28b\e28b\e28b\e28b\e28b";
    color: #F3BA0E;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    letter-spacing: 3px;
}


/* Small devices */


/*------------------- 4.00. Products  -------------------*/


/* Large devices */


/* Medium devices */


/* Small devices */


/* Extra small devices */


/* Large devices */


/* Medium devices */


/* Extra small devices */


/* Medium Large devices */


/* Medium Large devices */


/* Large devices */


/* Medium devices */


/* Small devices */


/* Extra small devices */


/* Extra small devices */


/*------------------- 4.00. Cart  -------------------*/


/* Medium devices */


/* Small devices */


/*------------------- 4.00. Checkout  -------------------*/


/* Small devices */


/*------------------- 4.00. Wishlist  -------------------*/


/* Medium devices */


/* Small devices */


/*------------------- 4.00. Contact  -------------------*/


/* Contact 1 ---------------------------------- */


/* Large devices */


/* Request Page ----------------------- */

.request-area {
    margin-top: -66px;
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .request-area {
        margin-top: 0;
        padding-top: 40px;
    }
    .request-quote-form {
        margin-top: 40px;
    }
}

.request-quote-form {
    background-color: var(--theme-color);
    padding: 50px;
    position: relative;
    z-index: 9;
    border-radius: 6px;
}

@media (max-width: 575px) {
    .request-quote-form {
        padding: 30px 20px;
    }
}

.request-quote-form .form-control,
.request-quote-form textarea,
.request-quote-form input {
    height: 56px;
    padding: 0 22px 0 22px;
    /* padding-left: 42px; */
    border: 1px solid transparent;
    color: var(--body-color);
    background-color: var(--smoke-color2);
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    font-family: var(--body-font);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.request-quote-form .form-group {
    margin-bottom: 20px;
}

.request-quote-form .form-group i {
    /* left: 33px; */
    top: 19px;
    z-index: 9;
    max-width: 15px;
}

.request-quote-form textarea.form-control {
    min-height: 96px;
    padding: 12px 20px;
    /* padding-left: 45px; */
}

.request-quote-form .request-shape {
    position: absolute;
    left: -25%;
    bottom: 4%;
    /* Medium devices */
}

@media (max-width: 991px) {
    .request-quote-form .request-shape {
        display: none;
    }
}


/* Inquiry ---------------------------------- */


/* Extra small devices */


/* RSVP Page ----------------------- */

.map-sec {
    line-height: 0;
}

.map-sec iframe {
    width: 100%;
    height: 300px;
}


/* Contact Page ---------------------------------- */

.contact-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    /* max-width: 332px; */
}

.contact-info:last-of-type {
    margin-bottom: 0;
}

.contact-info_title {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #787878;
    margin-bottom: 5px;
}

.contact-info_icon {
    color: var(--theme-color);
    text-align: center;
    font-size: 28px;
    position: relative;
    background-color: rgba(175, 139, 45, 0.1);
    width: 70px;
    height: 70px;
    line-height: 65px;
    display: block;
    margin: auto;
    border-radius: 50%;
}

.contact-info_icon img {
    width: 30px;
}

.contact-info_text {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: var(--black-color);
    min-width: 242px;
    display: block;
    margin-bottom: -0.5em;
}

.contact-info_text a {
    color: inherit;
}

.contact-info_text a {
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}

.contact-info_text a {
    color: var(--black-color);
    /* Extra small devices */
}

@media (max-width: 575px) {
    .contact-info_text a {
        text-align: center;
        max-width: 100%;
    }
}

.contact-info_text a:hover {
    color: var(--theme-color);
}

.contact-info:hover .contact-info_icon:before {
    top: 0;
    left: 0;
}


/* service form -----------------------------------*/


/* Large devices */

@media (max-width: 1199px) {
    .contact-info {
        margin-bottom: 0;
    }
    .contact-info-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}


/* Medium devices */

@media (max-width: 991px) {
    .contact-info-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Small devices */

@media (max-width: 767px) {
    .contact-info-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Extra small devices */

@media (max-width: 575px) {
    .contact-info {
        max-width: 100%;
        display: block;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .contact-info_icon {
        display: block;
        margin-bottom: 20px;
    }
    .contact-info .media-body {
        text-align: center;
        display: block;
        margin: 0 auto;
    }
}


/* Extra small devices */

@media (max-width: 375px) {
    .contact-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.img-box4 {
    position: relative;
    /* Medium Large devices */
}


/* @media (max-width: 1299px) {
  .img-box4 {
    padding-right: 40px;
  }
} */

.img-box4 .img4 {
    /* Medium Large devices */
}

@media (max-width: 1299px) {
    .img-box4 .img4 {
        margin-bottom: 40px;
    }
}


/* Large devices */


/*------------------- 4.00. Team  -------------------*/


/* Team global ---------------------------------- */


/* Team 1 ---------------------------------- */

.team-card:hover_img:before {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.team-card:hover_img img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}

.testi-quote img {
    width: 80px;
}

.testi-item {
    position: relative;
    background-color: var(--white-color);
    padding: 40px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 9;
    overflow: hidden;
}

@media (min-width: 1199px) {
    .testi-item {
        height: 235px;
    }
}

@media (max-width: 1499px) {
    .testi-item {
        padding: 30px;
    }
}

@media (max-width: 1199px) {
    .testi-item {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .testi-item {
        padding: 30px;
    }
}

.testi-item.style2 {
    padding: 25px 20px 25px 30px;
    border-radius: 6px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1299px) {
    .testi-item.style2 {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .testi-item.style2 {
        padding: 25px;
    }
}

.testi-item.style2 .testi-item_img {
    position: relative;
    min-width: 60px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

@media (max-width: 860px) {
    .testi-item.style2 .testi-item_img {
        text-align: center;
        margin-bottom: 20px;
    }
}

.testimonial .slick-list {
    padding-bottom: 10px;
}

.testi-item.style2 .testi-item_img:before {
    content: "";
    position: absolute;
    left: 25px;
    top: 80px;
    width: 1px;
    height: 60px;
    background-color: var(--gray-color);
    z-index: -1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    /* Large devices */
}

@media (max-width: 1199px) {
    .testi-item.style2 .testi-item_img:before {
        height: 36px;
    }
}

@media (max-width: 860px) {
    .testi-item.style2 .testi-item_img:before {
        left: 0;
        top: 30px;
        width: 100%;
        height: 2px;
    }
}

.testi-item.style2 .testi-item_img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.testi-item.style2 .testi-item_profile {
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 767px) {
    .testi-item {
        padding: 20px;
    }
}

@media (max-width: 860px) {
    .testi-item_wrapper {
        display: block;
    }
}

.testi-item_profile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.testi-item_img {
    position: relative;
    min-width: 80px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

@media (max-width: 860px) {
    .testi-item_img {
        text-align: center;
        margin-bottom: 20px;
    }
}

.testi-item_img:before {
    content: "";
    position: absolute;
    left: 40px;
    top: -50px;
    width: 2px;
    height: 179px;
    background-color: var(--gray-color);
    z-index: -1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 860px) {
    .testi-item_img:before {
        left: 0px;
        top: 50px;
        width: 100%;
        height: 2px;
    }
}

.testi-item_img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.testi-item_name {
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--title-color);
    margin-bottom: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    /* Extra large devices */
    /* Small devices */
}

@media (max-width: 1500px) {
    .testi-item_name {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 767px) {
    .testi-item_name {
        font-size: 14px;
        line-height: 18px;
    }
}

.testi-item_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    margin-top: 15px;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .testi-item_text {
        font-size: 16px;
        line-height: 30px;
    }
}

.testi-item_content {
    position: relative;
    max-height: 110px;
    /* Adjust this value as needed */
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.testi-item_content.expanded {
    max-height: none;
}

.read-more {
    display: block;
    text-align: left;
    /* margin-top: 10px; */
    color: #007bff;
    cursor: pointer;
}


/*------------------- 4.00. Brand  -------------------*/


/* Brand 1 ---------------------------------- */

.brand-box {
    min-height: 108px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    align-items: center;
}

.brand-box img {
    opacity: 1;
    display: block;
    width: auto;
    max-height: 80px;
    max-width: 100%;
    margin: 0 auto !important;
}

.brand-title {
    position: relative;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 16px;
    color: var(--body-color);
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.brand-title:after,
.brand-title:before {
    content: "";
    position: absolute;
    top: 50%;
    height: 1px;
    width: 502px;
    background-color: #D9D9D9;
    /* Medium Large devices */
    /* Medium devices */
    /* Small devices */
    /* Extra small devices */
}

@media (max-width: 1299px) {
    .brand-title:after,
    .brand-title:before {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .brand-title:after,
    .brand-title:before {
        width: 70%;
    }
}

@media (max-width: 767px) {
    .brand-title:after,
    .brand-title:before {
        width: 50%;
    }
}

@media (max-width: 375px) {
    .brand-title:after,
    .brand-title:before {
        display: none;
    }
}

.brand-title:before {
    margin-left: -32.4rem;
    /* Medium Large devices */
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 1299px) {
    .brand-title:before {
        margin-left: -15.6rem;
    }
}

@media (max-width: 991px) {
    .brand-title:before {
        margin-left: -11.6rem;
    }
}

@media (max-width: 767px) {
    .brand-title:before {
        margin-left: -7.9rem;
    }
}

.brand-title:after {
    margin-left: 1rem;
}


/* Medium devices */


/* Extra small devices */


/*------------------- 4.00. Simple Sections  -------------------*/

.checklist ul {
    padding-left: 0;
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}

.checklist li {
    color: var(--title-color);
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
    padding-left: 28px;
}

.checklist li:before {
    content: "\f058";
    font-family: var(--icon-font);
    font-weight: 900;
    color: var(--theme-color2);
    position: absolute;
    left: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.th-video {
    position: relative;
    border-radius: 6px;
}

.th-video img {
    border-radius: inherit;
}

.th-video .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.th-video .play-btn>i {
    background-color: var(--theme-color);
    color: var(--white-color);
}


/* feature area -----------------------------*/

.feature-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    /* margin-bottom: 35px; */
    gap: 30px;
}

.feature-wrap:not(:last-child) {
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .feature-wrap {
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .feature-wrap {
        display: block;
        margin-bottom: 0;
    }
}

.feature-item-content {
    position: relative;
    background-color: var(--smoke-color2);
    padding: 30px;
    width: 320px;
    height: 185px;
    z-index: 3;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 6px;
}

@media (max-width: 1399px) {
    .feature-item-content {
        padding: 23px;
    }
}

@media (max-width: 1299px) {
    .feature-item-content {
        min-width: 180px;
    }
}

@media (max-width: 767px) {
    .feature-item-content {
        margin-bottom: 35px;
    }
}

.feature-item-content.style1 {
    /* Large devices */
}

@media (max-width: 1199px) {
    .feature-item-content.style1 {
        text-align: center;
    }
}

.feature-item-content.style1 .feature-item_icon:before {
    display: none;
}

.feature-item-content.style1:hover .feature-item_icon img {
    -webkit-filter: none;
    filter: none;
}

.feature-item-content.style1:hover .feature-item_shape {
    opacity: 1;
}

.feature-item-content:hover:before {
    top: 0;
    width: 100%;
    height: 100%;
}

.feature-item-content:hover .feature-item_icon:before {
    background-color: var(--white-color);
    opacity: 0.2;
}

.feature-item-content:hover .feature-item_icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.feature-item-content:hover .feature-item_title {
    color: var(--white-color);
}

.feature-item-content:hover .feature-item_text {
    color: var(--white-color);
}

.feature-item-content:hover .feature-item_shape {
    opacity: 1;
}

.feature-item-content:hover .feature-item_shape img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.feature-item-content:before {
    content: "";
    height: 0;
    width: 0;
    background-color: var(--theme-color);
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.feature-item_shape {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    text-align: center;
}

.feature-item_shape img {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.feature-item_icon {
    position: relative;
    min-width: 50px;
    margin-bottom: 15px;
}

.feature-item_icon:before {
    content: "";
    position: absolute;
    left: -16px;
    top: 0px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(235, 51, 0, 0.2);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.feature-item_icon img {
    -webkit-filter: none;
    filter: none;
    width: 50px;
    height: 50px;
}

.feature-item_title {
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: var(--title-color);
    margin-bottom: 5px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.feature-item_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--body-color);
    margin-bottom: -7px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.feature-box {
    position: relative;
    text-align: right;
    margin-left: -130px;
    /* Medium Large devices */
    /* Large devices */
}

@media (max-width: 1299px) {
    .feature-box {
        margin-left: 0px;
        text-align: left;
    }
}

@media (max-width: 1199px) {
    .feature-box {
        margin-left: 0;
        margin-top: 50px;
        text-align: center;
    }
}

.feature-counter-wrapp {
    position: absolute;
    right: 30px;
    bottom: 30px;
    /* Extra small devices */
}

@media (max-width: 575px) {
    /* .feature-counter-wrapp {
    display: none;
  } */
    .feature-counter-wrapp .feature-counter {
        padding: 5px !important;
    }
}

.feature-counter-wrapp .feature-counter {
    position: relative;
    background-color: var(--white-color);
    padding: 20px;
    /* min-width: 295px;
  min-height: 203px; */
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.08);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    text-align: left;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.feature-counter-wrapp .feature-counter:hover:before {
    width: 100%;
}

.feature-counter-wrapp .feature-counter:before {
    content: "";
    height: 100%;
    width: 4px;
    background-color: var(--theme-color);
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.feature-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.feature-wrapper .feature-icon {
    min-width: 60px;
    min-height: 60px;
    background-color: rgba(175, 139, 45, 0.1);
    border-radius: 50%;
}

.feature-counter:hover .feature-wrapper .feature-icon {
    background-color: #fff;
}

.feature-counter:hover .feature-wrapper .media-body .header-info_link,
.feature-counter:hover .feature-wrapper .media-body .header-info_label {
    color: var(--white-color);
}

.feature-wrapper .feature-icon img {
    display: block;
    margin: 15px auto;
    width: 30px;
}

.feature-wrapper .media-body .header-info_label {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: var(--body-color);
}

.feature-wrapper .media-body .header-info_link {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: var(--title-color);
    margin-bottom: 0;
    /* Extra small devices */
}

@media (max-width: 575px) {
    .feature-wrapper .media-body .header-info_link {
        font-size: 16px;
        line-height: 26px;
    }
}

.feature-wrapper .media-body .header-info_link:hover {
    color: var(--theme-color);
}

.feature-wrapper .media-body .header-info_link a {
    color: inherit;
}


/* Service Card ---------------------------------- */

.service-card:hover_btn {
    position: absolute;
    display: inline-block;
    bottom: 30px;
    right: 0;
}

.pb-40 {
    padding-bottom: 40px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}


/*-- margin Bottom --*/

.mb-5 {
    margin-bottom: 5px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}


/*-- margin Left --*/


/*-- margin Right --*/

.mt-n2 {
    margin-top: -.65rem;
}

.space,
.space-top {
    padding-top: var(--section-space);
}

.space {
    padding-bottom: var(--section-space);
}

.space-extra2 {
    padding-top: calc(var(--section-space) - 40px);
}

.space-extra2 {
    padding-bottom: calc(var(--section-space) - 40px);
}


/* Medium devices */

@media (max-width: 991px) {
    .space,
    .space-top {
        padding-top: var(--section-space-mobile);
    }
    .space {
        padding-bottom: var(--section-space-mobile);
    }
    .space-extra2 {
        padding-top: 70px;
    }
    .space-extra2 {
        padding-bottom: 70px;
    }
}

.th-video {
    position: relative;
}

.th-video.style1 {
    padding-right: 65px;
    height: 100%;
}


/* .th-video.style1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
} */

.th-video .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.th-video .play-btn>i {
    display: inline-block;
    width: var(--icon-size, 120px);
    height: var(--icon-size, 120px);
    line-height: var(--icon-size, 120px);
    text-align: center;
    background-color: var(--white-color);
    color: var(--theme-color);
    font-size: var(--icon-font-size, 1.5em);
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.th-video .play-btn:after,
.th-video .play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white-color);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}


/* Medium Large devices */

@media (max-width: 1399px) {
    .th-video.style1 {
        padding-right: 0;
    }
}


/* Feature 3 ---------------------------------- */

.feature-media {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-media-wrap {
    max-width: 590px;
}

.feature-media_num {
    width: 50px;
    height: 50px;
    line-height: 50px;
    min-width: 50px;
    color: var(--theme-color2);
    background-color: var(--theme-color);
    font-size: 20px;
    font-weight: bold;
    font-family: var(--title-font);
    text-align: center;
    border-radius: 50%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.feature-media_title {
    color: var(--title-color);
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: -0.26em;
}

.feature-media_text {
    margin-bottom: -0.5em;
    color: #8b8e95;
}

.feature-media:last-child {
    margin-bottom: 0;
}

.feature-media:hover .feature-media_num {
    background-color: var(--white-color);
}


/* Large devices */

@media (max-width: 1199px) {
    .feature-media {
        margin-bottom: 40px;
    }
    .feature-media-wrap {
        padding-left: 12px;
        padding-right: 12px;
    }
    .feature-media:last-child {
        margin-bottom: 0;
    }
}


/* Medium devices */

@media (max-width: 991px) {
    .feature-media_title {
        font-size: 22px;
    }
}


/* Extra small devices */

@media (max-width: 575px) {
    .feature-media {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .feature-media_content {
        text-align: center;
    }
}

.cta-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    /* Extra small devices */
    /* Extra small devices */
}

@media (max-width: 575px) {
    .cta-group .th-btn {
        padding: 16px 25px;
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .cta-group {
        /* display: block; */
        text-align: center;
    }
    .cta-group .th-btn:first-child {
        margin-bottom: 15px;
    }
}

.feature-media-wrap {
    max-width: 590px;
}

.feature-media_text {
    margin-bottom: -0.5em;
    color: var(--body-color);
}

.feature-media:last-child {
    margin-bottom: 0;
}

.feature-media:hover .feature-media_num {
    background-color: var(--white-color);
}


/* Large devices */

@media (max-width: 1199px) {
    .feature-media {
        margin-bottom: 25px;
    }
    .feature-media-wrap {
        padding-left: 12px;
        padding-right: 12px;
    }
    .feature-media:last-child {
        margin-bottom: 0;
    }
}


/* Medium devices */

@media (max-width: 991px) {
    .feature-media_title {
        font-size: 22px;
    }
}


/* Extra small devices */

@media (max-width: 575px) {
    .feature-media {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .feature-media_content {
        text-align: center;
    }
}

.map-sec {
    line-height: 1px;
}


/* Medium devices */

@media (max-width: 991px) {
    .map-sec iframe {
        aspect-ratio: 16 / 6;
    }
}


/* Small devices */

@media (max-width: 767px) {
    .map-sec iframe {
        height: 220px;
    }
}


/*------------------- Header -------------------*/


/* Header 3 ---------------------------------- */

.header-info_icon img {
    width: 35px;
}

.btn-group img,
.call-btn img,
.cta-group img {
    width: 25px;
    margin-right: 10px;
}

.th-btn.style3:hover img {
    filter: brightness(0);
}


/*------------------- Service -------------------*/

.service-tab .service-list li::marker {
    color: var(--theme-color);
    font-size: 1.5em;
}


/* Large devices */

.cta-shape-wrap {
    /* padding-top: 80px; */
    position: relative;
    z-index: 2;
}

.cta-shape-wrap:before {
    content: "";
    height: 100%;
    width: 1400px;
    position: absolute;
    top: 0;
    right: 240px;
    background-color: var(--title-color2);
    -webkit-clip-path: polygon(0 0, 100% 21%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 21%, 100% 100%, 0% 100%);
    z-index: -1;
    /* Hight Resoulation devices */
    /* Large devices */
    /* Extra small devices */
}

@media (min-width: 1922px) {
    .cta-shape-wrap:before {
        width: 4999px;
    }
}

@media (max-width: 1199px) {
    .cta-shape-wrap:before {
        right: 0;
        -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    }
}

@media (max-width: 575px) {
    .cta-shape-wrap:before {
        right: -12px;
    }
}

.car-img {
    margin-top: -31px;
    margin-bottom: -110px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .car-img {
        margin-top: -80px;
        margin-bottom: 20px;
    }
}


/*------------------- Service -------------------*/


/* Service 2 ---------------------------------- */

.services-2-box {
    position: relative;
    --space: 30px;
}

.services-2-box_img {
    overflow: hidden;
}

.services-2-box_img img {
    width: 100%;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.services-2-box_content {
    background-color: var(--white-color);
    position: relative;
    padding: 30px 35px 30px 45px;
    /* max-width: calc(100% - var(--space)*2); */
    margin-left: var(--space);
    margin-top: -50px;
    border-radius: 0 0 6px 6px;
}

@media(min-width: 992px) {
    .services-2-box_content {
        height: 370px;
    }
}

.services-2-box_title {
    font-size: 24px;
    margin-top: -0.42em;
    margin-bottom: 12px;
}

.services-2-box_number {
    font-size: 24px;
    font-weight: bold;
    color: var(--white-color);
    display: block;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--theme-color2);
    position: absolute;
    top: 0;
    left: calc(0px - var(--space));
}

.services-2-box_number::before {
    content: "";
    background-color: transparent;
    border-style: solid;
    border-width: 0 30px 20px 0;
    border-color: transparent #af8b2d transparent transparent;
    position: absolute;
    left: 0;
    top: 100%;
}

.services-2-box_text {
    margin-bottom: -0.5em;
    max-width: 300px;
}

.services-2-box:hover .services-2-box_img img {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}


/* Medium devices */

@media (max-width: 991px) {
    .services-2-box_content {
        padding: 40px 15px 40px 45px;
    }
}


/* Extra small devices */

@media (max-width: 375px) {
    .services-2-box {
        --space: 15px;
    }
    .services-2-box_title {
        font-size: 22px;
        margin-bottom: 8px;
    }
    .services-2-box_content {
        margin-top: -40px;
    }
    .services-2-box_number {
        font-size: 20px;
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
    .services-2-box_number:before {
        content: "";
        border-width: 0 15px 10px 0;
    }
}


/*------------------- About -------------------*/


/* About 5 ---------------------------------- */

.img-box-1 {
    position: relative;
    display: inline-block;
}


/* Pricing 1 ---------------------------------- */

.price-item:not(:hover) .checklist li:before {
    color: var(--title-color);
}

.price-item:not(:hover) .th-btn {
    background-color: var(--title-color);
}

.price-item:not(:hover) .th-btn:before,
.price-item:not(:hover) .th-btn:after {
    background-color: var(--theme-color);
}

.cta-title3 {
    /* Medium Large devices */
}

@media (max-width: 1299px) {
    .cta-title3 {
        font-size: 30px;
    }
}


/*------------------- Header -------------------*/


/* Header 6 ---------------------------------- */

.header-layout6 .header-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-layout6 .header-info_icon {
    color: var(--title-color);
    font-size: 32px;
    margin: 0 15px 0 0;
}

.header-layout6 .header-info_label {
    font-size: 14px;
    color: #fff;
    font-family: var(--title-font);
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    top: 6px;
}

.header-layout6 .header-info_link {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.header-layout6 .header-info_link a {
    color: inherit;
}

.header-layout6 .header-info_link a:hover {
    color: var(--theme-color2);
}


/* Small devices */

.logo-style1 {
    padding: 20px 0;
    /* text-align: center; */
}

.logo-style1 img {
    width: 300px;
}

@media (min-width: 767px) {
    .logo-style1 {
        position: relative;
        height: 100px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 55px 0 0;
        margin: 0;
    }
    .logo-style1:before {
        content: "";
        position: absolute;
        right: 100%;
        top: 0;
        bottom: 0;
        width: 99999px;
        background-color: inherit;
    }
}


/*------------------- Hero -------------------*/


/* Hero Global ---------------------------------- */

.hero-slider-6 {
    position: relative;
}

.hero-slider-6 .btn-group {
    gap: 30px;
}

.hero-slider-6 .th-hero-bg {
    position: absolute;
    inset: 0;
}

.hero-slider-6 .th-hero-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/* Medium Large devices */


/* Large devices */


/* Medium devices */

@media (max-width: 991px) {
    .hero-slider-6 .btn-group {
        gap: 15px;
    }
}


/* Small devices */

@media (max-width: 767px) {
    .hero-slider-6 .th-btn {
        padding: 17px 26px;
    }
}


/* Hero 1 ---------------------------------- */

.hero-meta {
    margin-bottom: 30px;
}

.hero-meta li {
    display: inline-block;
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    color: var(--white-color);
    position: relative;
}

.hero-style6 {
    position: relative;
    z-index: 2;
    padding: 250px 0;
    /* Medium devices */
}

.hero-style6 .hero-title {
    color: var(--white-color);
    font-size: 44px;
    line-height: 54px;
    margin-bottom: 46px;
    font-weight: 700;
}

.hero-style6 .hero-title:first-of-type {
    margin-bottom: 0 !important;
}


/* Medium Large devices */

@media (max-width: 1399px) {
    .hero-style6 {
        padding: 180px 0;
    }
    .hero-style6 .hero-title {
        font-size: 62px;
        margin-bottom: 40px;
    }
}


/* Large devices */

@media (max-width: 1199px) {
    .hero-meta {
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .hero-style6 {
        padding-top: 120px !important;
        padding-bottom: 60px !important;
    }
    .hero-meta li {
        font-size: 18px !important;
    }
    .title-area .sec-title {
        font-size: 24px !important;
        line-height: 34px;
    }
    .feature-item-content {
        height: auto !important;
        min-width: 100%;
    }
    .th-477 {
        height: 377px !important;
    }
}


/* Medium devices */

@media (max-width: 991px) {
    .hero-style6 {
        padding: 100px 0;
    }
    .hero-style6 .hero-title {
        font-size: 46px;
    }
    /* .hero-slider-6 .th-hero-slide {
    padding-bottom: 100px;
  } */
}


/* Small devices */

@media (max-width: 767px) {
    .hero-style6 .hero-title {
        font-size: 40px;
    }
    .hero-style6 .btn-group {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}


/* Extra small devices */

@media (max-width: 575px) {
    .hero-style6 .hero-title {
        font-size: 30px !important;
        line-height: 40px;
        margin-bottom: 30px;
    }
    .hero-meta {
        margin-bottom: 20px;
    }
}


/*------------------- About -------------------*/


/* About 1 ---------------------------------- */

.feature-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -15px;
}


/*------------------- Footer -------------------*/

@media (min-width: 992px) {
    .pr-lg-4 {
        padding-right: 40px;
    }
    .pl-lg-4 {
        padding-left: 40px;
    }
    .d-lg-block {
        display: block;
    }
}

.th-477 {
    height: 477px;
}

.img-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: inherit;
}

.bg-fixed {
    background-attachment: fixed;
}

.contact-container {
    position: fixed;
    right: 0;
    bottom: 20px;
    /* transform: translateY(-50%); */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
    transition: opacity 0.5s ease-in-out;
    /* Smooth transition */
}

.call-us,
.whatsapp-us {
    background-color: var(--theme-color2);
    border: 1px solid #eee;
    border-radius: 18px 0 0 18px;
    max-width: 50px;
    margin-bottom: 10px;
    text-align: center;
    padding: 5px 6px;
    transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
}

.call-us a,
.whatsapp-us a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.whatsapp-us img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.call-us img {
    width: 35px;
    margin-right: 15px;
    color: var(--tp-theme-primary);
}

.call-us:hover,
.whatsapp-us:hover {
    max-width: 200px;
}

.chat-with-us p {
    margin-bottom: 0;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
}


/* Media Query for mobile devices */

@media (max-width: 768px) {
    .contact-container {
        right: auto;
        left: 0;
        align-items: flex-start;
        bottom: 300px !important;
    }
    .call-us,
    .whatsapp-us {
        border-radius: 0 18px 18px 0;
    }
}

.background-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.shape-mockup-wrap {
    z-index: 2;
    position: relative;
}

.m-0 {
    margin: 0 !important;
}

.brand-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brand-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
    /* Adjust duration for speed */
    will-change: transform;
}

.brand-track {
    display: flex;
    width: calc(200%);
    /* Double the width for seamless scrolling */
}

.brand-box {
    flex: 0 0 calc(16.66% - 10px);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-box img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 575px) {
    .brand-box {
        flex: 0 0 calc(25% - 10px) !important;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.service-sec .title-area p {
    color: #fff;
}

#phone {
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #55585b;
}

.iti {
    width: 100%;
}

.w-20 {
    width: 20px !important;
}