/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

:root {
    --thm-font: 'Montserrat', sans-serif;
    --thm-gray: #878c8f;
    --thm-gray-rgb: 135, 140, 143;
    --thm-base: #E40F15;
    --thm-base-rgb: 228, 15, 21;
    --thm-black: #000000;
    --thm-black-rgb: 26, 26, 26;
}

.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-black);
    font-family: var(--thm-font);
    -webkit-text-size-adjust: auto;
}

body.locked {
    overflow: hidden;
}

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

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-black);
    font-family: var(--thm-font);
    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;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

::-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;
}


/***
=============================================
    Rating Box 
=============================================
***/

.rating-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.rating-box ul {
    overflow: hidden;
}

.rating-box ul li {
    position: relative;
    display: inline-block;
    margin-right: 0px;
    line-height: 0;
    color: #F8DF00;
}

.rating-box ul li:last-child {
    margin-right: 0;
}

.rating-box ul li span {
    position: relative;
    display: inline-block;
    color: #F8DF00;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


/***
=============================================
   Sec Title 
=============================================
***/

.sec-title {
    position: relative;
    display: block;
    margin-top: -10px;
    padding-bottom: 46px;
}

.sec-title h2 {
    color: var(--thm-black);
    font-size: 40px;
    line-height: 1.1em;
    font-weight: 700;
    font-family: var(--thm-font);
}


/***
=============================================
   Sec Title Two
=============================================
***/

.sec-title-two {
    position: relative;
    display: block;
    margin-top: -7px;
    padding-bottom: 46px;
}

.sec-title-two .sub-title {
    position: relative;
    display: inline-block;
    padding-bottom: 13px;
}

.sec-title-two .sub-title .round-one {
    position: absolute;
    top: 9px;
    left: -25px;
    content: "";
    margin: 0 auto;
    line-height: 0;
}

.sec-title-two .sub-title .round-one::before {
    position: absolute;
    top: 8px;
    left: -32px;
    width: 25px;
    height: 2px;
    background: var(--thm-base);
    content: "";
}

.sec-title-two .sub-title .round-two {
    position: absolute;
    top: 9px;
    right: -25px;
    /* width: 16px;
  height: 16px; */
    /* border-radius: 50%; */
    /* border: 2px solid var(--thm-base); */
    content: "";
    margin: 0 auto;
    line-height: 0;
}

.sec-title-two .sub-title .round-two::before {
    position: absolute;
    top: 8px;
    right: -32px;
    width: 25px;
    height: 2px;
    background: var(--thm-base);
    content: "";
}

.sec-title-two .sub-title h3 {
    color: var(--thm-base);
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
}

.sec-title-two h2 {
    color: var(--thm-black);
    font-size: 42px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: -0.01em;
    font-family: var(--thm-font);
}


/***
=============================================
   Sec Title Three
=============================================
***/

.sec-title-three {
    position: relative;
    display: block;
    margin-top: -7px;
    padding-bottom: 48px;
}

.sec-title-three__tagline {
    position: relative;
    display: block;
    margin-bottom: 6px;
}

.sec-title-three__tagline p {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sec-title-three h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 600;
    text-transform: capitalize;
}


/***
=============================================
   Thm Btn
=============================================
***/

.thm-btn {
    position: relative;
    display: inline-block;
    border-radius: 10px;
    padding: 0px 45px 0px;
    line-height: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    background: var(--thm-black);
    overflow: hidden;
    font-family: var(--thm-font);
    text-transform: capitalize;
    transition: all 0.5s ease-in-out 0.2s;
    z-index: 1;
}

.thm-btn:before {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    content: '';
    margin: auto;
    background-color: var(--thm-base);
    transition: all .5s;
    z-index: -1;
    border-radius: 10px;
}

.thm-btn:hover:before {
    transform: rotateX(90deg);
}

.thm-btn::after {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    content: '';
    margin: auto;
    background-color: var(--thm-base);
    transition: all .5s;
    z-index: -1;
    border-radius: 10px;
}

.thm-btn:hover::after {
    transform: rotateY(90deg);
}

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

.thm-btn i::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    top: 1px;
    font-weight: 700;
}

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


/***
=============================================
   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 {
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--thm-base);
    border: 2px solid var(--thm-base);
    color: #ffffff;
    font-size: 20px;
    line-height: 56px;
    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-black);
    border-color: var(--thm-black);
}

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

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

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

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

.styled-pagination li.prev a,
.styled-pagination li.next a {
    border-radius: 50%;
    color: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
    color: #ffffff;
}

.styled-pagination li a span:before {
    position: relative;
    top: 1px;
    color: var(--thm-black);
    font-size: 17px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
    color: #ffffff;
}

.checked-box1 {
    position: relative;
    display: block;
    min-height: 20px;
}

.checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    cursor: pointer;
    min-height: 20px;
    font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"] {
    display: none;
}

.checked-box1 input[type="checkbox"]+label span {
    position: absolute;
    top: 0px;
    left: 0;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #80868d;
    cursor: pointer;
    border-radius: 4px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box1 label span:before {
    font-family: 'icomoon' !important;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    content: "\e922";
    font-size: 10px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    margin: 0px;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checked-box1 input[type="checkbox"]:checked+label span {
    border-color: #80868d;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
    opacity: 1.0;
}


/***
=============================================
   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-black);
    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: #ffffff;
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
    margin-left: 0;
    z-index: 5;
}

.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-base);
    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 {
    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: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-black);
    opacity: 0.7;
    cursor: pointer;
}

.mobile-nav__content {
    position: relative;
    width: 300px;
    background-color: var(--thm-base);
    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-black);
}

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

.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-black);
    border: none;
    outline: none;
    color: #fff;
    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__content .home-showcase__title {
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 0px;
}

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

.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__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

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

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

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    position: relative;
    color: #000000;
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    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.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: var(--thm-base);
}

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

.main-menu .main-menu__list>li.dropdown>a:before {
    position: absolute;
    top: 1px;
    right: 2px;
    font-family: 'icomoon' !important;
    content: "\e905";
    color: #ffffff;
    font-size: 11px;
    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);
    font-weight: 700;
}

.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: #fff;
    -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-base-rgb, 53, 84, 209), 0.05);
}

.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-gray);
    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: #ffffff;
    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 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms 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;
}


/***
  .mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 0px;
  }
  
  @media (min-width: 1200px) {
    .mobile-nav__buttons {
      display: none;
    }
  }
  
  .mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-base);
    cursor: pointer;
  }
  
  .mobile-nav__buttons a+a {
    margin-left: 10px;
  }
  
  .mobile-nav__buttons a:hover {
    color: var(--brote-base);
  }
  **/

.main-menu .mobile-nav__toggler {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 40px;
    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 .phone-number-box-style1 {
    display: none;
}

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

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

.stricky-header .main-menu-style1-right {
    margin-left: 30px;
}


/***
=============================================
Main Header One
=============================================
***/

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

.main-header-one__top {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 19px 0px 20px;
    z-index: 1;
}

.main-header-one__top::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 70%;
    background: #000000;
    content: "";
    z-index: -1;
}

.main-header-one__top .auto-container {
    max-width: 1530px;
    width: 100%;
}

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

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

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

.header-social-links {
    position: relative;
    display: block;
}

.header-social-links li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.header-social-links li:last-child {
    margin-right: 0;
}

.header-social-links li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .4);
    border-radius: 50%;
    z-index: 1;
}

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

.header-social-links li a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}

.header-social-links li a span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
}

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

.main-header-one__top-right-btn {
    position: relative;
    display: block;
}

.main-header-one__top-right-btn a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    background: #E40F15;
    padding: 16px 65px 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one__top-right-btn a:hover {
    background: var(--thm-base);
}

.header-contact-info {
    position: relative;
    display: block;
    margin-left: 70px;
}

.header-contact-info ul {
    position: relative;
    display: block;
}

.header-contact-info ul li {
    position: relative;
    display: inline-block;
    margin-left: 30px;
    padding-right: 36px;
}

.header-contact-info ul li:first-child {
    margin-left: 0;
}

.header-contact-info ul li:last-child {
    padding-right: 0;
}

.header-contact-info ul li::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: rgba(var(--thm-gray-rgb), 0.4);
    transform: rotate(15deg);
    content: "";
}

.header-contact-info ul li:last-child:before {
    display: none;
}

.header-contact-info ul li .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.header-contact-info ul li .icon-box {
    position: relative;
    display: block;
}

.header-contact-info ul li .icon-box span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 30px;
}

.header-contact-info ul li .content-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.header-contact-info ul li .content-box p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}

.header-contact-info ul li .content-box h4 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.header-contact-info ul li .content-box h4 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-contact-info ul li .content-box h4 a:hover {
    color: var(--thm-base);
}

.main-header-one__bottom {
    position: relative;
    display: block;
    background: #000000;
}

.main-header-one__bottom .auto-container {
    max-width: 1530px;
    width: 100%;
}

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

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

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

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

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

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

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

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

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

.header-search-box a {
    color: #ffffff;
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

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

.main-header-one__bottom-right-btn {
    position: relative;
    display: block;
}

.main-header-one__bottom-right-btn a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    background: var(--thm-base);
    padding: 9px 20px 9px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one__bottom-right-btn a:hover {
    color: var(--thm-base);
    background: #ffffff;
}

.main-header-one__bottom-right-btn a span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    top: 1px;
    margin-right: 6px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one__bottom-right-btn a:hover span:before {
    color: var(--thm-base);
}

.stricky-header.stricky-header--one .main-menu__wrapper {
    background: #ffffff;
}


/***
=============================================
Main Header Two
=============================================
***/

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

.main-header-two__top {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 18px 0px 17px;
}

.main-header-two__top .auto-container {
    max-width: 1670px;
    width: 100%;
}

.main-header-two__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 305px;
}

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

.main-header-two__contact-info {
    position: relative;
    display: block;
    line-height: 0;
}

.main-header-two__contact-info li {
    position: relative;
    display: inline-block;
    margin-right: 85px;
}

.main-header-two__contact-info li:last-child {
    margin-right: 0;
}

.main-header-two__contact-info li .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-two__contact-info li .inner .icon-box {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding-top: 5px;
}

.main-header-two__contact-info li .inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    top: -2px;
}

.main-header-two__contact-info li .inner .text-box {
    position: relative;
    display: block;
    margin-left: 15px;
}

.main-header-two__contact-info li .inner .text-box p {
    color: #ffffff;
    font-size: 15px;
    line-height: 25px;
}

.main-header-two__contact-info li .inner .text-box a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-two__contact-info li .inner .text-box a:hover {
    color: var(--thm-black);
}

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

.main-header-two__top-right .number {
    position: relative;
    display: block;
    margin-right: 60px;
}

.main-header-two__top-right .number p {
    font-size: 17px;
    line-height: 27px;
    font-weight: 600;
}

.main-header-two__top-right .number p span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    top: 1px;
    margin-right: 5px;
}

.main-header-two__top-right .number p a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-two__top-right .number p a:hover {
    color: var(--thm-black);
}

.main-header-two__top-right .btn-box {
    position: relative;
    display: block;
}

.main-header-two__top-right .btn-box a {
    position: relative;
    color: #ffffff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0px 30px 0px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.main-header-two__top-right .btn-box a::before {
    position: absolute;
    top: -25px;
    left: 0;
    bottom: -24px;
    right: 0;
    background: rgba(255, 255, 255, .2);
    content: "";
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.main-header-two__top-right .btn-box a:hover:before {
    background: rgba(255, 255, 255, 1.0);
}

.main-header-two__top-right .btn-box a:hover {
    color: var(--thm-base);
}

.main-header-two__bottom {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 10px 0 10px;
}

.main-header-two__bottom::before {
    position: absolute;
    top: -40px;
    left: 0;
    bottom: 0;
    width: 410px;
    background: #ffffff;
    clip-path: polygon(0 0, 79% 0, 100% 100%, 0% 100%);
    content: "";
}

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

.main-header-two__bottom .auto-container {
    max-width: 1670px;
    width: 100%;
}

.main-header-two__bottom .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.main-header-two__bottom .main-menu .main-menu__list>li>a {
    color: var(--thm-black);
}

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

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

.main-header-two__bottom .main-menu .main-menu__list>li.dropdown>a:before {
    display: none;
}

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

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

.main-header-two__bottom .main-menu .main-menu__list>li>a .line,
.main-header-two__bottom .stricky-header .main-menu__list>li>a .line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    width: 2px;
    height: 0px;
    background: var(--thm-black);
    margin: 0px auto 0px;
    transition: all 0.4s ease-in-out 0.3s;
}

.main-header-two__bottom .main-menu .main-menu__list>li>a:hover .line,
.main-header-two__bottom .stricky-header .main-menu__list>li>a:hover .line,
.main-header-two__bottom .main-menu .main-menu__list>li.current>a .line,
.main-header-two__bottom .stricky-header .main-menu__list>li.current>a .line {
    transition: all 0.4s ease-in-out 0.3s;
    height: 20px;
}

.main-header-two__bottom .main-menu .main-menu__list>li>a .line::before,
.main-header-two__bottom .stricky-header .main-menu__list>li>a .line::before {
    position: absolute;
    top: 6px;
    left: -5px;
    bottom: 0;
    width: 2px;
    background: var(--thm-black);
    content: "";
}

.main-header-two__bottom .main-menu .main-menu__list>li>a .line::after,
.main-header-two__bottom .stricky-header .main-menu__list>li>a .line::after {
    position: absolute;
    top: 6px;
    right: -5px;
    bottom: 0;
    width: 2px;
    background: var(--thm-black);
    content: "";
}

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

.main-header-two__bottom .main-header-one__bottom-right-btn a:hover {
    color: #ffffff;
    background: var(--thm-black);
}

.main-header-two__bottom-right .header-search-box::before {
    position: absolute;
    top: -6px;
    left: 0;
    bottom: -5px;
    width: 1px;
    background: var(--thm-black);
    content: "";
}

.main-header-two__bottom-right .header-search-box a {
    color: var(--thm-black);
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-two__bottom-right .header-search-box a:hover {
    color: var(--thm-base)
}

.header-social-links-style2 {
    position: relative;
    display: block;
    margin-left: 5px;
}

.header-social-links-style2 a span {
    background: #e60f16;
    width: 40px;
    height: 40px;
    color: #fff;
    line-height: 38px;
    text-align: center;
    border-radius: 0;
    font-size: 14px;
}

.header-social-links-style2 li {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.header-social-links-style2 li:last-child {
    margin-right: 0;
}

.header-social-links-style2 li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f2eeeb;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-social-links-style2 li a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-social-links-style2 li a:hover {
    background: var(--thm-base);
}

.header-social-links-style2 li a:hover span::before {
    color: #ffffff;
}

.stricky-header--two .header-social-links-style2 {
    display: none;
}

.stricky-header--two.stricky-header .main-menu__list>li>a {
    color: var(--thm-black);
}

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

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

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


/***
=============================================
Header Three
=============================================
***/

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

.main-header-three__top {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 9px 0px 7px;
}

.main-header-three__top .auto-container {
    max-width: 1805px;
    width: 100%;
}

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

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

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

.main-header-three__contact-info li {
    position: relative;
    display: inline-block;
    margin-right: 95px;
}

.main-header-three__contact-info li:last-child {
    margin-right: 0;
}

.main-header-three__contact-info li .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-three__contact-info li .inner .icon-box {
    position: relative;
    display: block;
}

.main-header-three__contact-info li .inner .icon-box span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    top: -1px;
}

.main-header-three__contact-info li .inner .text-box {
    position: relative;
    display: block;
    margin-left: 6px;
}

.main-header-three__contact-info li .inner .text-box p {
    font-size: 15px;
    line-height: 25px;
}

.main-header-three__contact-info li .inner .text-box p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-three__contact-info li .inner .text-box p a:hover {
    color: var(--thm-base);
}

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

.main-header-three__top-right .login-register {
    position: relative;
    display: block;
    padding-left: 35px;
    padding-right: 30px;
}

.main-header-three__top-right .login-register::before {
    position: absolute;
    top: -10px;
    left: 0;
    bottom: -7px;
    right: 0;
    background: #f2f7f7;
    content: "";
}

.main-header-three__top-right .login-register ul {
    position: relative;
    display: block;
}

.main-header-three__top-right .login-register ul li {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    padding-right: 10px;
}

.main-header-three__top-right .login-register ul li::before {
    position: absolute;
    right: 0;
    width: 1px;
    top: 5px;
    bottom: 4px;
    background: var(--thm-gray);
    transform: rotate(10deg);
    content: "";
}

.main-header-three__top-right .login-register ul li:last-child:before {
    display: none;
}

.main-header-three__top-right .login-register ul li a {
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-three__top-right .login-register ul li a:hover {
    color: var(--thm-base);
}

.main-header-three__top-right .login-register ul li a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    top: 2px;
    padding-right: 5px;
}

.main-header-three__top-right .social-links {
    position: relative;
    display: block;
    margin-left: 40px;
}

.main-header-three__top-right .social-links li {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.main-header-three__top-right .social-links li:last-child {
    margin-right: 0;
}

.main-header-three__top-right .social-links li a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-three__top-right .social-links li a:hover {
    color: var(--thm-base);
}

.main-header-three__top-right .social-links li a span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
}

.main-header-three__bottom {
    position: relative;
    display: block;
    background: var(--thm-black);
}

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

.main-header-three__bottom .auto-container {
    max-width: 1805px;
    width: 100%;
}

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

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

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

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

.main-header-three__bottom-right .contact-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.main-header-three__bottom-right .contact-box .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--thm-base);
    border-radius: 50%;
}

.main-header-three__bottom-right .contact-box .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
}

.main-header-three__bottom-right .contact-box .text-box {
    position: relative;
    display: block;
    margin-left: 10px;
}

.main-header-three__bottom-right .contact-box .text-box p {
    color: #ffffff;
    font-size: 13px;
    line-height: 22px;
    font-weight: 400;
    text-transform: capitalize;
}

