/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: 'Roboto', sans-serif;
    --thm-font-2: 'Rajdhani', sans-serif;
    --thm-reey-font: 'reeyregular';
    --thm-gray: #cccccc;
    --thm-gray-rgb: 204, 204, 204;
    --thm-base: #1f4385;
    --thm-base-rgb: 31, 67, 133;
    --thm-black: #181818;
    --thm-black-rgb: 24, 24, 24;
    --thm-black2: #080e25;
    --thm-black2-rgb: 8, 14, 37;
    --thm-primary: #f5f6f0;
    --thm-primary-rgb: 245, 246, 240;
    --thm-base-bg: #090f25;
    --thm-base-bg-rgb: 9 ，15，37;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

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

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

body {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--thm-font);
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-white);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-white);
    font-family: var(--thm-font-2);
    margin: 0;
}

p {
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

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


/***
=============================================
    Form Validation Styles
=============================================
***/
input:focus,
textarea:focus,
select:focus {
    border-color: var(--thm-base);
    outline: none;
}

#contact-form input[type="text"].error {
    border-color: red;
}

#contact-form input[type="email"].error {
    border-color: red;
}

#contact-form select.error {
    border-color: red;
}

#contact-form textarea.error {
    border-color: red;
}

#contact-form label.error {
    display: none !important;
}


.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1600px;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

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

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}


ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol,
li {
    margin: 0;
    padding: 0;
}

/***
=============================================
   Sec Title 
=============================================
***/
.sec-title {
    position: relative;
    display: block;
    margin-top: -7px;
    padding-bottom: 50px;
}

.sec-title__tagline {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.sec-title__tagline h6 {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-font);
}

.sec-title__tagline h6::before {
    position: absolute;
    top: 3px;
    left: -8px;
    width: 22px;
    height: 22px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    z-index: -1;
}

.sec-title__title {
    color: var(--thm-white);
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-transform: capitalize;
}


/***
=============================================
   Thm Btn
=============================================
***/
.thm-btn {
    position: relative;
    display: inline-block;
    border-radius: 25px;
    padding: 1px 35px 0px;
    line-height: 50px;
    color: var(--thm-white);
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    overflow: hidden;
    font-family: var(--thm-font);
    text-transform: uppercase;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 1;
}

.thm-btn:before {
    position: absolute;
    left: 0;
    top: -50px;
    bottom: 100%;
    right: 0;
    content: "";
    background: var(--thm-white);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    border-radius: 0%;
    transition-duration: 400ms;
    z-index: 1;
}

.thm-btn:hover:before {
    bottom: 0;
    top: 0;
}

.thm-btn:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border-radius: 0px;
    opacity: 1;
    transform: scaleY(1.0);
    transition-duration: 400ms;
    background: var(--thm-base);
    z-index: -1;
}

.thm-btn:hover:after {
    transform: scaleY(0);
    transition-duration: 1500ms;
}

.thm-btn .txt {
    position: relative;
    z-index: 1;
}

.thm-btn i::before {
    position: relative;
    display: inline-block;
    font-size: 13px;
    top: 1px;
    font-weight: 700;
    z-index: 5;
}

.thm-btn:hover,
.thm-btn:focus {
    color: #ffffff;
}

/***
=============================================
   Thm Btn Style2
=============================================
***/
.thm-btn.style2 {
    border-radius: 2px;
}

.style2.thm-btn:before {
    border-radius: 2px;
}


/***
=============================================
   Owl Dot Style1
=============================================
***/
.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 50px !important;
    display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 5px;
    background-color: #e7e7e7;
    border: 0px solid #a5a5a5;
    margin: 0px 10px;
    padding: 0px;
    border-radius: 0%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 0%;
    transform: scale(0);
    transition: all 500ms ease;
}


.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active:before {
    transform: scale(1.0);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
    display: none;
}


img {
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

/***
=============================================
   Scroll To Top
=============================================
***/
.scroll-to-top {
    opacity: 0.8;
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--thm-base);
    border: 2px solid var(--thm-base);
    color: #ffffff;
    font-size: 20px;
    line-height: 48px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    display: none;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 999999999;
}

.scroll-to-top:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    z-index: -1;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-to-top:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.scroll-to-top:hover {
    color: #ffffff;
    background-color: var(--thm-white);
    border-color: var(--thm-white);
}

.scroll-to-top i::before {
    position: relative;
    display: inline-block;
    transform: rotate(180deg);
}


/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.styled-pagination li:last-child {
    margin-right: 0;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 55px;
    background: transparent;
    border-radius: 25px;
    color: var(--thm-white);
    font-size: 18px;
    line-height: 55px;
    font-weight: 400;
    border: 1px solid #E1E1E1;
    text-align: center;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.styled-pagination li a:hover,
.styled-pagination li a.active {
    color: var(--thm-white);
    background: var(--thm-base);
    border-color: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
    color: var(--thm-gray);
    font-weight: 600;
    /*  font-size: 14px;
      width: auto;*/
    height: auto;
    text-transform: uppercase;
    border-radius: 0%;
    border: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
    color: var(--thm-white);
    background: transparent;
}


/***
=============================================
   Search Popup
=============================================
***/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    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;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-white);
    opacity: 0.75;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
    padding-right: 75px;
}

.search-popup__content .thm-btn {
    padding: 0;
    width: 68px;
    height: 68px;
    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;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-base);
    border: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.search-popup__content .thm-btn::before {
    border-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.search-popup__content .thm-btn i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
    margin-left: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 5;
}

.search-popup__content .thm-btn:hover i::before {
    color: #ffffff;
}