.main-header-three__bottom-right .contact-box .text-box h4 {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.main-header-three__bottom-right .contact-box .text-box h4 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-three__bottom-right .contact-box .text-box h4 a:hover {
    color: var(--thm-base);
}

.main-header-three__bottom .main-menu .main-menu__list>li>a:after {
    position: absolute;
    left: 0;
    bottom: 5px;
    right: 0;
    height: 6px;
    background: rgba(var(--thm-base-rgb), .2);
    content: "";
    z-index: -1;
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
}

.main-header-three__bottom .main-menu .main-menu__list>li>a:hover:after,
.main-header-three__bottom .main-menu .main-menu__list>li.current>a:after {
    transform: scale(1, 1);
    transform-origin: left center;
}

.stricky-header.stricky-header--three .main-menu__wrapper {
    background-color: var(--thm-black);
}

.stricky-header--three .main-header-one__bottom-right-btn {
    display: none;
}


/***
=============================================
Main Slider One
=============================================
***/

.main-slider-one {
    position: relative;
    display: block;
}

.main-slider-one .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;
    -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-one .swiper-slide-active .image-layer {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.main-slider-one .shape1 {
    position: absolute;
    top: -20px;
    left: 0;
    bottom: 0;
    right: 30%;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    opacity: 0.8;
    z-index: 1;
    opacity: 0;
    transform: translateX(-10%);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.main-slider-one .swiper-slide-active .shape1 {
    opacity: 0.8;
    transform: translateX(0);
    -webkit-transition-delay: 700ms;
    -moz-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
}

.main-slider-one .shape2 {
    position: absolute;
    top: -135px;
    left: 0;
    opacity: 0.08;
    z-index: 1;
    opacity: 0;
    transform: translateX(-10%);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.main-slider-one .swiper-slide-active .shape2 {
    opacity: 0.08;
    transform: translateX(0);
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.main-slider-one .shape3 {
    position: absolute;
    left: 0;
    bottom: 150px;
    opacity: 0.8;
    z-index: 1;
    opacity: 0;
    transform: translateX(-10%);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.main-slider-one .swiper-slide-active .shape3 {
    opacity: 0.8;
    transform: translateX(0);
    -webkit-transition-delay: 2300ms;
    -moz-transition-delay: 2300ms;
    -ms-transition-delay: 2300ms;
    -o-transition-delay: 2300ms;
    transition-delay: 2300ms;
}

.main-slider-one__content {
    position: relative;
    display: block;
    padding: 159px 0px 166px;
    z-index: 5;
}

.main-slider-one__content .title {
    position: relative;
    display: block;
    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-one .swiper-slide-active .main-slider-one__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: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider-one__content .title h2 {
    color: #ffffff;
    font-size: 80px;
    line-height: 1.1em;
    font-weight: 800;
}

.main-slider-one__content .btn-box {
    position: relative;
    display: block;
    margin-top: 49px;
    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 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-one .swiper-slide-active .main-slider-one__content .btn-box {
    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: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider__nav {
    position: absolute;
    top: 40%;
    right: 70px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    line-height: 0;
    height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform: scaleX(1.0) translateX(0px);
    z-index: 105;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
    text-align: center;
    line-height: 60px;
    opacity: 1;
    margin: 0;
    transition: all 500ms ease;
    z-index: 100;
}

.main-slider__nav .swiper-button-prev {
    float: left;
    left: 0;
    margin-bottom: 10px;
}

.main-slider__nav .swiper-button-next {
    float: right;
    right: 0;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: #ffffff;
    background: var(--thm-base);
}

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

.main-slider__nav .swiper-button-prev i::before {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 60px;
    font-weight: 700;
}

.main-slider__nav .swiper-button-next i::before {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 60px;
    font-weight: 700;
}


/***
=============================================
Main Slider Two
=============================================
***/

.main-slider-two {
    position: relative;
    display: block;
    z-index: 1;
}

.main-slider-two .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -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 .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: 640px;
    background: #000000;
    opacity: 0.83;
    content: "";
    z-index: -2;
}

.main-slider-two__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-base-rgb), 0.83);
    width: 640px;
    content: "";
    z-index: -1;
}

.main-slider-two__img {
    position: absolute;
    top: 50px;
    right: 100px;
    opacity: 0;
    transform: translateX(100%);
    -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: 99;
}

.main-slider-two .swiper-slide-active .main-slider-two__img {
    opacity: 1;
    transform: translateX(0);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.main-slider-two .shape1 {
    position: absolute;
    top: -40px;
    left: -80px;
    width: 320px;
    height: 320px;
    border: 45px solid #ffffff;
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transform: translateX(-100%);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.main-slider-two .swiper-slide-active .shape1 {
    opacity: 0.05;
    transform: translateX(0);
    -webkit-transition-delay: 2200ms;
    -moz-transition-delay: 2200ms;
    -ms-transition-delay: 2200ms;
    -o-transition-delay: 2200ms;
    transition-delay: 2200ms;
}

.main-slider-two .shape2 {
    position: absolute;
    top: -110px;
    right: -80px;
    width: 320px;
    height: 320px;
    border: 45px solid #ffffff;
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
}

.main-slider-two .shape3 {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
    opacity: 0;
    -webkit-transform: perspective(400px) translateY(100%);
    -ms-transform: perspective(400px) translateY(100%);
    transform: perspective(400px) translateY(100%);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1200ms ease;
    -moz-transition: all 1200ms ease;
    -ms-transition: all 1200ms ease;
    -o-transition: all 1200ms ease;
    transition: all 1200ms ease;
}

.main-slider-two .swiper-slide-active .shape3 {
    opacity: 1.0;
    -webkit-transform: perspective(400px) translateY(0px);
    -ms-transform: perspective(400px) translateY(0px);
    transform: perspective(400px) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
    opacity: 0.5;
}

.main-slider-two__content {
    position: relative;
    display: block;
    padding: 151px 0px 190px;
}

.main-slider-two__list {
    position: relative;
    display: block;
    margin-bottom: 11px;
    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: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__list {
    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__list ul {
    position: relative;
    display: block;
}

.main-slider-two__list ul li {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase;
    padding-right: 15px;
    margin-left: 10px;
}

.main-slider-two__list ul li:last-child {
    padding-right: 0;
}

.main-slider-two__list ul li:first-child {
    margin-left: 0;
}

.main-slider-two__list ul li::before {
    position: absolute;
    top: 9px;
    right: 0;
    bottom: 8px;
    width: 2px;
    background: #ffffff;
    content: "";
}

.main-slider-two__list ul li:last-child:before {
    display: none;
}

.main-slider-two__content .title {
    position: relative;
    display: block;
    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 1200ms ease;
    -moz-transition: all 1200ms ease;
    -ms-transition: all 1200ms ease;
    -o-transition: all 1200ms ease;
    transition: all 1200ms ease;
    z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__content .title {
    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: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.main-slider-two__content .title h2 {
    color: #ffffff;
    font-size: 80px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: capitalize;
}

.main-slider-two__content .btn-box {
    position: relative;
    display: block;
    line-height: 0px;
    margin-top: 35px;
    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: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__content .btn-box {
    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__nav.style2 {
    position: absolute;
    top: 40%;
    left: 70px;
    right: auto;
}

.main-slider__nav.style2 .swiper-button-next,
.main-slider__nav.style2 .swiper-button-prev {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.main-slider__nav.style2 .swiper-button-next:hover,
.main-slider__nav.style2 .swiper-button-prev:hover {
    background: var(--thm-base);
}


/***
=============================================
Main Slider Three
=============================================
***/

.main-slider-three {
    position: relative;
    display: block;
}

.main-slider-three .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;
    -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-three .swiper-slide-active .image-layer {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.main-slider-three .image-layer::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #020009;
    opacity: 0.75;
    content: "";
    z-index: -1;
}

.main-slider-three__img {
    position: absolute;
    top: -10px;
    right: -30px;
    opacity: 0;
    transform: translateX(10%);
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 2;
}

.main-slider-three .swiper-slide-active .main-slider-three__img {
    opacity: 1;
    transform: translateX(0);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider-three__content {
    position: relative;
    display: block;
    padding: 143px 0px 201px;
    z-index: 5;
}

.main-slider-three__content .title {
    position: relative;
    display: block;
    margin-bottom: 18px;
    opacity: 0;
    transition: all 1000ms ease;
    transform: translateY(80px);
}

.main-slider-three .swiper-slide-active .main-slider-three__content .title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1000ms;
}

.main-slider-three__content .title h2 {
    color: #ffffff;
    font-size: 72px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: capitalize;
}

.main-slider-three__content p {
    color: #ffffff;
    font-weight: 500;
    opacity: 0;
    transition: all 1500ms ease;
    transform: translateY(80px);
}

.main-slider-three .swiper-slide-active .main-slider-three__content p {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1200ms;
}

.main-slider-three__content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 41px;
    opacity: 0;
    transition: all 1500ms ease;
    transform: translateY(80px);
}

.main-slider-three .swiper-slide-active .main-slider-three__content-bottom {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1600ms;
}

.main-slider-three__content-bottom .btn-box {
    position: relative;
    display: block;
}

.main-slider-three__content-bottom .video-box {
    position: relative;
    display: block;
    margin-left: 35px;
}

.main-slider-three__content-bottom .video-box a {
    position: relative;
    display: inline-block;
}

.main-slider-three__content-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    color: var(--thm-base);
    z-index: 1;
}

.main-slider-three__content-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    z-index: 5;
}

.main-slider-three__content-icon::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background-color: #ffffff;
    content: "";
    z-index: 1;
}

.main-slider-three__content-icon::after {
    position: absolute;
    top: -4px;
    left: -4px;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background-color: var(--thm-base);
    content: "";
    z-index: -1;
}


/***
=============================================
  Page Header
=============================================
***/

.page-header {
    position: relative;
    display: block;
    padding: 108px 0px 111px;
    z-index: 1;
}

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

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

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

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

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

.page-header__inner .thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb li span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    top: 2px;
}

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

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


/***
=============================================
Feature One
=============================================
***/

.feature-one {
    position: relative;
    display: block;
    background: #f2f4f3;
    padding: 0px 0px 120px;
    z-index: 1;
}

.feature-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center center;
    background-repeat: repeat;
    z-index: -1;
}

.feature-one .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.22;
    z-index: -1;
}

.feature-one .shape2 {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.22;
    z-index: -1;
}

.feature-one__content {
    position: relative;
    display: block;
    margin-left: -45px;
    margin-right: 10px;
}

.feature-one__content-list {
    position: relative;
    display: block;
}

.feature-one__content-list li {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
    padding: 25px 30px;
    margin-bottom: 30px;
    z-index: 1;
}

.feature-one__content-list li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 0px;
    background-color: var(--thm-base);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.feature-one__content-list li:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.feature-one__content-list li:last-child {
    margin-bottom: 0;
}

.feature-one__content-list li .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-one__content-list li .inner .left-content {
    position: relative;
    display: flex;
    align-items: center;
}

.feature-one__content-list li .inner .icon-box {
    position: relative;
    display: block;
}

.feature-one__content-list li .inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 75px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-one__content-list li:hover .inner .icon-box span::before {
    color: #ffffff;
}

.feature-one__content-list li .inner .title-box {
    position: relative;
    display: block;
    margin-left: 40px;
}

.feature-one__content-list li .inner .title-box h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    padding-bottom: 10px;
    text-transform: capitalize;
}

.feature-one__content-list li .inner .title-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-one__content-list li:hover .inner .title-box h2 a {
    color: #ffffff;
}

.feature-one__content-list li .inner .btn-box {
    position: relative;
    display: block;
}

.feature-one__content-list li .inner .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    background: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-one__content-list li:hover .inner .btn-box a {
    background: #ffffff;
}

.feature-one__content-list li .inner .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-one__content-list li:hover .inner .btn-box a span::before {
    color: var(--thm-base);
}

.feature-one__form {
    position: relative;
    display: block;
    padding: 40px 40px 52px;
    margin-left: 20px;
    margin-right: -45px;
    z-index: 1;
}

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

.feature-one__form-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    content: "";
    mix-blend-mode: multiply;
    z-index: -2;
}

.feature-one__form .title-box {
    position: relative;
    display: block;
}

.feature-one__form .title-box h2 {
    color: #ffffff;
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    text-transform: capitalize;
}

.feature-one__form .form-box {
    position: relative;
    margin-top: 19px;
}

.feature-one__form .form-box form {
    position: relative;
}

.feature-one__form .form-box form .form-group {
    position: relative;
    margin-bottom: 15px;
}

.feature-one__form .form-box form .form-group input[type="text"],
.feature-one__form .form-box form .form-group input[type="email"],
.feature-one__form .form-box form .form-group input[type="tel"],
.feature-one__form .form-box form .form-group input[type="url"],
.feature-one__form .form-box form .form-group textarea,
.feature-one__form .form-box form .form-group select {
    position: relative;
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
    text-transform: none;
    padding: 0px 20px 0px;
    width: 100%;
    height: 65px;
    background-color: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 0px;
    outline: none;
    font-family: var(--thm-font);
}

.feature-one__form .form-box form .form-group textarea {
    height: 135px;
    resize: none;
    padding-top: 10px;
}

.feature-one__form .form-box form .form-group .select-box {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
}

.feature-one__form .form-box form .form-group .nice-select {
    position: relative;
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
    text-transform: none;
    padding: 0px 20px 0px;
    width: 100%;
    height: 65px;
    line-height: 65px;
    background-color: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 0px;
    outline: none;
    font-family: var(--thm-font);
}

.feature-one__form .form-box form .form-group .nice-select:after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, .8);
    border-right: 2px solid rgba(255, 255, 255, .8);
    right: 23px;
    margin-top: 0px;
    top: 25px;
    z-index: 10;
}

.feature-one__form .form-box form .form-group .nice-select .list {
    background-color: var(--thm-black);
}

.feature-one__form .form-box form .button-box {
    position: relative;
    display: block;
}

.feature-one__form .form-box form .button-box button {
    position: relative;
    z-index: 5;
}

.feature-one__form .form-box form .button-box button.thm-btn {
    background-color: var(--thm-black);
    position: relative;
    display: block;
    width: 100%;
    border-radius: 0;
    line-height: 65px;
    z-index: 5;
}

.feature-one__form .form-box form .button-box button.thm-btn::before {
    border-radius: 0;
}

.feature-one__form .form-box form .button-box button.thm-btn::after {
    border-radius: 0;
}


/***
=============================================
About One
=============================================
***/

.about-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;
}

.about-one__bg {
    position: absolute;
    top: 120px;
    left: 0;
    bottom: 120px;
    right: 53%;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    border-top-right-radius: 270px;
    border-bottom-right-radius: 270px;
    background-blend-mode: luminosity;
    background: #222429;
    z-index: -1;
}

.about-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-top-right-radius: 270px;
    border-bottom-right-radius: 270px;
    background: #222429;
    opacity: 0.83;
    content: "";
    z-index: -2;
}

.about-one .shape1 {
    position: absolute;
    top: 290px;
    left: 0;
    opacity: 0.9;
    z-index: -1;
}

.about-one .shape4 {
    position: absolute;
    bottom: 120px;
    right: -40px;
    opacity: 0.1;
    z-index: -1;
}

.about-one__img {
    position: relative;
    display: block;
    margin-top: 8px;
}

.about-one__img .inner {
    position: relative;
    display: block;
    width: 520px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.about-one__img .inner .shape2 {
    position: absolute;
    left: -160px;
    bottom: 40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--thm-base);
    opacity: 0.8;
}

.about-one__img .inner .shape3 {
    position: absolute;
    left: -50px;
    bottom: 125px;
    opacity: 0.2;
    z-index: 1;
}

.about-one__img .inner img {
    width: 100%;
}

.about-one__content {
    position: relative;
    display: block;
    margin-left: -15px;
}

.about-one__content .sec-title {
    padding-bottom: 27px;
}

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

.about-one__content-text p {
    margin: 0;
}

.about-one__content-text2 {
    position: relative;
    display: block;
    margin-top: 18px;
}

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

.about-one__content-text2-single ul {
    position: relative;
    display: block;
}

.about-one__content-text2-single ul li {
    position: relative;
    display: block;
    padding-left: 40px;
}

.about-one__content-text2-single ul li .icon-box {
    position: absolute;
    top: 0;
    left: 0;
}

.about-one__content-text2-single ul li .icon-box span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 25px;
    top: 3px;
}

.about-one__content-text2-single ul li .text-box {
    position: relative;
    display: block;
}

.about-one__content-text2-single ul li .text-box p {
    color: var(--thm-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.about-one__content-text2-single .text {
    position: relative;
    display: block;
    margin-top: 18px;
}

.about-one__content-text2-single .text p {
    margin: 0;
}

.about-one__content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 11px;
}

.about-one__content-bottom .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.about-one__content-bottom .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 35px;
}

.about-one__content-bottom .contact-info .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #e0e4e8;
    border-radius: 50%;
}

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

.about-one__content-bottom .contact-info .text-box {
    position: relative;
    display: block;
    margin-left: 10px;
}

.about-one__content-bottom .contact-info .text-box h4 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

.about-one__content-bottom .contact-info .text-box h4 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.about-one__content-bottom .contact-info .text-box h4 a:hover {
    color: var(--thm-base);
}

.about-one__content-bottom .contact-info .text-box p {
    margin: 0;
}


/***
=============================================
Services One
=============================================
***/

.services-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 90px;
    z-index: 1;
}

.services-one .auto-container {
    max-width: 1360px;
    width: 100%;
}

.services-one__single {
    position: relative;
    display: block;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 10%);
    padding: 50px 0px 40px;
    margin-bottom: 30px;
    z-index: 1;
}

.services-one__single-img {
    position: relative;
    display: block;
}

.services-one__single-img .inner {
    position: relative;
    display: block;
    width: 200px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
}

.services-one__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: "";
}

.services-one__single:hover .services-one__single-img .inner::before {
    opacity: 1;
}

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

.services-one__single:hover .services-one__single-img .inner img {
    transform: scale(1);
}

.services-one__single-img .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--thm-base);
    margin: -50px auto 0px;
    z-index: 2;
}

.services-one__single-img .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 45px;
}

.services-one__single-title {
    position: relative;
    display: block;
    margin-top: 25px;
}

.services-one__single-title h2 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    text-transform: capitalize;
}

.services-one__single-title h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-one__single-title h2 a:hover {
    color: var(--thm-base);
}


/***
=============================================
Brand One
=============================================
***/

.brand-one {
    position: relative;
    display: block;
    padding: 100px 0 100px;
    z-index: 2;
}

.brand-one::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 200px;
    bottom: 0;
    background: var(--thm-base);
    border-bottom-right-radius: 60px;
    content: "";
    z-index: -1;
}

.brand-one .swiper-slide {
    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;
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 145px;
    transition: .5s ease;
}

.brand-one .swiper-slide:hover {
    border-color: #ffffff;
}

.brand-one .swiper-slide img {
    transition: .5s ease;
    transform: scale(1.02);
    opacity: 0.8;
    width: auto;
}

.brand-one .swiper-slide:hover img {
    opacity: 1;
    transform: scale(1);
}


/***
=============================================
Portfolio One
=============================================
***/

.portfolio-one {
    position: relative;
    display: block;
    background: #eff0f0;
    padding: 240px 0px 120px;
    z-index: 1;
    margin-top: -120px;
}

.portfolio-one__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;
    opacity: 0.17;
    z-index: -1;
}

.portfolio-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 46px;
}

.portfolio-one__top .sec-title {
    padding-bottom: 0;
}

.portfolio-one__top .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.portfolio-one__inner {
    position: relative;
    display: block;
}

.portfolio-one__tab-box {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.portfolio-one__tab-menu {
    position: relative;
    display: block;
    padding: 38px 50px 41px;
    max-width: 400px;
    width: 100%;
    z-index: 1;
}

.portfolio-one__tab-menu .title {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.portfolio-one__tab-menu .title h2 {
    color: #ffffff;
    font-size: 55px;
    line-height: 65px;
    font-weight: 700;
    text-transform: capitalize;
}

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

.portfolio-one__tab-menu-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.72);
    content: "";
    z-index: -1;
}

.portfolio-one__tab-menu .tab-buttons {
    position: relative;
    display: block;
}

.portfolio-one__tab-menu .tab-buttons .tab-btn {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: transparent;
    padding: 16px 0px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.portfolio-one__tab-menu .tab-buttons .tab-btn:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.portfolio-one__tab-menu .tab-buttons .tab-btn span::before {
    position: relative;
    display: inline-block;
    float: right;
    color: #ffffff;
    font-size: 16px;
    top: 5px;
}

.portfolio-one__inner .tabs-content {
    position: relative;
    display: block;
    max-width: 800px;
    width: 100%;
    margin-top: 45px;
    margin-left: -30px;
    z-index: 5;
}

.portfolio-one__inner .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;
}

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

.tabs-content__inner {
    position: relative;
    display: block;
}

.tabs-content__img {
    position: relative;
    display: block;
}

.tabs-content__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.tabs-content__img .inner img {
    width: 100%;
}

.tabs-content__img .content-box {
    position: absolute;
    left: 140px;
    bottom: 0;
    right: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 61px 40px 26px;
}

.tabs-content__img .content-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 5px 8.66px 20px 0px rgb(130, 132, 134, 0.08);
    clip-path: polygon(0 0, 100% 21%, 100% 100%, 0% 100%);
    content: "";
}

.tabs-content__img .content-box .text-box {
    position: relative;
    display: block;
}

.tabs-content__img .content-box .text-box h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: -0.01em;
}

.tabs-content__img .content-box .text-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.tabs-content__img .content-box .text-box h2 a:hover {
    color: var(--thm-base);
}

.tabs-content__img .content-box .text-box p {
    font-weight: 500;
    margin: 0px;
}

.tabs-content__img .content-box .btn-box {
    position: relative;
    display: block;
}

.tabs-content__img .content-box .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--thm-base);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.tabs-content__img .content-box .btn-box a:hover {
    background: var(--thm-black);
}

.tabs-content__img .content-box .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
}


/***
=============================================
Features Two
=============================================
***/

.features-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0px 0px;
    z-index: 1;
    margin-top: 120px;
}

.features-two__single {
    position: relative;
    display: block;
    margin-bottom: 50px;
    padding-top: 35px;
}

.features-two__single-inner {
    position: relative;
    display: block;
    padding: 30px;
    background: #fff;
    padding-top: 45px;
    border-radius: 10px;
    min-height: 332px;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
}

.features-two__single-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -28px;
    left: 0;
    right: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    background: var(--thm-black);
    border-radius: 50%;
    z-index: 1;
}

[class^="icon-"],
[class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sec-title.construction-S {
    padding-bottom: 80px;
}

.features-two__single-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    border-radius: 50%;
    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;
}

.features-two__single:hover .features-two__single-icon::before {
    transform: scale(1.0);
    opacity: 1;
}

.features-two__single-icon span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 25px;
}

.features-two__single-content {
    position: relative;
    display: block;
}

.features-two__single-content h2 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 7px;
}

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

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

.features-two__single-content p {
    margin: 0;
}


/***
=============================================
Product One
=============================================
***/

.product-one {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

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

.product-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000002;
    opacity: 0.75;
    content: "";
    z-index: -1;
}

.product-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: repeat;
    z-index: -1;
}

.product-one .sec-title h2 {
    color: #ffffff;
}

.product-one .shape1 {
    position: absolute;
    top: 200px;
    left: 0;
    z-index: -1;
}

.product-one .shape2 {
    position: absolute;
    right: 0;
    bottom: 80px;
    z-index: -1;
}

.product-one__inner {
    position: relative;
    display: block;
}

.product-one__single {
    position: relative;
    display: block;
    padding-top: 75px;
}

.product-one__single-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 205px;
    height: 205px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
    margin: 0 auto;
    z-index: 1;
}

.product-one__single-img img {
    width: auto;
    transform: scale(1);
    transition: all 0.7s ease 0s;
}

.product-one__single:hover .product-one__single-img img {
    transform: scale(1.1);
}

.product-one__single-inner {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
    border-radius: 8px;
    padding: 153px 30px 50px;
}

.product-one__single-inner .rating-box {
    position: relative;
    display: block;
    margin-bottom: 4px;
}

.product-one__single-inner .content-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.product-one__single-inner .content-box .left {
    position: relative;
    display: block;
}

.product-one__single-inner .content-box .left h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
}

.product-one__single-inner .content-box .left h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.product-one__single-inner .content-box .left h3 a:hover {
    color: var(--thm-base);
}

.product-one__single-inner .content-box .left p {
    font-size: 16px;
    letter-spacing: 0.04em;
}

.product-one__single-inner .content-box .right {
    position: relative;
    display: block;
}

.product-one__single-inner .content-box .right p {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.product-one__single-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--thm-base);
    padding: 10px 30px 10px;
    margin-top: 20px;
    z-index: 5;
}

.product-one__single-cart-btn .title {
    position: relative;
    display: block;
}

.product-one__single-cart-btn .title h6 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.product-one__single-cart-btn .title h6 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.product-one__single-cart-btn .title h6 a:hover {
    color: #ffffff;
}

.product-one__single-cart-btn .icon {
    position: relative;
    display: block;
}

.product-one__single-cart-btn .icon ul {
    position: relative;
    display: block;
}

.product-one__single-cart-btn .icon ul li {
    position: relative;
    display: inline-block;
    margin-right: 11px;
}

.product-one__single-cart-btn .icon ul li:last-child {
    margin-right: 0px;
}

.product-one__single-cart-btn .icon ul li a {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 15px;
}

.product-one__carousel.owl-carousel .owl-item img {
    width: auto;
}

.product-one .owl-theme .owl-nav {
    position: absolute;
    margin-top: 0;
    top: -107px;
    right: 0;
}

.product-one .owl-carousel .owl-nav button.owl-prev,
.product-one .owl-carousel .owl-nav button.owl-next {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    border-radius: 0px;
    background-color: rgba(255, 255, 255, .4);
    color: rgba(255, 255, 255, .7);
    font-size: 20px;
    outline: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.product-one .owl-carousel .owl-nav button.owl-prev:hover,
.product-one .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--thm-base);
    color: #ffffff;
}


/***
=============================================
Testimonial One
=============================================
***/

.testimonial-one {
    position: relative;
    display: block;
    background: #f2f4f3;
    padding: 120px 0px 120px;
    z-index: 1;
}

.testimonial-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: repeat;
    background-position: center center;
    z-index: -1;
}

.testimonial-one .shape1 {
    position: absolute;
    left: 0;
    bottom: -25px;
    right: 0;
    text-align: center;
    opacity: 0.04;
    z-index: -1;
}

.testimonial-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 46px;
}

.testimonial-one__top .sec-title {
    padding-bottom: 0px;
}

.testimonial-one__top .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.testimonial-one__inner {
    position: relative;
    display: block;
}

.testimonial-one__single {
    position: relative;
    display: block;
    border-radius: 0px;
    background-color: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
    padding: 50px 45px 50px;
}

.testimonial-one__single-top {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.testimonial-one__single-top .img-box {
    position: relative;
    display: block;
    width: 125px;
}

.testimonial-one__single-top .img-box .inner {
    position: relative;
    display: block;
    width: 125px;
    overflow: hidden;
    border-top-left-radius: 30px;
    border: 5px solid var(--thm-base);
}

.testimonial-one__single-top .img-box .inner::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border: 5px solid #ffffff;
    border-top-left-radius: 25px;
    content: "";
}

.testimonial-one__single-top .img-box .inner img {
    width: 100%;
}

.testimonial-one__single-top .img-box .icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    right: -30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0px 5px 30px 0px rgb(0, 0, 0, 0.07);
}

.testimonial-one__single-top .img-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
}

.testimonial-one__single-top .text-box {
    position: relative;
    display: block;
    margin-left: 40px;
    margin-top: 12px;
}

.testimonial-one__single-top .text-box h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: -0.02em;
}

.testimonial-one__single-top .text-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial-one__single-top .rating-box {
    position: relative;
    display: block;
    margin-top: 1px;
}

.testimonial-one__single-bottom {
    position: relative;
    display: block;
    margin-top: 21px;
}

.testimonial-one__single-bottom .text-box {
    position: relative;
    display: block;
}

.testimonial-one__single-bottom .text-box p {
    margin: 0;
}

.testimonial-one__single-bottom .btn-box {
    position: relative;
    display: block;
    margin-top: 21px;
}

.testimonial-one__single-bottom .btn-box a {
    position: relative;
    display: inline-block;
    background: #f2f7f7;
    padding: 9px 20px 8px;
    color: var(--thm-gray);
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonial-one__single-bottom .btn-box a:hover {
    background: var(--thm-base);
    color: #ffffff;
}

.testimonial-one__single-bottom .btn-box a span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 15px;
    font-weight: 700;
    top: 2px;
    margin-left: 4px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonial-one__single-bottom .btn-box a:hover span:before {
    color: #ffffff;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
}


/***
=============================================
Team One 
=============================================
***/

.team-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
    z-index: 1;
}

.team-one .auto-container {
    max-width: 1600px;
    width: 100%;
}

.team-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    text-align: center;
}

.team-one__single-img {
    position: relative;
    display: block;
}

.team-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 20px;
    background: transparent;
    border-radius: 8px;
}

.team-one .col-xl-3 {
    max-width: 20%;
    width: 20%;
}

.team-one--team .col-xl-3 {
    max-width: 25%;
    width: 25%;
}


/* .team-one__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(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.team-one__single:hover .team-one__single-img .inner:before {
  opacity: 1;
} */

.team-one__single-img .inner img {
    width: 70%;
    transition: .5s ease;
    transform: scale(1.05);
    margin: 0 auto;
    border-radius: 8px;
}

.team-one__single:hover .team-one__single-img .inner img {
    transform: scale(1);
}

.team-one__single-img .inner .content-box {
    position: absolute;
    left: 15px;
    bottom: 0;
    right: 15px;
    padding: 0px 0px 10px;
    /* opacity: 0; */
    /* -webkit-transform: translateY(200px);
  transform: translateY(200px); */
    /* -webkit-transition: all 900ms ease;
  transition: all 900ms ease; */
    transition-delay: 0.2;
    z-index: 5;
}


/* .team-one__single:hover .team-one__single-img .inner .content-box {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
} */

.team-one__single-img .inner .content-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
    /* clip-path: polygon(0 29%, 100% 0, 100% 100%, 0% 100%); */
    content: "";
}

.team-one__single-img .inner .content-box ul {
    position: relative;
    display: block;
    /* transform: rotate(-10deg); */
}

.team-one__single-img .inner .content-box ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.team-one__single-img .inner .content-box ul li:last-child {
    margin-right: 0;
}

.team-one__single-img .inner .content-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f2f7f7;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-one__single-img .inner .content-box ul li a:hover {
    background: var(--thm-base);
}