/***
=============================================
   Video Popup
=============================================
***/
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    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;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.video-popup.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.video-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-white);
    opacity: 0.75;
    cursor: pointer;
}

.video-popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    /*width: 1200px;*/
    /*height: 500px;*/
}

.video-popup__content video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
}


.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}

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

.bootstrap-select .dropdown-menu > li + li > a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu > li.selected > a {
    background: var(--brote-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--brote-base);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
    background: var(--brote-white);
    color: var(--brote-base);
    cursor: pointer;
}


/* Preloader Css*/
.handle-preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--thm-black2);
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    z-index: 9999999;
}

.preloader-close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 30px;
    background: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 99999999;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    background: url('/assets/images/logo.png') no-repeat 3px 50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 45px auto;

    animation-name: zoomInOut;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;

    -webkit-animation-name: zoomInOut;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;

    -moz-animation-name: zoomInOut;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;

    -ms-animation-name: zoomInOut;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: ease-in-out;

    -o-animation-name: zoomInOut;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: ease-in-out;
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}


.handle-preloader .animation-preloader .txt-loading .letters-loading {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 70px;
    line-height: 70px;
    font-weight: 600;
    letter-spacing: 15px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
    font-family: var(--thm-font);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    position: absolute;
    top: 0;
    left: 0;
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    opacity: 0;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.5s;
}


/**
animation: spinner 1s infinite linear;


.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
**/

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    /**border-top-color: rgba(255, 255, 255, 0.5); **/
}


/* Animation preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}


@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 30px;
        letter-spacing: 10px;
    }
}


/*--------------------------------------------------------------
  # Mobile Nav
  --------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-white);
    opacity: 0.4;
    cursor: pointer;
}

.mobile-nav__content {
    position: relative;
    width: 300px;
    background-color: var(--thm-base-bg);
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    z-index: 10;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.mobile-nav__close:hover {
    background-color: var(--thm-white);
}

.mobile-nav__close i:before {
    position: relative;
    display: inline-block;
    transform: rotate(45deg);
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 20px;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 30px;
    color: #ffffff;
    font-size: 15px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 46px;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list > li > ul > li > a {
    font-size: 14px;
    font-weight: 400;
}

.mobile-nav__content .main-menu__list > li > a.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a.expanded {
    color: var(--thm-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-base);
    border: none;
    outline: none;
    color: var(--thm-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    padding: 0;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-base);
}


.mobile-nav__contact {
    position: relative;
    display: block;
    margin-top: 40px;
    margin-bottom: 30px;
}

.mobile-nav__contact li {
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.mobile-nav__contact li + li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-base);
}

.mobile-nav__contact li > i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 0%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
    margin-right: 10px;
}


.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__social a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    transition: 500ms;
}

.mobile-nav__social a + a {
    margin-left: 10px;
}

.mobile-nav__social a:hover {
    color: var(--thm-white);
    background-color: #ffffff;
}


/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
    display: none !important;
}


/*--------------------------------------------------------------
# Main Header Css
--------------------------------------------------------------*/
.main-header {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 99;
}

.main-menu {
    position: relative;
    display: block;
}

.main-menu__wrapper {
    position: relative;
    display: block;
}

.main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-box {
    display: block;
    float: right;
    margin-left: auto;
}


/****
  .main-menu__right {
    position: relative;
    display: block;
    float: right;
  }
  
  .main-menu__search-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 23px 0;
  }
  
  .main-menu__search-box:before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: -30px;
    content: "";
    width: 1px;
    background-color: var(--brote-white);
    opacity: .10;
  }
  
  .main-menu__search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    color: var(--brote-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__search:hover {
    color: var(--brote-primary);
  }
  ***/


.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list > li > ul,
    .main-menu .main-menu__list > li > ul > li > ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list > li > ul,
    .stricky-header .main-menu__list > li > ul > li > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
    position: relative;
    padding-top: 24px;
    padding-bottom: 22px;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
    margin-left: 40px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-family: var(--thm-font);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.main-menu .main-menu__list > li.dropdown > a,
.stricky-header .main-menu__list > li.dropdown > a {
    padding-right: 15px;
}

.main-menu .main-menu__list > li.dropdown > a:before {
    position: absolute;
    top: 0px;
    right: 0px;
    font-family: 'Font Awesome 5 Free' !important;
    content: "\f067";
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.main-menu .main-menu__list > li.current.dropdown > a:before,
.main-menu .main-menu__list > li:hover.dropdown > a:before {
    color: var(--thm-base);
}


.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
    color: #005aff;
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    background-color: #081225ed;;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    transform-origin: top;
    transform-style: preserve-3d;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    z-index: 99;
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
    display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
    transition: all 700ms ease;
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
    position: relative;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
    border-top: 1px solid rgba(var(--thm-black-rgb, 53, 84, 209), 0.07);
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
    position: relative;
    display: flex;
    font-size: 15px;
    line-height: 30px;
    color: var(--thm-white);
    letter-spacing: 0;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    padding: 10px 25px;
    -webkit-transition: 500ms;
    transition: 500ms;
    font-family: var(--thm-font);
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
    color: var(--thm-white);
    background-color: var(--thm-base);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
    top: 0;
    left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}


/*-------------------------------------
    Stricky Header Css
  ---------------------------------------*/
.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    /*background-color: #fff;*/
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 250ms ease, -webkit-transform 250ms ease;
    transition: visibility 250ms ease, -webkit-transform 250ms ease;
    transition: transform 250ms ease, visibility 250ms ease;
    transition: transform 250ms ease, visibility 250ms ease, -webkit-transform 250ms ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

.stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}


.main-menu .mobile-nav__toggler {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 25px;
    cursor: pointer;
    line-height: 0;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-base);
}

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

.stricky-header.main-menu {
    /*background-color: #ffffff;*/
}

.stricky-header .main-menu-box {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.stricky-header .main-menu__wrapper {
    /*background-color: #ffffff;*/
}

.stricky-header .main-menu__wrapper-inner {
    justify-content: space-between;
}

.stricky-header .main-menu__list > li {
    padding-top: 48px;
    padding-bottom: 49px;
}

.stricky-header .main-menu__list > li + li {
    margin-left: 45px;
}

/***
=============================================
Main Header
=============================================
***/
.main-header__language-switcher {
    position: relative;
    display: block;
}

.main-header__language-switcher:hover {
    cursor: pointer;
}

.main-header__language-switcher .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header__language-switcher .inner .icon-box {
    position: relative;
    display: block;
}

.main-header__language-switcher .inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    top: 2px;
}

.logo-box-one {
    position: relative;
    display: block;
}

.logo-box-one a {
    position: relative;
    display: inline-block;
}

.logo-box-one a img {
    /*width: 60%;*/
}

.header-search-box {
    position: relative;
    display: block;
    line-height: 0;
}

.header-search-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-search-box a:hover {
    border-color: var(--thm-base);
    color: var(--thm-base);
}

.main-header-one__bottom-right .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-left: 20px;
}

.main-header-one__bottom-right .btn-box .thm-btn:hover {
    color: var(--thm-white);
}

.main-header-one__bottom-right .btn-box .thm-btn:before {
    background: #ffffff;
}


.stricky-header.stricky-header--one .main-menu__wrapper {
    background: var(--thm-white);
}

/***
=============================================
Main Header Two
=============================================
***/
.main-header-two {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #081225ed; /*transparent;*/
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    z-index: 55;
}

.main-header-two__inner {
    position: relative;
    display: block;
}

.main-header-two .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-two__left {
    position: relative;
    display: block;
}

.main-header-two__middle {
    position: relative;
    display: block;
}

.main-header-two .main-menu .main-menu__list > li,
.stricky-header.stricky-header--two .main-menu__list > li {
    padding-top: 33px;
    padding-bottom: 32px;
}

.main-header-two__right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-two__right .main-header__language-switcher .inner .icon-box span::before {
    color: var(--thm-base);
}

.main-header-two__right .header-search-box {
    position: relative;
    display: block;
    padding-left: 20px;
}

.main-header-two__right .header-search-box::before {
    position: absolute;
    top: -5px;
    left: 0;
    bottom: -2px;
    width: 1px;
    background: rgba(255, 255, 255, .5);
    content: "";
}