.team-one__single-img .inner .content-box ul li a span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-one__single-img .inner .content-box ul li a:hover span:before {
    color: #ffffff;
}

.team-one__single-img .inner .content-box .text-box {
    position: relative;
    display: block;
    margin: 15px 0;
}

.team-one__single-img .inner .content-box .text-box h2 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-transform: capitalize;
}

.team-one__single-img .inner .content-box .text-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-one__single-img .inner .content-box .text-box h2 a:hover {
    color: var(--thm-base);
}

.team-one__single-img .inner .content-box .text-box p {
    margin: 0;
    line-height: 24px;
    font-size: 14px;
    font-weight: 500;
}


/***
=============================================
   Video One
=============================================
***/

.video-one {
    position: relative;
    display: block;
    padding: 150px 0px 141px;
    z-index: 1;
}

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

.video-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000001;
    opacity: 0.75;
    content: "";
    z-index: -2;
}

.video-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: repeat;
    background-position: center center;
    z-index: -1;
}

.video-one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.video-one__inner .video-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-one__inner .video-box a {
    position: relative;
    display: inline-block;
    z-index: 5;
}

.video-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 25px;
    color: #ffffff;
    background-color: var(--thm-base);
    border-radius: 50%;
    margin: 0 auto;
}

.video-one__icon::before {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--thm-base);
    border-radius: 50%;
    content: "";
}

.video-one__inner .video-box .border-animation {
    position: absolute;
    top: -15px;
    left: -15px;
    bottom: -15px;
    right: -15px;
    border: 1px solid var(--thm-base);
    animation: squares 2.9s linear 0s infinite;
    -webkit-animation: squares 2.9s linear 0s infinite;
    -ms-animation: squares 2.9s linear 0s infinite;
    -o-animation: squares 2.9s linear 0s infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
    border-radius: 50%;
}

.video-one__inner .video-box .border-animation.border-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.video-one__inner .video-box .border-animation.border-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.video-one__inner h2 {
    color: #ffffff;
    font-size: 35px;
    line-height: 45px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.02em;
    margin-top: 60px;
}


/***
=============================================
Faq One
=============================================
***/

.faq-one {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    background: #f2f4f3;
    z-index: 1;
}

.faq-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 50%;
    background-attachment: scroll;
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    z-index: -1;
}

.faq-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: repeat;
    background-position: center center;
    z-index: -2;
}

.faq-one .shape1 {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.02;
    z-index: -2;
}

.faq-one__inner {
    position: relative;
    display: block;
}

.faq-one__content {
    position: relative;
    display: block;
    max-width: 590px;
    width: 100%;
    float: right;
    margin-right: -90px;
}

.faq-one__accordion {
    position: relative;
    display: block;
}

.accordion-box {
    position: relative;
    display: block;
}

.accordion-box .block {
    position: relative;
    display: block;
    margin-bottom: 10px;
    transition: all 500ms ease;
    background: rgba(255, 255, 255);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}

.accordion-box .block.mb20 {
    margin-bottom: 0px;
}

.accordion-box .block:last-child {
    margin-bottom: 0px;
}

.accordion-box .block .acc-btn {
    position: relative;
    display: block;
    cursor: pointer;
    transition: all 500ms ease;
    padding-top: 27px;
    padding-left: 75px;
    padding-bottom: 27px;
    padding-right: 40px;
}

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h3 {
    color: var(--thm-black);
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 50%;
    left: 35px;
    width: 20px;
    height: 20px;
    color: var(--thm-black);
    font-size: 15px;
    text-align: right;
    line-height: 20px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(-50%) rotate(0deg);
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
    color: var(--thm-black);
    transform: translateY(-50%) rotate(0deg);
}

.accordion-box .block .acc-btn .icon-outer i:before {
    font-weight: 700;
}

.accordion-box .block .acc-btn.active .icon-outer i:before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-family: 'icomoon' !important;
    font-weight: 700;
    margin: 0px;
    content: "\e908";
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding-top: 27px;
    padding-left: 40px;
    padding-bottom: 42px;
    padding-right: 40px;
    border-top: 1px solid rgba(var(--thm-gray-rgb), 0.5);
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .acc-content p {
    margin: 0;
    color: var(--thm-gray);
    line-height: 28px;
    font-weight: 400;
}

.faq-one__progress {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 758px;
    width: 100%;
    padding: 53px 85px 70px;
    z-index: 1;
}

.faq-one__progress-pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center center;
    background-repeat: repeat;
    clip-path: polygon(0 0, 87% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.faq-one__progress::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    clip-path: polygon(0 0, 87% 0, 100% 100%, 0% 100%);
    content: "";
    z-index: -1;
}

.faq-one__progress-inner {
    position: relative;
    display: block;
    max-width: 450px;
    width: 100%;
}

.faq-one__progress-single {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

.faq-one__progress-single.mar0 {
    margin-bottom: 0px;
}

.faq-one__progress-single .top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.faq-one__progress-single .top .count-text {
    position: relative;
    color: var(--thm-black);
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
    margin-top: 2px;
    padding-left: 7px;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    letter-spacing: -0.02em;
    opacity: 1;
    font-family: var(--thm-font);
}

.faq-one__progress-single h3 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.02em;
}

.faq-one__progress-single .bar {
    position: relative;
    width: 100%;
    height: 0px;
    background: transparent;
    margin-bottom: 0px;
}

.faq-one__progress-single .bar::before {
    position: absolute;
    left: 0;
    bottom: -10px;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--thm-base);
    content: "";
}

.faq-one__progress-single .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 5px;
    background: var(--thm-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}


/***
=============================================
Blog One
=============================================
***/

.blog-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 130px;
    z-index: 1;
}

.blog-one .auto-container {
    max-width: 1530px;
    width: 100%;
}

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

.blog-one__single-inner {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.blog-one__single-inner .img-box {
    position: relative;
    display: block;
    max-width: 365px;
    width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.blog-one__single-inner .img-box::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(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 1;
    content: "";
}

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

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

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

.blog-one__single-inner .img-box .meta-box {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 45px 12px;
    z-index: 5;
}

.blog-one__single-inner .img-box .meta-box li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    margin-right: 20px;
}

.blog-one__single-inner .img-box .meta-box li:last-child {
    margin-right: 0px;
}

.blog-one__single-inner .img-box .meta-box li .icon {
    position: relative;
    display: block;
}

.blog-one__single-inner .img-box .meta-box li .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    font-weight: 700;
}

.blog-one__single-inner .img-box .meta-box li .text {
    position: relative;
    display: block;
    margin-left: 8px;
    margin-top: 0;
}

.blog-one__single-inner .img-box .meta-box li .text p {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--thm-font);
    margin: 0;
}

.blog-one__single-inner .img-box .meta-box li .text p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-inner .img-box .meta-box li .text p a:hover {
    color: var(--thm-base);
}

.blog-one__single-inner .img-box .date-box {
    position: absolute;
    bottom: 55px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 70px;
    height: 70px;
    background: var(--thm-base);
    border-top-left-radius: 10px;
    z-index: 5;
}

.blog-one__single-inner .img-box .date-box p {
    color: #ffffff;
    font-size: 17px;
    line-height: 23px;
    font-weight: 700;
}

.blog-one__single-inner .img-box .date-box span {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 11px;
    line-height: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.blog-one__single-inner .content-box {
    position: relative;
    display: block;
    margin-left: 40px;
    margin-bottom: -11px;
    flex: 1;
}

.blog-one__single-inner .content-box .text1 {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.blog-one__single-inner .content-box .text1 span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    background: var(--thm-base);
    border-radius: 5px;
    padding: 6px 20px 5px;
}

.blog-one__single-inner .content-box h2 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.blog-one__single-inner .content-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

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

.blog-one__single-inner .content-box p {
    margin: 0px;
}

.blog-one__single-inner .content-box .text2 {
    position: relative;
    display: block;
    margin-top: 18px;
}

.blog-one__single-inner .content-box .text2 p {
    color: var(--thm-black);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.blog-one__single-inner .content-box .text2 p span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding-right: 5px;
}


/***
=============================================
Cta One
=============================================
***/

.cta-one {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 81px 0px 78px;
    z-index: 1;
}

.cta-one .shape1 {
    position: absolute;
    top: -40px;
    left: 680px;
    border-bottom: 40px solid #151518;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    content: "";
}

.cta-one__bg {
    position: absolute;
    top: -40px;
    left: 0;
    bottom: 0;
    width: 700px;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: -1;
}

.cta-one__inner {
    position: relative;
    display: block;
}

.cta-one__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 780px;
    width: 100%;
    float: right;
}

.cta-one__content .text-box {
    position: relative;
    display: block;
}

.cta-one__content .text-box p {
    color: #ffffff;
    letter-spacing: 0.2em;
}

.cta-one__content .text-box h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 1px;
}

.cta-one__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.cta-one__content .btn-box .thm-btn {
    background: var(--thm-base);
}

.cta-one__content .btn-box .thm-btn::before {
    background: var(--thm-black);
}

.cta-one__content .btn-box .thm-btn::after {
    background: var(--thm-black);
}


/***
=============================================
Footer One
=============================================
***/

.footer-one {
    position: relative;
    display: block;
    padding: 70px 0px 0px;
    z-index: 1;
}

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

.footer-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: repeat;
    background-position: center center;
    z-index: -1;
}

.footer-one::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000000;
    z-index: -2;
    content: "";
}

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

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

.footer-widget__single.ml30 {
    margin-left: 30px;
}

.footer-widget__single .title {
    position: relative;
    display: block;
    margin-bottom: 20px;
    margin-top: -5px;
}

.footer-widget__single .title h2 {
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}

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

.footer-widget__single-about .logo-box {
    position: relative;
    display: block;
    margin-bottom: 36px;
}

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

.footer-widget__single-about .text-box {
    position: relative;
    display: block;
    margin-bottom: 31px;
}

.footer-widget__single-about .text-box p {
    color: rgba(255, 255, 255, .6);
}

.footer-widget__single-about .social-link {
    position: relative;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 30px;
    justify-content: center;
}

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

.footer-widget__single-about .social-link li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
}

.footer-widget__single-about .social-link li a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background: var(--thm-base);
    transform: scale(0.5);
    opacity: 0;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    content: "";
}

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

.footer-widget__single-about .social-link li a span::before {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.footer-widget__single-about .social-link li a:hover span::before {
    color: #ffffff;
}

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

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

.footer-widget__single-list li {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.footer-widget__single-list li:last-child {
    margin-bottom: 0;
}

.footer-widget__single-list li a {
    position: relative;
    display: block;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__single-list li a:hover {
    padding-left: 20px;
}

.footer-widget__single-list li a::before {
    position: absolute;
    top: 11px;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--thm-base);
    border-radius: 50%;
    transform: scale(0.5);
    opacity: 0;
    content: "";
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__single-list li a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-widget__single-list li a:hover {
    color: #ffffff;
}

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

.footer-widget__single-contact .text {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 32px;
}

.footer-widget__single-contact .number {
    margin: 0;
}

.footer-widget__single-contact .number a {
    color: rgba(255, 255, 255, .6);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__single-contact .number a:hover {
    color: var(--thm-base);
}

.footer-widget__single-contact .email {
    margin: 0;
}

.footer-widget__single-contact .email a {
    color: rgba(255, 255, 255, .6);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__single-contact .email a:hover {
    color: var(--thm-base);
}

.footer-widget__single-newsletter {
    position: relative;
    display: block;
    background: #17171a;
    padding: 48px 50px 44px;
    border-radius: 10px;
    margin-top: 2px;
}

.footer-widget__single-newsletter .title {
    position: relative;
    display: block;
    margin-bottom: 18px;
}

.footer-widget__single-newsletter .title h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
}

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

.footer-widget__single-newsletter-form .input-box {
    position: relative;
    display: block;
}

.footer-widget__single-newsletter-form .input-box:before {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    content: "";
    height: 5px;
    background-color: rgba(255, 255, 255, 0.10);
    border-radius: 3px;
}

.footer-widget__single-newsletter-form .input-box input[type="email"] {
    font-size: 18px;
    color: rgba(255, 255, 255, .6);
    font-weight: 400;
    height: 60px;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding-right: 40px;
    outline: none;
}

.footer-widget__newsletter-btn {
    position: absolute;
    top: 50%;
    right: 0;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 50%;
    background: transparent;
    border: 0;
    transform: translateY(-50%);
    transition: all 500ms ease;
    padding: 0;
}

.footer-widget__newsletter-btn i {
    font-size: 16px;
    color: #ffffff;
    transition: all 500ms ease;
}

.footer-widget__newsletter-btn:hover i {
    color: var(--thm-base);
}

.footer-logo img {
    height: 40px;
    width: 150px;
}

.footer-logo .footer-logo {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.footer-logo:hover .footer-logo {
    display: inline-block;
    opacity: 1;
    visibility: visible;
}

.footer-logo:hover .footer-white-logo {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.checked-box {
    position: relative;
    display: block;
    min-height: 30px;
    margin-top: 23px;
}

.checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    min-height: 30px;
    font-family: var(--thm-font);
}

.checked-box input[type="checkbox"] {
    display: none;
}

.checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box label span:before {
    position: absolute;
    top: 4px;
    left: 5px;
    display: block;
    border-bottom: 2px solid rgba(255, 255, 255, .6);
    border-right: 2px solid rgba(255, 255, 255, .6);
    content: '';
    width: 5px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.checked-box input[type="checkbox"]:checked+label span {
    border-color: rgba(255, 255, 255, .6);
}

.checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.footer-one__bottom {
    position: relative;
    display: block;
    background: #E40F15;
}

.footer-one__bottom .bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 15px 0px 15px;
}

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

.footer-one__bottom .bottom-inner .copyright p {
    color: #ffffff;
    margin: 0;
}

.footer-one__bottom-menu {
    position: relative;
    display: block;
}

.footer-one__bottom-menu li {
    position: relative;
    display: inline-block;
    padding-right: 10px;
    margin-right: 5px;
}

.footer-one__bottom-menu li::before {
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.6);
    content: "";
}

.footer-one__bottom-menu li:last-child:before {
    display: none;
}

.footer-one__bottom-menu li a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

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


/***
=============================================
Feature Four
=============================================
***/

.feature-four {
    position: relative;
    display: block;
}

.feature-four .auto-container {
    max-width: 1670px;
    width: 100%;
}

.feature-four__inner {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 90px 0px 90px;
    margin-top: -60px;
    z-index: 5;
}

.feature-four__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 70px;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: -1;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}

.feature-four__single:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.feature-four__single {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 10px 30px 0px rgb(0, 0, 0, 0.05);
    padding: 0px 35px 35px;
    margin-bottom: 30px;
    height: 503px;
    border-radius: 10px;
}

.feature-four__single .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 115px;
    background: #f6f4f9;
    border-radius: 10px;
    margin-bottom: 23px;
    z-index: 1;
}

.feature-four__single .icon-box:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: var(--thm-base);
    transition-delay: 0.5s;
    transition: .5s;
    border-radius: 10px;
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
    -ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);
    transform: perspective(400px) rotateX(-90deg) scale(0.2);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: -1;
}

.feature-four__single:hover .icon-box:before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.feature-four__single .icon-box span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-four__single:hover .icon-box span:before {
    color: #ffffff;
}

.feature-four__single h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.stricky-fixed .auto-container {
    max-width: 1670px;
}

.feature-four__single h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-four__single h2 a:hover {
    color: var(--thm-base);
}

.feature-four__single p {
    margin: 0;
}

.feature-four__single .btn-box {
    position: relative;
    display: block;
    margin-top: 27px;
}

.feature-four__single .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-four__single .btn-box a:hover {
    color: var(--thm-base);
}

.feature-four__single .btn-box a span::before {
    position: relative;
    display: inline-block;
    font-size: 30px;
}

.feature-four__right-content {
    position: relative;
    display: block;
    margin-right: -235px;
    padding-left: 60px;
    padding-bottom: 147px;
    z-index: 1;
}

.feature-four__right-content::before {
    position: absolute;
    top: -120px;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    content: "";
    z-index: -1;
}

.feature-four__right-content h2 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 80px;
    line-height: 1.1em;
    font-weight: 600;
    text-transform: capitalize;
}

.feature-four__right-content h2::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 4px;
    background: #ffffff;
    content: "";
}

.feature-four__right-content h2 span {
    position: relative;
    display: inline-block;
}

.feature-four__right-content h2 .plus {
    position: relative;
    display: inline-block;
    top: 6px;
}

.feature-four__right-content .odometer.odometer-auto-theme,
.feature-four__right-content .odometer.odometer-theme-default {
    font-family: var(--thm-font);
    line-height: 1.1em;
}


/***
=============================================
Video Two
=============================================
***/

.video-two {
    position: relative;
    display: block;
    padding: 180px 0px 117px;
    z-index: 1;
}

.video-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background: #000000;
    background-blend-mode: luminosity;
    background-size: cover;
    z-index: -1;
}

.video-two__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000000;
    opacity: 0.70;
    content: "";
    z-index: -2;
}

.video-two__inner {
    position: relative;
    display: block;
    z-index: 1;
}

.video-two__inner::before {
    position: absolute;
    top: 55px;
    left: 150px;
    bottom: -117px;
    right: 150px;
    background: rgba(var(--thm-base-rgb), 0.6);
    content: "";
    z-index: -1;
}

.video-two__inner .video-box {
    position: relative;
    display: block;
    margin-bottom: 48px;
}

.video-two__inner .video-box a {
    position: relative;
    display: inline-block;
}

.video-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 0px;
    text-align: center;
    font-size: 25px;
    color: #ffffff;
    background-color: var(--thm-base);
    margin: 0 auto;
}

.video-two__icon .ripple,
.video-two__icon .ripple:before,
.video-two__icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 0px;
}

.video-two__icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-two__icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.video-two__inner h2 {
    color: #ffffff;
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}


/***
=============================================
About Two
=============================================
***/

.about-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
    z-index: 1;
}

.about-two__content {
    position: relative;
    display: block;
    margin-left: -10px;
    margin-right: 55px;
}

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

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

.about-two__content .text-box1 p {
    margin: 0px;
}

.about-two__content-list {
    position: relative;
    display: block;
    padding-left: 20px;
    margin-top: 32px;
}

.about-two__content-list::before {
    position: absolute;
    top: 4px;
    left: 0px;
    bottom: 4px;
    width: 2px;
    background: var(--thm-base);
    content: "";
}

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

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

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

.about-two__content-list li .inner .icon-box {
    position: absolute;
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--thm-base);
    border-radius: 50%;
    text-align: center;
}

.about-two__content-list li .inner .icon-box span {
    position: relative;
    display: block;
    line-height: 0;
}

.about-two__content-list li .inner .icon-box span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 12px;
    line-height: 20px;
}

.about-two__content-list li .inner .text-box {
    position: relative;
    display: block;
}

.about-two__content-list li .inner .text-box p {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.about-two__progress {
    position: relative;
    display: block;
    margin-top: 43px;
}

.about-two__progress-single {
    position: relative;
    display: block;
    margin-bottom: 22px;
}

.about-two__progress-single-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-two__progress .bar {
    position: relative;
    width: 100%;
    height: 15px;
    background: #f1f3f2;
    margin-bottom: 6px;
    border-radius: 7.5px;
}

.about-two__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 15px;
    background: var(--thm-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
    border-radius: 7.5px;
    z-index: 1;
}

.about-two__progress .count-text {
    position: absolute;
    top: -3px;
    right: 10px;
    color: #ffffff;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    text-align: center;
    font-family: var(--thm-font);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 1;
}

.about-two__content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.about-two__content-bottom .author-box {
    position: relative;
    display: flex;
    align-items: center;
}

.about-two__content-bottom .author-box .img-box {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.about-two__content-bottom .author-box .img-box img {
    width: 100%;
}

.about-two__content-bottom .author-box .title-box {
    position: relative;
    display: block;
    padding-left: 25px;
    line-height: 0;
}

.about-two__content-bottom .author-box .title-box h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.about-two__content-bottom .author-box .title-box span {
    color: var(--thm-gray);
    font-size: 12px;
    line-height: 25px;
    font-weight: 600;
    text-transform: capitalize;
}

.about-two__content-bottom .btn-box {
    position: relative;
    display: block;
    margin-left: 50px;
    line-height: 0px;
}

.about-two__right {
    position: relative;
    display: block;
    margin-left: -15px;
    margin-right: -45px;
}

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

.about-two__right-single.mb30 {
    margin-top: 30px;
}

.about-two__right-single .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.about-two__right-single .img-box::before {
    position: absolute;
    top: 0%;
    right: 0%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .4);
    border-radius: 50%;
    -webkit-transform: translateX(-50%, -50%);
    transform: translateX(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.about-two__right-single:hover .img-box::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
}

.about-two__right-single .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.about-two__right-single:hover .img-box img {
    transform: scale(1.1) rotate(1deg);
}

.about-two__right-single .img-box .video-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-two__right-single .img-box .video-box a {
    position: relative;
    display: inline-block;
}

.about-two__right-single-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    color: #ffffff;
    background-color: var(--thm-base);
    margin: 0 auto;
}

.about-two__right-single-icon .ripple,
.about-two__right-single-icon .ripple:before,
.about-two__right-single-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.about-two__right-single-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.about-two__right-single-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.about-two__right-single .counter-box {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 72px 40px 72px;
}

.about-two__right-single .counter-box h2 {
    position: relative;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: capitalize;
}

.about-two__right-single .counter-box h2 .plus {
    position: absolute;
    top: -6px;
}

.about-two__right-single .counter-box .odometer.odometer-auto-theme,
.about-two__right-single .counter-box .odometer.odometer-theme-default {
    font-family: var(--thm-font);
    line-height: 1.1em;
}


/***
=============================================
Services Two
=============================================
***/

.services-two {
    position: relative;
    display: block;
    background: #eff0f0;
    padding: 120px 0px 90px;
    overflow: hidden;
    z-index: 1;
}

.services-two__img {
    position: absolute;
    top: 50px;
    left: -200px;
    z-index: -1;
}

.services-two .sec-title-two {
    margin-left: 170px;
}

.services-two__left-content {
    position: relative;
    display: block;
    margin-left: 170px;
}

.services-two__left-content-single {
    position: relative;
    display: block;
    padding-top: 50px;
    margin-bottom: 30px;
}

.services-two__left-content-single.mb30 {
    margin-top: 32px;
}

.services-two__left-content-single .icon-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 125px;
    margin: 0px auto 0px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
    z-index: 5;
}

.services-two__left-content-single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 65px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 5;
}

.services-two__left-content-single:hover .icon-box span::before {
    color: #ffffff;
}

.services-two__left-content-single:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.services-two__left-content-single .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 10px;
    background-color: var(--thm-base);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.services-two__left-content-single:hover .icon-box::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.services-two__left-content-single .inner {
    position: relative;
    display: block;
    padding: 97px 70px 41px;
    background: #ffffff;
    border-radius: 9px;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
}

.services-two__left-content-single .inner h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.services-two__left-content-single .inner h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-two__left-content-single .inner h2 a:hover {
    color: var(--thm-base);
}

.services-two__left-content-single .inner p {
    margin: 0;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 90px;
    margin: 0 auto;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.services-two__right-content {
    position: relative;
    display: block;
    margin-right: -100px;
}

.services-two__right-content-single {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0.175px 9.998px 38px 2px rgb(0, 0, 0, 0.1);
    padding: 28px 20px;
    margin-bottom: 15px;
}

.services-two__right-content-single::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 4px;
    background: #ede8e4;
    content: "";
}

.services-two__right-content-single::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 4px;
    background: var(--thm-base);
    transform: scaleX(0.7) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 0;
    border-radius: 0px;
    content: "";
}

.services-two__right-content-single:hover::after {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.services-two__right-content-single .icon-box {
    position: relative;
    display: block;
}

.services-two__right-content-single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-two__right-content-single:hover .icon-box span::before {
    transform: scale(0.9);
}

.services-two__right-content-single:hover .icon-box img {
    transform: scale(0.9);
}

.services-two__right-content-single .title-box {
    position: relative;
    display: block;
    margin-left: 15px;
    flex: 1;
}

.services-two__right-content-single .title-box h2 {
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
}

.services-two__right-content-single .title-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-two__right-content-single .title-box h2 a:hover {
    color: var(--thm-base);
}


/***
=============================================
Team Two
=============================================
***/

.team-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 60px;
}

.team-two .auto-container {
    max-width: 1650px;
    width: 100%;
}

.team-two__single {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
}

.team-two__single.mb40 {
    margin-top: 40px;
}

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

.team-two__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.team-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(0, 0, 0, .5);
    opacity: 0;
    z-index: 1;
    content: "";
}

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

.team-two__single-img .inner .social-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    padding: 11px 10px 14px;
    border-radius: 30px;
    border-bottom-right-radius: 0px;
    z-index: 5;
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.team-two__single:hover .team-two__single-img .inner .social-icon {
    transform: scale(1.0);
    opacity: 1;
}

.team-two__single-img .inner .social-icon li {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.team-two__single-img .inner .social-icon li:last-child {
    margin-bottom: 0;
}

.team-two__single-img .inner .social-icon li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--thm-base);
    border-radius: 50%;
    z-index: 1;
}

.team-two__single-img .inner .social-icon li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-radius: 50%;
    border-bottom-right-radius: 0px;
    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;
}

.team-two__single-img .inner .social-icon li a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}

.team-two__single-img .inner .social-icon li a span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-two__single-img .inner .social-icon li a:hover span::before {
    color: var(--thm-base);
}

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

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

.team-two__single-content {
    position: relative;
    display: block;
    width: 285px;
    background: var(--thm-base);
    border-radius: 10px;
    padding: 19px 0px 17px;
    margin-top: -64px;
    z-index: 5;
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.team-two__single:hover .team-two__single-content {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.team-two__single-content h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.team-two__single-content h2 a {
    color: #ffffff;
}

.team-two__single-content p {
    color: #ffffff;
    font-size: 17px;
    line-height: 28px;
    text-transform: capitalize;
    margin: 0;
}


/***
=============================================
Portfolio Two
=============================================
***/

.portfolio-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;
}

.portfolio-two__top {
    position: relative;
    display: block;
}

.portfolio-two .container-fluid {
    padding-right: var(--bs-gutter-x, .0rem);
    padding-left: var(--bs-gutter-x, .0rem);
}

.portfolio-two__single {
    position: relative;
    display: block;
}

.portfolio-two__single.mb30 {
    margin-top: 30px;
}

.portfolio-two__single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.portfolio-two__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(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 1;
    content: "";
}

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

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

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

.portfolio-two__single-img .overlay-content {
    position: absolute;
    left: 50px;
    bottom: 45px;
    right: 50px;
    background: #ffffff;
    padding: 107px 30px 51px;
    overflow: hidden;
    text-align: right;
    -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: 5;
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content {
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.portfolio-two__single-img .overlay-content::before {
    position: absolute;
    top: 0;
    left: 60px;
    bottom: 0;
    width: 2px;
    background: var(--thm-base);
    content: "";
    transition: -webkit-transform 2.0s ease;
    transition: transform 2.0s ease;
    transition: transform 2.0s ease, -webkit-transform 2.0s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.portfolio-two__single-img .overlay-content::after {
    position: absolute;
    left: 0px;
    bottom: 65px;
    right: 50%;
    height: 2px;
    background: var(--thm-base);
    content: "";
    transition: transform 2000ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content::after {
    transform: scale(1, 1);
    transform-origin: left center;
}

.portfolio-two__single-img .overlay-content h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 3px;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 700ms ease;
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content h2 {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 700ms;
}

.portfolio-two__single-img .overlay-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

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

.portfolio-two__single-img .overlay-content p {
    margin: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 700ms ease;
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content p {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}

.portfolio-two .owl-theme .owl-nav {
    position: absolute;
    margin-top: 0;
    top: -120px;
    right: 19%;
}

.portfolio-two .owl-carousel .owl-nav button.owl-prev,
.portfolio-two .owl-carousel .owl-nav button.owl-next {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    border-radius: 0px;
    background-color: #d9d9d9;
    color: var(--thm-base);
    font-size: 20px;
    outline: none;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-two .owl-carousel .owl-nav button.owl-prev:hover,
.portfolio-two .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--thm-base);
    color: #ffffff;
}


/***
=============================================
Feature Three
=============================================
***/

.feature-three {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    overflow: hidden;
    z-index: 1;
}

.feature-three .shape1 {
    position: absolute;
    top: -390px;
    right: -130px;
    z-index: 2;
}

.feature-three .shape2 {
    position: absolute;
    top: -200px;
    right: -290px;
    mix-blend-mode: soft-light;
    z-index: 1;
}

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

.feature-three__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #010007;
    opacity: 0.7;
    content: "";
    z-index: -2;
}

.feature-three__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: repeat;
    z-index: -1;
}

.feature-three__inner {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
    padding: 50px 0px 42px;
    overflow: hidden;
    border-radius: 50px;
    border-top-left-radius: 0px;
    z-index: 5;
}

.feature-three__box {
    position: relative;
    display: block;
}

.feature-three__single {
    position: relative;
    display: block;
    width: 20%;
    float: left;
}

.feature-three__single .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--thm-base);
    margin: 0 auto;
}

.feature-three__single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 50px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.feature-three__single:hover .icon-box span::before {
    transform: scale(0.9);
}

.feature-three__single .title-box {
    position: relative;
    display: block;
}

.feature-three__single .title-box h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 11px;
}

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

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


/***
=============================================
Industry Skill One
=============================================
***/

.industry-skill-one {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    margin-top: -120px;
    z-index: 3;
}

.industry-skill-one .shape1 {
    position: absolute;
    top: 0;
    right: 115px;
    opacity: 0.03;
    z-index: -1;
}

.industry-skill-one::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 370px;
    background: #ffffff;
    content: "";
    z-index: -1;
}

.industry-skill-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 132px;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 745px;
}

.industry-skill-one__content {
    position: relative;
    display: block;
    max-width: 560px;
    width: 100%;
    margin-left: 61px;
}

.industry-skill-one__content .sec-title-two {
    padding-bottom: 22px;
}

.industry-skill-one__content .text-box {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.industry-skill-one__content .text-box p {
    margin: 0px;
}

.industry-skill-one__progress {
    position: relative;
    display: block;
    width: 100%;
}

.industry-skill-one__progress-single {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.industry-skill-one__progress-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.industry-skill-one__progress .bar {
    position: relative;
    width: 100%;
    height: 8px;
    background: #ffffff;
}

.industry-skill-one__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 8px;
    background: var(--thm-base);
    border-bottom-right-radius: 0px;
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.industry-skill-one__progress .bar::before {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--thm-base);
    content: "";
}

.industry-skill-one__progress .count-text {
    position: absolute;
    top: -35px;
    right: 0px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 1;
}


/***
=============================================
Why Choose One
=============================================
***/

.why-choose-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 120px;
    z-index: 1;
}

.wh-new {
    padding-top: 120px;
}

.why-choose-one__inner {
    position: relative;
    display: block;
}

.why-choose-one__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.why-choose-one__img img {
    width: 100%;
}

.why-choose-one__list {
    position: relative;
    display: block;
    overflow: hidden;
}

.why-choose-one__list li {
    position: relative;
    display: block;
    max-width: 365px;
    width: 100%;
    padding-left: 130px;
    float: left;
    margin-bottom: 48px;
}

.why-choose-one__list li.style2 {
    float: right;
    padding-left: 0;
    padding-right: 130px;
    text-align: right;
}

.why-choose-one__list li.style2 .icon-box {
    left: auto;
    right: 0;
}

.why-choose-one__list li .icon-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 8px;
    left: 0;
    width: 100px;
    height: 100px;
    background: var(--thm-base);
    border-radius: 5px;
}

.why-choose-one__list li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 50px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.why-choose-one__list li:hover .icon-box span::before {
    transform: scale(0.9);
}

.why-choose-one__list li:hover .icon-box img {
    transform: scale(0.9);
}

.why-choose-one__list li .content-box {
    position: relative;
    display: block;
}

.why-choose-one__list li .content-box h2 {
    font-size: 22px;
    line-height: 34px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.why-choose-one__list li .content-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.why-choose-one__list li .content-box h2 a:hover {
    color: var(--thm-base);
}

.why-choose-one__list li .content-box p {
    margin: 0px;
}

.why-choose-one__list li .content-box .btn-box {
    position: relative;
    display: block;
    margin-top: 6px;
}

.why-choose-one__list li .content-box .btn-box a {
    color: var(--thm-base);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.why-choose-one__list li .content-box .btn-box a:hover {
    color: var(--thm-black);
}

.why-choose-one__list li .content-box .btn-box a span:before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    top: 2px;
    margin-left: 3px;
}


/***
=============================================
Testimonial Two
=============================================
***/

.testimonial-two .owl-dots {
    margin-top: 30px;
    position: absolute;
    left: 0;
    right: 0;
}

.testimonial-two .owl-dots .active span {
    background: var(--thm-base) !important;
}

.testimonial-two {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    background: #eff0f0;
    z-index: 1;
}

.testimonial-two__img {
    position: absolute;
    top: 15px;
    left: -100px;
    z-index: -1;
}

.testimonial-two .shape2 {
    position: absolute;
    top: 150px;
    left: 250px;
    opacity: 0.45;
    z-index: -2;
}

.testimonial-two .shape3 {
    position: absolute;
    bottom: 50px;
    right: 430px;
    opacity: 0.45;
    z-index: -1;
}

.testimonial-two__single {
    position: relative;
    display: block;
    padding-top: 24px;
    z-index: 1;
}

.testimonial-two__single .shape1 {
    position: absolute;
    right: 45px;
    bottom: 60px;
    opacity: 0.5;
    z-index: 1;
}

.testimonial-two__single .quote-icon {
    position: absolute;
    top: 0;
    left: 45px;
    z-index: 2;
}

.testimonial-two__single .quote-icon span:before {
    color: var(--thm-base);
    font-size: 50px;
}

.testimonial-two__single-inner {
    position: relative;
    display: block;
    background: #ffffff;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 35px 0px rgb(0, 0, 0, 0.05);
    padding: 51px 30px 50px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: stretch;
    height: 478px;
}

.testimonial-two__single-inner .rating-box {
    position: absolute;
    top: -10px;
    right: 0px;
    display: block;
    background: var(--thm-base);
    padding: 6px 30px 6px;
    border-radius: 10px;
    border-top-right-radius: 0px;
    z-index: 5;
}

.testimonial-two__single-inner .rating-box ul li span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 13px;
    line-height: 13px;
}

.testimonial-two__single .text-box {
    position: relative;
    display: block;
}

.testimonial-two__single .text-box p {
    font-size: 17px;
    line-height: 30px;
}

.testimonial-two__single .client-info {
    position: absolute;
    display: flex;
    align-items: center;
    margin-top: 26px;
    bottom: 30px;
}

.testimonial-two__single .client-info .img-box {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
}

.testimonial-two__single .client-info .img-box .inner {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-two__single .client-info .img-box .icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 18px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: var(--thm-base);
    border: 5px solid #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    z-index: 2;
}

.testimonial-two__single .client-info .img-box .icon span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
}

.testimonial-two__single .client-info .img-box img {
    width: 100%;
}

.testimonial-two__single .client-info .text-box {
    position: relative;
    display: block;
    margin-left: 35px;
    flex: 1;
}

.testimonial-two__single .client-info .text-box h3 {
    color: var(--thm-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 2px;
}

.testimonial-two__single .client-info .text-box p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
}

.testimonial-two .owl-theme .owl-nav {
    position: absolute;
    margin-top: 0;
    top: -120px;
    right: 0px;
}

.testimonial-two .owl-carousel .owl-nav button.owl-prev,
.testimonial-two .owl-carousel .owl-nav button.owl-next {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    border-radius: 0px;
    background-color: #ffffff;
    color: var(--thm-base);
    font-size: 20px;
    outline: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border-radius: 50%;
}

.testimonial-two .owl-carousel .owl-nav button.owl-prev:hover,
.testimonial-two .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--thm-base);
    color: #ffffff;
}


/***
=============================================
Blog Two
=============================================
***/

.blog-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 130px;
    z-index: 1;
}

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

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

.blog-two__single-img:after {
    position: absolute;
    top: 0%;
    right: 0%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .4);
    border-radius: 50%;
    -webkit-transform: translateX(-50%, -50%);
    transform: translateX(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.blog-two__single:hover .blog-two__single-img::after {
    -webkit-animation: circle .95s;
    animation: circle .95s;
}

.blog-two__single-img::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 400px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5214460784313726) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.blog-two__single-img img {
    width: 100%;
    transform: scale(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    object-fit: cover;
    height: 100%;
}

.blog-two__single:hover .blog-two__single-img img {
    transform: scale(1.1) rotate(1deg);
}

.blog-two__single-img .overlay-content {
    position: absolute;
    left: 60px;
    bottom: 51px;
    right: 60px;
    z-index: 5;
}

.blog-two__single-img .overlay-content .top-text {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.blog-two__single-img .overlay-content .top-text .date-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 65px;
    background: var(--thm-base);
    border-radius: 10px;
}

.blog-two__single-img .overlay-content .top-text .date-box p {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.blog-two__single-img .overlay-content .top-text .meta-box {
    position: relative;
    display: block;
    margin-left: 20px;
    margin-bottom: 4px;
}

.blog-two__single-img .overlay-content .top-text .meta-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
}

.blog-two__single-img .overlay-content .top-text .meta-box p a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-two__single-img .overlay-content .top-text .meta-box p a:hover {
    color: var(--thm-base);
}

.blog-two__single-img .overlay-content .top-text .meta-box p a span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    margin-right: 2px;
}

.blog-two__single-img .overlay-content .title {
    position: relative;
    display: block;
    margin-top: 12px;
}

.blog-two__single-img .overlay-content .title h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    text-transform: capitalize;
}

.blog-two__single-img .overlay-content .title h2 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

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

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

.blog-two__single-list-single {
    position: relative;
    display: block;
    margin-bottom: 28px;
}

.blog-two__single-list-single .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-two__single-list-single .inner .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-two__single-list-single .inner .img-box::before {
    position: absolute;
    top: 0%;
    right: 0%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .4);
    border-radius: 50%;
    -webkit-transform: translateX(-50%, -50%);
    transform: translateX(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.blog-two__single-list-single:hover .inner .img-box::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
}

.blog-two__single-list-single .inner .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.blog-two__single-list-single:hover .inner .img-box img {
    transform: scale(1.1) rotate(1deg);
}

.blog-two__single-list-single .inner .content-box {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, 0.04);
    flex: 1;
    padding: 31px 30px 30px;
}

.blog-two__single-list-single .inner .content-box .meta-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-two__single-list-single .inner .content-box .meta-box li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    margin-right: 20px;
}

.blog-two__single-list-single .inner .content-box .meta-box li:last-child {
    margin-right: 0px;
}

.blog-two__single-list-single .inner .content-box .meta-box li .icon {
    position: relative;
    display: block;
}

.blog-two__single-list-single .inner .content-box .meta-box li .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 15px;
    font-weight: 700;
}

.blog-two__single-list-single .inner .content-box .meta-box li .text {
    position: relative;
    display: block;
    margin-left: 8px;
    margin-top: 0;
}

.blog-two__single-list-single .inner .content-box .meta-box li .icon i {
    color: var(--thm-base);
}

.blog-two__single-list-single .inner .content-box .meta-box li .text p {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--thm-font);
    margin: 0;
}

.blog-two__single-list-single .inner .content-box .meta-box li .text p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-two__single-list-single .inner .content-box .meta-box li .text p a:hover {
    color: var(--thm-base);
}

.blog-two__single-list-single .inner .content-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 5px;
}

.blog-two__single-list-single .inner .content-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-two__single-list-single .inner .content-box h3 a:hover {
    color: var(--thm-base);
}


/***
=============================================
Services One About
=============================================
***/

.services-one--about {
    position: relative;
    display: block;
    padding: 120px 0px 20px;
}


/***
=============================================
About One About
=============================================
***/

.about-one--about {
    position: relative;
    display: block;
    padding: 70px 0px 120px;
}

.about-one--about .about-one__bg {
    position: absolute;
    top: 70px;
    left: 15.5%;
    bottom: 120px;
    right: 53%;
    border-top-left-radius: 260px;
    border-bottom-left-radius: 260px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}

.about-one--about .about-one__bg::before {
    border-top-left-radius: 260px;
    border-bottom-left-radius: 260px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}

.about-one--about .about-one__img {
    position: relative;
    display: block;
    margin-top: 8px;
    margin-left: -63px;
}


/***
=============================================
Blog One About
=============================================
***/

.blog-one--about {
    padding: 0px 0px 130px;
}


/***
=============================================
Services One Services
=============================================
***/

.services-one--services {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
}


/***
=============================================
Feature One Services
=============================================
***/

.feature-one--services {
    position: relative;
    display: block;
    padding: 120px 0px 160px;
}


/***
=============================================
Services Details
=============================================
***/

.services-details {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 160px;
    z-index: 1;
}

.services-details__sidebar {
    position: relative;
    display: block;
}

.services-details__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.sidebar__title {
    position: relative;
    margin: 0;
    font-size: 27px;
    line-height: 37px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 31px;
    padding-left: 40px;
}

.sidebar__title::before {
    position: absolute;
    left: 0;
    bottom: 9px;
    height: 2px;
    width: 30px;
    background: var(--thm-base);
    content: "";
}

.sidebar__search {
    position: relative;
    display: block;
    background-color: #f1f3f8;
    padding: 50px 30px 50px;
}

.sidebar__search-form {
    position: relative;
}

.sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: #ffffff;
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 600;
    padding-left: 20px;
    height: 60px;
    width: 100%;
    padding-right: 60px;
    border-radius: 3px;
    border: 1px solid #dcdfe2;
}

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

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

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

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

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

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

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

.sidebar__search-form button[type="submit"] {
    background-color: var(--thm-base);
    color: #ffffff;
    font-size: 15px;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 50px;
    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;
}

.sidebar__search-form:hover button[type="submit"] {
    background-color: var(--thm-black);
    color: #ffffff;
}

.sidebar__category {
    position: relative;
    display: block;
    background-color: #f1f3f8;
    padding: 42px 30px 50px;
}

.sidebar__category-list {
    position: relative;
    display: block;
    margin: 0;
}

.sidebar__category-list li+li {
    position: relative;
    margin-top: 15px;
}

.sidebar__category-list li a {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    padding: 17px 20px 18px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.sidebar__category-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--thm-base);
    z-index: -1;
    transform: scaleY(0.0);
    transform-origin: left;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__category-list li a:hover:before {
    transform: scaleY(1.0);
}

.sidebar__category-list li a:hover {
    color: #ffffff;
}

.sidebar__category-list li.active a {
    background-color: var(--thm-base);
    color: #ffffff;
}

.sidebar__category-list li a span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    right: 0;
    color: var(--thm-black);
    font-size: 17px;
    font-weight: 600;
    background-color: #dcdde0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
    background: #ffffff;
    color: var(--thm-black);
}

.sidebar__single-button-box {
    position: relative;
    display: block;
    background-color: #f1f3f8;
    padding: 50px 30px 50px;
}

.sidebar__single-button-box .btn-one {
    position: relative;
    display: block;
}

.sidebar__single-button-box .btn-one a {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    background: #ffffff;
    padding: 16px 25px 17px;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__single-button-box .btn-one a:hover {
    color: #ffffff;
    background: var(--thm-base);
}

.sidebar__single-button-box .btn-one a span::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__single-button-box .btn-one a:hover span::before {
    color: #ffffff;
}

.sidebar__single-button-box .btn-one.btn-one--two {
    position: relative;
    display: block;
    margin-top: 20px;
}

.sidebar__tags {
    position: relative;
    display: block;
    background-color: #f1f3f8;
    padding: 41px 30px 40px;
    overflow: hidden;
}

.sidebar__tags-list {
    position: relative;
    display: block;
    margin-left: -5px;
    margin-right: -5px;
}

.sidebar__tags-list li {
    position: relative;
    display: inline-block;
    float: left;
    padding: 0px 5px 0px;
    margin-bottom: 10px;
}

.sidebar__tags-list li a {
    position: relative;
    display: block;
    color: #7d7d7d;
    font-size: 15px;
    font-weight: 400;
    background: #ffffff;
    padding: 6px 24px;
    border-radius: 3px;
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
    color: #ffffff;
    background: var(--thm-base);
}

.sidebar__contact {
    position: relative;
    display: block;
    background-color: #f1f3f8;
    padding: 41px 30px 42px;
    overflow: hidden;
}

.sidebar__contact .sidebar__title {
    margin-bottom: 24px;
}

.sidebar__contact-list {
    position: relative;
    display: block;
}

.sidebar__contact-list li {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.sidebar__contact-list li:last-child {
    margin-bottom: 0;
}

.sidebar__contact-list li .inner {
    position: relative;
    display: block;
    padding-left: 45px;
}

.sidebar__contact-list li .inner .icon-box {
    position: absolute;
    top: 0;
    left: 0;
}

.sidebar__contact-list li .inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 30px;
    top: 6px;
}

.sidebar__contact-list li .inner .text-box {
    position: relative;
    display: block;
}

.sidebar__contact-list li .inner .text-box h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
}

.sidebar__contact-list li .inner .text-box p {
    font-size: 16px;
    line-height: 26px;
}

.sidebar__contact-list li .inner .text-box p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__contact-list li .inner .text-box p a:hover {
    color: var(--thm-base);
}

.services-details__content {
    position: relative;
    display: block;
}

.services-details__content-img1 {
    position: relative;
    display: block;
    margin-bottom: 41px;
}

.services-details__content-img1 img {
    width: 100%;
}

.services-details__content-text-box1 {
    position: relative;
    display: block;
}

.services-details__content-text-box1 h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.services-details__content-text-box1 .text1 {
    margin: 0;
}

.services-details__content-text-box1-list {
    position: relative;
    display: block;
    margin-top: 22px;
}

.services-details__content-text-box1-list li {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.services-details__content-text-box1-list li:last-child {
    margin-bottom: 0px;
}

.services-details__content-text-box1-list li p {
    position: relative;
    padding-left: 25px;
}

.services-details__content-text-box1-list li p::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #bfc2c3;
    border-radius: 50%;
    content: "";
}

.services-details__content-text-box1 .text2 {
    margin: 0px;
    margin-top: 21px;
}

.services-details__content-img2 {
    position: relative;
    display: block;
    z-index: 1;
    margin-top: 65px;
}

.services-details__content-img2::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #222429;
    opacity: 0.3;
    content: "";
    z-index: 1;
}

.services-details__content-img2 img {
    width: 100%;
}

.services-details__content-img2 .icon-box {
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 5;
}

.services-details__content-img2 .icon-box span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 50px;
}

.services-details__content-text-box2 {
    position: relative;
    display: block;
    margin-top: 60px;
}

.services-details__content-text-box2 .single-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.services-details__content-text-box2 .single-box .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    margin: 0 auto 16px;
    z-index: 1;
}

.services-details__content-text-box2 .single-box .icon-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #eeeff2;
    border-radius: 50%;
    content: "";
    z-index: -1;
}

.services-details__content-text-box2 .single-box .icon-box .icon-box-bg {
    position: absolute;
    top: -8px;
    left: -5px;
    z-index: -2;
}

.services-details__content-text-box2 .single-box .icon-box span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 80px;
}

.services-details__content-text-box2 .single-box .text-box {
    position: relative;
    display: block;
}

.services-details__content-text-box2 .single-box .text-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.services-details__content-text-box2 .single-box .text-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details__content-text-box2 .single-box .text-box h3 a:hover {
    color: var(--thm-base);
}

.services-details__content-text-box2 .single-box .text-box p {
    margin: 0;
}

.services-details__content-text-box3 {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.services-details__content-text-box3 .img-box {
    position: relative;
    display: block;
}

.services-details__content-text-box3 .img-box img {
    width: 100%;
}

.services-details__content-text-box3 .content-box {
    position: relative;
    display: block;
    margin-left: 30px;
    flex: 1;
}

.services-details__content-text-box3 .content-box p {
    margin: 0;
}

.services-details__content-text-box3 .content-box ul {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 31px;
}

.services-details__content-text-box3 .content-box ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.services-details__content-text-box3 .content-box ul li:last-child {
    margin-bottom: 0;
}

.services-details__content-text-box3 .content-box ul li .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f2f2f2;
    border-radius: 50%;
}

.services-details__content-text-box3 .content-box ul li .icon-box span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 17px;
}