.main-header-two__right .header-search-box a {
    position: relative;
    display: block;
    width: auto;
    height: auto;
    border: 0px solid rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-two__right .btn-box {
    line-height: 0;
    margin-left: 30px;
}

.stricky-header.stricky-header--two .main-menu__wrapper {
    background-color: #081225ed;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

/***
=============================================
Main Header Three
=============================================
***/
.main-header-two--three {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 9px;
}

.main-header-two--three .main-menu .main-menu__list > li > a {
    color: var(--thm-white);
}

.main-header-two--three .main-menu .main-menu__list > li.current > a,
.main-header-two--three .main-menu .main-menu__list > li:hover > a {
    color: var(--thm-white);
}

.main-header-two--three .main-menu .main-menu__list > li.dropdown > a:before {
    color: var(--thm-white);
}

.main-header-two--three .main-header-two__right .main-header__language-switcher .inner .icon-box span::before {
    color: var(--thm-gray);
}

.main-header-two--three .header-search-box a {
    color: var(--thm-gray);
}

.main-header-two--three .main-header-two__right .header-search-box::before {
    background: #CCCCCC;
}

/***
=============================================
Main Slider Two
=============================================
***/
.main-slider-two {
    position: relative;
    display: block;
    margin-top: 105px;
}

.main-slider-two .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
    /*background: var(--thm-gray);*/
    background-blend-mode: luminosity;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: 1;
}

.main-slider-two .image-layer video{
    position: absolute;
    /*width: 96%;*/
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.main-slider-two .swiper-slide-active .image-layer {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

/*.main-slider-two .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  background: linear-gradient(89.18deg, rgba(43, 54, 0, 0.91) 44.11%, rgba(59, 73, 0, 0) 91.33%);
  z-index: -1;
}*/

.main-slider-two .shape1 {
    position: absolute;
    left: 545px;
    bottom: 30px;
    opacity: 0.1;
    z-index: 1;
}

.main-slider-two .container {
    position: relative;
    padding: 316px 90px 225px;
}

.main-slider-two__content {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 5;
    margin: 0 100px;
}

.main-slider-two__content .title {
    position: relative;
    display: block;
    margin-bottom: 25px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__content .title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}

.main-slider-two__content .title h2 {
    max-width: 80%;
    color: #ffffff;
    font-weight: 700;
    font-size: 80px;
    line-height: 90px;
}

.main-slider-two__content .text {
    position: relative;
    display: block;
    margin-bottom: 47px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
    transform: perspective(400px) rotateY(0deg) translateX(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 800ms ease;
    -moz-transition: all 800ms ease;
    -ms-transition: all 800ms ease;
    -o-transition: all 800ms ease;
    transition: all 800ms ease;
    z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__content .text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider-two__content .text p {
    max-width: 80%;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
}

.main-slider-two__content-btn {
    position: relative;
    display: flex;
    align-items: center;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__content-btn {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider-two__content-btn .btn-one {
    position: relative;
    display: block;
    line-height: 0;
}

.main-slider-two__content-btn .btn-two {
    position: relative;
    display: block;
    line-height: 0;
    margin-left: 30px;
}

.main-slider-two__content-btn .btn-two .icon-box {
    position: relative;
    display: block;
}

.main-slider-two__icon {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    top: 0px;
    padding-right: 9px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-slider-two__icon i::before {
    position: relative;
    display: inline-block;
    top: 4px;
}

.main-slider-two__content-btn .btn-two:hover .main-slider-two__icon {
    color: var(--thm-base);
}

.main-slider-two__icon span {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    font-family: var(--thm-font);
}


.main-slider-two__nav {
    position: absolute;
    top: 50%;
    left: 0%;
    right: 0;
    max-width: 100%;
    padding-left: 120px;
    padding-right: 120px;
    transform: translateY(-50%);
    z-index: 100;
}

.main-slider-two__nav .swiper-button-next,
.main-slider-two__nav .swiper-button-prev {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid rgb(5 18 56 / 20%);
    color: rgb(5 18 56 / 20%);
    font-size: 24px;
    opacity: 1;
    margin: 0;
    transition: all 500ms ease;
    z-index: 100;
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
    border: 2px solid rgba(255, 255, 255, 1.0);
}

.main-slider-two__nav .swiper-button-prev {
    float: left;
    left: 0;
}

.main-slider-two__nav .swiper-button-next {
    float: right;
    right: 0px;
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
    color: #ffffff;
}

.main-slider-two__nav .swiper-button-next::after,
.main-slider-two__nav .swiper-button-prev::after {
    display: none;
}

.main-slider-two__nav .swiper-button-prev {
    margin-bottom: 0px;
}

.main-slider-two__nav .swiper-button-prev i::before {
    position: relative;
    display: inline-block;
    font-size: 22px;
}

.main-slider-two__nav .swiper-button-next i::before {
    position: relative;
    display: inline-block;
    font-size: 22px;
    transform: rotate(180deg);
}

/***
=============================================
  Page Header
=============================================
***/
.page-header {
    position: relative;
    display: block;
    padding: 180px 0px 132px;
    overflow: hidden;
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center center;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.page-header__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #0a184a;
    opacity: 0.7;
    content: "";
    z-index: -2;
}

.page-header__inner {
    position: relative;
    display: block;
}

.page-header__inner h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 80px;
    line-height: 90px;
    text-transform: capitalize;
    margin-bottom: 0px;
}


.page-header__inner .thm-breadcrumb {
    position: relative;
    display: block;
    margin-top: 13px;
}

.page-header__inner .thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-font);
}

.page-header__inner .thm-breadcrumb li a {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.page-header__inner .thm-breadcrumb li a:hover {
    color: var(--thm-base);
}

/***
=============================================
Footer One
=============================================
***/
.footer-one {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 185px 0px 0px;
    z-index: 1;
}

.footer-one .shape1 {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.05;
    z-index: -1;
}

.footer-one .shape2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.05;
    z-index: -1;
}

.footer-one .shape3 {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.05;
    z-index: -1;
}

.footer-one .shape4 {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.05;
    z-index: -1;
}


.footer {
    position: relative;
    display: block;
    padding-bottom: 30px;
}

.footer-widget__single {
    position: relative;
    display: block;
}

.footer-widget__single-about {
    position: relative;
    display: block;
    max-width: 315px;
    width: 100%;
}

.footer-widget__single-about .logo-box {
    position: relative;
    display: inline-block;
    /*margin-bottom: 34px;*/
}

.footer-widget__single-about .logo-box a {
    position: relative;
    display: inline-block;
}

.footer-widget__single-about-text {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 27px;
}

.footer-widget__single-about-text p {
    color: #999999;
}

.footer-widget__single-about .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 27px;
}

.footer-widget__single-about .contact-info .icon-box {
    position: relative;
    display: block;
}

.footer-widget__single-about .contact-info .icon-box span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 50px;
}

.footer-widget__single-about .contact-info .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.footer-widget__single-about .contact-info .text-box p {
    color: #999999;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-widget__single-about .contact-info .text-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
}

.footer-widget__single-about .contact-info .text-box h3 a {
    color: #ffffff;
}

.footer-widget__single-about .contact-info .text-box h3 a:hover {
    color: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.footer-one__right-single .title {
    position: relative;
    display: block;
    margin-top: -8px;
    margin-bottom: 24px;
}

.footer-one__right-single .title h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    text-transform: capitalize;
}

.footer-one__right-single-services {
    position: relative;
    display: block;
}

.footer-one__right-single-services-list {
    position: relative;
    display: block;
}

.footer-one__right-single-services-list li {
    position: relative;
    display: block;
    margin-bottom: 11px;
}

.footer-one__right-single-services-list li:last-child {
    margin-bottom: 0;
}

.footer-one__right-single-services-list li a {
    position: relative;
    display: block;
    color: #999999;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-one__right-single-services-list li a:hover {
    color: var(--thm-base);
    padding-left: 3px;
}

.footer-one__right-single-contact {
    position: relative;
    display: block;
    margin-left: 35px;
}

.footer-one__right-single-contact-box {
    position: relative;
    display: block;
}

.footer-one__right-single-contact-box p {
    color: #999999;
    margin: 0;
}

.footer-one__right-single-contact-box p + p {
    margin-top: 16px;
}

.footer-one__right-single-contact-box p a {
    color: #999999;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-one__right-single-contact-box p a:hover {
    color: var(--thm-base);
}

.footer-one__right-single-contact .bottom-content {
    position: relative;
    display: block;
    margin-top: 24px;
}

.footer-one__right-single-contact .bottom-content h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    text-transform: capitalize;
    margin-bottom: 19px;
}

.footer-one__right-single-contact .bottom-content p {
    color: #999999;
}

.footer-one__bottom {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0px 30px;
}

.footer-one__bottom .bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-one__bottom .bottom-inner .copyright {
    position: relative;
    display: block;
}

.footer-one__bottom .bottom-inner .copyright p {
    color: #999999;
    margin: 0;
    text-transform: capitalize;
}

.footer-one__bottom .bottom-inner .copyright p a {
    color: #999999;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    display: block;
    text-align: center;
}

.footer-one__bottom .bottom-inner .copyright p a:hover {
    color: var(--thm-base);
}

.footer-one__bottom .bottom-inner .social-links {
    position: relative;
    display: block;
}

.footer-one__bottom .bottom-inner .social-links ul {
    position: relative;
    display: block;
}

.footer-one__bottom .bottom-inner .social-links ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.footer-one__bottom .bottom-inner .social-links ul li:last-child {
    margin-right: 0;
}

.footer-one__bottom .bottom-inner .social-links ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-one__bottom .bottom-inner .social-links ul li a:hover {
    color: var(--thm-white);
}

.footer-one__bottom .bottom-inner .social-links ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    border-radius: 10px;
    transform: scale(0.5);
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: -1;
}

.footer-one__bottom .bottom-inner .social-links ul li a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}

/***
=====================================================
About Two 
=====================================================
***/
.about-two {
    position: relative;
    display: block;
    padding: 110px 0px 110px;
    z-index: 1;
}

.about-two__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /*opacity: 0.2;*/
    background-color: var(--thm-base-bg);
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.about-two__img {
    position: relative;
    display: block;
}

.about-two__img1 {
    position: relative;
    display: block;
    float: right;
    z-index: 1;
}

.about-two__img1:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(23, 29, 0, 0.2), rgba(23, 29, 0, 0.2));
    content: "";
    z-index: 1;
}

.about-two__img1 .shape1 {
    position: absolute;
    right: -30px;
    bottom: -40px;
    z-index: -1;
}

.about-two__img1::before {
    position: absolute;
    top: 0;
    left: -30px;
    width: 10px;
    height: 175px;
    background: var(--thm-base);
    content: "";
}

.about-two__img1 .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.about-two__img1 .inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.about-two__img1:hover .inner img {
    transform: scale(1);
}

.about-two__img2 {
    position: absolute;
    left: 0;
    bottom: -50px;
    overflow: hidden;
    z-index: 2;
}

.about-two__img2::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.about-two__img2:hover::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.about-two__img2 img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.about-two__img2:hover img {
    transform: scale(1);
}

.about-two__content {
    position: relative;
    display: block;
    padding-left: 40px;
}

.about-two__content .sec-title {
    padding-bottom: 35px;
}

.about-two__content-text {
    position: relative;
    display: block;
}

.about-two__content-text p {
    font-size: 18px;
    line-height: 28px;
}

.about-two__counter {
    position: relative;
    display: block;
    margin-top: 30px;
    padding-bottom: 5px;
}

.about-two__counter-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.about-two__counter-single h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
}

.about-two .odometer.odometer-auto-theme,
.about-two .odometer.odometer-theme-default {
    font-family: var(--thm-font-2);
    line-height: 58px;
}

.about-two__counter-single h2 .percent {
    position: relative;
    display: inline-block;
    top: 1px;
    left: -11px;
}

.about-two__counter-single h2 .k {
    position: relative;
    display: inline-block;
    left: -11px;
}

.about-two__counter-single h2 .plus {
    position: relative;
    display: inline-block;
    top: 2px;
    left: -21px;
}

.about-two__counter-single h3 {
    color: var(--thm-gray);
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    text-transform: capitalize;
}

.about-two__content-list {
    position: relative;
    display: block;
    border-top: 1px solid #E1E1E1;
    padding-top: 39px;
}

.about-two__content-list-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.about-two__content-list-single li {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.about-two__content-list-single li:last-child {
    margin-bottom: 0;
}

.about-two__content-list-single li p {
    margin: 0;
}

.about-two__content-list-single li p span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 17px;
    font-weight: 700;
    top: 1px;
    padding-right: 3px;
}

.about-two__content-btn {
    position: relative;
    display: block;
    padding-top: 12px;
    line-height: 0;
}

/***
=====================================================
Footer One
=====================================================
***/
.footer-one--two {
    position: relative;
    display: block;
    padding: 50px 0px 0px;
    background: transparent;
    z-index: 1;
}

.footer-one--two__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.footer-one--two__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-rgb), 0.5);
    content: "";
    z-index: -2;
}

.footer-one--two .footer {
    overflow: hidden;
}

.subscribe-one--two {
    padding-bottom: 100px;
}

.footer-one--two .footer-widget__single-about {
    max-width: 425px;
    width: 100%;
}

.footer-widget__single-about .social-links {
    position: relative;
    display: block;
    margin-top: 35px;
}

.footer-widget__single-about .social-links ul {
    position: relative;
    display: block;
}

.footer-widget__single-about .social-links ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.footer-widget__single-about .social-links ul li:last-child {
    margin-right: 0;
}

.footer-widget__single-about .social-links ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-widget__single-about .social-links ul li a:hover {
    color: var(--thm-white);
}