.services-details__content-text-box3 .content-box ul li .text-box {
    position: relative;
    display: block;
    margin-left: 15px;
    flex: 1;
}

.services-details__content-text-box3 .content-box ul li .text-box p {
    margin: 0;
}

.services-details__content-text-box3 p {
    margin: 0;
}

.services-details__content-text-box4 {
    position: relative;
    display: block;
    margin-top: 31px;
}

.services-details__content-text-box4 p {
    margin: 0;
}

.services-details__accordion {
    position: relative;
    display: block;
    margin-top: 31px;
}


/***
=============================================
Portfolio Page
=============================================
***/

.portfolio-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;
}

.portfolio-page__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 60px;
}

.portfolio-page__top .sec-title {
    padding-bottom: 0px;
}

.portfolio-page__top .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.portfolio-page__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

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

.portfolio-page__single-img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(var(--thm-black-rgb), 0.5);
    transform: scaleX(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 1;
}

.portfolio-page__single:hover .portfolio-page__single-img:before {
    transform: scaleX(1.0);
}

.portfolio-page__single-img img {
    width: 100%;
    transition: all 500ms ease;
    transform: scale(1);
}

.portfolio-page__single:hover .portfolio-page__single-img img {
    transform: scale(1.05);
}

.portfolio-page__single-img .overlay-content {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 0;
    bottom: 0;
    right: 0px;
    background: #ffffff;
    padding: 10px 15px;
    /* transform: perspective(1200px) rotateX(90deg);
  transform-origin: bottom;
  transition: all 700ms ease 100ms; */
    z-index: 5;
    width: 90%;
    margin: 0 auto;
}


/* .portfolio-page__single:hover .portfolio-page__single-img .overlay-content {
  transform: perspective(1200px) rotateX(0deg);
  transition: all 700ms ease 200ms;
} */

.portfolio-page__single-img .overlay-content .text-box {
    position: relative;
    display: block;
}

.portfolio-page__single-img .overlay-content .text-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.portfolio-page__single-img .overlay-content .text-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-page__single-img .overlay-content .text-box h3 a:hover {
    color: var(--thm-base);
}

.portfolio-page__single-img .overlay-content .text-box p {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

.portfolio-page__single-img .overlay-content .btn-box {
    position: relative;
    display: block;
}

.portfolio-page__single-img .overlay-content .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-page__single-img .overlay-content .btn-box a:hover {
    background: var(--thm-black);
}

.portfolio-page__single-img .overlay-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 17px;
}

.portfolio-page__link {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0;
    transform: scale(0);
    transition: all 700ms ease;
    z-index: 2;
}

.portfolio-page__single:hover .portfolio-page__link {
    transform: scale(1);
    opacity: 1;
    transition-delay: 500ms;
}

.portfolio-page__link a {
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
    background-color: var(--thm-base);
    border-radius: 50%;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    transition: .4s;
    -webkit-transition: all .4s ease-in-out;
}

.portfolio-page__link a:hover {
    color: var(--thm-base);
    background: #ffffff;
}

.portfolio-page__link a span::before {
    position: relative;
    display: inline-block;
    line-height: 50px;
}

.portfolio-page__pagination {
    position: relative;
    display: block;
    margin-top: 20px;
}


/***
=============================================
Portfolio Page Contact
=============================================
***/

.portfolio-page-contact {
    position: relative;
    display: block;
    padding: 110px 0px 100px;
    background: #f2f7f7;
    z-index: 3;
}

.portfolio-page-contact__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 800px;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.portfolio-page-contact .icon-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 60px;
    right: 550px;
    width: 200px;
    height: 135px;
    background: var(--thm-base);
    border-radius: 10px;
}

.portfolio-page-contact .icon-box span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 90px;
}

.portfolio-page-contact__form {
    position: relative;
    display: block;
    margin-right: 40px;
}

.portfolio-page-contact__form .title-box {
    position: relative;
    display: block;
    margin-bottom: 47px;
}

.portfolio-page-contact__form .title-box p {
    color: #726d7b;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.portfolio-page-contact__form .title-box h2 {
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
}

.portfolio-page-contact__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.portfolio-page-contact__form .input-box input[type="text"],
.portfolio-page-contact__form .input-box input[type="email"],
.portfolio-page-contact__form .input-box textarea {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 60px;
    border: none;
    color: var(--thm-gray);
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    outline: none;
}

.portfolio-page-contact__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="text"]:-moz-placeholder {
    color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="text"]::-moz-placeholder {
    color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="text"]:-ms-input-placeholder {
    color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="email"]:-moz-placeholder {
    color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="email"]::-moz-placeholder {
    color: var(--thm-gray);
}

.portfolio-page-contact__form form input[type="email"]:-ms-input-placeholder {
    color: var(--thm-gray);
}

.portfolio-page-contact__form form textarea::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.portfolio-page-contact__form form textarea:-moz-placeholder {
    color: var(--thm-gray);
}

.portfolio-page-contact__form form textarea::-moz-placeholder {
    color: var(--thm-gray);
}

.portfolio-page-contact__form form textarea:-ms-input-placeholder {
    color: var(--thm-gray);
}

.portfolio-page-contact__form .input-box .select-box {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

.portfolio-page-contact__form .input-box .nice-select {
    background: #ffffff;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border: none;
    color: var(--thm-gray);
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 0px;
}

.portfolio-page-contact__form .input-box .nice-select:after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--thm-gray);
    border-right: 2px solid var(--thm-gray);
    right: 30px;
    margin-top: 0px;
    top: 24px;
    z-index: 10;
}

.portfolio-page-contact__form .nice-select .list {
    background-color: rgba(255, 255, 255, .7);
    z-index: 99;
}

#ui-datepicker-div.ui-widget-content {
    background: #fff none repeat scroll 0 0;
    border: 1px solid var(--thm-black);
    color: #252525;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--thm-base) none repeat scroll 0 0;
    border: 2px solid var(--thm-base);
    border-radius: 0;
    color: #ffffff;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #333333 !important;
    background: #333333 !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: #fff;
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea;
}

#ui-datepicker-div.ui-widget {
    font-family: var(--thm-font);
}

#ptTimeSelectCntr .ui-widget {
    font-family: var(--thm-font);
}

#ptTimeSelectCntr .ui-widget-header {
    color: #ffffff;
    background: var(--thm-black);
}

.portfolio-page-contact__form-btn {
    position: relative;
    display: block;
}

.portfolio-page-contact__form-btn button.thm-btn {
    width: 100%;
    line-height: 60px;
}


/***
=============================================
Portfolio One Portfolio
=============================================
***/

.portfolio-one--portfolio {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 160px;
    margin-top: 0px;
    z-index: 1;
}


/***
=============================================
Portfolio Details
=============================================
***/

.portfolio-details {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 151px;
}

.portfolio-details__sidebar {
    position: relative;
    display: block;
}

.portfolio-details__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.portfolio-details__single.project-details {
    position: relative;
    display: block;
    background: #f1f3f8;
    padding: 41px 30px 50px;
}

.portfolio-details__sidebar-list {
    position: relative;
    display: block;
}

.portfolio-details__sidebar-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 15px 20px 14px;
    margin-bottom: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-details__sidebar-list li:hover {
    background: var(--thm-base);
}

.portfolio-details__sidebar-list li:last-child {
    margin-bottom: 0;
}

.portfolio-details__sidebar-list li .left-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 105px;
}

.portfolio-details__sidebar-list li .left-box p {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-details__sidebar-list li:hover .left-box p {
    color: #ffffff;
}

.portfolio-details__sidebar-list li .left-box .dots {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-details__sidebar-list li:hover .left-box .dots {
    color: #ffffff;
}

.portfolio-details__sidebar-list li .right-box {
    position: relative;
    display: block;
}

.portfolio-details__sidebar-list li .right-box p {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-details__sidebar-list li:hover .right-box p {
    color: #ffffff;
}

.portfolio-details__sidebar-list li .right-box ul {
    position: relative;
    display: block;
}

.portfolio-details__sidebar-list li .right-box ul li {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0;
    background: transparent;
    margin-right: 5px;
}

.portfolio-details__sidebar-list li .right-box ul li a {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-details__sidebar-list li:hover .right-box ul li a {
    color: #ffffff;
}

.portfolio-details__content {
    position: relative;
    display: block;
}

.portfolio-details__content-img1 {
    position: relative;
    display: block;
    margin-bottom: 41px;
}

.portfolio-details__content-img1 img {
    width: 100%;
}

.portfolio-details__content-text-box1 {
    position: relative;
    display: block;
}

.portfolio-details__content-text-box1 h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.portfolio-details__content-text-box1 p {
    margin: 0px;
    margin-bottom: 17px;
}

.portfolio-details__content-text-box1 .text2 {
    margin: 0;
}

.portfolio-details__content-text-box2 {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 26px;
}

.portfolio-details__content-text-box2 .img-box {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-details__content-text-box2 .img-box img {
    width: 100%;
}

.portfolio-details__content-text-box2 .content-box {
    position: relative;
    display: block;
    margin-left: 30px;
}

.portfolio-details__content-text-box2 .content-box ul {
    position: relative;
    display: block;
}

.portfolio-details__content-text-box2 .content-box ul li {
    position: relative;
    display: block;
    padding-left: 35px;
    margin-bottom: 17px;
}

.portfolio-details__content-text-box2 .content-box ul li:last-child {
    margin-bottom: 0;
}

.portfolio-details__content-text-box2 .content-box ul li .icon-box {
    position: absolute;
    top: 2px;
    left: 0;
}

.portfolio-details__content-text-box2 .content-box ul li .icon-box span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 25px;
}

.portfolio-details__content-text-box2 .content-box ul li .text-box {
    position: relative;
    display: block;
}

.portfolio-details__content-text-box2 .content-box ul li .text-box p {
    margin: 0;
}

.portfolio-details__content-text-box3 {
    position: relative;
    display: block;
    margin-top: 27px;
}

.portfolio-details__content-text-box3-list {
    position: relative;
    display: block;
}

.portfolio-details__content-text-box3-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.portfolio-details__content-text-box3-list li:last-child {
    margin-bottom: 0px;
}

.portfolio-details__content-text-box3-list li p {
    position: relative;
    padding-left: 25px;
}

.portfolio-details__content-text-box3-list li p::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #bfc2c3;
    border-radius: 50%;
    content: "";
}

.portfolio-details__content-img2 {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 46px;
    z-index: 1;
}

.portfolio-details__content-img2::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-rgb), 0.4);
    content: "";
    z-index: 1;
}

.portfolio-details__content-img2 img {
    width: 100%;
}

.portfolio-details__content-img2 .icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.portfolio-details__content-img2 .icon a {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    color: #ffffff;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    background: var(--thm-base);
    z-index: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-details__content-img2 .icon a:hover {
    background: var(--thm-black);
}

.portfolio-details__content-img2 .icon a::before {
    position: absolute;
    top: -15px;
    left: -15px;
    bottom: -15px;
    right: -15px;
    border: 1px solid var(--thm-base);
    border-radius: 50%;
    content: "";
}

.portfolio-details__content-text-box4 {
    position: relative;
    display: block;
    margin-top: 46px;
}

.portfolio-details__content-text-box4 p {
    margin: 0;
}

.portfolio-details__content-img3 {
    position: relative;
    display: block;
    margin-top: 46px;
}

.portfolio-details__content-img3 .single-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.portfolio-details__content-img3 .single-box .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.portfolio-details__content-img3 .single-box .img-box img {
    width: 100%;
}

.portfolio-details__content-text-box5 {
    position: relative;
    display: block;
    margin-top: 11px;
}

.portfolio-details__content-text-box5 p {
    margin: 0;
}

.portfolio-details__content-text-box5-list {
    position: relative;
    display: block;
    margin-top: 17px;
}

.portfolio-details__content-text-box5-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.portfolio-details__content-text-box5-list li:last-child {
    margin-bottom: 0px;
}

.portfolio-details__content-text-box5-list li p {
    position: relative;
    padding-left: 25px;
}

.portfolio-details__content-text-box5-list li p::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #bfc2c3;
    border-radius: 50%;
    content: "";
}


/***
=============================================
Team One Team
=============================================
***/

.team-one--team {
    position: relative;
    display: block;
}

.team-one--team .team-one__single-img .inner {
    border-top-left-radius: 50px;
}


/***
=============================================
Jobs One
=============================================
***/

.jobs-one {
    position: relative;
    display: block;
    background: #f1f3f2;
    padding: 110px 0px 110px;
    z-index: 1;
}

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

.jobs-one__content {
    position: relative;
    display: block;
    margin-right: -50px;
}

.jobs-one__content-title {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.jobs-one__content-title h2 {
    font-size: 55px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: capitalize;
}

.jobs-one__content-text1 {
    position: relative;
    display: block;
}

.jobs-one__content-text1 p {
    margin: 0;
}

.jobs-one__content-text2 {
    position: relative;
    display: block;
    margin-top: 21px;
    margin-bottom: 6px;
}

.jobs-one__content-text2 .single-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.jobs-one__content-text2 .single-box .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--thm-black);
    border-radius: 50%;
}

.jobs-one__content-text2 .single-box .icon-box span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 30px;
}

.jobs-one__content-text2 .single-box .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.jobs-one__content-text2 .single-box .text-box h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.jobs-one__content-text3 {
    position: relative;
    display: block;
}

.jobs-one__content-text3 p {
    margin: 0;
}

.jobs-one__progress {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 38px;
}

.jobs-one__progress-single {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.jobs-one__progress-single-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.jobs-one__progress .bar {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(var(--thm-black-rgb), 0.6);
}

.jobs-one__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 8px;
    background: var(--thm-black);
    border-bottom-right-radius: 0px;
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.jobs-one__progress .count-text {
    position: absolute;
    top: -44px;
    right: -49px;
    color: #ffffff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    text-align: center;
    background: var(--thm-black);
    padding: 3px 10px 1px;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 1;
    z-index: 1;
}

.jobs-one__progress .count-text::before {
    position: absolute;
    left: 0;
    bottom: -7px;
    border: 3px solid var(--thm-black);
    border-bottom: 4px solid transparent;
    border-right: 3px solid transparent;
    content: "";
    z-index: -1;
}


/***
=============================================
Blog One Team
=============================================
***/

.blog-one--team {
    position: relative;
    display: block;
    padding-top: 120px;
}


/***
=============================================
Team Details Top
=============================================
***/

.team-details-top {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;
}

.team-details-top__client-info {
    position: relative;
    display: block;
    background: #f4f3f0;
    padding: 35px 25px 35px;
}

.team-details-top__client-info .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.team-details-top__client-info .img-box img {
    width: 100%;
}

.team-details-top__client-info .content-box {
    position: relative;
    display: block;
    margin-top: 31px;
}

.team-details-top__client-info .content-box h2 {
    color: var(--thm-black);
    font-size: 27px;
    line-height: 37px;
    font-weight: 700;
}

.team-details-top__client-info .content-box span {
    color: var(--thm-black);
}

.team-details-top__client-info .content-box p {
    margin-top: 19px;
}

.team-details-top__client-info .content-box ul {
    position: relative;
    display: block;
    margin-top: 29px;
}

.team-details-top__client-info .content-box ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.team-details-top__client-info .content-box ul li:last-child {
    margin-right: 0;
}

.team-details-top__client-info .content-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-details-top__client-info .content-box ul li a:hover {
    background: var(--thm-base);
}

.team-details-top__client-info .content-box ul li a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-details-top__client-info .content-box ul li a:hover span::before {
    color: #ffffff;
}

.team-details-top__content {
    position: relative;
    display: block;
    margin-top: -12px;
}

.team-details-top__content .title-box {
    position: relative;
    display: block;
    margin-bottom: 18px;
}

.team-details-top__content .title-box h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    text-transform: capitalize;
}

.team-details-top__content .text-box {
    position: relative;
    display: block;
}

.team-details-top__content .text-box p {
    margin: 0;
}

.team-details-top__content-info {
    position: relative;
    display: block;
    margin-top: 24px;
}

.team-details-top__content-info-single {
    position: relative;
    display: block;
}

.team-details-top__content-info-single ul {
    position: relative;
    display: block;
}

.team-details-top__content-info-single ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.team-details-top__content-info-single ul li:last-child {
    margin-bottom: 0px;
}

.team-details-top__content-info-single ul li .title {
    position: relative;
    display: block;
    width: 95px;
}

.team-details-top__content-info-single ul li .title h5 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
}

.team-details-top__content-info-single ul li .text {
    position: relative;
    display: block;
}

.team-details-top__content-info-single ul li .text p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.team-details-top__content-info-single ul li .text p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-details-top__content-info-single ul li .text p a:hover {
    color: var(--thm-base);
}

.team-details-top__content-btn {
    position: relative;
    display: block;
    margin-top: 44px;
    line-height: 0;
}


/***
=============================================
Portfolio Page Team
=============================================
***/

.portfolio-page--team {
    position: relative;
    display: block;
    padding: 0px 0px 210px;
}


/***
=============================================
Experience One
=============================================
***/

.experience-one {
    position: relative;
    display: block;
    background: #f7f7f7;
    padding: 120px 0px 152px;
    z-index: 1;
}

.experience-one__bg {
    position: absolute;
    top: -120px;
    left: 60%;
    bottom: 161px;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.experience-one .sec-title {
    margin-left: -55px;
}

.experience-one__content {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: -55px;
    margin-right: 60px;
    z-index: 1;
}

.experience-one__progress {
    position: relative;
    display: block;
    max-width: 120px;
    width: 100%;
}

.experience-one__progress-single {
    position: relative;
    display: block;
}

.experience-one__progress-single.style2 {
    position: relative;
    display: block;
    margin-top: 21px;
    padding-top: 28px;
}

.experience-one__progress-single.style2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #c4c7c8;
    content: "";
}

.experience-one__progress-single .progress-box {
    position: relative;
    display: block;
    line-height: 0;
}

.experience-one__progress-single .progress-box .graph-outer {
    position: relative;
    display: inline-block;
    text-align: center;
    z-index: 1;
}

.experience-one__progress-single .progress-box .graph-outer .count-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.experience-one__progress-single .progress-box .graph-outer .count-text {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    font-family: var(--thm-font);
}

.experience-one__progress-single .progress-box .graph-outer .count-Parsent {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 24px;
    font-weight: 500;
}

.experience-one__progress-single .title-box {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 13px;
}

.experience-one__progress-single .title-box h5 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    text-transform: capitalize;
}

.experience-one__accordion {
    position: relative;
    display: block;
    margin-left: 65px;
    margin-top: -11px;
}


/***
=============================================
Blog page
=============================================
***/

.blog-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 160px;
    z-index: 1;
}

.sidebar {
    position: relative;
    display: block;
}

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

.sidebar__recent-post {
    position: relative;
    display: block;
    padding: 42px 30px 42px;
    background-color: #f1f3f8;
}

.sidebar__post-box {
    position: relative;
    display: block;
}

.sidebar__post-single {
    position: relative;
    display: block;
}

.sidebar__post-single+.sidebar__post-single {
    margin-top: 27px;
}

.sidebar-post__img {
    position: relative;
    display: block;
    background: var(--thm-black);
    overflow: hidden;
}

.sidebar-post__img::before {
    content: '';
    position: absolute;
    top: 0%;
    right: 0%;
    width: 0;
    height: 100%;
    background-color: rgba(var(--thm-base-rgb), .80);
    border-radius: 0%;
    -webkit-transform: translateX(90%, 90%);
    transform: translateX(90%, 90%);
    opacity: 0.70;
    z-index: 1;
}

.sidebar__post-single:hover .sidebar-post__img::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
    opacity: 1.0;
}

.sidebar-post__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.sidebar__post-single:hover .sidebar-post__img img {
    opacity: 0.70;
    transform: scale(1.1) rotate(1deg);
}

.sidebar__post-content-box {
    position: relative;
    margin-top: 16px;
}

.sidebar__post-content-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.sidebar__post-content-box h3 a {
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__post-single .sidebar__post-content-box h3 a:hover {
    color: var(--thm-base);
}

.blog-page__content {
    position: relative;
    display: block;
}

.blog-page__content-single {
    position: relative;
    display: block;
    margin-bottom: 51px;
}

.blog-page__content-single .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.blog-page__content-single .img-box::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(0, 0, 0, .5);
    opacity: 0;
    z-index: 1;
    border-radius: 10px;
    content: "";
}

.blog-page__content-single:hover .img-box::before {
    opacity: 1;
}

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

.blog-page__content-single:hover .img-box img {
    transform: scale(1);
}

.blog-page__content-single .content-box {
    position: relative;
    display: block;
    margin-top: 27px;
}

.blog-page__content-single .content-box .tgaline {
    position: relative;
    display: inline-block;
    background: var(--thm-base);
    padding: 3px 25px 2px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.blog-page__content-single .content-box .tgaline p {
    color: #ffffff;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.blog-page__content-single .content-box h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    text-transform: capitalize;
}

.blog-page__content-single .content-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-bottom: 5px;
}

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

.blog-page__content-single .content-box p {
    margin: 0;
}

.blog-page__content-single .content-box .meta-box {
    position: relative;
    display: block;
    margin-top: 17px;
}

.blog-page__content-single .content-box .meta-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-page__content-single .content-box .meta-box ul li {
    position: relative;
    display: inline-block;
    margin-right: 11px;
}

.blog-page__content-single .content-box .meta-box ul li:last-child {
    margin-right: 0;
}

.blog-page__content-single .content-box .meta-box ul li p {
    color: var(--thm-black);
}

.blog-page__content-single .content-box .meta-box ul li p span {
    color: #c4c4c4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.blog-page__content-text1 {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 42px 40px 45px;
    border-radius: 10px;
    z-index: 1;
    margin-bottom: 60px;
}

.blog-page__content-text1 .icon-box {
    position: absolute;
    top: 35px;
    left: 40px;
    z-index: -1;
}

.blog-page__content-text1 .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, .2);
    font-size: 30px;
}

.blog-page__content-text1 h2 {
    color: #ffffff;
    font-size: 26px;
    line-height: 36px;
    font-weight: 400;
}

.blog-page__content-text1 .bottom-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 18px;
}

.blog-page__content-text1 .bottom-box p {
    color: #ffffff;
    text-transform: capitalize;
    line-height: 28px;
}

.blog-page__content-text1 .bottom-box span {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
}

.blog-page__pagination {
    position: relative;
    display: block;
}

.blog-page__pagination .styled-pagination {
    padding-top: 0px;
}


/***
=============================================
Blog Details
=============================================
***/

.blog-details {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 160px;
}

.blog-details__content {
    position: relative;
    display: block;
}

.blog-details__tag-share {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ebebeb;
    padding-top: 43px;
}

.blog-details__tags {
    position: relative;
    display: block;
}

.blog-details__tags a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    text-transform: uppercase;
    background: #f3f8f8;
    letter-spacing: 0.1em;
    padding: 4px 15px 3px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details__tags a+a {
    margin-left: 6px;
}

.blog-details__tags a:hover {
    background: var(--thm-base);
    color: #ffffff;
}

.blog-details__social-list {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details__social-list .title {
    position: relative;
    display: block;
    margin-right: 19px;
}

.blog-details__social-list .title h5 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.blog-details__social-list .social-icon {
    position: relative;
    display: block;
}

.blog-details__social-list .social-icon a {
    position: relative;
    display: inline-block;
    color: #8b9094;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details__social-list .social-icon a:hover {
    color: var(--thm-base);
}

.blog-details__social-list .social-icon a+a {
    margin-left: 11px;
}

.blog-details__social-list .social-icon a i:before {
    position: relative;
    display: inline-block;
    font-size: 17px;
}

.blog-details__text1 {
    position: relative;
    display: block;
    margin-top: 55px;
}

.blog-details__text1-single {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--thm-base);
    padding: 64px 40px 63px;
}

.blog-details__text1-single .icon-box {
    position: relative;
    display: block;
    color: #ffffff;
}

.blog-details__text1-single .icon-box a {
    position: relative;
    display: inline-block;
    color: #ffffff;
}

.blog-details__text1-single .icon-box span::before {
    position: relative;
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
}

.blog-details__text1-single .text-box {
    position: relative;
    display: block;
    margin-left: 30px;
}

.blog-details__text1-single .text-box h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
    color: #ffffff;
}

.blog-details__text1-single .text-box h2 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details__text1-single .text-box h2 a:hover {
    color: #ffffff;
}