.footer-widget__single-about .social-links ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    border-radius: 2px;
    transform: scale(0.5);
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: -1;
}

.footer-widget__single-about .social-links ul li a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}

.footer-widget__single-about-menu {
    position: relative;
    display: block;
    margin-top: 39px;
}

.footer-widget__single-about-menu ul {
    position: relative;
    display: block;
}

.footer-widget__single-about-menu ul li {
    position: relative;
    display: inline-block;
    margin-right: 0px;
    padding: 0 18px;
}

.footer-widget__single-about-menu ul li::before {
    position: absolute;
    top: 6px;
    right: 0;
    bottom: 6px;
    width: 1px;
    background: #999999;
    content: "";
}

.footer-widget__single-about-menu ul li:last-child:before {
    display: none;
}

.footer-widget__single-about-menu ul li a {
    position: relative;
    display: block;
    color: #999999;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__single-about-menu ul li a:hover {
    color: var(--thm-base);
}

.footer-one__right-single-post {
    position: relative;
    display: block;
}

.footer-one__right-single-post-single {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.footer-one__right-single-post-single.mb0 {
    margin-bottom: 0;
}

.footer-one__right-single-post-single span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 10px;
}

.footer-one__right-single-post-single p {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}

.footer-one__right-single-post-single p a {
    color: #999999;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-one__right-single-post-single p a:hover {
    color: var(--thm-base);
}


.footer-one--two .footer-one__right-single-services {
    margin-left: -25px;
}

.footer-one--two .footer-one__right-single-post {
    margin-left: -20px;
}

.footer-one--two .footer-one__right-single-contact {
    margin-left: -25px;
}

/***
=============================================
Service Three
=============================================
***/
.service-three {
    position: relative;
    display: block;
    background: #f5f6f0;
    padding: 110px 0px 110px;
    z-index: 1;
}

.service-three__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /*opacity: 0.3;*/
    background-color: var(--thm-base-bg);
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.service-three__single {
    position: relative;
    display: block;
}

.service-three__single-img {
    position: relative;
    display: block;
}

.service-three__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.service-three__single-img .inner:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--thm-black-rgb), 0.6);
    opacity: 0;
    z-index: 1;
    content: "";
}

.service-three__single:hover .service-three__single-img .inner:before {
    opacity: 1;
    cursor: pointer;
}

.service-three__single-img .inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.service-three__single:hover .service-three__single-img .inner img {
    transform: scale(1);
}

.service-three__single-content {
    position: relative;
    display: block;
    background: #ffffffed;
    padding: 5px 22px 5px;
    margin-top: -65px;
    margin-left: 50%;
    z-index: 5;
    border-top-left-radius: 25px;
}

.service-three__single-content .top-content {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.service-three__single-content .top-content .title-box {
    position: relative;
    display: block;
    /*margin-left: 35px;*/
}

.service-three__single-content .top-content .title-box h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    font-family: var(--thm-font);
}

.service-three__single-content .top-content .title-box h2 a {
    color: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-three__single-content .top-content .title-box h2 a:hover {
    color: var(--thm-base);
}

.service-three__single-content .text-box {
    position: relative;
    display: block;
    border-bottom: 1px solid #E1E1E1;
    /*padding-bottom: 17px;*/
}

.service-three__single-content .text-box p {
    margin: 0;
}

.service-three__single-content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 10px;
}

.service-three__single-content .btn-box a {
    color: var(--thm-base);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-three__single-content .btn-box a:hover {
    color: var(--thm-base);
}

.service-three__single-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    top: 0px;
}


.service-three .owl-theme .owl-nav {
    position: absolute;
    top: 33%;
    left: 0%;
    right: 0;
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    transform: translateY(-50%);
    z-index: 5;
}

.service-three .owl-carousel .owl-nav button.owl-prev,
.service-three .owl-carousel .owl-nav button.owl-next {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #ffffff;
    box-shadow: 0px 2px 4px rgba(153, 153, 153, 0.1);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
    opacity: 1;
    margin: 0;
    transition: all 500ms ease;
    z-index: 100;
}

.service-three .owl-carousel .owl-nav button.owl-prev:hover,
.service-three .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--thm-base);
    color: var(--thm-white);
}

.service-three .owl-carousel .owl-nav button.owl-prev {
    float: left;
    left: -120px;
}

.service-three .owl-carousel .owl-nav button.owl-next {
    float: right;
    transform: rotate(180deg);
    right: -120px;
}


/***
=============================================
video-block
=============================================
***/
.video-block {
    position: relative;
    display: block;
    background: #f5f6f0;
    padding: 110px 0px 110px;
    z-index: 1;
}

.video-block__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /*opacity: 0.3;*/
    background-color: var(--thm-base-bg);
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.video-block__single {
    position: relative;
    display: block;
}

.video-block__single-img {
    position: relative;
    display: block;
}

.video-block .owl-theme .owl-nav {
    position: absolute;
    top: 33%;
    left: 0%;
    right: 0;
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    transform: translateY(-50%);
    z-index: 5;
}

.video-block .owl-carousel .owl-nav button.owl-prev,
.video-block .owl-carousel .owl-nav button.owl-next {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #ffffff;
    box-shadow: 0px 2px 4px rgba(153, 153, 153, 0.1);
    border-radius: 50%;
    color: var(--thm-base);
    font-size: 20px;
    opacity: 1;
    margin: 0;
    transition: all 500ms ease;
    z-index: 100;
}

.video-block .owl-carousel .owl-nav button.owl-prev:hover,
.video-block .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--thm-base);
    color: var(--thm-white);
}

.video-block .owl-carousel .owl-nav button.owl-prev {
    float: left;
    left: -120px;
}

.video-block .owl-carousel .owl-nav button.owl-next {
    float: right;
    transform: rotate(180deg);
    right: -120px;
}

/***
=============================================
Faq One Two
=============================================
***/
.faq-one--two {
    position: relative;
    display: block;
    padding-bottom: 110px;
    background: #ffffff;
}

.faq-one--two .accordion-box .block {
    background: transparent;
    border: 1px solid #E1E1E1;
}

.faq-one--two .accordion-box .block .acc-btn .icon-outer {
    color: var(--thm-gray);
}

.faq-one--two .faq-one__img .sec-title {
    padding-bottom: 61px;
}


/***
=============================================
Blog Two
=============================================
***/
.blog-two {
    position: relative;
    display: block;
    background: var(--thm-base-bg);
    padding: 110px 0px 72px;
    z-index: 1;
}

.blog-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.blog-two__single-img {
    position: relative;
    display: block;
}

.blog-two__single-img .overlay-text {
    position: absolute;
    left: 10px;
    bottom: -15px;
    z-index: 5;
}

.blog-two__single-img .overlay-text span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    background: var(--thm-base);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    padding: 5px 20px 4px;
}

.blog-two__single-img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.blog-two__single-img-inner:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--thm-black-rgb), 0.4);
    opacity: 0;
    z-index: 1;
    content: "";
}

.blog-two__single:hover .blog-two__single-img-inner:before {
    opacity: 1;
}

.blog-two__single-img-inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.blog-two__single:hover .blog-two__single-img-inner img {
    transform: scale(1);
}

.blog-two__single-content {
    position: relative;
    display: block;
    padding: 35px 10px 0px;
    padding-right: 0px;
    text-align: center;
}

.blog-two__single-content p {
    color: var(--thm-white);
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.blog-two__single-content p span {
    color: var(--thm-gray);
}

.blog-two__single-content h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    font-family: var(--thm-font);
    margin-bottom: 17px;
}

.blog-two__single-content h2 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-two__single-content h2 a:hover {
    color: var(--thm-base);
}

.blog-two__single-content .btn-box {
    position: relative;
    display: block;
    border-top: 1px solid #E1E1E1;
    padding-top: 17px;
}

.blog-two__single-content .btn-box a {
    color: var(--thm-gray);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-two__single-content .btn-box a:hover {
    color: var(--thm-base);
}

.blog-two__single-content .btn-box a span:before {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
}


/***
=============================================
Team One About
=============================================
***/
.team-one--about {
    position: relative;
    display: block;
    background: var(--thm-base-bg);
    padding: 110px 0px 80px;
    z-index: 1;
}

.team-one--about.team-one .sec-title__tagline h6 {
    color: var(--thm-white);
}

.team-one--about.team-one .sec-title__title {
    color: var(--thm-white);
}

.team-one--about.team-one .sec-title__tagline h6::before {
    background: var(--thm-base);
}

.team-one--about .team-one__single-content h2 a {
    color: var(--thm-white);
}

.team-one--about .team-one__single-content h2 a:hover {
    color: var(--thm-base);
}

.team-one--about .team-one__single-content p {
    color: var(--thm-gray);
}


/***
=============================================
project Three
=============================================
***/
.project-three {
    position: relative;
    display: block;
    background: var(--thm-base-bg);
    padding: 102px 0px 40px;
    z-index: 1;
}

.project-three__menu-box {
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 47px;
}

.project-three__menu-box .project-filter {
    position: relative;
    display: block;
    z-index: 1;
}

.project-three__menu-box .project-filter li {
    position: relative;
    display: inline-block;
    margin-right: 40px;
}

.project-three__menu-box .project-filter li:last-child {
    margin-right: 0;
}

.project-three__menu-box .project-filter li .filter-text {
    position: relative;
    display: block;
    padding-left: 5px;
    color: var(--thm-gray);
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .4s ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.project-three__menu-box .project-filter li .filter-text::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0);
    transition: all 200ms ease;
    z-index: -1;
}

.project-three__menu-box .project-filter li:hover .filter-text::before,
.project-three__menu-box .project-filter li.active .filter-text::before {
    transform: scale(1);
    opacity: 1;
    transition-delay: 200ms;
}

.project-three__menu-box .project-filter li:hover .filter-text,
.project-three__menu-box .project-filter li.active .filter-text {
    color: var(--thm-white);
}

.project-three__menu-box .project-filter li .count {
    display: none;
}

.project-three__single {
    position: relative;
    display: block;
    margin-bottom: 59px;
}

.project-three__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.project-three__single-img:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--thm-base-rgb), 0.6);
    opacity: 0;
    z-index: 1;
    content: "";
}

.project-three__single:hover .project-three__single-img::before {
    opacity: 0.6;
    cursor: pointer;
}

.project-three__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.project-three__single:hover .project-three__single-img img {
    transform: scale(1);
}

.project-three__single-content {
    position: relative;
    display: block;
    margin-top: 19px;
}

.project-three__single-content p {
    margin: 0;
}

.project-three__single-content h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    margin-top: 7px;
    z-index: 1;
}

.project-three__single-content h2 a {
    color: var(--thm-white);
}

.project-three__single-content h2 a span {
    position: relative;
    display: inline-block;
}

.project-three__single-content h2 a span::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 6px;
    right: 0px;
    height: 2px;
    background: var(--thm-white);
    z-index: -1;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform-origin: right center;
    transform-origin: right center;
}

.project-three__single .project-three__single-content h2 a:hover span::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}