.blog-details__text1-single.style2 .text-box {
    margin-left: 0px;
}

.blog-details__text1-single.style2 .text-box h2 {
    text-align: right;
}

.blog-details__text1-single.style2 .icon-box {
    margin-left: 30px;
}

.blog-details__text2 {
    position: relative;
    display: block;
    margin-top: 41px;
}

.blog-details__text2 .title {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.blog-details__text2 .title h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    text-transform: capitalize;
}

.blog-details__text2-single {
    position: relative;
    display: block;
}

.blog-details__text2-single .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    height: 270px;
}

.blog-details__text2-single .img-box img {
    width: 100%;
}

.blog-details__text2-single .content-box {
    position: relative;
    display: block;
    margin-top: 28px;
}

.blog-details__text2-single .content-box .tagline {
    position: relative;
    display: inline-block;
    background: var(--thm-base);
    padding: 5px 20px 4px;
    border-radius: 2px;
    margin-bottom: 23px;
}

.blog-details__text2-single .content-box .tagline p {
    color: #ffffff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.blog-details__text2-single .content-box h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 13px;
}

.blog-details__text2-single .content-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

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

.blog-details__text2-single .content-box .date-box {
    position: relative;
    display: block;
}

.blog-details__text2-single .content-box .date-box span {
    color: #c4c4c4;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}


/***
=====================================================
  Comments
=====================================================
***/

.comment-one {
    position: relative;
    display: block;
    margin-top: 42px;
}

.comment-one__title {
    color: var(--thm-black);
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 23px;
}

.comment-one__single {
    position: relative;
    display: block;
    padding-left: 100px;
    margin-bottom: 53px;
}

.comment-one__single.style2 {
    position: relative;
    display: block;
    margin-left: 80px;
}

.comment-one__image {
    position: absolute;
    top: 12px;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-one__image img {
    width: 100%;
}

.comment-one__content {
    position: relative;
    display: block;
    padding-left: 20px;
}

.comment-one__content::before {
    position: absolute;
    top: 12px;
    left: 0;
    bottom: 0;
    width: 1px;
    background: #e9e9e9;
    content: "";
}

.comment-one__content span {
    color: var(--thm-base);
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.comment-one__content h3 {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 4px;
    font-weight: 500;
}

.comment-one__content p {
    margin: 0;
}

.comment-one__content .btn-box {
    position: relative;
    display: block;
    margin-top: 16px;
}

.comment-one__content .btn-box a {
    position: relative;
    display: inline-block;
    border: 1px solid #d2d2d4;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 25px 3px;
    border-radius: 16px;
}

.comment-one__content .btn-box a+a {
    margin-left: 6px;
}

.comment-one__content .btn-box a:hover {
    color: #ffffff;
    background: var(--thm-base);
    border-color: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.comment-form {
    position: relative;
    display: block;
}

.comment-form__title {
    color: var(--thm-black);
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 40px;
}

.comment-one__form {
    position: relative;
    display: block;
}

.comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    position: relative;
    display: block;
    background: #f1f3f8;
    width: 100%;
    height: 50px;
    border: 0px solid #dcdfe2;
    color: #8b9094;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    outline: none;
}

.comment-form__input-box textarea {
    width: 100%;
    height: 150px;
    background-color: #f1f3f8;
    border: 0px solid #dcdfe2;
    outline: none;
    color: #8b9094;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    border-radius: 0px;
    padding: 12px 20px 20px;
    font-family: var(--thm-font);
    resize: none;
}

.comment-form__btn-box {
    position: relative;
    display: block;
    padding-top: 2px;
}

.comment-form__btn {
    position: relative;
    outline: none;
}


/***
=============================================
Contact Page
=============================================
***/

.contact-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 160px;
}

.contact-page__top {
    position: relative;
    display: block;
    padding-bottom: 78px;
}

.contact-page__top-single {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 35px 0px rgb(0, 0, 0, 0.05);
    border: 1px solid #f2f4fb;
    border-radius: 5px;
    padding: 40px 5px 31px;
    margin-bottom: 30px;
    height: 290px;
}

.contact-page__top-single .icon-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.contact-page__top-single .icon-box span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
}

.contact-page__top-single .content-box {
    position: relative;
    display: block;
}

.contact-page__top-single .content-box h2 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 9px;
}

.contact-page__top-single .content-box p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}

.contact-page__top-single .content-box p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

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

.contact-page__bottom {
    position: relative;
    display: block;
}

.contact-page__form {
    position: relative;
    display: block;
}

.contact-page__form .title-box {
    position: relative;
    display: block;
    margin-bottom: 48px;
}

.contact-page__form .title-box h2 {
    font-size: 36px;
    line-height: 52px;
    font-weight: 600;
}

.contact-page__form .comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.contact-page__form .comment-form__input-box input[type="text"],
.contact-page__form .comment-form__input-box input[type="email"] {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 60px;
    border: 1px solid #e0e1e1;
    color: #606d78;
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 0px;
    letter-spacing: 0.02em;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    outline: none;
}

.contact-page__form .comment-form__input-box textarea {
    width: 100%;
    height: 240px;
    background-color: #ffffff;
    border: 1px solid #e0e1e1;
    outline: none;
    color: #606d78;
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    border-radius: 0px;
    padding: 15px 30px 20px;
    font-family: var(--thm-font);
    letter-spacing: 0.02em;
    resize: none;
}

.contact-page__map {
    position: relative;
    display: block;
    margin-top: 12px;
}

.contact-page__google-map {
    position: relative;
    display: block;
    border: none;
    height: 725px;
    width: 100%;
}


/***
=============================================
Feature Five
=============================================
***/

.feature-five {
    position: relative;
    display: block;
    padding: 0px 0px 90px;
    margin-top: -45px;
    z-index: 2;
}

.feature-five .shape1 {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    z-index: -1;
}

.feature-five .shape2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: left bottom;
    height: 91px;
    animation: slide 50s linear infinite;
    -webkit-animation: slide 50s linear infinite;
    z-index: -1;
}

.feature-five::before {
    position: absolute;
    top: 45px;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-black);
    content: "";
    z-index: -1;
}

.feature-five__bg {
    position: absolute;
    top: 45px;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.03;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: -1;
}

.feature-five__single {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 40px 40px 31px;
    margin-bottom: 30px;
}

.feature-five__single::before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    content: "";
}

.feature-five__single .icon-box {
    position: relative;
    display: block;
    margin-bottom: 11px;
}

.feature-five__single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.feature-five__single:hover .icon-box span::before {
    transform: scale(0.9);
}

.feature-five__single .title-box {
    position: relative;
    display: block;
}

.feature-five__single .title-box h2 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-five__single .title-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-five__single .title-box h2 a:hover {
    color: var(--thm-base);
}


/***
=============================================
About Three
=============================================
***/

.about-three {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 80px;
    z-index: 1;
}

.about-three .shape1 {
    position: absolute;
    right: 0;
    bottom: 170px;
    opacity: 0.3;
    z-index: -1;
}

.about-three .big-title {
    position: absolute;
    top: 175px;
    left: 200px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg) translateX(0%);
    width: max-content;
}

.about-three .big-title h2 {
    color: rgba(var(--thm-base-rgb), 0.07);
    font-size: 100px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--thm-font);
}

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

.about-three__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.about-three__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(0, 0, 0, .5);
    opacity: 0;
    z-index: 1;
    content: "";
}

.about-three__img:hover .inner::before {
    opacity: 1;
}

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

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

.about-three__content {
    position: relative;
    display: block;
    margin-left: 40px;
}

.about-three__content .sec-title-three {
    padding-bottom: 30px;
}

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

.about-three__content .text-box p {
    margin: 0;
}

.about-three__content-list {
    position: relative;
    display: block;
    margin-top: 35px;
}

.about-three__content-list li {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

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

.about-three__content-list li p {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

.about-three__content-list li p span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    top: 2px;
    margin-right: 10px;
}

.about-three__content .client-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 45px;
}

.about-three__content .client-info .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.about-three__content .content-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 35px;
    max-width: 210px;
    width: 100%;
}

.about-three__content .content-box .img-box {
    position: relative;
    display: block;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--thm-base);
}

.about-three__content .content-box .img-box img {
    width: 100%;
}

.about-three__content .content-box .text-box {
    position: relative;
    display: block;
    margin-left: 15px;
}

.about-three__content .content-box .text-box h4 {
    color: var(--thm-base);
    font-size: 17px;
    line-height: 25px;
    font-family: var(--thm-reey-font);
}

.about-three__content .content-box .text-box p {
    font-size: 15px;
    line-height: 24px;
    float: right;
    margin-top: 5px;
}

.about-three__content-bottom {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 40px 0px 34px;
    overflow: hidden;
    margin-left: -340px;
    margin-top: 60px;
    z-index: 5;
}

.about-three__content-bottom ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.about-three__content-bottom ul li {
    position: relative;
    display: block;
    width: 25%;
    float: left;
}

.about-three__content-bottom ul li .number-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    z-index: 1;
}

.about-three__content-bottom ul li .number-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    content: "";
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.about-three__content-bottom ul li:hover .number-box::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.about-three__content-bottom ul li .number-box h2 {
    color: var(--thm-black);
    font-size: 36px;
    line-height: 46px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.about-three__content-bottom ul li:hover .number-box h2 {
    color: #ffffff;
}

.about-three__content-bottom ul li .text-box {
    position: relative;
    display: block;
}

.about-three__content-bottom ul li .text-box h2 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
}

.about-three__content-bottom ul li .text-box p {
    text-transform: capitalize;
    line-height: 25px;
}

.about-three__content-bottom .odometer.odometer-auto-theme,
.about-three__content-bottom .odometer.odometer-theme-default {
    font-family: var(--thm-font);
    line-height: 30px;
}

.about-three__content-bottom .odometer-formatting-mark {
    display: none;
}


/***
=============================================
Services Three
=============================================
***/

.services-three {
    position: relative;
    display: block;
    background: #f9f9f9;
    padding: 120px 0px 90px;
    z-index: 1;
}

.services-three::before {
    position: absolute;
    left: 580px;
    right: 0;
    height: 450px;
    background: #ffffff;
    bottom: 0;
    content: "";
    z-index: 0;
}

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

.services-three .big-title {
    position: absolute;
    right: 200px;
    bottom: 75px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg) translateX(0%);
    width: max-content;
    z-index: 2;
}

.services-three .big-title h2 {
    color: rgba(var(--thm-base-rgb), 0.07);
    font-size: 100px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--thm-font);
}

.services-three__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.services-three__top .sec-title-three {
    padding-bottom: 0px;
}

.services-three__top .counter-box {
    position: relative;
    display: block;
}

.services-three__top .counter-box h2 {
    position: relative;
    color: var(--thm-base);
    font-size: 60px;
    line-height: 0.8em;
    font-weight: 600;
}

.services-three__top .counter-box h2 .plus {
    position: absolute;
    top: -6px;
    font-size: 40px;
}

.services-three__top .counter-box p {
    color: var(--thm-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
}

.services-three__top .odometer.odometer-auto-theme,
.services-three__top .odometer.odometer-theme-default {
    font-family: var(--thm-font);
    line-height: 0.8em;
}

.services-three__left {
    position: relative;
    display: block;
    margin-bottom: 30px;
    z-index: 3;
}

.services-three__left-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.services-three__left-img img {
    width: 100%;
}

.services-three__left-img .content-box {
    position: absolute;
    right: 10px;
    bottom: 0;
    background: #ffffff;
    box-shadow: 0px 10px 30px 0px rgb(0, 0, 0, 0.07);
    padding: 20px 30px 26px;
    border-top-left-radius: 10px;
}

.services-three__left-img .content-box span {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.services-three__left-img .content-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 13px;
}

.services-three__left-img .content-box p {
    margin: 0;
}

.services-three__left-img .content-box .btn-box {
    position: relative;
    display: block;
    margin-top: 11px;
}

.services-three__left-img .content-box .btn-box a {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-three__left-img .content-box .btn-box a:hover {
    color: var(--thm-base);
}

.services-three__left-img .content-box .btn-box a i:before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    font-weight: 700;
    top: 1px;
    margin-right: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-three__left-img .content-box .btn-box a:hover i:before {
    color: var(--thm-base);
}

.services-three__right {
    position: relative;
    display: block;
}

.services-three__right-single {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
    padding: 43px 45px 40px;
    margin-bottom: 30px;
    z-index: 3;
}

.services-three__right-single .inner {
    position: relative;
    display: block;
    padding-left: 80px;
}

.services-three__right-single .inner .icon-box {
    position: absolute;
    top: 7px;
    left: 0;
    z-index: 1;
}

.services-three__right-single .inner .icon-box .bg-box {
    position: absolute;
    top: 0;
    left: -15px;
    width: 40px;
    height: 40px;
    background: #edf3f6;
    content: "";
    z-index: -1;
}

.services-three__right-single .inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-three__right-single:hover .inner .icon-box span::before {
    transform: scale(0.9);
}

.services-three__right-single .inner .content-box {
    position: relative;
    display: block;
}

.services-three__right-single .inner .content-box h2 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.services-three__right-single .inner .content-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-three__right-single .inner .content-box h2 a:hover {
    color: var(--thm-base);
}

.services-three__right-single .inner .content-box p {
    margin: 0;
}


/***
=============================================
Video Three
=============================================
***/

.video-three {
    position: relative;
    display: block;
    padding: 220px 0px 220px;
    z-index: 1;
}

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

.video-three__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000001;
    opacity: 0.4;
    content: "";
    z-index: -2;
}

.video-three__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.video-three__inner .video-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-three__inner .video-box a {
    position: relative;
    display: inline-block;
    z-index: 5;
}

.video-three__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 25px;
    color: #ffffff;
    background-color: var(--thm-base);
    border-radius: 50%;
    margin: 0 auto;
}

.video-three__icon::before {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--thm-base);
    border-radius: 50%;
    content: "";
}

.video-three__inner .video-box .border-animation {
    position: absolute;
    top: -15px;
    left: -15px;
    bottom: -15px;
    right: -15px;
    border: 1px solid var(--thm-base);
    animation: squares 2.9s linear 0s infinite;
    -webkit-animation: squares 2.9s linear 0s infinite;
    -ms-animation: squares 2.9s linear 0s infinite;
    -o-animation: squares 2.9s linear 0s infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
    border-radius: 50%;
}

.video-three__inner .video-box .border-animation.border-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.video-three__inner .video-box .border-animation.border-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}


/***
=============================================
Feature Six
=============================================
***/

.feature-six {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    overflow: hidden;
}

.feature-six__bg {
    position: absolute;
    top: -2px;
    left: 0;
    bottom: 120px;
    right: 0;
    width: calc((100% - 0px) / 2);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.feature-six__inner {
    position: relative;
    display: block;
}

.feature-six__content {
    position: relative;
    display: block;
    max-width: 675px;
    width: 100%;
    float: right;
    margin-right: -130px;
}

.feature-six__content .sec-title-three {
    padding-bottom: 25px;
}

.feature-six__content .text-box1 {
    position: relative;
    display: block;
}

.feature-six__content .text-box1 p {
    margin: 0;
}

.feature-six__content-text2 {
    position: relative;
    display: block;
    margin-top: 51px;
}

.feature-six__content-text2-single {
    position: relative;
    display: block;
}

.feature-six__content-text2-single ul {
    position: relative;
    display: block;
}

.feature-six__content-text2-single ul li {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.feature-six__content-text2-single ul li:last-child {
    margin-bottom: 0;
}

.feature-six__content-text2-single ul li a {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    background: #ffffff;
    box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.05);
    padding: 20px 30px 18px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-six__content-text2-single ul li a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 16px;
    margin-right: 10px;
    top: 1px;
}

.feature-six__content-text2-single ul li a:hover {
    color: var(--thm-base);
}

.feature-six__content-text2-single .text-box {
    position: relative;
    display: block;
}

.feature-six__content-text2-single .text-box h2 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 17px;
}

.feature-six__content-text2-single .text-box p {
    margin: 0;
}

.feature-six__progress {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 32px;
}

.feature-six__progress-single {
    position: relative;
    display: block;
}

.feature-six__progress-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 17px;
}

.feature-six__progress .bar {
    position: relative;
    width: 100%;
    height: 12px;
    background: #faf7f7;
    border-radius: 6px;
}

.feature-six__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 12px;
    background: var(--thm-base);
    border-radius: 6px;
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.feature-six__progress .count-text {
    position: absolute;
    top: -35px;
    right: 0px;
    color: #7a838b;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 1;
}


/***
===============================================================
Team Three
===============================================================
***/

.team-three {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
    z-index: 1;
}

.team-three::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 550px;
    background: #eff0f0;
    content: "";
    z-index: -1;
}

.team-three .sec-title-three h2 span {
    color: var(--thm-base);
}

.team-three__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-three__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    border-bottom-right-radius: 0px;
    background: #000000;
}

.team-three__single-img img {
    width: 100%;
    transition: all 500ms ease;
}

.team-three__single:hover .team-three__single-img img {
    opacity: 0.6;
    transform: scaleX(1.05);
}

.team-three__single-img .social-links {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
}

.team-three__single-img .social-links li {
    position: relative;
    display: inline-block;
}

.team-three__single-img .social-links li.share {
    position: relative;
}

.team-three__single-img .social-links>li>a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    border-bottom-right-radius: 0px;
    z-index: 1;
}

.team-three__single-img .social-links>li>a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    border-radius: 50%;
    border-bottom-right-radius: 0;
    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;
}

.team-three__single-img .social-links>li>a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}

.team-three__single-img .social-links>li>a>span {
    position: relative;
    display: block;
}

.team-three__single-img .social-links>li>a>span::before {
    position: relative;
    display: inline-block;
    top: -1px;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-three__single-img .social-links>li>a:hover span::before {
    color: #ffffff;
}

.team-three__single-img .social-links .share .social-links-inner {
    position: absolute;
    top: -180px;
    left: 0px;
    right: 0;
    line-height: 0;
    transform: scaleY(0);
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    transform-origin: bottom center;
}

.team-three__single-img .social-links .share:hover .social-links-inner {
    transform: scaleY(1.0);
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}

.team-three__single-img .social-links .share .social-links-inner li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.team-three__single-img .social-links .share .social-links-inner li:last-child {
    margin-bottom: 0px;
}

.team-three__single-img .social-links .share .social-links-inner li a {
    position: relative;
    display: block;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    border-bottom-right-radius: 0;
    z-index: 1;
}

.team-three__single-img .social-links .share .social-links-inner li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    border-radius: 50%;
    border-bottom-right-radius: 0;
    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;
}

.team-three__single-img .social-links .share .social-links-inner li a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}

.team-three__single-img .social-links .share .social-links-inner li a i {
    position: relative;
    display: block;
}

.team-three__single-img .social-links .share .social-links-inner li a i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-three__single-img .social-links .share .social-links-inner li a:hover i::before {
    color: #ffffff;
}

.team-three__single .title-box {
    position: relative;
    display: block;
    text-align: right;
    margin-top: 12px;
}

.team-three__single .title-box h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
}

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

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

.team-three__single .title-box p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

.team-three__single .content-box {
    position: relative;
    display: block;
    margin-top: 90px;
    text-align: right;
}

.team-three__single .content-box h2 {
    position: relative;
    color: transparent;
    -webkit-text-stroke: 1px var(--thm-base);
    font-size: 70px;
    line-height: 0.8em;
    font-weight: 600;
    margin-bottom: 17px;
}

.team-three__single .content-box h2 .plus {
    position: relative;
    display: inline-block;
    margin-left: -15px;
}

.team-three__single .content-box .odometer.odometer-auto-theme,
.team-three__single .content-box .odometer.odometer-theme-default {
    font-family: var(--thm-font);
    line-height: 0.8em;
}

.team-three__single .content-box h3 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 600;
    text-transform: capitalize;
}


/***
===============================================================
Portfolio Three
===============================================================
***/

.portfolio-three {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;
}

.portfolio-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 220px;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.04;
    z-index: -1;
}

.portfolio-three::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 220px;
    right: 0;
    background: #f9f9f9;
    content: "";
    z-index: -1;
}

.portfolio-three__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 48px;
}

.portfolio-three__top .sec-title-three {
    padding-bottom: 0;
}

.portfolio-three__top .counter-box {
    position: relative;
    display: block;
}

.portfolio-three__top .counter-box h2 {
    position: relative;
    color: var(--thm-black);
    font-size: 60px;
    line-height: 0.8em;
    font-weight: 600;
}

.portfolio-three__top .counter-box h2 .plus {
    position: absolute;
    top: -6px;
    font-size: 40px;
}

.portfolio-three__top .counter-box p {
    color: var(--thm-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
}

.portfolio-three__top .odometer.odometer-auto-theme,
.portfolio-three__top .odometer.odometer-theme-default {
    font-family: var(--thm-font);
    line-height: 0.8em;
}

.portfolio-three .container-fluid {
    padding-right: var(--bs-gutter-x, .0rem);
    padding-left: var(--bs-gutter-x, .0rem);
}

.portfolio-three__inner {
    position: relative;
    display: block;
}

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

.portfolio-three__single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.portfolio-three__single-img::before {
    position: absolute;
    content: "";
    top: 0%;
    left: 0%;
    right: auto;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    background-color: #000000;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
}

.portfolio-three__single:hover .portfolio-three__single-img:before {
    opacity: 0.7;
}

.portfolio-three__single-img img {
    width: 100%;
}

.portfolio-three__single-img .content-box {
    position: absolute;
    left: 50px;
    bottom: 0px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.portfolio-three__single:hover .portfolio-three__single-img .content-box {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
}

.portfolio-three__single-img .content-box h2 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.portfolio-three__single-img .content-box h2 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-three__single-img .content-box h2 a:hover {
    color: var(--thm-base);
}

.portfolio-three__single-img .btn-box {
    position: absolute;
    top: 0px;
    right: 50px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.portfolio-three__single:hover .portfolio-three__single-img .btn-box {
    top: 50px;
    opacity: 1;
    visibility: visible;
}

.portfolio-three__single-img .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 1;
}

.portfolio-three__single-img .btn-box a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background: var(--thm-base);
    transform: scale(0.5);
    opacity: 0;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    content: "";
    z-index: -1;
}

.portfolio-three__single-img .btn-box a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.portfolio-three__single-img .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-three__single-img .btn-box a:hover span::before {
    color: #ffffff;
}


/***
===============================================================
Prices plan One
===============================================================
***/

.prices-plan-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 90px;
    z-index: 1;
}

.prices-plan-one__single {
    position: relative;
    display: block;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 33px 40px 50px;
    z-index: 1;
}

.prices-plan-one__single-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 212px;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.prices-plan-one__single-bg2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 212px;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition-delay: 0.5s;
    transition: .5s;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(-50px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(-50px);
    transform: perspective(400px) rotateX(0deg) translateY(-50px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: -1;
}

.prices-plan-one__single:hover .prices-plan-one__single-bg2 {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0px);
    transform: perspective(400px) rotateX(0deg) translateY(0px);
}

.prices-plan-one__single .inner {
    position: relative;
    display: block;
}

.prices-plan-one__single .table-header {
    position: relative;
    display: block;
}