/***
=============================================
Case Details
=============================================
***/
.case-details {
    position: relative;
    display: block;
    background: var(--thm-base-bg);
    padding: 60px 0px 37px;
    z-index: 1;
}

.case-details__text-box1 {
    position: relative;
    display: block;
}

.case-details__text-box1 .sec-title {
    padding-bottom: 28px;
}

.case-details__text-box1 p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.case-details__img-box1 {
    position: relative;
    display: block;
    margin-top: 37px;
}

.case-details__img-box1 .single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.case-details__img-box1 .single-img img {
    width: 100%;
}

.case-details__text-box2 {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 30px 60px 28px;
    margin-top: 20px;
}

.case-details__text-box2 ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.case-details__text-box2 ul li {
    position: relative;
    display: inline-block;
    padding-right: 55px;
    margin-left: 55px;
}

.case-details__text-box2 ul li:first-child {
    margin-left: 0;
}

.case-details__text-box2 ul li:last-child {
    padding-right: 0;
}

.case-details__text-box2 ul li::before {
    position: absolute;
    top: -10px;
    right: 0;
    bottom: -8px;
    width: 1px;
    background: #A1C60A;
    opacity: 0.7;
    content: "";
}

.case-details__text-box2 ul li:last-child:before {
    display: none;
}

.case-details__text-box2 ul li p {
    color: var(--thm-white);
    margin: 0;
    margin-bottom: 7px;
}

.case-details__text-box2 ul li h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
}

.case-details__text-box3 {
    position: relative;
    display: block;
    margin-top: 40px;
}

.case-details__text-box3 h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 23px;
}

.case-details__text-box3 .text1 {
    margin-bottom: 28px;
}

.case-details__text-box3 .text2 {
    margin: 0;
}

.case-details__text-box4 {
    position: relative;
    display: block;
    margin-top: 37px;
}

.case-details__text-box4-left {
    position: relative;
    display: block;
}

.case-details__text-box4-left .title-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.case-details__text-box4-left .title-box h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
}

.case-details__text-box4-right {
    position: relative;
    display: block;
}

.case-details__text-box4-right .text-box {
    position: relative;
    display: block;
}

.case-details__text-box4-right .text-box h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 19px;
}

.case-details__text-box4-right .text-box .text1 {
    margin: 0;
}

.case-details__text-box4-right .text-box .text2 {
    margin-top: 21px;
}

.case-details__text-box4-right .img-box {
    position: relative;
    display: block;
    margin-top: 27px;
}

.case-details__text-box4-right .img-box img {
    width: 100%;
}

.case-details__text-box5 {
    position: relative;
    display: block;
    padding-top: 10px;
}

.case-details__text-box5 h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.case-details__text-box5 p {
    margin: 0;
}

/***
=============================================
Project Three Case
=============================================
***/
.project-three--case {
    position: relative;
    display: block;
    padding: 110px 0px 40px;
}


/***
=============================================
Faq Page
=============================================
***/
.faq-page {
    position: relative;
    display: block;
    background: var(--thm-base-bg);
    padding: 50px 0px 110px;
    z-index: 1;
}

.faq-page__search {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.faq-page__search .title-box {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.faq-page__search .title-box h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
}

.faq-page__search-form {
    position: relative;
    display: block;
}

.faq-page__search-form input[type="search"] {
    display: block;
    outline: none;
    background-color: #ffffff;
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 400;
    padding-left: 30px;
    height: 80px;
    width: 100%;
    padding-right: 85px;
    border-radius: 3px;
    border: 1px solid #e1e1e1;
}

.faq-page__search-form::-webkit-input-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.faq-page__search-form::-moz-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.faq-page__search-form::-ms-input-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.faq-page__search-form::-ms-input-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.faq-page__search-form::placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.faq-page__search-form::-ms-input-placeholder {
    color: var(--thm-gray);
}

.faq-page__search-form::-ms-input-placeholder {
    color: var(--thm-gray);
}

.faq-page__search-form button[type="submit"] {
    background-color: var(--thm-white);
    color: var(--thm-base);
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 70px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 3px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-page__search-form button:hover[type="submit"] { /*[type="submit"]*/
    background-color: var(--thm-base);
    color: var(--thm-white);
}

.faq-page__tab-button {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 32px 30px 32px;
    z-index: 1;
    border: 1px solid;
}

.faq-page__tab-button-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /*opacity: 0.15;*/
    background-color: var(--thm-base-bg);
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

.faq-page__tab-button .title-box {
    position: relative;
    display: block;
    margin-bottom: 19px;
}

.faq-page__tab-button .title-box h2 {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    z-index: 1;
}

.faq-page__tab-button .tab-buttons {
    position: relative;
    display: block;
}

.faq-page__tab-button .tab-buttons .tab-btn {
    position: relative;
    display: block;
    color: #999999;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font);
    border-radius: 0px;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.faq-page__tab-button .tab-buttons li.tab-btn {
    border-bottom: 1px solid rgba(245, 246, 240, 0.2);
    padding-bottom: 18px;
    margin-top: 18px;
}

.faq-page__tab-button .tab-buttons li:last-child.tab-btn {
    border-bottom: none;
    padding-bottom: 0px;
}

.faq-page__tab-button .tab-buttons li:first-child.tab-btn {
    margin-top: 0;
}

.faq-page__tab-button .tab-buttons .tab-btn:hover,
.faq-page__tab-button .tab-buttons .tab-btn.active-btn {
    color: #ffffff;
}

.faq-page .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.faq-page .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

/***
=====================================================
End Css 
=====================================================
***/