.prices-plan-one__single .category-wrapper {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.prices-plan-one__single .category-wrapper h3 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.prices-plan-one__single:hover .category-wrapper h3 {
    color: #ffffff;
}

.prices-plan-one__single .category-wrapper p {
    font-size: 16px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.prices-plan-one__single:hover .category-wrapper p {
    color: #ffffff;
}

.prices-plan-one__single .table-header h2 {
    position: relative;
    display: block;
    padding-left: 12px;
    color: var(--thm-base);
    font-size: 60px;
    line-height: 1em;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.prices-plan-one__single:hover .table-header h2 {
    color: #ffffff;
}

.prices-plan-one__single .table-header h2 .dollar {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--thm-base);
    font-size: 35px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.prices-plan-one__single:hover .table-header h2 .dollar {
    color: #ffffff;
}

.prices-plan-one__single .table-header h2 span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    margin-left: -9px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.prices-plan-one__single:hover .table-header h2 span {
    color: #ffffff;
}

.prices-plan-one__single .table-content {
    position: relative;
    display: block;
    margin-top: 81px;
    margin-bottom: 40px;
}

.prices-plan-one__single .table-content ul {
    position: relative;
    display: block;
}

.prices-plan-one__single .table-content ul li {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.prices-plan-one__single .table-content ul li:last-child {
    margin-bottom: 0;
}

.prices-plan-one__single .table-content ul li .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.prices-plan-one__single .table-content ul li .inner .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ebeaea;
}

.prices-plan-one__single .table-content ul li .inner .icon-box span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 15px;
}

.prices-plan-one__single .table-content ul li .inner .text-box {
    position: relative;
    display: block;
    margin-left: 15px;
}

.prices-plan-one__single .table-content ul li .inner .text-box p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: capitalize;
}

.prices-plan-one__single .table-footer {
    position: relative;
    display: block;
    line-height: 0;
}

.prices-plan-one__single .table-footer .thm-btn {
    background: var(--thm-base);
    line-height: 60px;
    border-radius: 30px;
    color: var(--thm-gray);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    width: 100%;
    text-align: center;
}

.prices-plan-one__single:hover .table-footer .thm-btn {
    color: #ffffff;
}

.prices-plan-one__single .table-footer .thm-btn i::before {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.prices-plan-one__single:hover .table-footer .thm-btn i::before {
    color: #ffffff;
}

.prices-plan-one__single .table-footer .thm-btn::before {
    background: #f9f9f9;
}

.prices-plan-one__single .table-footer .thm-btn::after {
    background: var(--thm-base);
    background: #f9f9f9;
}

.prices-plan-one__single:hover .table-footer .thm-btn::before {
    transform: rotateX(90deg);
}

.prices-plan-one__single:hover .table-footer .thm-btn::after {
    transform: rotateY(90deg);
}


/***
=============================================
Faq Two
=============================================
***/

.faq-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 91px 0px 100px;
}

.faq-two__title {
    position: relative;
    display: block;
    margin-top: -16px;
    margin-bottom: 48px;
}

.faq-two__title h2 {
    font-size: 100px;
    line-height: 1.2em;
    font-weight: 600;
    text-transform: capitalize;
    color: transparent;
    -webkit-text-stroke: 1px var(--thm-base);
}

.faq-two__left {
    position: relative;
    display: block;
    margin-right: 10px;
}

.faq-two__left-text {
    position: relative;
    display: block;
    margin-bottom: 41px;
}

.faq-two__left-text p {
    margin-bottom: 0;
}

.faq-two__left-bottom {
    position: relative;
    display: block;
}

.faq-two__left-bottom-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.faq-two__left-bottom-single .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 28px;
    background: #000000;
}

.faq-two__left-bottom-single .img-box img {
    width: 100%;
    transition: all 500ms ease;
}

.faq-two__left-bottom-single:hover .img-box img {
    opacity: 0.5;
    transform: scaleX(1.05);
}

.faq-two__left-bottom-single p {
    font-size: 16px;
}

.faq-two__left-bottom-single p span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    top: 1px;
    padding-right: 5px;
}

.faq-two__accordion {
    position: relative;
    display: block;
}

.faq-two__accordion .accordion-box .block .acc-content p {
    margin: 0;
    font-size: 15px;
    line-height: 30px;
}

.faq-two__accordion .accordion-box .block .acc-btn {
    padding-top: 22px;
    padding-bottom: 22px;
}

.faq-two__accordion .accordion-box .block .acc-content {
    padding-top: 22px;
    padding-bottom: 38px;
}


/***
=========================================================
Testimonial Three
=========================================================
***/

.testimonial-three {
    position: relative;
    display: block;
    padding: 96px 0px 120px;
    z-index: 1;
}

.testimonial-three .border1 {
    position: absolute;
    top: 0;
    left: 16%;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.testimonial-three .border2 {
    position: absolute;
    top: 0;
    right: 16%;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.testimonial-three .middle-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 480px;
    margin: 0 auto;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
}

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

.testimonial-three__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000000;
    opacity: 0.3;
    content: "";
    z-index: -2;
}

.testimonial-three .container-fluid {
    padding-right: var(--bs-gutter-x, .0rem);
    padding-left: var(--bs-gutter-x, .0rem);
}

.testimonial-three__title {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 362px;
}

.testimonial-three__title h2 {
    font-size: 100px;
    line-height: 1.2em;
    font-weight: 600;
    text-transform: capitalize;
    color: #ffffff;
    -webkit-text-stroke: 1px var(--thm-base);
}

.testimonial-three__content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: #f9f9f9;
}

.testimonial-three__content-inner {
    position: relative;
    display: block;
}

.testimonial-three__single {
    position: relative;
    display: block;
    padding: 52px 60px 51px;
}

.testimonial-three__single-content {
    position: relative;
    display: block;
}

.testimonial-three__single-content .text-box {
    position: relative;
    display: block;
    text-align: center;
}

.testimonial-three__single-content .text-box p {
    color: #7a838b;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    text-transform: capitalize;
}

.testimonial-three__single-content .text-box h2 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
    text-transform: capitalize;
}

.testimonial-three__single-content .text-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonial-three__single-content .text-box h2 a:hover {
    color: var(--thm-base)
}

.testimonial-three__single .overlay-content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding-top: 15px;
    z-index: 5;
    transition-delay: 0.8s;
    transition: .9s;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(100%);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(100%);
    transform: perspective(400px) rotateX(0deg) translateY(100%);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
}

.testimonial-three__single .overlay-content .icon-box {
    position: absolute;
    top: 0;
    left: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.03);
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 5;
}

.testimonial-three__single .overlay-content .icon-box span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 18px;
    z-index: 1;
}

.testimonial-three__single .overlay-content .inner {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 70px 95px 40px;
}

.testimonial-three__single .overlay-content .inner .text-box {
    position: relative;
    display: block;
}

.testimonial-three__single .overlay-content .inner .text-box p {
    font-size: 15px;
}

.testimonial-three__single .overlay-content .inner .client-info {
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid #e2ddda;
    padding-top: 35px;
    margin-top: 25px;
}

.testimonial-three__single .overlay-content .inner .client-info .img-box {
    position: relative;
    display: block;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-three__single .overlay-content .inner .client-info .img-box img {
    width: 100%;
}

.testimonial-three__single .overlay-content .inner .client-info .text {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.testimonial-three__single .overlay-content .inner .client-info .text h4 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
}

.testimonial-three__single .overlay-content .inner .client-info .text p {
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.testimonial-three__carousel.owl-carousel {
    display: block;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0px;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .testimonial-three__single .overlay-content {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0%);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0%);
    transform: perspective(400px) rotateX(0deg) translateY(0%);
}


/***
===============================================================
Footer One Two
===============================================================
***/

.footer-one--two {
    position: relative;
    display: block;
}

.footer-one--two .footer-widget__single-about .text-box p {
    font-size: 15px;
}

.footer-one--two .footer-widget__single-list li a {
    font-size: 15px;
}

.footer-one--two .footer-widget__single-contact .text {
    font-size: 15px;
}

.footer-one--two .footer-widget__single-contact .number {
    font-size: 15px;
}

.footer-one--two .footer-widget__single-contact .email {
    font-size: 15px;
}

.footer-one--two .footer-widget__single .title h2 {
    font-size: 18px;
}

.footer-one--two .footer-widget__single-newsletter .title h3 {
    font-size: 18px;
}

.footer-one--two .footer-widget__single-newsletter-form .input-box input[type="email"] {
    font-size: 16px;
}

.footer-one--two .checked-box label {
    font-size: 15px;
}

.footer-one--two .footer-widget__single .title {
    margin-top: -7px;
}

.footer-one--two .footer-one__bottom .bottom-inner .copyright p {
    font-size: 16px;
}

.footer-one--two .footer-one__bottom-menu li a {
    font-size: 16px;
}

.text-box li {
    display: flex;
    align-items: center;
    align-items: flex-start;
}

.text-box li:last-child {
    margin-bottom: 0;
}

.footer-icons {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff
}

.footer-des {
    width: 92%;
    padding-left: 15px;
}

.footer-des p a {
    color: rgba(255, 255, 255, .6);
    transition: 0.5s;
}

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

.langselector {
    margin-left: 50px;
}

.sh-title {
    padding-bottom: 20px;
}

.sh-title h5 {
    font-weight: bold;
    text-transform: capitalize;
    color: #E40F15;
}

.sh-title h2 {
    font-weight: bold;
    text-transform: capitalize;
}

.counter-rw ul {
    display: flex;
    justify-content: space-between;
}

.counter-rw ul li p {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
}

.counter-rw ul li h2 {
    font-size: 42px;
    font-weight: bold;
    line-height: 55px;
}

.counter-rw {
    margin-bottom: 120px;
    margin-bottom: 0;
}

.counter-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    text-align: center;
    border-radius: 100px;
    background: #D9D9D9;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mrb-120 {
    margin-bottom: 170px;
}

.blog-details-pg .page-header__inner h2 {
    font-size: 42px;
    line-height: 50px;
}

.privacy-policy-rs ul {
    padding-left: 15px;
}

.privacy-policy-rs ul ul {
    padding-top: 20px;
}

.privacy-policy-rs ul ul li {
    list-style: circle;
}

.privacy-policy-rs ul li {
    list-style: disc;
    padding-bottom: 20px;
}

.privacy-policy-rs ul li h5 {
    padding-bottom: 15px;
    font-weight: 600;
}

.anuda-package-tabs {
    border: 1px solid #dee2e6;
}

.anuda-package-tabs .nav-tabs {
    border: none;
}

.anuda-package-tabs ul li {
    width: 100%;
    border-bottom: 1px solid #dee2e6;
}

.anuda-package-tabs ul li:last-child {
    border-bottom: 0;
}

.anuda-package-tabs ul li button {
    width: 100%;
    text-align: left;
    border-radius: 0;
    font-weight: 500;
    padding: 15px 12px;
}

.anuda-package-tabs .nav-tabs .nav-item.show .nav-link,
.anuda-package-tabs .nav-tabs .nav-link.active,
.anuda-package-tabs .nav-tabs .nav-link:hover {
    border: none;
    color: #ffffff;
    background: #E40F15;
    border-radius: 0;
}

.anuda-package-tabs ul li button i {
    vertical-align: middle;
    padding-left: 8px;
}

.table-title {
    padding-bottom: 30px;
    text-transform: capitalize;
    font-weight: 600;
}

.package-table table {
    border: 1px solid #dee2e6;
}

.package-table table th {
    padding: 10px;
    background: #E40F15;
    color: #ffffff;
    text-transform: capitalize;
    border: 1px solid #dee2e6;
}

.package-table table td {
    text-transform: capitalize;
    border: 1px solid #dee2e6;
    padding: 10px;
}

.package-table table td:nth-child(4) {
    width: 30%;
}

.mainbtn {
    background: #E40F15;
    color: #ffffff;
    padding: 5px 8px;
    transition: all 0.5s;
}

.mainbtn:hover {
    color: #ffffff;
    background: #000000;
}

.complete-work {
    width: 100%;
    overflow: hidden;
    overflow-x: scroll;
}

.complete-work table {
    width: 1600px;
}

.complete-work table td:last-child {
    width: 12%;
    text-align: center;
}

.package-table table {
    text-align: center;
}

.package-table table td:last-child {
    width: 30%;
}

.mrt-30 {
    margin-top: 30px;
}

.cs-modal .modal-content {
    width: 100%;
    max-width: 900px;
    box-shadow: none;
    border-radius: 0;
    border: 5px dashed rgba(0, 0, 0, 0.70);
}

.cs-modal .modal-header .btn-close {
    top: -45px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.70);
    border-radius: 0%;
    color: #ffffff;
    padding: 0;
    text-align: center;
    right: -5px;
    line-height: 38px;
    opacity: 1;
    position: absolute;
}

.cs-modal .modal-dialog {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cs-modal .modal-header {
    justify-content: center;
}

.cs-modal ul li {
    padding-bottom: 15px;
}

.cs-modal ul li:last-child {
    padding-bottom: 0px;
}

.cs-modal input[type="text"] {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 60px;
    border: 1px solid #e0e1e1;
    color: #606d78;
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 0px;
    letter-spacing: 0.02em;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    outline: none;
}

.cs-modal .thm-btn {
    width: 100%;
}

.project-main {
    overflow: hidden;
    height: 410px;
    position: relative;
}

.project-main:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent);
    height: 230px;
}

.project-main-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.project-main-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.project-logo {
    background: #ffffff;
    width: 300px;
    padding: 10px;
    margin-bottom: 20px;
}

.project-logo {
    display: flex;
}

.project-logo img {
    width: 50%;
    border: 1px solid #efefef;
    padding: 10px;
}

.project-logo img:last-child {
    border-left: 0;
}

.rera-no {
    background: #0e770a;
    color: #ffffff;
    padding: 3px 5px;
    max-width: 150px;
    text-align: center;
}

.rera-no p {
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
}

.project-photo-gallery {
    text-align: right;
}

.project-photo-gallery a {
    background: #E40F15;
    transition: all 0.5s;
    padding: 12px 20px;
    color: #ffffff;
    display: inline-table;
}

.new-project-header {
    background: #ffffff;
    box-shadow: 0 8px 8px 0 rgba(48, 48, 48, .1);
    position: sticky;
    z-index: 11;
}

.new-project-header ul {
    list-style: none;
    overflow: hidden;
    display: flex;
}

.new-project-header ul li {
    margin-right: 30px;
}

.new-project-header ul li a {
    text-transform: capitalize;
    padding: 10px 20px;
    font-weight: 500;
    display: inline-table;
    transition: all 0.5s;
}

.new-project-header ul li a:hover {
    color: #ffffff;
    background: #E40F15;
}

.project-overview h3 {
    padding-bottom: 20px;
    text-transform: capitalize;
}

.project-overview i {
    color: #E40F15;
}

.construction-date {
    margin-top: 30px;
}

.construction-date span {
    margin-right: 50px;
}

.construction-date span:last-child {
    margin-right: 0px;
}

.construction-date i {
    color: #E40F15;
    padding-right: 6px;
}

.construction-date b {
    padding-right: 10px;
}

.cost-pdf {
    display: flex;
    justify-content: space-between;
}

.cost-pdf .thm-btn {
    line-height: 50px;
    padding: 2px 30px;
}

.mrt-50 {
    margin-top: 50px;
}

.abt-pro ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.abt-pro ul li {
    width: 25%;
    margin-bottom: 20px;
}

.abt-pro ul li p {
    color: #a5a5a5;
    font-weight: 500;
    font-size: 14px;
}

.pr-photos ul li {
    overflow: hidden;
    margin-bottom: 0;
    height: 289px;
}

.pr-photos ul li img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.project-overview iframe {
    width: 100%;
}

.abt-owner i {
    color: #E40F15;
}

.pricing-table {
    display: flex;
}

.pricing-table-inner {
    flex-basis: 33%;
    display: flex;
    background: #ffffff;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    position: relative;
    padding-bottom: 20px;
    margin-right: 15px;
    border-radius: 15px;
}

.pricing-table-inner:last-child {
    margin-right: 0;
}

.pricing-table-header {
    background: #e9e9e9;
    color: #000000;
    text-align: center;
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.pricing-table-header i {
    font-size: 24px;
}

.pricing-table-header h6 {
    color: #000000;
    text-transform: capitalize;
    padding-bottom: 10px;
    line-height: 26px;
}

.pricing-table-header h3 {
    color: #000000;
}

.pricing-table-inner ul {
    list-style: none;
    padding: 15px;
    height: 525px;
    overflow: hidden;
    overflow-y: auto;
}

.pricing-table-inner:nth-child(3) ul {
    overflow-y: scroll;
}

.pricing-table-inner:nth-child(3) ul::-webkit-scrollbar {
    width: 5px;
}

.pricing-table-inner:nth-child(3) ul::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.pricing-table-inner:nth-child(3) ul::-webkit-scrollbar-thumb {
    background: #E40F15;
}

.pricing-table-inner ul::-webkit-scrollbar {
    width: 5px;
}

.pricing-table-inner ul::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.pricing-table-inner ul::-webkit-scrollbar-thumb {
    background: #E40F15;
}

.pricing-table-inner ul li {
    border-bottom: 1px solid #efefef;
    transition: all 0.5s;
    margin: 5px 0;
}

.list-contents {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.list-contents.active {
    background: #efefef;
}

.list-contents:hover {
    background: #efefef;
}

.list-contents.active~.datas {
    background: #efefef;
}

.pricing-table-inner ul li input[type="checkbox"] {
    vertical-align: middle;
    margin-right: 6px;
    accent-color: #E40F15;
    width: 15px;
    height: 15px;
}

.pricing-table-inner ul li label {
    line-height: 26px;
    text-transform: capitalize;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    padding: 8px 0;
}

.pricing-table-inner ul li label span {
    width: 42px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    margin-left: 20px;
    background: #E40F15;
    color: #ffffff;
    padding: 2px 4px;
    border-radius: 4px;
    line-height: 14px;
}

.pricing-table-inner ul li:last-child {
    border-bottom: 0;
}

.pricing-footer {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    text-align: center;
}

.pricing-footer .thm-btn {
    line-height: 50px;
}

.pricing-notes {
    margin-bottom: 40px;
}

.datas p,
.datasan p {
    font-size: 14px;
    line-height: 22px;
}

.pricing-table-inner:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    transition: all 0.5s;
    border-radius: 15px;
}

.pricing-table-inner:hover .pricing-table-header {
    background: #E40F15;
    color: #ffffff;
    box-shadow: none;
    transition: all 0.5s;
}

.pricing-table-inner:hover h6,
.pricing-table-inner:hover h3 {
    color: #ffffff;
}

.pricing-table-inner .datas {
    display: none;
}

.datas-inner {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #c4c7c8;
}

.datas-inner:last-child {
    border-bottom: none;
}

.datas-inner p {
    display: flex;
    align-items: center;
}

.text-box li:hover .footer-icons {
    background: #E40F15;
    transition: all 0.5s;
}

.datas label {
    justify-content: flex-start !important;
}

.pricing-table-inner .datas {
    padding-left: 10px;
    padding-bottom: 13px;
}


/*------------Sign In-----------*/

.auth-page-wrapper {
    background-color: #f7f7f7;
}

.thm-bg {
    background-color: #E40F15;
    position: relative;
    z-index: 2;
}

.thm-bg::after {
    background-image: url(../images/login-bg.jpg);
    background-size: cover;
    background-position: center center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    opacity: 0.2;
    z-index: -1;
}

.card {
    border: none;
    border-radius: 0;
}

.auth-effect {
    position: relative;
    z-index: 2;
}

.auth-effect-main img {
    border-bottom: 2px solid #ffffff;
}

.fw-semibold {
    font-weight: bold;
}

.text-secondary {
    color: #000000 !important;
}

.form-check-label {
    cursor: pointer;
    margin-bottom: 0;
}

#hideotp,
#hideotps {
    display: none;
}

.auth-card .consby {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-img {
    height: 780px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* .banner::before{background: rgba(0, 0, 0, .5);position: absolute;left: 0;width: 100%;top: 0;height: 100%;content: '';} */

.banner .container {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
}

.banner .container .row {
    align-items: center;
}

.banner-content {
    color: #ffffff;
    text-align: center;
    background: #ffffff91;
    border-radius: 50px;
}

.banner_create {
    padding-bottom: 20px;
    padding-top: 125px;
    border-radius: 100px;
}

.banner-content h1 {
    color: #e40f15;
    text-transform: capitalize;
    font-weight: bold;
    padding-bottom: 5px;
    font-size: 40px;
    padding-top: 25px;
}

.banner-content p {
    font-size: 18px;
    color: #000;
}

.banner-content ul li {
    display: flex;
    align-items: center;
    padding-top: 25px;
    width: 30%;
    margin-right: 30px;
    margin-bottom: 30px;
}

.banner-content ul li:last-child {
    margin-right: 0;
}

.banner-content ul li h3 {
    color: #ffffff;
    font-weight: 600;
    line-height: 26px;
    font-size: 24px;
}

.banner-content ul li p {
    font-size: 14px;
    margin: 0;
    line-height: 18px;
    text-transform: capitalize;
}

.bx-icon {
    width: 30%;
}

.bx-des {
    width: 70%;
    padding-left: 10px;
}

.banner-form {
    background: #ffffff;
    padding: 0;
}

.banner-form h5 {
    text-transform: capitalize;
    text-align: center;
}

.banner-form input[type="text"],
.banner-form input[type="number"],
.banner-form input[type="email"],
.banner-form input[type="password"],
.banner-form select {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ced4da;
    padding-left: 0;
    width: 100%;
    background: #ffffff;
    padding: 5px 10px;
}

.banner-form .locations-city {
    padding-right: 100px;
    padding-left: 20px;
}

.banner-form .selected-city {
    position: absolute;
    right: 0;
    width: 30%;
    border: none;
    bottom: 2px;
}


/* Chrome, Safari, Edge, Opera */

.banner-form input[type="number"]::-webkit-outer-spin-button,
.banner-form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.b24-form-recaptcha {
    margin: 0 31px 20px;
    justify-content: start;
}

.sel-city {
    position: relative;
}

.sel-city img {
    width: 16px;
    position: absolute;
    top: 10px;
    height: 10.5px;
}


/* Firefox */

.banner-form input[type="number"] {
    -moz-appearance: textfield;
}

.form-control:focus {
    box-shadow: none;
}

.mrt-100 {
    margin-top: 100px;
}

.footer-widget__single-about .text-box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-widget__single-about .text-box ul li {
    width: 30%;
}

.footer-widget__single-about .text-box ul li:nth-child(3n) {
    display: none;
}

.footer-widget__single-about .text-box ul li:last-child {
    flex-direction: column;
}

.footer-widget__single-about .text-box ul li:last-child .footer-des {
    display: flex;
    width: 100%;
    padding-left: 0;
}

.footer-widget__single-about .text-box ul li:last-child .footer-des .footer-icons {
    margin-right: 10px;
}

.heading h2 {
    text-transform: capitalize;
}

.service-img {
    overflow: hidden;
    position: relative;
    height: 250px;
}

.service-img img {
    height: 100%;
    object-fit: cover;
}

.service-img p {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    bottom: 0;
    line-height: 22px;
    color: #ffffff;
    border-top: 5px solid rgba(var(--thm-base-rgb), 0.83);
}

.wh-bx {
    background: rgb(228 15 21 / 18%);
    padding: 20px 20px;
    text-align: center;
    margin-bottom: 30px;
    min-height: 257px;
}

.wh-bx h5 {
    text-transform: capitalize;
    font-size: 18px;
}

.wh-bx p {
    font-size: 14px;
    line-height: 24px;
}

.wh-img img {
    width: 90px;
}

.mrt-70 {
    margin-top: 70px;
}

.howit-works {
    background: rgba(236, 236, 236, 0.4);
    padding: 70px 0;
}

.howit-works .nav-pills {
    position: relative;
    z-index: 2;
}

.howit-works .nav-pills::after {
    border: 3px dashed #000000;
    content: '';
    position: absolute;
    left: 0;
    width: 985px;
    margin: 0 auto;
    right: 70px;
    top: 28px;
    z-index: -1;
}

.howit-works .nav-pills li {
    width: 16.33%;
    text-align: center;
    margin: 0 auto;
}

.howit-works .nav-pills li button {
    background: none !important;
    position: relative;
}

.howit-works .nav-pills li button span {
    margin: 0 auto;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    color: #ffffff;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.howit-works .nav-pills li button.active span {
    background: var(--thm-base);
}

.howit-works .nav-pills li button.active p {
    color: var(--thm-base);
}

.howit-works .nav-pills li p {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    padding-top: 10px;
}

.howit-works-det {
    background: #ffffff;
    margin-top: 30px;
    padding: 15px;
    max-width: 800px;
    margin: 30px auto 0;
    box-shadow: 1px 1px 8px #c6c2c2;
    border: 1px solid rgba(var(--thm-base-rgb), .80);
}

.howit-works-det h5 {
    text-transform: capitalize;
    padding-bottom: 10px;
}

.howit-works-img {
    text-align: center;
    height: 185px;
    overflow: hidden;
}

.projects-img {
    display: flex;
    object-fit: cover;
    height: 100%;
    position: relative;
    height: 185px;
}

.projects-img img {
    width: 50% !important;
}

.projectname-add {
    background: #ffffff;
    padding: 15px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 1px 1px 8px #c6c2c2;
    border: 1px solid rgba(var(--thm-base-rgb), .80);
    border-top: 0;
}

.projectname-add:hover {
    transition: 0.5s;
    color: #ffffff;
    background: var(--thm-base);
}

.thdesign,
.afcon {
    background: rgba(0, 0, 0, .5);
    color: #ffffff;
    font-size: 13px;
    text-transform: capitalize;
    position: absolute;
    left: 15px;
    top: 15px;
    padding: 2px 5px;
    line-height: 16px;
    border-radius: 4px;
}

.afcon {
    left: inherit;
    right: 15px;
}

#services_projects .owl-nav {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
}

#services_projects .owl-nav .owl-next {
    position: absolute;
    right: 0;
}

#services_projects .owl-nav .owl-prev {
    left: 0;
    position: absolute;
}

#services_projects .owl-nav button span {
    background: var(--thm-base);
    color: #ffffff;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

#services_projects .owl-nav button:hover {
    background: none !important;
}

#services_projects .owl-nav button span:hover {
    color: #ffffff;
    background: #000000;
}

.header-social-links-style2 a:hover {
    color: var(--thm-base);
}

#services_projects .owl-dots {
    margin-top: 20px;
}

#services_projects .owl-dots .active span {
    background: var(--thm-base) !important;
}

.mrb-100 {
    margin-bottom: 100px;
}

.faqs-rw .accordion-body p {
    padding-bottom: 20px;
}

.faqs-rw .accordion-body p:last-child {
    padding-bottom: 0;
}

.faqs-rw .accordion-body ul {
    padding-left: 15px;
}

.faqs-rw .accordion-body ul li {
    list-style: disc;
    padding-bottom: 10px;
}

.faqs-rw .accordion-body ul li:last-child {
    padding-bottom: 0;
}

.faqs-rw .accordion-button:not(.collapsed) {
    background: var(--thm-base);
    color: #ffffff;
}

.faqs-rw .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.fixed {
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
}

.whatsbtn {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 2;
}

.clmb {
    background: var(--thm-base);
    color: #ffffff;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 70px;
    display: none;
}

.clmb:hover {
    color: #ffffff;
}

.wrapper-1 {
    display: flex;
    flex-direction: column;
}

.wrapper-2 {
    padding: 30px;
    text-align: center;
}

.wrapper-2 p {
    margin: 0;
    font-size: 1em;
    letter-spacing: 0.5px;
}

.wrapper-2 p a {
    color: #E40F15;
}

.wrapper-2 p a:hover {
    color: #E40F15;
}

.wrapper-2 h1 {
    padding-bottom: 20px;
    font-size: 40px;
    color: #0e770a;
}

.wrapper-2 i {
    font-size: 24px;
    color: #0e770a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    border: 2px solid;
    justify-content: center;
    align-items: center;
}

.go-home {
    color: #fff;
    background: var(--thm-base);
    border: none;
    padding: 10px 50px;
    margin: 30px 0;
    border-radius: 30px;
    text-transform: capitalize;
    box-shadow: 0 10px 16px 1px rgba(228, 15, 21, 0.2);
}

@media (min-width:360px) {
    .go-home {
        margin-bottom: 20px;
    }
}

@media (min-width:600px) {
    .content {
        max-width: 1000px;
        margin: 0 auto;
    }
    .wrapper-1 {
        height: initial;
        max-width: 620px;
        margin: 0 auto;
        margin-top: 100px;
        margin-bottom: 100px;
        box-shadow: 4px 8px 40px 8px rgba(228, 15, 21, 0.2);
    }
}

#our_customers .owl-nav {
    display: none;
}

#our_customers .owl-dots {
    margin-top: 20px;
}

#our_customers .owl-dots .active span {
    background: var(--thm-base) !important;
}


/*** Sanjay ***/

#name-error {
    font-size: 12px;
    color: #f71616;
}

#mobile-error {
    font-size: 12px;
    color: #f71616;
}

.fa,
.far,
.fasb {
    font-family: "Font Awesome 5 Free";
}

.fa,
.fasb {
    font-weight: 0;
}

.fa,
.fab,
.fad,
.fal,
.far,
.fasb {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}


/*** Sanjay ***/


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


/***

===============================================================
deepak sharma
===============================================================
***/

.features-two__single-icon {
    width: 80px !important;
    height: 80px !important;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
    background: #fff !important;
}

.features-two__single-inner {
    padding-top: 75px;
}

.features-two__single-icon img {
    width: 60%!important;
}

.features-two__single:hover .features-two__single-icon img {
    filter: brightness(0) invert(1);
}

.features-two__single-inner {
    min-height: 420px
}

.request_call_back .offcanvas.offcanvas-end {
    top: 95px;
}

.box_top_d {
    height: 190px;
    width: 50px;
    margin-top: -140px;
    position: absolute;
    right: 0%;
    top: 50%;
    z-index: 999;
}

.b24-form-header-title {
    display: none;
}

.b24-form-header {
    border-bottom: none;
}

.request_call_back .offcanvas.offcanvas-end {
    width: 500px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.request_call_back .b24-form-padding-side {
    padding-left: 10px !important;
    padding-right: 10px !important;
    border: none !important;
    padding-top: 0px !important;
}

.request_call_back {
    height: 190px;
    width: 50px;
    margin-top: -140px;
    position: fixed;
    right: 0%;
    top: 50%;
    z-index: 999;
}

.request_call_back .button {
    position: absolute;
    top: 55px;
    width: 50px;
    height: 190px;
    line-height: 50px;
    font-size: 18px;
    padding: 0px;
    border-radius: 10px 0px 0px 10px;
    background: #e40f15;
    color: #fff;
    border-color: #fff;
    border-right-color: rgb(255, 255, 255);
    transition: all 0.5s ease;
    border-right: none;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.request_call_back .b24-form-control {
    border: none !important;
    background: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.request_call_back .b24-form-sign {
    display: none !important;
}

.request_call_back .b24-form-wrapper.b24-form-border-bottom {
    border-bottom: 3px solid var(--b24-primary-color) !important;
    border-radius: 0px !important;
}

.request_call_back .b24-form-control-label {
    font-size: 16px;
    font-family: var(--thm-font)!important;
}

.icon_box_top_man i {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #e60f16;
    color: #fff;
    font-size: 25px;
    display: block;
    text-align: center;
    line-height: 50px;
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.icon_box_top_man {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon_box_top_man a {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

@keyframes trin {
    from {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    20%,
    32%,
    44%,
    56%,
    68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%,
    35%,
    47%,
    59%,
    71% {
        transform: rotate3d(0, 0, 1, 15deg);
    }
    26%,
    38%,
    50%,
    62%,
    74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    29%,
    41%,
    53%,
    65%,
    77% {
        transform: rotate3d(0, 0, 1, -15deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes prin {
    from {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    20%,
    32%,
    44%,
    56%,
    68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%,
    35%,
    47%,
    59%,
    71% {
        transform: rotate3d(0, 0, 1, 15deg);
    }
    26%,
    38%,
    50%,
    62%,
    74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    29%,
    41%,
    53%,
    65%,
    77% {
        transform: rotate3d(0, 0, 1, -15deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}


/* -----------------------------dddddddddddddddddddddddddddddddddddd------------- */

.counter-item {
    background: #fff;
    display: flex;
    gap: 12px;
    position: relative;
    padding: 15px 10px 15px 15px;
    border-radius: 100px;
    border: 2px solid #fff;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
}

.counter-item::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    bottom: -2px;
    width: 40%;
    border: 3px solid red;
    border-radius: 100px 0 0 100px;
    border-right: none;
    transition: all .5s ease-in-out;
    ;
}

.counter-item .icon {
    width: 80px;
    height: 80px;
    line-height: 70px;
    font-size: 35px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    background: red;
}

.counter-item .icon img {
    width: 48px;
}

.counter-item .info {
    display: flex;
    gap: 2px;
}

.counter-item .counter {
    display: block;
    line-height: 1;
    color: #000;
    font-size: 50px;
    font-weight: 900;
}

.counter-item .unit {
    font-size: 25px;
    color: red;
    font-weight: 500;
    line-height: 1;
    margin: 3px 0 0 3px;
}

.counter-item .title {
    color: #000;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.banner-img video {
    object-fit: inherit;
    aspect-ratio: 3;
    height: 700px;
}

.features-two2 {
    padding: 0px;
    position: relative;
    display: block;
    z-index: 1;
    margin-top: -80px;
}


/* .bg_use{
  padding: 0px 8px;
  line-height: 2;
  background-color: #e40f15;
} */

.bg_use {
    font-size: 160px;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

.bg_use:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    -webkit-text-fill-color: transparent;
}

.stock-text {
    position: absolute;
    left: 0px;
    top: 10px;
    right: 0;
}

.stock-text h2:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px rgb(228 15 21);
    -webkit-text-fill-color: transparent;
}

.stock-text h2 {
    font-size: 130px;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    color: #fff;
    margin: auto;
    line-height: 1;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    right: 0;
}

.stock-text h2:nth-child(2) {
    color: rgb(228 15 21);
    -webkit-animation: animate 4s ease-in-out infinite;
    animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
    0%,
    100% {
        clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 69%, 100% 52%, 100% 100%, 0% 100%)
    }
    50% {
        clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%)
    }
}

.commercial_set::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 518px;
    background: rgba(236, 236, 236, 0.4);
    content: "";
}

.commercial_set .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0.2;
}

.features-two__single-inner {
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s ease-in-out;
}

.features-two__single-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(228 15 21 / 6%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
}

.features-two__single-inner:hover::before {
    transform: scaleX(1);
}

.features-two__single-inner:hover {
    border-color: #e40f15;
}

.features-two__single-inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: #e40f15;
    transition: width 0.4s ease-in-out;
    border-radius: 8px;
}

.features-two__single-inner:hover::after {
    width: 100%;
}

.shape2 {
    position: absolute;
    top: 15px;
    right: 0;
    z-index: 1;
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(-20px);
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(-20px);
    }
}

.about-com-pic-2 {
    height: 100%;
}

.about-com-pic-2 img {
    height: 550px;
    width: 100%;
}

.howit-works {
    position: relative;
}

.img_set {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: 100%;
    z-index: -1;
}

.our-projects {
    padding: 80px 20px;
}

.project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    margin-bottom: 28px;
}

.project-card:hover {
    transform: translateY(-8px);
}

.image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

.img-after {
    opacity: 0;
}

.project-card:hover .img-after {
    opacity: 1;
}

.project-card:hover .img-before {
    opacity: 0;
}

.project-details {
    padding: 20px;
    text-align: center;
}

.project-details h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #2c3e50;
}

.project-details p {
    font-size: 0.95rem;
    color: #888;
    margin-top: 8px;
}

.testimonial-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #e40f15;
    padding-bottom: 40px;
    padding-top: 90px;
}

.ts-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/custom/06.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .1;
    z-index: -1;
}

.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.site-title-tagline {
    display: inline-block;
    color: #000000;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 18px;
    background: #ffffff;
    border-radius: 50px;
    padding: 5px 12px 2px 10px;
    margin-bottom: 15px;
}

.site-title-tagline i {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #fff;
    color: #e40f15;
    text-align: center;
    border-radius: 50px;
    margin-right: 5px;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 45px;
    color: #fff;
    margin-bottom: 0;
}

.site-heading p {
    margin-top: 15px;
}

.testimonial-item {
    position: relative;
    background: #fff;
    padding: 20px 30px;
    border-radius: 30px 0px 30px 30px;
    margin-bottom: 20px;
}

.testimonial-content {
    display: flex;
    justify-content: start;
    align-items: center;
}

.testimonial-author-img {
    width: 90px;
    height: 90px;
    border-radius: 50px;
    position: absolute;
    right: 0px;
    top: -2px;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.testimonial-author-info {
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
}

.testimonial-author-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-left: 4px solid #e40f15;
}

.testimonial-author-info h4 {
    font-size: 20px;
    color: #000000;
    font-weight: 600;
}

.testimonial-author-info p {
    color: #e40f15;
    font-weight: 600;
}

.testimonial-rate {
    color: #FB9902;
}

.testimonial-quote-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .15;
}

.testimonial-quote p {
    position: relative;
    color: #000;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    z-index: 1;
}

.testimonial-author-img img {
    border-radius: 50% 0 50% 50%;
    border: 8px solid #0a2155;
}

.owl-nav {
    display: none;
}

.constrot-strip {
    position: relative;
    height: 15px;
    width: 100%;
    background-color: #ffffff;
    background-image: url(../images/custom/footer-strip.png);
    background-repeat: repeat-x;
    background-position: center top;
}

.faqs-rw {
    position: relative;
    display: block;
    padding: 120px 0 35px;
    z-index: 1;
}

.faqs-rw .shape3 {
    position: absolute;
    top: -36px;
    right: 250px;
    z-index: -1;
}

.faqs-rw .shape4 {
    position: absolute;
    top: 70px;
    right: -30px;
}

@-webkit-keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }
    50% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(-30px);
    }
}

@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }
    50% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.red-img {
    filter: brightness(0) saturate(100%) hue-rotate(0deg) invert(11%) sepia(97%) saturate(7483%) hue-rotate(358deg) brightness(103%) contrast(116%);
}

.testimonial-author-img img {
    height: 100%!important;
}

.pricing-table-header {
    position: relative;
}

.pricing-table-header h5 {
    background: #000;
    padding: 8px 10px;
    color: #fff;
    border-radius: 28px;
    font-size: 22px;
    font-weight: 600;
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    max-width: 175px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.pricing-table-inner:hover h5 {
    color: #000;
    background: #fff;
}

.margin_set {
    margin-right: 15px;
}

.text-box .footer-icons:hover {
    background: #E40F15;
    transition: all 0.5s;
}

.footer-des2 a {
    color: rgba(255, 255, 255, .6);
}

.elementor-widget-wrap {
    display: flex;
}

.elementor-widget-wrap {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}

.elementor-widget-wrap>.elementor-element {
    width: 100%;
}

.elementor-widget-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
}

.elementor-element .elementor-widget-container {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

dtdr-user-list-item.type1 {
    background-color: #f9fcff;
    padding: 40px 40px 30px;
    border: 1px solid #c7d5e1;
    border-radius: 2.5em;
}

.dtdr-user-list-item.type1 .dtdr-user-image {
    width: 100%;
    max-width: fit-content;
    margin: auto;
    border-radius: 50%;
    border: 1px solid #c7d5e1;
    overflow: hidden;
    transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
    background-color: transparent;
}

.elementor a {
    box-shadow: none;
    text-decoration: none;
}

.dtdr-user-list-item.type1 .dtdr-user-image img {
    width: 200px;
    height: 190px;
    border-radius: 50%;
    transform: scale(.9);
    transition: all 0.3s linear 0s;
    object-fit: cover;
}

.dtdr-user-list-item.type1 .dtdr-user-item-meta-data {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column-reverse;
}

.dtdr-user-list-item.type1 .dtdr-user-item-meta-data .dtdr-user-sociallinks-list {
    justify-content: center;
}

.dtdr-user-list-item .dtdr-user-sociallinks-list {
    display: flex;
    flex-wrap: wrap;
}

.dtdr-user-list-item.type1 .dtdr-user-sociallinks-list li:not(:last-child) {
    margin-right: 15px;
}

.dtdr-user-list-item.type1 ul.dtdr-user-sociallinks-list li a {
    color: #44525e;
}

.dtdr-user-list-item.type1 .dtdr-user-sociallinks-list li a {
    width: 30px;
    height: 30px;
    border: 1px solid #44525e;
    border-radius: 50%;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    background: none;
}

.dtdr-user-list-item.type1 .dtdr-user-item-meta-data .dtdr-user-item-meta-details {
    margin-bottom: 20px;
}

.dtdr-user-list-item .dtdr-user-item-meta-data h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
    margin-top: 0;
}

.dtdr-user-list-item.type1 .dtdr-user-item-meta-data h4 a {
    color: #000000;
}

.dtdr-user-list-item.type1 {
    background-color: #f9fcff;
    padding: 40px 40px 30px;
    border: 1px solid #c7d5e1;
    border-radius: 2.5em;
    transition: all 0.3s linear 0s;
}

.dtdr-user-list-item {
    margin-bottom: 30px;
}

.dtdr-user-list-item.type1:hover {
    box-shadow: 0 0 20px 0 #0d263c2e;
}

.dtdr-user-list-item.type1:hover .dtdr-user-image {
    border-color: #e40f15;
    background-color: #e40f15;
}

.dtdr-user-list-item.type1 ul.dtdr-user-sociallinks-list li a:hover {
    color: #ffffff;
    background: #e40f15;
    border-color: #e40f15;
}

.panorama-container {
    width: 100%;
    overflow-x: hidden!important;
    overflow-y: hidden;
    white-space: nowrap;
    border: 2px solid #ccc;
}

.panorama-container img {
    height: auto;
    width: 2000px;
    /* Aapke image ka actual width yahan daalein */
    display: inline-block;
}


/* Optional: Scrollbar styling */

.panorama-container::-webkit-scrollbar {
    height: 8px;
}

.panorama-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.panorama-container::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.main-container {
    display: flex;
    height: 100vh;
    align-items: center;
    background: #111;
}

.main-container .image-container {
    height: 100%;
    position: fixed;
    width: 100%;
}

.main-container h1 {
    flex: 1;
    text-align: center;
    color: #fff;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 10px;
    z-index: 100;
    text-shadow: 2px 16px 16px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.pan {
    width: 100vw;
    height: 100%;
}

.tab-btn {
    display: inline-block;
    padding: 6px 16px;
    background-color: #000000;
    color: #fff;
    border-radius: 4px;
    border: none;
    margin: 5px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 25px rgb(30 30 30 / 50%);
    outline: 0;
    transition: transform ease-in 0.1s, background-color ease-in 0.1s, box-shadow ease-in 0.25s;
}

.tab-btn::before {
    content: none;
    /* By default, no bubble background */
}

.tab-btn.active::before {
    content: '';
    position: absolute;
    left: -2em;
    right: -2em;
    top: -2em;
    bottom: -2em;
    pointer-events: none;
    transition: ease-in-out .5s;
    background-repeat: no-repeat;
    background-image: radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), /*  */
    radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%, 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
    background-position: 18% 40%, 20% 31%, 30% 30%, 40% 30%, 50% 30%, 57% 30%, 65% 30%, 80% 32%, 15% 60%, 83% 60%, 18% 70%, 25% 70%, 41% 70%, 50% 70%, 64% 70%, 80% 71%;
    animation: bubbles ease-in-out .75s forwards;
}

.tab-btn.active {
    transform: scale(0.95);
    background-color: #e40f15;
    box-shadow: 0 2px 25px rgb(228 15 21);
}

.tab-btn:not(.active)::before {
    animation: none;
    background-size: 0;
}

@keyframes bubbles {
    0% {
        background-position: 18% 40%, 20% 31%, 30% 30%, 40% 30%, 50% 30%, 57% 30%, 65% 30%, 80% 32%, 15% 60%, 83% 60%, 18% 70%, 25% 70%, 41% 70%, 50% 70%, 64% 70%, 80% 71%;
    }
    50% {
        background-position: 10% 44%, 0% 20%, 15% 5%, 30% 0%, 42% 0%, 62% -2%, 75% 0%, 95% -2%, 0% 80%, 95% 55%, 7% 100%, 24% 100%, 41% 100%, 55% 95%, 68% 96%, 95% 100%;
    }
    100% {
        background-position: 5% 44%, -5% 20%, 7% 5%, 23% 0%, 37% 0, 58% -2%, 80% 0%, 100% -2%, -5% 80%, 100% 55%, 2% 100%, 23% 100%, 42% 100%, 60% 95%, 70% 96%, 100% 100%;
        background-size: 0% 0%;
    }
}

.panolens-canvas {
    height: 780px!important;
}

.main_part {
    padding: 20px 0;
    position: relative;
}

#timeline {
    margin-bottom: 310px;
    padding: 0;
    list-style: none;
    display: flex;
    height: 15px;
    border-top: 6px dashed #000;
    position: relative;
}

#timeline::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    height: 6px;
    width: var(--progress-width, 0%);
    background-color: #e60f16;
    z-index: 2;
    transition: width 0.4s ease-in-out;
}

#timeline li {
    position: relative;
    flex: 1;
    transition: all 0.4s ease-in-out;
}

.circle2 {
    width: 43px;
    height: 43px;
    background: #000;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #eee9dc;
    border-radius: 50%;
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    transition: background 0.3s ease;
    cursor: pointer;
}

.circle2:hover {
    background: #e60f16;
}


/* .radio:checked ~ .circle2 {
  background: #e60f16;
} */

.radio:checked~.circle2::before {
    content: '';
    position: absolute;
    left: -2em;
    right: -2em;
    top: -2em;
    bottom: -2em;
    pointer-events: none;
    transition: ease-in-out .5s;
    background-repeat: no-repeat;
    background-image: radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), /*  */
    radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%, 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
    background-position: 18% 40%, 20% 31%, 30% 30%, 40% 30%, 50% 30%, 57% 30%, 65% 30%, 80% 32%, 15% 60%, 83% 60%, 18% 70%, 25% 70%, 41% 70%, 50% 70%, 64% 70%, 80% 71%;
    animation: bubbles ease-in-out .75s forwards;
}

.radio:checked~.circle2 {
    background-color: #e40f15;
    box-shadow: 0 2px 25px rgb(228 15 21);
    border: none;
}

.radio:checked:not(.circle2)::before {
    animation: none;
    background-size: 0;
}

@keyframes bubbles {
    0% {
        background-position: 18% 40%, 20% 31%, 30% 30%, 40% 30%, 50% 30%, 57% 30%, 65% 30%, 80% 32%, 15% 60%, 83% 60%, 18% 70%, 25% 70%, 41% 70%, 50% 70%, 64% 70%, 80% 71%;
    }
    50% {
        background-position: 10% 44%, 0% 20%, 15% 5%, 30% 0%, 42% 0%, 62% -2%, 75% 0%, 95% -2%, 0% 80%, 95% 55%, 7% 100%, 24% 100%, 41% 100%, 55% 95%, 68% 96%, 95% 100%;
    }
    100% {
        background-position: 5% 44%, -5% 20%, 7% 5%, 23% 0%, 37% 0, 58% -2%, 80% 0%, 100% -2%, -5% 80%, 100% 55%, 2% 100%, 23% 100%, 42% 100%, 60% 95%, 70% 96%, 100% 100%;
        background-size: 0% 0%;
    }
}

.date {
    width: 100%;
    text-align: center;
    position: absolute;
    top: -60px;
    display: block;
}

.content-secound {
    width: 600px;
    margin: 0 auto;
    border: 2px solid #eee9dc;
    border-radius: 8px;
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 15px;
    background: #fff;
    display: none;
    transform: perspective(1000px) rotateY(20deg);
    animation: switching_back 0.8s;
}

.content-secound.active {
    display: block;
    z-index: 1;
    transform: perspective(1000px) rotateY(15deg) translate(40px, 25px);
    animation: switching 1s ease;
}

.content-secound h3,
.content-secound p {
    margin: 0 20px 10px;
    text-align: justify;
}

.content-secound h3 {
    margin-top: 20px;
    font-size: 24px;
}

@keyframes switching {
    0% {
        transform: perspective(1000px) rotateY(20deg);
    }
    40% {
        transform: perspective(1000px) rotateY(15deg) translate(100px, 35px);
    }
    100% {
        transform: perspective(1000px) rotateY(15deg) translate(40px, 25px);
    }
}

@keyframes switching_back {
    0% {
        transform: perspective(1000px) rotateY(15deg) translate(40px, 25px);
        z-index: 200;
    }
    40% {
        transform: perspective(1000px) rotateY(15deg) translate(0px, 0px) scale(1.08);
    }
    100% {
        transform: perspective(1000px) rotateY(20deg);
        z-index: 100;
    }
}

.radio {
    display: none;
}

.content-secound img {
    height: 100%;
    border-radius: 30px;
    margin: auto;
    text-align: center;
}

.content-secound .col-lg-8 {
    border-left: 2px solid #eee9dc;
}

.content-secound .col-lg-4 {
    display: flex;
    align-items: center;
}

.pan .panolens-canvas span {
    display: none!important;
}


/* ------------------------------ */

.slider-container {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slide {
    min-width: 220px;
    margin: 0 10px;
    background: white;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 6px;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.slider-btn {
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 1;
    transition: 0.2s;
}

.slider-btn:hover {
    background: #ddd;
}

.slider-btn.left {
    margin-right: 10px;
}

.slider-btn.right {
    margin-left: 10px;
}