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


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

:root {
    --thm-font: 'Poppins', sans-serif;
    --thm-font-2: 'Open Sans', sans-serif;
    --thm-gray: #000;
    --thm-gray-rgb: 135, 140, 143;
    --thm-base: #568EBD;
    --thm-base-rgb: 86, 142, 189;
    --thm-black: #568EBD;
    --thm-black-rgb: 86, 142, 189;
    --thm-gray-bg: #f1f3f2;
    --thm-primary: #364A5B;
    --thm-primary-rgb: 255, 94, 21;
}

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

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

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

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

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;
    float: left;
    margin-right: 4px;
    line-height: 0;
}

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

.rating-box ul li span {
    position: relative;
    display: inline-block;
    color: #FFC93D;
    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: -8px;
    padding-bottom: 57px;
}

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

.sec-title .sub-title .text {
    position: relative;
    display: block;
}

.sec-title .sub-title .text span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.2em;
}

.sec-title .sub-title .text span::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: var(--thm-base);
    content: "";
}

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


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

.thm-btn {
    position: relative;
    display: inline-block;
    border-radius: 35px;
    padding: 0px 50px 0px;
    line-height: 60px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    background: var(--thm-base);
    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: 125px;
    left: -50px;
    right: -50px;
    height: 170px;
    content: "";
    background: var(--thm-primary);
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    border-radius: 50%;
    transition-duration: 800ms;
    transition: 1s all ease;
    z-index: 1;
}

.thm-btn:hover:before {
    top: 0%;
    left: -70px;
    right: -70px;
}

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

.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 {}

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

.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: 42px;
    padding-bottom: 42px;
}

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

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

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

.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: "\e907";
    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-primary);
}

.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: var(--thm-base);
    font-size: 25px;
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--brote-black);
}

@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: 48px;
    padding-bottom: 49px;
}

.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: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
}

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

.main-header-one__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__left {
    position: relative;
    display: flex;
    align-items: center;
}

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

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

.logo-box-one a img {
    width: 100%;
}

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

.header-search-box::before {
    position: absolute;
    top: -15px;
    left: 0;
    bottom: -15px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    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-primary);
}

.header-one-social-links {
    position: relative;
    display: block;
    line-height: 0;
    margin-left: 62px;
}

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

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

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

.header-one-social-links ul li a {
    position: relative;
    display: block;
}

.header-one-social-links ul li a span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-one-social-links ul li a:hover span::before {
    color: var(--thm-primary);
}

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

.main-header-one__right {
    position: relative;
    display: block;
    padding-left: 40px;
}

.main-header-one__right::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    content: "";
}

.main-header-one__right .contact-box {
    position: relative;
    display: flex;
    align-items: center;
}

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

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

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

.main-header-one__right .contact-box .text a {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one__right .contact-box .text a:hover {
    color: var(--thm-primary);
}

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

.stricky-header.stricky-header--one .main-header-one__right {
    display: none;
}


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

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

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

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

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

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

.main-header-two__left .logo-box-two {
    position: relative;
    display: block;
    padding-right: 40px;
}

.main-header-two__left .logo-box-two::before {
    position: absolute;
    top: -30px;
    left: -9999999px;
    bottom: -30px;
    right: 0;
    background: var(--thm-primary);
    content: "";
}

.main-header-two__left .logo-box-two a {
    position: relative;
    display: inline-block;
}

.main-header-two__left .header-search-box {
    margin-left: 60px;
    padding-left: 0px;
    padding-right: 40px;
}

.main-header-two__left .header-search-box::before {
    position: absolute;
    top: -15px;
    left: auto;
    right: 0;
    bottom: -15px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    content: "";
}

.main-header-two__left .header-one-social-links {
    margin-left: 40px;
}

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

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

.main-header-two__right::before {
    position: absolute;
    top: -28px;
    left: 0;
    right: -999999px;
    bottom: -28px;
    background: var(--thm-primary);
    content: "";
}

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

.main-header-two__right .contact-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f2f0ec;
    border-radius: 50%;
}

.main-header-two__right .contact-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 700;
}

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

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

.main-header-two__right .contact-box .text a {
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: -0.05em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-two__right .contact-box .text a:hover {
    color: var(--thm-black);
}

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

.stricky-header.stricky-header--two .main-header-two__right {
    display: none;
}

.stricky-header.stricky-header--two .main-header-two__left .logo-box-two::before {
    display: none;
}


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

.main-header-three {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
}

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

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

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

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

.logo-box-three {
    position: relative;
    display: block;
    padding-left: 60px;
    padding-right: 60px;
    z-index: 1;
}

.logo-box-three::before {
    position: absolute;
    top: -30px;
    left: 0;
    bottom: -30px;
    right: 0;
    background: var(--thm-primary);
    content: "";
    z-index: -1;
}

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

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

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

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

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

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

.main-header-three .main-menu .main-menu__list>li>a::after {
    position: absolute;
    top: 30px;
    left: 5px;
    bottom: -39px;
    right: 0;
    margin: 0 auto;
    width: 2px;
    height: 0;
    background: var(--thm-primary);
    transition: all 0.4s ease-in-out 0.3s;
    content: "";
}

.main-header-three .main-menu .main-menu__list>li:hover>a::after,
.main-header-three .main-menu .main-menu__list>li.current>a:after {
    transition: all 0.4s ease-in-out 0.3s;
    height: 38px;
}

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

.main-header-three__right .header-search-box {
    position: relative;
    display: block;
    padding-right: 30px;
    margin-left: 0px;
    padding-left: 0px;
}

.main-header-three__right .header-search-box a {
    color: var(--thm-black);
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

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

.main-header-three__right .header-search-box::before {
    position: absolute;
    top: -15px;
    left: auto;
    right: 0;
    bottom: -15px;
    width: 1px;
    background: #cbcbcb;
    content: "";
}

.main-header-three__right .contact-box {
    position: relative;
    display: block;
    padding-left: 55px;
    margin-left: 40px;
    margin-right: 35px;
}

.main-header-three__right .contact-box .icon {
    position: absolute;
    top: 5px;
    left: 0;
    line-height: 0;
}

.main-header-three__right .contact-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 35px;
}

.main-header-three__right .contact-box .text {
    position: relative;
    display: block;
}

.main-header-three__right .contact-box .text p {
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
}

.main-header-three__right .contact-box .text a {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: -0.011em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-three__right .contact-box .text a:hover {
    color: var(--thm-primary);
}

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

.main-header-three__right .btn-box a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    background: var(--thm-primary);
    line-height: 65px;
    padding-left: 40px;
    padding-right: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

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

.stricky-header.stricky-header--three .main-header-three__right .btn-box {
    display: none;
}

.stricky-header.stricky-header--three .logo-box-three::before {
    display: none;
}

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

.stricky-header.stricky-header--three .main-header-three__right .contact-box {
    margin-right: 0px;
    padding-left: 50px;
    margin-left: 25px;
}

.stricky-header.stricky-header--three .main-header-three__right .contact-box .icon span::before {
    color: #fff;
}

.stricky-header.stricky-header--three .main-header-three__right .contact-box .text p {
    color: #ffffff;
}

.stricky-header.stricky-header--three .main-header-three__right .contact-box .text a {
    color: #ffffff;
}

.stricky-header.stricky-header--three .main-header-three__right .contact-box .text a:hover {
    color: var(--thm-primary);
}

.stricky-header.stricky-header--three .main-header-three__right .header-search-box a {
    color: #ffffff;
}

.stricky-header.stricky-header--three .main-header-three__right .header-search-box a:hover {
    color: var(--thm-primary);
}

.stricky-header.stricky-header--three .logo-box-three {
    padding-left: 0px;
    padding-right: 25px;
}


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

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

.main-slider-one .shape1 {
    position: absolute;
    top: 290px;
    left: 40px;
    opacity: 0.2;
    z-index: 2;
}

.main-slider-one .shape2 {
    position: absolute;
    left: 700px;
    bottom: 10px;
    opacity: 0.2;
    z-index: 2;
}

.main-slider-one .shape3 {
    position: absolute;
    top: 200px;
    right: 50px;
    opacity: 0.2;
    z-index: 2;
}

.main-slider-one .shape4 {
    position: absolute;
    top: 130px;
    left: 260px;
    opacity: 0.3;
    z-index: 2;
}

.main-slider-one .shape5 {
    position: absolute;
    top: 200px;
    left: 850px;
    opacity: 0.3;
    z-index: 2;
    webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}

.main-slider-one .shape6 {
    position: absolute;
    left: 200px;
    bottom: 70px;
    opacity: 0.3;
    z-index: 2;
    webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}

.main-slider-one__img {
    position: absolute;
    top: -35px;
    right: -75px;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    overflow: hidden;
    border-top-right-radius: 0;
    opacity: 0;
    transform: translateX(40%);
    -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: 2;
}

.main-slider-one__img img {
    width: auto;
}

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

.main-slider-one .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--thm-base-rgb), 0.88);
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-blend-mode: color-burn;
    background-size: cover;
    z-index: 1;
}

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

.main-slider-one__content .tagline {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    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-one .swiper-slide-active .main-slider-one__content .tagline {
    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: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.main-slider-one__content .tagline::before {
    position: absolute;
    top: 15px;
    right: -60px;
    width: 40px;
    height: 3px;
    background: #ffffff;
    content: "";
}

.main-slider-one__content .tagline p {
    color: #ffffff;
    font-size: 24px;
    line-height: 29px;
    font-weight: 500;
    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: 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-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: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.main-slider-one__content .title h2 {
    color: #ffffff;
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 700;
}

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

.main-slider-one__content .text p {
    color: #ffffff;
}

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

.main-slider-one__content .btn-box .thm-btn {
    background: var(--thm-primary);
}

.main-slider__nav {
    position: absolute;
    top: 43%;
    left: 80px;
    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.3);
    border-radius: 50%;
    color: #ffffff;
    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;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 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.main-slider-two .swiper-slide-active .image-layer {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.main-slider-two .image-layer::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(241, 243, 242);
    background: linear-gradient(90deg, rgba(241, 243, 242, 1) 6%, rgba(241, 243, 242, 1) 33%, rgba(241, 243, 242, 0.4542191876750701) 50%, rgba(241, 243, 242, 0.006039915966386533) 53%, rgba(241, 243, 242, 0) 74%);
    content: "";
}

.main-slider-two .shape1 {
    position: absolute;
    top: -130px;
    left: -30px;
    opacity: 0.07;
    z-index: 1;
}

.main-slider-two .shape2 {
    position: absolute;
    top: -70px;
    left: 0px;
    opacity: 0.4;
    z-index: 1;
}

.main-slider-two .shape3 {
    position: absolute;
    left: -270px;
    bottom: 0;
    opacity: 0.4;
    z-index: 1;
}

.main-slider-two .shape4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin-left: -110px;
    opacity: 0.4;
    z-index: 1;
}

.main-slider-two .shape5 {
    position: absolute;
    bottom: 0;
    opacity: 0.4;
    z-index: 1;
    right: -110px;
}

.main-slider-two .shape6 {
    position: absolute;
    top: 70px;
    left: 290px;
    z-index: 1;
}

.main-slider-two .shape7 {
    position: absolute;
    left: 240px;
    bottom: 400px;
    z-index: 1;
}

.main-slider-two .shape8 {
    position: absolute;
    left: 600px;
    bottom: 130px;
    z-index: 1;
}

.main-slider-two .shape9 {
    position: absolute;
    top: 50px;
    right: 80px;
    z-index: 1;
}

.main-slider-two .container {
    padding: 225px 30px 230px;
}

.main-slider-two__content {
    position: relative;
    display: block;
    z-index: 2;
}

.main-slider-two__content .tagline {
    position: relative;
    display: inline-block;
    margin-bottom: 29px;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider-two .swiper-slide-active .main-slider-two__content .tagline {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider-two__content .tagline::before {
    position: absolute;
    left: 0;
    bottom: -3px;
    right: 0;
    height: 1px;
    background: var(--thm-black);
    content: "";
    width: 0%;
    -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 .main-slider-two__content .tagline::before {
    width: 100%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider-two__content .tagline p {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
}

.main-slider-two__content .title {
    position: relative;
    display: block;
    margin-bottom: 10px;
    opacity: 0;
    -webkit-transition: all 1300ms ease;
    transition: all 1300ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider-two .swiper-slide-active .main-slider-two__content .title {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.main-slider-two__content .title h2 {
    color: var(--thm-black);
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 700;
}

.main-slider-two__content .text {
    position: relative;
    display: block;
    margin-bottom: 49px;
    opacity: 0;
    -webkit-transition: all 1300ms ease;
    transition: all 1300ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider-two .swiper-slide-active .main-slider-two__content .text {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 2300ms;
    transition-delay: 2300ms;
}

.main-slider-two__content .text p {
    color: var(--thm-black);
}

.main-slider-two__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    opacity: 0;
    -webkit-transition: all 1300ms ease;
    transition: all 1300ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider-two .swiper-slide-active .main-slider-two__content .btn-box {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 2800ms;
    transition-delay: 2800ms;
}

.main-slider-two__content .btn-box .thm-btn {
    background: var(--thm-primary);
}

.main-slider-two__content .btn-box .thm-btn::before {
    background: var(--thm-base);
}

.main-slider-two__nav {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    max-width: 1500px;
    width: 100%;
    padding: 0 15px;
    height: 0;
    line-height: 0;
    z-index: 100;
}

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

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

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

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

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

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

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


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

.main-slider-three {
    position: relative;
    display: block;
    background: var(--thm-base);
    z-index: 1;
}

.main-slider-three__img {
    position: absolute;
    top: -90px;
    right: 0;
    z-index: -1;
    opacity: 0;
    transform: translateX(40%);
    -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-three .swiper-slide-active .main-slider-three__img {
    opacity: 1;
    transform: translateX(0);
    -webkit-transition-delay: 2500ms;
    -moz-transition-delay: 2500ms;
    -ms-transition-delay: 2500ms;
    -o-transition-delay: 2500ms;
    transition-delay: 2500ms;
}

.main-slider-three .shape1 {
    position: absolute;
    top: 0px;
    left: 0;
    opacity: 0.05;
    z-index: -1;
}

.main-slider-three .shape2 {
    position: absolute;
    left: -200px;
    bottom: 30px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    z-index: -1;
    opacity: 0;
    transform: translateX(-100%);
}

.main-slider-three .swiper-slide-active .shape2 {
    opacity: 1;
    transform: translate(0);
    transition: all 1700ms ease;
    transition-delay: 2300ms;
}

.main-slider-three .shape3 {
    position: absolute;
    top: 170px;
    left: 240px;
    opacity: 0.7;
    z-index: -1;
}

.main-slider-three .shape4 {
    position: absolute;
    left: 200px;
    bottom: 75px;
    opacity: 0.55;
    z-index: -1;
}

.main-slider-three .shape5 {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    z-index: -1;
}

.main-slider-three .shape6 {
    position: absolute;
    top: 180px;
    left: 40px;
    opacity: 0.5;
    z-index: -1;
    webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}

.main-slider-three .shape7 {
    position: absolute;
    left: 70px;
    bottom: 130px;
    opacity: 0.5;
    z-index: -1;
}

.main-slider-three .shape8 {
    position: absolute;
    top: 170px;
    left: 620px;
    opacity: 0.5;
    z-index: -1;
}

.main-slider-three .shape9 {
    position: absolute;
    bottom: 45px;
    right: 680px;
    opacity: 0.5;
    z-index: -1;
}

.main-slider-three .shape10 {
    position: absolute;
    top: 155px;
    right: 655px;
    opacity: 0.5;
    z-index: -1;
}

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

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

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

.main-slider-three__content .tagline::before {
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 1px;
    background: #ffffff;
    content: "";
    width: 0%;
    -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-three .swiper-slide-active .main-slider-three__content .tagline::before {
    width: 100%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider-three__content .tagline p {
    color: #ffffff;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    z-index: 5;
}

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

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

.main-slider-three__content .title h2 {
    color: #ffffff;
    font-size: 70px;
    line-height: 1.2em;
    font-weight: 700;
    z-index: 5;
}

.main-slider-three__content .btn-box {
    position: relative;
    display: block;
    margin-top: 43px;
    line-height: 0;
    opacity: 0;
    -webkit-transition: all 1300ms ease;
    transition: all 1300ms ease;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    z-index: 5;
}

.main-slider-three__content .btn-box .thm-btn {
    background: var(--thm-primary);
}

.main-slider-three .swiper-slide-active .main-slider-three__content .btn-box {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 2300ms;
    transition-delay: 2300ms;
}


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

.page-header {
    position: relative;
    display: block;
    padding: 288px 0px 209px;
    background: var(--thm-base);
    z-index: 1;
}

.page-header .shape1 {
    position: absolute;
    top: 230px;
    left: 40px;
    opacity: 0.2;
    z-index: -1;
}

.page-header .shape2 {
    position: absolute;
    top: 40px;
    left: 560px;
    z-index: -1;
    opacity: 0.2;
}

.page-header .shape3 {
    position: absolute;
    top: 220px;
    left: 330px;
    z-index: -1;
    opacity: 0.2;
}

.page-header .shape4 {
    position: absolute;
    left: 300px;
    bottom: 115px;
    z-index: -1;
    opacity: 0.2;
    webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}

.page-header .shape5 {
    position: absolute;
    left: 670px;
    bottom: 30px;
    z-index: -1;
    opacity: 0.2;
}

.page-header .shape6 {
    position: absolute;
    left: 890px;
    bottom: 200px;
    z-index: -1;
    opacity: 0.2;
}

.page-header__img {
    position: absolute;
    top: -65px;
    right: -85px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    overflow: hidden;
    border-top-right-radius: 0;
}

.page-header__img::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(86, 142, 189);
    background: linear-gradient(0deg, rgba(86, 142, 189, 0) 61%, rgba(86, 142, 189, 0) 66%, rgba(86, 142, 189, 0.8309698879551821) 100%);
    content: "";
    z-index: 8;
}

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

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

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


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

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

.about-one__shape1 {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.05;
    z-index: -1;
}

.about-one__img {
    position: relative;
    display: block;
    padding-left: 100px;
}

.about-one__img1 {
    position: relative;
    display: block;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}

.about-one__img1 img {
    width: 100%;
}

.about-one__img2 {
    position: absolute;
    left: 0;
    bottom: -100px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}

.about-one__img2 img {
    width: 100%;
}

.about-one__experience-box {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    background: var(--thm-primary);
    padding: 42px 50px 37px;
    border-radius: 10px;
    border-bottom-left-radius: 0px;
    z-index: 2;
}

.about-one__experience-box::before {
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border: 2px dashed rgba(255, 255, 255, 1.0);
    border-radius: 10px;
    border-bottom-left-radius: 0px;
    content: "";
}

.about-one__experience-box .count-box {
    position: relative;
    display: block;
}

.about-one__experience-box .count-box h2 {
    color: #ffffff;
    font-size: 60px;
    line-height: 0.8em;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.about-one__experience-box .count-box h2 .odometer.odometer-auto-theme,
.about-one__experience-box .count-box h2 .odometer.odometer-theme-default {
    font-family: var(--thm-font);
    line-height: 0.8em;
    letter-spacing: -0.02em;
}

.about-one__experience-box .title-box {
    position: relative;
    display: block;
    margin-left: 23px;
    margin-top: -3px;
}

.about-one__experience-box .title-box h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.about-one__content {
    position: relative;
    display: block;
    margin-right: -185px;
    margin-left: 70px;
}

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

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

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

.about-one__content-list {
    position: relative;
    display: block;
    margin-top: 22px;
}

.about-one__content-list li {
    position: relative;
    display: block;
    padding-left: 27px;
    margin-bottom: 3px;
}

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

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

.about-one__content-list li .icon-box span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    top: 6px;
    font-weight: 700;
}

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

.about-one__content-list li .text-box p {
    margin: 0px;
}

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

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

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

.about-one__content-text2-list li {
    position: relative;
    display: block;
    padding-left: 50px;
    margin-bottom: 23px;
}

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

.about-one__content-text2-list li .icon-box {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--thm-base);
}

.about-one__content-text2-list li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
}

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

.about-one__content-text2-list li .text-box p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

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

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

.about-one__client-info-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.about-one__client-info-box .img-box {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.about-one__client-info-box .img-box img {
    width: 100%;
}

.about-one__client-info-box .title-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.about-one__client-info-box .title-box h2 {
    color: var(--thm-base);
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    text-transform: capitalize;
}

.about-one__client-info-box .title-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
}


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

.cta-one {
    position: relative;
    display: block;
    padding: 88px 0px 88px;
    margin-bottom: -65px;
    z-index: 5;
}

.cta-one .auto-container {
    max-width: 1400px;
    width: 100%;
}

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

.cta-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-base-rgb), 0.88);
    content: "";
    z-index: -1;
}

.cta-one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.cta-one__inner .text-box h2 {
    color: #ffffff;
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
}

.cta-one__inner .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-right: 80px;
}

.cta-one__inner .btn-box .thm-btn {
    background: #ffffff;
}

.cta-one__inner .btn-box .thm-btn .txt {
    color: #000000;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.cta-one__inner .btn-box .thm-btn:hover .txt {
    color: #ffffff;
}


/***
=============================================
Features One
=============================================
***/

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

.features-one .shape1 {
    position: absolute;
    top: 90px;
    left: 280px;
    z-index: -1;
}

.features-one .shape2 {
    position: absolute;
    left: 50px;
    bottom: 500px;
    z-index: -1;
}

.features-one__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;
}

.features-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(241, 243, 242);
    background: linear-gradient(90deg, rgba(241, 243, 242, 1) 9%, rgba(241, 243, 242, 1) 37%, rgba(241, 243, 242, 1) 63%, rgba(241, 243, 242, 1) 79%, rgba(241, 243, 242, 0.05085784313725494) 93%);
    z-index: -2;
    content: "";
}

.features-one__single {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
    padding: 60px 30px 52px;
    border-bottom-right-radius: 60px;
    margin-bottom: 30px;
}

.features-one__single.mb60 {
    margin-top: 60px;
}

.features-one__single.style2 {
    background: var(--thm-base);
}

.features-one__single.style2 .icon-box .round-box {
    background: rgba(255, 255, 255, 0.12);
}

.features-one__single.style2 .icon-box span::before {
    color: #ffffff;
}

.features-one__single.style2 .text-box h3 a {
    color: #ffffff;
}

.features-one__single.style2 .text-box p {
    color: #ffffff;
}

.features-one__single .icon-box {
    position: relative;
    display: inline-block;
    margin-bottom: 22px;
    padding-left: 25px;
    z-index: 1;
}

.features-one__single .icon-box .round-box {
    position: absolute;
    top: 0;
    left: 0px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f3f3f3;
    z-index: -1;
}

.features-one__single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 65px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.features-one__single:hover .icon-box span::before {
    transform: scale(0.9);
}

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

.features-one__single .text-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.features-one__single .text-box h3 a {
    color: var(--thm-black);
}

.features-one__single .text-box p {
    margin: 0px;
}


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

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

.features-two__inner {
    position: relative;
    display: block;
}

.features-two__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.features-two__img img {
    width: 100%;
}

.features-two__list {
    position: relative;
    display: block;
}

.features-two__list li {
    position: relative;
    display: block;
    padding-top: 50px;
    max-width: 430px;
    width: 100%;
    float: left;
    margin-bottom: 31px;
}

.features-two__list li.style2 {
    float: right;
}

.features-two__list li .inner {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
    padding: 67px 40px 36px;
    border-bottom-right-radius: 60px;
}

.features-two__list li .count-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 40px;
    width: 90px;
    height: 90px;
    background: var(--thm-base);
    z-index: 3;
}

.features-two__list li .count-box span {
    color: #ffffff;
    font-size: 35px;
    line-height: 45px;
    font-weight: 600;
}

.features-two__list li .inner h2 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 17px;
}

.features-two__list li .inner h2 a {
    color: var(--thm-black);
}

.features-two__list li .inner p {
    font-size: 14px;
    line-height: 28px;
}

.features-two__list li.style3 .inner {
    background: var(--thm-base);
}

.features-two__list li.style3 .inner h2 a {
    color: #ffffff;
}

.features-two__list li.style3 .inner p {
    color: #ffffff;
}

.features-two__list li.style3 .count-box {
    background: #ffffff;
    box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
}

.features-two__list li.style3 .count-box span {
    color: var(--thm-base);
}


/***
=============================================
Counter Two
=============================================
***/

.counter-one {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 120px 0px 90px;
    z-index: 1;
}

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

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

.counter-one__box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    margin-left: -15px;
    margin-right: -15px;
}

.counter-one__single {
    position: relative;
    display: block;
    float: left;
    width: 20%;
    padding: 0px 15px 0px;
    z-index: 3;
}

.counter-one__single .inner {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.2);
    padding: 45px 15px 32px;
    margin-bottom: 30px;
    border-bottom-right-radius: 60px;
    z-index: 1;
}

.counter-one__single .inner::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: scaleX(0.8) rotateX(0deg);
    transition: all 0.4s linear;
    background: var(--thm-primary);
    border-bottom-right-radius: 60px;
    opacity: 0;
    content: "";
    z-index: -1;
}

.counter-one__single:hover .inner::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.counter-one__single .icon-box {
    position: relative;
    display: inline-block;
    margin-bottom: 23px;
}

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

.counter-one__single:hover .icon-box span:before {
    transform: scale(0.9);
}

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

.counter-one__single .text-box p {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}

.counter-one__single .text-box h2 {
    color: #ffffff;
    font-size: 38px;
    line-height: 48px;
    font-weight: 500;
}

.counter-one .odometer.odometer-auto-theme,
.counter-one .odometer.odometer-theme-default {
    font-family: var(--thm-font);
    line-height: 48px;
}

.counter-one .odometer-formatting-mark {
    display: none;
}


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

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

.portfolio-one .auto-container {
    max-width: 1880px;
    width: 100%;
}

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

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

.portfolio-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    border-bottom-left-radius: 0px;
    z-index: 1;
    border-top-right-radius: 100px;
}

.portfolio-one__single-img .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 1;
    transition: all 500ms ease;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 60%);
}

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

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

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

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

.portfolio-one__single-img .inner .content-box {
    position: absolute;
    left: 0;
    bottom: 0px;
    background: var(--thm-base);
    padding: 33px 30px 30px;
    border-top-right-radius: 40px;
    width: 310px;
    z-index: 2;
}

.portfolio-one__single-img .inner .content-box p {
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 3px;
}

.portfolio-one__single-img .inner .content-box h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    text-transform: capitalize;
}

.portfolio-one__single-img .inner .content-box h2 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-one__single-img .inner .content-box h2 a:hover {
    color: var(--thm-primary);
}

.portfolio-one__single-img .inner .btn-box {
    position: absolute;
    bottom: 0px;
    left: 310px;
    z-index: 2;
}

.portfolio-one__single-img .inner .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.portfolio-one__single-img .inner .btn-box a:hover {
    background: var(--thm-primary);
}

.portfolio-one__single-img .inner .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-one__single-img .inner .btn-box a:hover span::before {
    color: #ffffff;
}


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

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

.team-one .shape1 {
    position: absolute;
    left: 50px;
    bottom: 305px;
    z-index: -1;
}

.team-one .shape2 {
    position: absolute;
    top: 195px;
    right: 355px;
    z-index: -1;
}

.team-one .shape3 {
    position: absolute;
    right: 280px;
    bottom: 50px;
    z-index: -1;
}

.team-one .shape4 {
    position: absolute;
    top: 150px;
    right: 150px;
    z-index: -1;
}

.team-one .shape5 {
    position: absolute;
    bottom: 300px;
    right: 255px;
    z-index: -1;
}

.team-one .shape6 {
    position: absolute;
    top: 175px;
    left: 500px;
    webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
    z-index: -1;
}

.team-one .shape7 {
    position: absolute;
    left: 210px;
    bottom: 240px;
    z-index: -1;
    webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}

.team-one .shape8 {
    position: absolute;
    left: 230px;
    bottom: 370px;
    z-index: -1;
}

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

.team-one__single-img {
    position: relative;
    display: block;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}

.team-one__single-img img {
    width: 100%;
    transition: all 900ms ease 100ms;
}

.team-one__single:hover .team-one__single-img img {
    transform: scale(1.2, 1.2);
}

.team-one__single-img .content-box {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--thm-primary);
    padding: 22px 20px 23px;
    opacity: 0;
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
}

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

.team-one__single-img .content-box h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    text-transform: capitalize;
}

.team-one__single-img .content-box h2 a {
    color: #ffffff;
}

.team-one__single-img .content-box p {
    color: #ffffff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    text-transform: capitalize;
}

.team-one__single-img ul {
    position: absolute;
    top: 25px;
    right: 20px;
    background: var(--thm-primary);
    padding: 12px 15px 11px;
    border-radius: 10px;
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
}

.team-one__single:hover .team-one__single-img ul {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.team-one__single-img ul li {
    position: relative;
    display: block;
    margin-bottom: 6px;
}

.team-one__single-img ul li:last-child {
    margin-bottom: 0px;
}

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

.team-one__single-img ul li a span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
}


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

.brand-one {
    position: relative;
    display: block;
    padding: 0px 0px 120px;
    margin-top: -200px;
    z-index: 5;
}

.brand-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    width: calc((100% - -130px) / 2);
    z-index: -1;
}

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

.brand-one__content {
    position: relative;
    display: block;
    background: var(--thm-base);
    max-width: 870px;
    width: 100%;
    float: right;
    padding: 72px 70px 70px;
}

.brand-one__content .sec-title {
    padding-bottom: 37px;
}

.brand-one__content .sec-title h2 {
    color: #ffffff;
}

.brand-one__content .sec-title .sub-title .text span {
    color: #ffffff;
}

.brand-one__content .sec-title .sub-title .text span::before {
    background: #ffffff;
}

.brand-one__box {
    position: relative;
    display: block;
}

.brand-one__box li {
    position: relative;
    display: block;
    float: left;
    border: 2px solid rgba(255, 255, 255, 0.6);
    width: 33.33333%;
    text-align: center;
}

.brand-one__box li:nth-child(1) {
    border-right: none;
    border-bottom: none;
}

.brand-one__box li:nth-child(2) {
    border-right: none;
    border-bottom: none;
}

.brand-one__box li:nth-child(3) {
    border-bottom: none;
}

.brand-one__box li:nth-child(4) {
    border-right: none;
}

.brand-one__box li:nth-child(5) {
    border-right: none;
}

.brand-one__box li a {
    position: relative;
    display: inline-block;
    padding: 20px 0px 20px;
}

.brand-one__box li a img {
    transition: .5s ease;
    transform: scale(1.02);
    opacity: 0.8;
}

.brand-one__box li:hover a img {
    opacity: 1;
    transform: scale(1);
}


/***
=============================================
Pricing Plan One
=============================================
***/

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

.pricing-plan-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding-top: 65px;
}

.pricing-plan-one__single-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 170px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    z-index: 5;
}

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

.pricing-plan-one__single:hover .pricing-plan-one__single-img::before {
    opacity: 1;
}

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

.pricing-plan-one__single:hover .pricing-plan-one__single-img img {
    transform: scale(1);
}

.pricing-plan-one__single-inner {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #e8e7e7;
    padding: 134px 65px 50px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.pricing-plan-one__single:hover .pricing-plan-one__single-inner {
    box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
    border: 1px solid transparent;
}

.pricing-plan-one__single-inner .shape1 {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.22;
    z-index: -1;
}

.pricing-plan-one__single-inner .table-header {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 12px 50px 11px;
    border-radius: 5px;
    margin: 0 auto;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.pricing-plan-one__single:hover .pricing-plan-one__single-inner .table-header {
    background: var(--thm-primary);
}

.pricing-plan-one__single-inner .table-header h2 {
    position: relative;
    color: #ffffff;
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
}

.pricing-plan-one__single-inner .table-header h2 .dollar {
    position: absolute;
    top: -5px;
    font-size: 15px;
}

.pricing-plan-one__single-inner .table-header h2 .text {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin-left: 10px;
}

.pricing-plan-one__single-inner .table-content {
    position: relative;
    display: block;
    text-align: left;
    margin-top: 25px;
}

.pricing-plan-one__single-inner .table-content ul {
    position: relative;
    display: block;
}

.pricing-plan-one__single-inner .table-content ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-plan-one__single-inner .table-content ul li:last-child {
    margin-bottom: 0;
}

.pricing-plan-one__single-inner .table-content ul li .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #e8e7e7;
    border-radius: 50%;
}

.pricing-plan-one__single-inner .table-content ul li .icon-box span:before {
    position: relative;
    display: inline-block;
    color: #222222;
    font-size: 15px;
}

.pricing-plan-one__single-inner .table-content ul li .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.pricing-plan-one__single-inner .table-content ul li .text-box p {
    color: #838691;
    font-size: 15px;
    line-height: 25px;
}

.pricing-plan-one__single-inner .table-footer {
    position: relative;
    display: block;
    margin-top: 40px;
}

.pricing-plan-one__single-inner .table-footer a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    background: #f8f9fd;
    border-radius: 5px;
    padding: 18px 40px 17px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.pricing-plan-one__single-inner .table-footer a:hover {
    color: #ffffff;
}

.pricing-plan-one__single-inner .table-footer a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-primary);
    transform: scale(0.9);
    opacity: 0;
    transition: all 300ms linear;
    transition-delay: 0.2s;
    border-radius: 5px;
    content: "";
    z-index: -1;
}

.pricing-plan-one__single-inner .table-footer a:hover:before {
    opacity: 1;
    transform: scale(1.0);
}


/***
=============================================
Slogan One
=============================================
***/

.slogan-one {
    position: relative;
    display: block;
    padding: 143px 0px 381px;
    z-index: 1;
}

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

.slogan-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;
}

.slogan-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(241, 243, 242);
    background: linear-gradient(90deg, rgba(241, 243, 242, 1) 9%, rgba(241, 243, 242, 1) 20%, rgba(241, 243, 242, 1) 37%, rgba(241, 243, 242, 0.6643032212885154) 63%, rgba(241, 243, 242, 0) 74%);
    content: "";
    z-index: -2;
}

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

.slogan-one__inner h4 {
    color: var(--thm-base);
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.slogan-one__inner h2 {
    color: var(--thm-base);
    font-size: 60px;
    line-height: 80px;
    font-weight: 600;
    text-transform: capitalize;
}


/***
=============================================
Testimonials One
=============================================
***/

.testimonials-one {
    position: relative;
    display: block;
    margin-top: -235px;
    z-index: 3;
}

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

.testimonials-one__left {
    position: relative;
    display: block;
    margin-left: -165px;
    max-width: 520px;
    width: 100%;
    padding: 120px 0px 120px;
}

.testimonials-one__left-inner {
    position: relative;
    display: block;
}

.testimonials-one__single {
    position: relative;
    display: block;
}

.testimonials-one__single .icon {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.testimonials-one__single .icon span::before {
    color: #ffffff;
    font-size: 45px;
}

.testimonials-one__single h2 {
    color: #ffffff;
    font-size: 38px;
    line-height: 60px;
    font-weight: 500;
}

.testimonials-one__single .client-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.testimonials-one__single .client-info .img-box {
    position: relative;
    display: block;
}

.testimonials-one__single .client-info .img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 30px;
}

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

.testimonials-one__single .client-info .img-box .inner img {
    width: 100%;
}

.testimonials-one__single .client-info .img-box .icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--thm-primary);
}

.testimonials-one__single .client-info .img-box .icon span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
}

.testimonials-one__single .client-info .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 45px;
}

.testimonials-one__single .client-info .text-box .review-box {
    position: relative;
    display: block;
    margin-bottom: 3px;
}

.testimonials-one__single .client-info .text-box .review-box li {
    position: relative;
    display: inline-block;
}

.testimonials-one__single .client-info .text-box .review-box li span::before {
    position: relative;
    display: inline-block;
    color: #fab600;
    font-size: 15px;
}

.testimonials-one__single .client-info .text-box .text {
    position: relative;
    display: block;
}

.testimonials-one__single .client-info .text-box .text h2 {
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.02em;
}

.testimonials-one__single .client-info .text-box .text p {
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonials-one__carousel.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
    position: absolute;
    top: 35%;
    right: -130px;
}

.testimonials-one__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    background: #f1f3f2;
    margin: 13px 0px;
    padding: 0px;
    border-radius: 50%;
    transition: all 300ms linear;
    transition-delay: 0.2s;
}

.testimonials-one__carousel.owl-carousel .owl-dots .owl-dot::before {
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 2px solid #f1f3f2;
    content: "";
    transform: scale(0.5);
    border-radius: 50%;
    transition: all 300ms linear;
    transition-delay: 0.2s;
}

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

.testimonials-one__carousel.owl-theme .owl-dots .owl-dot span {
    display: none;
}

.testimonials-one__form {
    position: absolute;
    bottom: 0;
    display: block;
    background-color: #ffffff;
    box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
    padding: 43px 40px 55px;
    max-width: 470px;
    width: 100%;
    z-index: 2;
}

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

.testimonials-one__form .title-box h2 {
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
}

.testimonials-one__form .form-box {
    position: relative;
    margin-top: 37px;
}

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

.testimonials-one__form .form-box form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.testimonials-one__form .form-box form .form-group input[type="text"],
.testimonials-one__form .form-box form .form-group input[type="email"],
.testimonials-one__form .form-box form .form-group input[type="tel"],
.testimonials-one__form .form-box form .form-group input[type="url"],
.testimonials-one__form .form-box form .form-group textarea,
.testimonials-one__form .form-box form .form-group select {
    position: relative;
    display: block;
    font-size: 15px;
    color: var(--thm-gray);
    font-weight: 400;
    text-transform: none;
    padding: 0px 20px 0px;
    width: 100%;
    height: 70px;
    background-color: #f4f5f8;
    border-radius: 5px;
    outline: none;
    border: none;
    font-family: var(--thm-font);
}

.testimonials-one__form .form-box form .form-group textarea {
    height: 140px;
    resize: none;
    padding-top: 19px;
}

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

.testimonials-one__form .form-box form .form-group .nice-select {
    background: #f4f5f8;
    width: 100%;
    height: 70px;
    line-height: 70px;
    border: none;
    color: var(--thm-gray);
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    padding: 0px 20px 0px;
    border-radius: 5px;
    font-family: var(--thm-font);
}

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

.testimonials-one__form .form-box form .form-group .nice-select .list {
    background-color: rgba(255, 255, 255, 1.0);
}

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

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

.testimonials-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;
}

.testimonials-one__form .form-box form .button-box button.thm-btn::before {
    background: var(--thm-primary);
    color: #ffffff;
}


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

.blog-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
}

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

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

.blog-one__single-img .date-box {
    position: absolute;
    left: 35px;
    bottom: -35px;
    background: var(--thm-base);
    border-radius: 6px;
    text-align: center;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.blog-one__single-img .date-box p {
    color: #ffffff;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
}

.blog-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 1;
}

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

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

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

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

.blog-one__single__content {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    padding: 60px 35px 29px;
    padding-right: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.blog-one__single__content .meta-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 22px;
}

.blog-one__single__content .meta-box li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    margin-right: 30px;
    line-height: 0;
}

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

.blog-one__single__content .meta-box li .icon {
    position: relative;
    display: block;
}

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

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

.blog-one__single__content .meta-box li .text p {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--thm-font-2);
    margin: 0;
}

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

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

.blog-one__single__content h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 21px;
}

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

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

.blog-one__single__content p {
    position: relative;
    margin: 0;
    margin-bottom: 34px;
}

.blog-one__single__content .bottom-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e4e4ea;
    padding-top: 20px;
}

.blog-one__single__content .bottom-box .read-more-btn {
    position: relative;
    display: block;
}

.blog-one__single__content .bottom-box .read-more-btn a {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single__content .bottom-box .read-more-btn a:hover {
    color: var(--thm-base);
}

.blog-one__single__content .bottom-box .icon-box {
    position: relative;
    display: inline-block;
}

.blog-one__single__content .bottom-box .icon-box a {
    position: relative;
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(var(--thm-base-rgb), 1.0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 10px;
}

.blog-one__single__content .bottom-box .icon-box a:hover {
    color: #ffffff;
}

.blog-one__single__content .bottom-box .icon-box a span:before {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
}


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

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

.footer-one__top {
    position: relative;
    display: block;
    z-index: 1;
}

.footer-one__top__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;
}

.footer-one__top-inner {
    position: relative;
    display: block;
    padding: 68px 100px 80px;
    z-index: 1;
}

.footer-one__top-inner .shape6 {
    position: absolute;
    left: -325px;
    bottom: 25px;
    opacity: 0.55;
    z-index: -1;
}

.footer-one__top-inner .shape7 {
    position: absolute;
    top: 0;
    right: 165px;
    z-index: -1;
}

.footer-one__top-inner::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    content: "";
    z-index: -1;
}

.footer-one__top-inner .title {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 58px;
}

.footer-one__top-inner .title h2 {
    color: #ffffff;
    font-size: 50px;
    line-height: 60px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.footer-one__top-inner form {
    position: relative;
    display: block;
}

.footer-one__top-inner form ul {
    position: relative;
    display: block;
    margin-left: -10px;
    margin-right: -10px;
}

.footer-one__top-inner form ul li {
    position: relative;
    display: block;
    float: left;
    width: 25%;
    padding: 0px 10px 0px;
}

.footer-one__top-inner form ul li .input-box input[type="text"],
.footer-one__top-inner form ul li .input-box input[type="email"] {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 60px;
    border: 0px solid #dcdfe2;
    color: var(--thm-gray);
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    letter-spacing: 0.02em;
    outline: none;
}

.footer-one__top-inner form ul li .button-box {
    position: relative;
    display: block;
}

.footer-one__top-inner form ul li .button-box .footer-one__top-btn {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 60px;
    font-weight: 500;
    background: #ffffff;
    border-radius: 5px;
    padding: 0px 40px 0px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-one__top-inner form ul li .button-box .footer-one__top-btn:hover {
    background: var(--thm-primary);
    color: #ffffff;
}

.footer {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 120px 0px 114px;
    overflow: hidden;
    z-index: 1;
}

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

.footer .shape1 {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.2;
    z-index: -1;
}

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

.footer .shape3 {
    position: absolute;
    left: -10px;
    bottom: 30px;
    opacity: 0.35;
    z-index: -1;
}

.footer .shape4 {
    position: absolute;
    top: 60px;
    right: 75px;
    opacity: 0.35;
    z-index: -1;
}

.footer .shape5 {
    position: absolute;
    bottom: -20px;
    right: 450px;
    opacity: 0.35;
    z-index: -1;
}

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

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

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

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

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

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

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

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

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

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

.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-primary);
    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: #ffffff;
    font-size: 15px;
}

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

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

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

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

.footer-widget__single-links-list li a {
    position: relative;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

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

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

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

.footer-widget__single-blog-list li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

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

.footer-widget__single-blog-list li .img-box {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.footer-widget__single-blog-list li .img-box img {
    width: 100%;
}

.footer-widget__single-blog-list li .img-box .overlay-icon {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--thm-black-rgb), .80);
    border-radius: 5px;
    opacity: 0;
    transform: perspective(400px) scale(0);
    transform-origin: top;
    transition: all 0.5s ease-in-out 0s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.footer-widget__single-blog-list li:hover .img-box .overlay-icon {
    opacity: 1;
    transform: perspective(400px) scale(1.0);
    transition: all 0.3s ease-in-out 0.3s;
}

.footer-widget__single-blog-list li .img-box .overlay-icon a {
    color: #ffffff;
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__single-blog-list li .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.footer-widget__single-blog-list li .text-box span {
    color: #ffb400;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.footer-widget__single-blog-list li .text-box p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
}

.footer-widget__single-blog-list li .text-box p a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__single-blog-list li .text-box p a:hover {
    color: #ffffff;
}

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

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

.footer-widget__single-newsletter .text-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
}

.footer-widget__single-newsletter .newsletter-form {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 30px;
}

.footer-widget__single-newsletter .newsletter-form input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    padding: 0 30px;
    padding-right: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    border-radius: 10px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    text-transform: none;
    outline: none;
}

.footer-widget__single-newsletter .newsletter-form input::-webkit-input-placeholder {
    color: #ffffff;
}

.footer-widget__single-newsletter .newsletter-form input:-moz-placeholder {
    color: #ffffff;
}

.footer-widget__single-newsletter .newsletter-form input::-moz-placeholder {
    color: #ffffff;
}

.footer-widget__single-newsletter .newsletter-form input:-ms-input-placeholder {
    color: #ffffff;
}

.footer-widget__single-newsletter .newsletter-form button {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 40px;
    color: var(--thm-base);
    font-size: 16px;
    line-height: 40px;
    border-radius: 5px;
    background: #ffffff;
    transition: all 300ms ease 100ms;
}

.footer-widget__single-newsletter .newsletter-form input[type="email"]:focus {
    color: #ffffff;
}

.footer-widget__single-newsletter .newsletter-form input[type="email"]:focus+button,
.footer-widget__single-newsletter .newsletter-form button:hover {
    color: #ffffff;
    background: var(--thm-base);
}

.footer-one__bottom {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 25px 0px 24px;
}

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

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

.footer-one__bottom .bottom-inner .copyright p {
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

.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: #ffffff;
    content: "";
}

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

.footer-one__bottom-menu li a {
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

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


/***
=============================================
Feature Three
=============================================
***/

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

.feature-three .shape1 {
    position: absolute;
    top: 150px;
    right: 310px;
    z-index: -1;
}

.feature-three .container-fluid {
    padding-right: var(--bs-gutter-x, 0rem);
    padding-left: var(--bs-gutter-x, 0rem);
}

.features-three__inner {
    position: relative;
    display: block;
}

.feature-three__single {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 370px;
    width: 100%;
    padding: 50px 40px 50px;
    z-index: 1;
}

.feature-three__single .shape1 {
    position: absolute;
    top: 45px;
    right: 10px;
    opacity: 0.5;
    z-index: 1;
}

.feature-three__single .shape2 {
    position: absolute;
    left: 0;
    bottom: 25px;
    opacity: 0.5;
    z-index: 1;
}

.feature-three__single::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-radius: 10px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    content: "";
    z-index: -1;
}

.feature-three__single::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: scaleX(0.7) rotateX(0deg);
    transition: all 0.4s linear;
    border-radius: 10px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    background: var(--thm-base);
    opacity: 0;
    z-index: -1;
    content: "";
}

.feature-three__single:hover::after {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.feature-three__single-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #eef0f6;
    margin: 0 auto 37px;
}

.feature-three__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 50px;
}

.feature-three__single h2 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    text-transform: capitalize;
}

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

.feature-three__single:hover h2 a {
    color: #ffffff;
}

.feature-three__single .border-box {
    position: relative;
    display: block;
    width: 50px;
    height: 3px;
    background: #eef0f6;
    margin: 10px auto 0px;
}

.feature-three__single .border-box::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 10px;
    height: 3px;
    background: var(--thm-primary);
    content: "";
    margin: 0 auto;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-three__single:hover .border-box::before {
    background: #96a7d8;
}

.feature-three__single p {
    margin: 0;
    margin-top: 10px;
}

.feature-three__single .btn-box {
    position: relative;
    display: inline-block;
    margin-top: 24px;
}

.feature-three__single:hover p {
    color: #ffffff;
}

.feature-three__single .btn-box a {
    position: relative;
    display: block;
    padding: 0px 30px 0px;
    background: #eef0f6;
    color: #00415d;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 50px;
    border-radius: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-three__single .btn-box a:hover {
    background: var(--thm-primary);
    color: #ffffff;
}

.feature-three__single .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: #00415d;
    font-size: 15px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    top: 2px;
}

.feature-three__single .btn-box a:hover span::before {
    color: #ffffff;
}

.feature-three__carousel.owl-carousel {
    display: block;
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
}

.feature-three__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0px;
}

.feature-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .feature-three__single::after {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.6s linear;
    opacity: 1;
}

.feature-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .feature-three__single h2 a {
    color: #ffffff;
}

.feature-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .feature-three__single p {
    color: #ffffff;
}

.feature-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .feature-three__single .border-box::before {
    background: #96a7d8;
}


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

.about-two {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, 0.07);
    padding: 180px 0px 120px;
    z-index: 2;
}

.about-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: top right;
}

.about-two__img {
    position: relative;
    display: block;
    margin-left: -50px;
    margin-right: 30px;
    z-index: 1;
}

.about-two__img .shape1 {
    position: absolute;
    top: -23px;
    right: -23px;
    width: 180px;
    height: 180px;
    background: var(--thm-primary);
    z-index: -1;
}

.about-two__img .shape2 {
    position: absolute;
    right: -25px;
    bottom: -25px;
    z-index: -1;
}

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

.about-two__img1 img {
    width: 100%;
}

.about-two__img1 .counter-box {
    position: absolute;
    left: -25px;
    bottom: -25px;
    background: var(--thm-primary);
    padding: 40px 30px 35px;
}

.about-two__img1 .counter-box h2 {
    color: #ffffff;
    font-size: 55px;
    font-weight: 600;
    letter-spacing: -0.07em;
    line-height: 0
}

.about-two__img1 .counter-box h2 .plus {
    font-size: 40px;
    margin-left: -5px;
}

.about-two__img1 .counter-box h2 .text {
    font-size: 33px;
    line-height: 43px;
    font-weight: 700;
    letter-spacing: 0;
}

.about-two__img .odometer.odometer-auto-theme,
.about-two__img .odometer.odometer-theme-default {
    font-family: var(--thm-font);
    line-height: 0.9em;
}

.about-two__img2 {
    position: absolute;
    top: -60px;
    left: 0px;
    width: 160px;
    height: 160px;
    border: 5px solid #ffffff;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
}

.about-two__img2 img {
    width: 100%;
}

.about-two__content {
    position: relative;
    display: block;
    margin-left: 30px;
}

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

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

.about-two__content-text p {
    margin: 0;
    color: var(--thm-black);
    font-weight: 500;
}

.about-two__content-text2 {
    position: relative;
    display: block;
    margin-top: 35px;
}

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

.about-two__content-text2-single .img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    z-index: 1;
    margin-left: 10px;
    margin-bottom: 27px;
}

.about-two__content-text2-single .img-box::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    border-radius: 5px;
    border-bottom-left-radius: 30px;
    content: "";
    z-index: -1;
}

.about-two__content-text2-single .img-box::before {
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: 0;
    right: 0;
    background: #d9dee6;
    border-radius: 5px;
    content: "";
    z-index: -1;
}

.about-two__content-text2-single .img-box img {
    width: auto;
}

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

.about-two__content-text2-single .text-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.about-two__content-text2-single .text-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.about-two__content-text2-single .text-box h3 a:hover {
    color: var(--thm-primary);
}

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

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

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

.about-two__content-text3 .btn-box .thm-btn {
    background: var(--thm-primary);
}

.about-two__content-text3 .btn-box .thm-btn::before {
    background: var(--thm-base);
}

.about-two__client-info-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.about-two__client-info-box .img-box {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.about-two__client-info-box .img-box img {
    width: 100%;
}

.about-two__client-info-box .title-box {
    position: relative;
    display: block;
    margin-left: 25px;
}

.about-two__client-info-box .title-box h3 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    text-transform: capitalize;
}

.about-two__client-info-box .title-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
}


/***
=============================================
Gallery One
=============================================
***/

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

.gallery-one .container-fluid {
    padding-right: var(--bs-gutter-x, 0rem);
    padding-left: var(--bs-gutter-x, 0rem);
}

.gallery-one__single {
    position: relative;
    display: block;
    padding-top: 75px;
    max-width: 375px;
    width: 100%;
    z-index: 1;
}

.gallery-one__single::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #eef0f6;
    clip-path: polygon(0 0, 100% 6%, 100% 100%, 0% 100%);
    content: "";
    z-index: -1;
}

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

.gallery-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    border-top-left-radius: 0px;
    z-index: 1;
}

.gallery-one__single-img .inner img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}

.gallery-one__single:hover .gallery-one__single-img .inner img {
    transform: scale(1.2);
}

.gallery-one__single-img .inner::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.gallery-one__single:hover .gallery-one__single-img .inner::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.gallery-one__single-img .content-box {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ffffff;
    padding: 32px 0px 33px;
    padding-left: 20px;
    width: 280px;
    border-top-right-radius: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.gallery-one__single-img .content-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    transform: scaleX(0.7) rotateX(20deg);
    transition: all 0.4s linear;
    z-index: -1;
    background: var(--thm-primary);
    border-top-right-radius: 20px;
    opacity: 0;
}

.gallery-one__single:hover .gallery-one__single-img .content-box::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.gallery-one__single-img .content-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}

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

.gallery-one__single:hover .gallery-one__single-img .content-box h3 a {
    color: #ffffff;
}

.gallery-one__single-img .content-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.gallery-one__single:hover .gallery-one__single-img .content-box p {
    color: #ffffff;
}

.gallery-one__single-img .btn-box {
    position: absolute;
    left: 255px;
    bottom: 32px;
    z-index: 2;
}

.gallery-one__single-img .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--thm-black);
    border-radius: 10px;
    transition: all 200ms linear;
    transition-delay: 0.3s;
}

.gallery-one__single:hover .gallery-one__single-img .btn-box a {
    background: #ffffff;
}

.gallery-one__single-img .btn-box a span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.gallery-one__single:hover .gallery-one__single-img .btn-box a span:before {
    color: var(--thm-black);
}

.gallery-one__carousel.owl-carousel {
    display: block;
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0px;
}


/***
=============================================
Services Two
=============================================
***/

.services-two {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 120px 0px 320px;
    z-index: 1;
}

.services-two .shape1 {
    position: absolute;
    top: 500px;
    left: 50px;
    opacity: 0.3;
    z-index: -1;
}

.services-two .shape2 {
    position: absolute;
    top: 150px;
    right: 310px;
    z-index: -1;
    opacity: 0.3;
}

.services-two .shape3 {
    position: absolute;
    top: 15px;
    left: 330px;
    z-index: -1;
    opacity: 0.3;
}

.services-two .shape4 {
    position: absolute;
    top: 50px;
    right: 750px;
    z-index: -1;
    webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
    opacity: 0.3;
}

.services-two .shape5 {
    position: absolute;
    top: -70px;
    right: -70px;
    z-index: -1;
    opacity: 0.3;
}

.services-two .shape6 {
    position: absolute;
    right: -10px;
    bottom: 135px;
    z-index: -1;
    opacity: 0.3;
}

.services-two .shape7 {
    position: absolute;
    bottom: 460px;
    right: -60px;
    z-index: -1;
    opacity: 0.3;
}

.services-two .shape8 {
    position: absolute;
    bottom: 220px;
    left: 370px;
    z-index: -1;
    opacity: 0.3;
}

.services-two .sec-title .sub-title .text span {
    color: #ffffff;
}

.services-two .sec-title .sub-title .text span::before {
    background: #ffffff;
}

.services-two .sec-title h2 {
    color: #ffffff;
}

.services-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 37px 45px 37px;
    padding-right: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.services-two__single .inner {
    position: relative;
    display: block;
    padding-left: 130px;
}

.services-two__single .inner .img-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 8px;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #eef0f6;
    border: 8px solid #ffffff;
    box-shadow: 0px 2px 20px 0px rgb(9, 24, 84, 0.08);
}

.services-two__single .inner .img-box img {
    width: auto;
    transition: .5s ease;
    transform: scale(1.0);
}

.services-two__single:hover .inner .img-box img {
    transform: scale(1.05);
}

.services-two__single .inner .content-box {
    position: relative;
    display: block;
}

.services-two__single .inner .content-box h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
}

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

.services-two__single .inner .content-box h2 a:hover {
    color: var(--thm-primary);
}

.services-two__single .inner .content-box p {
    font-size: 14px;
    line-height: 26px
}


/***
=============================================
Testimonial Two
=============================================
***/

.testimonial-two {
    position: relative;
    display: block;
    background: #dddddd;
    padding: 120px 0px 120px;
    overflow: hidden;
    z-index: 1;
}

.testimonial-two__img7 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.testimonial-two__content {
    position: relative;
    display: block;
    max-width: 880px;
    width: 100%;
}

.testimonial-two__content .sec-title h2 {
    color: #ffffff;
}

.testimonial-two__content .sec-title .sub-title .text span {
    color: #ffffff;
}

.testimonial-two__content .sec-title .sub-title .text span::before {
    background: #ffffff;
}

.testimonial-two__content .shape1 {
    position: absolute;
    top: -340px;
    left: -260px;
    width: 1210px;
    height: 1210px;
    border-radius: 50%;
    background: var(--thm-black);
}

#testimonial-two__thumb {
    width: 350px;
    margin-left: 0;
}

.testimonial-two__img {
    position: relative;
    display: block;
    cursor: pointer;
    transition: all 500ms ease;
}

.testimonial-two__img .inner {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 500ms ease;
}

.testimonial-two__img .inner::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(255, 255, 255, 0.2);
    transition: all 500ms ease;
    border-radius: 50%;
    content: "";
}

#testimonial-two__thumb .swiper-slide-thumb-active .testimonial-two__img .inner::before {
    background-color: rgba(var(--moniz-base-rgb, 255, 255, 255), .0);
}

.testimonial-two__img .inner>img {
    width: 105px;
    border-radius: 50%;
    transition: all 0.5s ease-in-out 0.6s;
}

.testimonial-two__img .icon {
    position: absolute;
    bottom: 15px;
    right: -5px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: var(--thm-base);
    font-size: 10px;
    font-weight: 700;
    background: #ffffff;
    transform: scale(0);
    transition: all 500ms ease;
}

#testimonial-two__thumb .swiper-slide-thumb-active .testimonial-two__img .icon {
    transform: scale(1);
}

.testimonial-two__content-box {
    position: relative;
    display: block;
    margin-top: 62px;
}

.testimonial-two__content-box-single {
    position: relative;
    display: block;
}

.testimonial-two__content-box-single .inner {
    position: relative;
    display: block;
    padding-left: 150px;
}

.testimonial-two__content-box-single .inner .icon-box {
    position: absolute;
    right: 0;
    bottom: 5px;
}

.testimonial-two__content-box-single .inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 50px;
    line-height: 50px;
}

.testimonial-two__content-box-single .inner .img-box {
    position: absolute;
    top: 8px;
    left: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-two__content-box-single .inner .img-box img {
    width: 100%;
}

.testimonial-two__content-box-single .inner .content-box {
    position: relative;
    display: block;
}

.testimonial-two__content-box-single .inner .content-box h4 {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.testimonial-two__content-box-single .inner .content-box .name {
    position: relative;
    display: block;
    margin-top: 27px;
}

.testimonial-two__content-box-single .inner .content-box .name h4 {
    color: #d0d2d0;
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.testimonial-two__content-box-single .inner .content-box .name span {
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.01em;
}

#testimonial-two__carousel-pagination {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: -117px;
    right: 0;
    left: auto;
    width: 100%;
    z-index: 20;
}

#testimonial-two__carousel-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 0px solid var(--thm-black);
    border-color: transparent;
    transition: all 500ms ease;
    opacity: 1;
    margin: 0;
    display: block;
}

#testimonial-two__carousel-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 6px;
}

#testimonial-two__carousel-pagination .swiper-pagination-bullet-active {
    background-color: #ffffff;
}


/***
=============================================
Our Banefits One
=============================================
***/

.banefits-two {
    position: relative;
    display: block;
    background: #eef0f6;
    padding: 120px 0px 210px;
    margin-top: 5px;
    z-index: 1;
}

.banefits-two .shape1 {
    position: absolute;
    left: 50px;
    bottom: 230px;
    z-index: -1;
}

.banefits-two .shape2 {
    position: absolute;
    top: 208px;
    right: 275px;
    z-index: -1;
}

.banefits-two__single {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 55px 30px 38px;
    margin-bottom: 30px;
}

.banefits-two__single-img {
    position: relative;
    display: block;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}

.banefits-two__single-img::before {
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background: #f3f5fb;
    content: "";
    z-index: -1;
}

.banefits-two__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.banefits-two__single-img .inner::before {
    position: absolute;
    top: 0%;
    left: 0%;
    bottom: 0%;
    right: 0%;
    content: '';
    background-color: rgba(var(--thm-base-rgb), .60);
    transform: scaleY(1.0);
    opacity: 0;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    z-index: 1;
}

.banefits-two__single:hover .banefits-two__single-img .inner::before {
    opacity: 0.70;
    transform: scaleY(1.0);
}

.banefits-two__single-img .inner img {
    width: 100%;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
}

.banefits-two__single:hover .banefits-two__single-img .inner img {
    transform: scale(1.1) rotate(1deg);
}

.banefits-two__single-content {
    position: relative;
    display: block;
    margin-top: 37px;
}

.banefits-two__single-content h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 4px;
}

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

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

.banefits-two__single-content p {
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
}


/***
=============================================
Contact One
=============================================
***/

.contact-one {
    position: relative;
    display: block;
    padding: 110px 0px 90px;
    margin-top: -120px;
    z-index: 1;
}

.contact-one::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 47%;
    background: var(--thm-black);
    content: "";
    z-index: -1;
}

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

.contact-one__bg {
    position: absolute;
    top: 0px;
    bottom: -120px;
    left: 0;
    width: calc((100% - 150px) / 1);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 87% 100%, 0% 100%);
    z-index: -2;
}

.contact-one__form {
    position: relative;
    display: block;
    margin-left: -100px;
    z-index: 1;
}

.contact-one__form .sec-title {
    padding-bottom: 42px;
}

.contact-one__form .sec-title h2 {
    color: #ffffff;
}

.contact-one__form .sec-title .sub-title .text span {
    color: #ffffff;
}

.contact-one__form .sec-title .sub-title .text span::before {
    background: #ffffff;
}

.contact-one__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.contact-one__form .input-box input[type="text"],
.contact-one__form .input-box input[type="email"],
.contact-one__form .input-box textarea {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, .1);
    width: 100%;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 14px;
    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;
}

.contact-one__form form input[type="text"]::-webkit-input-placeholder {
    color: #ffffff;
}

.contact-one__form form input[type="text"]:-moz-placeholder {
    color: #ffffff;
}

.contact-one__form form input[type="text"]::-moz-placeholder {
    color: #ffffff;
}

.contact-one__form form input[type="text"]:-ms-input-placeholder {
    color: #ffffff;
}

.contact-one__form form input[type="email"]::-webkit-input-placeholder {
    color: #ffffff;
}

.contact-one__form form input[type="email"]:-moz-placeholder {
    color: #ffffff;
}

.contact-one__form form input[type="email"]::-moz-placeholder {
    color: #ffffff;
}

.contact-one__form form input[type="email"]:-ms-input-placeholder {
    color: #ffffff;
}

.contact-one__form form textarea::-webkit-input-placeholder {
    color: #ffffff;
}

.contact-one__form form textarea:-moz-placeholder {
    color: #ffffff;
}

.contact-one__form form textarea::-moz-placeholder {
    color: #ffffff;
}

.contact-one__form form textarea:-ms-input-placeholder {
    color: #ffffff;
}

.contact-one__form .input-box .select-box {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
}

.contact-one__form .input-box .nice-select {
    background: rgba(255, 255, 255, .1);
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 0px;
}

.contact-one__form .input-box .nice-select:after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    right: 30px;
    margin-top: 0px;
    top: 19px;
    z-index: 10;
}

.contact-one__form .nice-select .list {
    background-color: var(--thm-primary);
}

.contact-one__form-btn {
    position: relative;
}

.contact-one__form-btn .thm-btn {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 0px;
    line-height: 48px;
    width: 100%;
    font-size: 16px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-one__form-btn .thm-btn:hover {
    border-color: var(--thm-primary);
}

#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);
}


/***
=============================================
Pricing Plan Two
=============================================
***/

.pricing-plan-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 240px 0px 90px;
}

.pricing-plan-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    background: #fafbfa;
    border: 1px solid #f3f3f3;
    border-radius: 6px;
    padding: 20px 20px 20px;
}

.pricing-plan-two__single-inner {
    position: relative;
    display: block;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #f1f1f0;
    padding: 30px 30px 35px;
    z-index: 1;
}

.pricing-plan-two__single-inner-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    border-radius: 6px;
    transform: scaleX(0.8) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 0;
    z-index: -1;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner-bg {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.pricing-plan-two__single-inner-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-base-rgb), 0.97);
    content: "";
    z-index: -2;
    content: "";
    border-radius: 6px;
}

.pricing-plan-two__single-inner .table-header {
    position: relative;
    display: block;
    padding: 15px 30px 17px;
    z-index: 1;
}

.pricing-plan-two__single-inner .table-header::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fafbfa;
    border: 1px solid #f3f3f3;
    content: "";
    z-index: -1;
    transition: all 500ms linear;
    transition-delay: 0.3s;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-header::before {
    -moz-transform: skew(-10deg, 0deg);
    -webkit-transform: skew(-10deg, 0deg);
    -o-transform: skew(-10deg, 0deg);
    -ms-transform: skew(-10deg, 0deg);
    transform: skew(-10deg, 0deg);
    border-radius: 5px;
}

.pricing-plan-two__single-inner .table-header h2 {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    margin-bottom: 5px;
    padding-left: 17px;
    padding-right: 10px;
}

.pricing-plan-two__single-inner .table-header h2 .dollar {
    position: absolute;
    top: -9px;
    left: 0;
    color: var(--thm-black);
    font-size: 25px;
    padding-right: 10px;
}

.pricing-plan-two__single-inner .table-header h2 .text {
    position: absolute;
    top: -16px;
    color: var(--thm-black);
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.03em;
    margin-left: 9px;
}

.pricing-plan-two__single-inner .table-header h5 {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.pricing-plan-two__single-inner .table-header .review-box {
    position: relative;
    display: block;
}

.pricing-plan-two__single-inner .table-header .review-box li {
    position: relative;
    display: inline-block;
}

.pricing-plan-two__single-inner .table-header .review-box li span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 15px;
}

.pricing-plan-two__single-inner .table-content {
    position: relative;
    display: block;
    margin-top: 30px;
}

.pricing-plan-two__single-inner .table-content ul {
    position: relative;
    display: block;
}

.pricing-plan-two__single-inner .table-content ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-plan-two__single-inner .table-content ul li:last-child {
    margin-bottom: 0;
}

.pricing-plan-two__single-inner .table-content ul li .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #e8e7e7;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-content ul li .icon-box {
    border-color: #ffffff;
}

.pricing-plan-two__single-inner .table-content ul li .icon-box span:before {
    position: relative;
    display: inline-block;
    color: #222222;
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-content ul li .icon-box span:before {
    color: #ffffff;
}

.pricing-plan-two__single-inner .table-content ul li .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.pricing-plan-two__single-inner .table-content ul li .text-box p {
    color: #838691;
    font-size: 15px;
    line-height: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-content ul li .text-box p {
    color: #ffffff;
}

.pricing-plan-two__single-inner .table-footer {
    position: relative;
    display: block;
    margin-top: 40px;
    text-align: center;
    line-height: 0;
}

.pricing-plan-two__single-inner .table-footer .thm-btn {
    background: #fafbfa;
    border: 1px solid #f3f3f3;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-footer .thm-btn {
    background: var(--thm-primary);
    border-color: var(--thm-primary);
}

.pricing-plan-two__single-inner .table-footer .thm-btn:hover {
    border-color: var(--thm-primary);
}

.pricing-plan-two__single-inner .table-footer .thm-btn .txt {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.pricing-plan-two__single:hover .pricing-plan-two__single-inner .table-footer .thm-btn .txt {
    color: #ffffff;
}


/***
=============================================
Brand Two
=============================================
***/

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

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

.brand-two .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.5);
    height: 130px;
    transition: .5s ease;
}

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

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

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


/***
=============================================
Poroduct One
=============================================
***/

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

.poroduct-one__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 57px;
}

.poroduct-one__top .content-box {
    position: relative;
    display: block;
}

.poroduct-one__top .content-box .sec-title {
    padding-bottom: 0px;
}

.poroduct-one__top .btn-box {
    position: relative;
    display: block;
}

.poroduct-one__top .btn-box .thm-btn {
    border: 1px solid var(--thm-black);
    background: transparent;
}

.poroduct-one__top .btn-box .thm-btn:hover {
    border-color: var(--thm-primary);
}

.poroduct-one__top .btn-box .thm-btn .txt {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.poroduct-one__top .btn-box .thm-btn:hover .txt {
    color: #ffffff;
}

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

.poroduct-one__single-img {
    position: relative;
    display: block;
    z-index: 1;
}

.poroduct-one__single-img .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fefefe;
    padding: 0px 10px 0px;
    overflow: hidden;
    height: 300px;
}

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

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

.poroduct-one__single-img .inner .overlay-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 70px;
    bottom: 30px;
    right: 70px;
    background: var(--thm-black);
    padding: 10px 25px 10px;
    transition: .6s;
    transform: perspective(400px) scaleY(0);
    transition-delay: 0.1s;
    transform-origin: bottom;
    z-index: 5;
}

.poroduct-one__single:hover .poroduct-one__single-img .inner .overlay-box {
    transform: perspective(400px) scaleY(1.0);
    transition-delay: 0.3s;
}

.poroduct-one__single-img .inner .overlay-box .title {
    position: relative;
    display: block;
}

.poroduct-one__single-img .inner .overlay-box .title h6 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.poroduct-one__single-img .inner .overlay-box .title h6 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.poroduct-one__single-img .inner .overlay-box .title h6 a:hover {
    color: #ffffff;
}

.poroduct-one__single-img .inner .overlay-box .icon {
    position: relative;
    display: block;
}

.poroduct-one__single-img .inner .overlay-box .icon ul {
    position: relative;
    display: block;
}

.poroduct-one__single-img .inner .overlay-box .icon ul li {
    position: relative;
    display: inline-block;
    margin-right: 11px;
}

.poroduct-one__single-img .inner .overlay-box .icon ul li:last-child {
    margin-right: 0px;
}

.poroduct-one__single-img .inner .overlay-box .icon ul li a {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 15px;
}

.poroduct-one__single-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 33px;
}

.poroduct-one__single-content .left-content {
    position: relative;
    display: block;
}

.poroduct-one__single-content .left-content p {
    color: #707480;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--thm-font-2);
    letter-spacing: -0.01em;
    margin-bottom: 5px;
}

.poroduct-one__single-content .left-content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

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

.poroduct-one__single-content .left-content h3 a:hover {
    color: var(--thm-primary);
}

.poroduct-one__single-content .left-content span {
    color: #1a213e;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.poroduct-one__single-content .left-content span del {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.poroduct-one__single-content .rating-box {
    position: relative;
    display: block;
}

.poroduct-one__single-content .rating-box ul li span {
    color: var(--thm-primary);
}


/***
=============================================
Banefits One
=============================================
***/

.banefits-one {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    margin-top: -240px;
    z-index: 5;
}

.banefits-one::before {
    position: absolute;
    top: 0;
    left: 210px;
    bottom: 0;
    right: 0;
    background: #ffffff;
    content: "";
    z-index: -1;
}

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

.banefits-one-inner {
    position: relative;
    display: block;
}

.banefits-one__tab-box {
    position: relative;
    display: block;
}

.banefits-one__tab-box .tab-buttons {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, 0.07);
    margin-bottom: 54px;
}

.banefits-one__tab-box .tab-buttons .tab-btn {
    position: relative;
    float: left;
    max-width: 390px;
    width: 100%;
}

.banefits-one__tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-left: 0px;
}

.banefits-one__tab-box .tab-buttons .tab-btn:nth-child(1) span {
    border-top-left-radius: 10px;
}

.banefits-one__tab-box .tab-buttons .tab-btn:nth-child(3) span {
    border-top-right-radius: 10px;
}

.banefits-one__tab-box .tab-buttons .tab-btn span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    background-color: #ffffff;
    padding: 36px 0px 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 390px;
    width: 100%;
    text-align: center;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.banefits-one__tab-box .tab-buttons .tab-btn.active-btn span {
    color: #ffffff;
    background: var(--thm-primary);
}

.banefits-one__tab-box .tab-buttons .tab-btn span:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0%;
    content: "";
    background-color: var(--thm-primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.banefits-one__tab-box .tab-buttons .tab-btn.active-btn span:before {
    height: 100%;
}

.banefits-one__tab-box .tabs-content {
    position: relative;
    display: block;
}

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

.banefits-one__tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.tabs-content__inner {
    position: relative;
    display: block;
    background-color: #ffffff;
}

.tabs-content__img {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 2px 3.464px 18px 0px rgb(227, 222, 222, 1.0);
    overflow: hidden;
    padding: 41px 0px 42px;
    border-radius: 11px;
    z-index: 1;
}

.tabs-content__img .inner {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.tabs-content__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-primary-rgb), 0.4);
    opacity: 0;
    z-index: 1;
    content: "";
}

.tabs-content__img:hover .inner::before {
    opacity: 1;
}

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

.tabs-content__img:hover .inner img {
    transform: scale(1);
}

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

.tabs-content__content-accordion {
    position: relative;
    display: block;
    margin-left: 40px;
}

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

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

.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: 24px;
    padding-left: 40px;
    padding-bottom: 23px;
    padding-right: 40px;
}

.accordion-box .block .acc-btn.active {
    padding-bottom: 19px;
}

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-size: 17px;
    line-height: 27px;
    font-weight: 700;
    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%;
    right: 40px;
    width: 20px;
    height: 20px;
    color: var(--thm-black);
    font-size: 18px;
    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;
    font-size: 20px;
    font-family: 'icomoon' !important;
    font-weight: 700;
    margin: 0px;
    content: "\e92d";
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding-top: 30px;
    padding-left: 40px;
    padding-bottom: 34px;
    padding-right: 40px;
    border-top: 1px solid #bdc0c2;
}

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

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


/***
=============================================
About Three
=============================================
***/

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

.about-three__img {
    position: absolute;
    top: 0;
    left: 60%;
    bottom: 122px;
    right: 0;
    background-position: top right;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
}

.about-three__content {
    position: relative;
    display: block;
    margin-right: -70px;
}

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

.about-three__content-text1 {
    position: relative;
    display: block;
}

.about-three__content-text1 p {
    margin: 0;
}

.about-three__content-text2 {
    position: relative;
    display: block;
    margin-top: 35px;
}

.about-three__content-text2-single {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 38px;
}

.about-three__content-text2-single .img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.about-three__content-text2-single .img-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    content: "";
    z-index: -1;
}

.about-three__content-text2-single .img-box img {
    width: auto;
}

.about-three__content-text2-single .content-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 40px;
}

.about-three__content-text2-single .content-box h2 {
    color: var(--thm-black);
    font-size: 27px;
    line-height: 37px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 11px;
}

.about-three__content-text2-single .content-box p {
    margin: 0;
}

.about-three__content-text3 {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 9px;
}

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

.about-three__content-text3 .btn-box .thm-btn {
    background: var(--thm-primary);
}

.about-three__content-text3 .btn-box .thm-btn::before {
    background: var(--thm-base);
}

.about-three__client-info-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.about-three__client-info-box .img-box {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.about-three__client-info-box .img-box img {
    width: 100%;
}

.about-three__client-info-box .title-box {
    position: relative;
    display: block;
    margin-left: 25px;
}

.about-three__client-info-box .title-box h3 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    text-transform: capitalize;
}

.about-three__client-info-box .title-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
}


/***
=============================================
Services Three
=============================================
***/

.services-three {
    position: relative;
    display: block;
    background-color: #eef0f6;
    padding: 420px 0 180px;
    z-index: 1;
}

.services-three__single {
    position: relative;
    display: block;
    padding: 65px 50px 55px;
    z-index: 1;
}

.services-three__single::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 95%);
    border-radius: 0px;
    content: "";
    z-index: -1;
}

.services-three__single-bg {
    position: absolute;
    left: 0;
    bottom: -60px;
    right: 0;
    background: var(--thm-base);
    border-radius: 0px;
    height: 200px;
    content: "";
    z-index: -2;
}

.services-three__single-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-primary);
    transform: scaleX(0.7) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 0;
    border-radius: 0px;
    content: "";
}

.services-three__single:hover .services-three__single-bg::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.services-three__single-inner {
    position: relative;
    display: block;
}

.services-three__single-inner .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--thm-base);
    margin: 0 auto 22px;
    z-index: 1;
}

.services-three__single-inner .icon-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-primary);
    transform: scale(0.5);
    opacity: 0;
    transition: all 400ms linear;
    transition-delay: 0.1s;
    border-radius: 50%;
    content: "";
    z-index: -1;
}

.services-three__single:hover .services-three__single-inner .icon-box::before {
    transform: scale(1);
    opacity: 1;
}

.services-three__single-inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 70px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-three__single:hover .services-three__single-inner .icon-box span::before {
    transform: scale(0.9);
}

.services-three__single-inner .content-box {
    position: relative;
    display: block;
}

.services-three__single-inner .content-box h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 11px;
}

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

.services-three__single-inner .content-box h2 a:hover {
    color: var(--thm-primary);
}

.services-three__single-inner .content-box p {
    margin: 0;
}

.services-three__single-inner .content-box .btn-box {
    position: relative;
    display: block;
    margin-top: 19px;
}

.services-three__single-inner .content-box .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #f1f1f5;
    margin: 0 auto;
}

.services-three__single-inner .content-box .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: #717178;
    font-size: 20px;
    font-weight: 700;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.services-three__single-inner .content-box .btn-box a:hover span::before {
    color: #ffffff;
}

.services-three__single-inner .content-box .btn-box a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background: var(--thm-primary);
    transform: scale(0.7);
    opacity: 0;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    content: "";
}

.services-three__single-inner .content-box .btn-box a:hover::before {
    transform: scale(1);
    opacity: 1;
}


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

.video-one {
    position: relative;
    display: block;
    margin-bottom: -300px;
    z-index: 2;
}

.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__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 250px 0px 250px;
    z-index: 1;
}

.video-one__inner .shape1 {
    position: absolute;
    top: 0;
    left: -55px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.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-primary);
    border-radius: 50%;
    margin: 0 auto;
}

.video-one__icon::before {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    content: "";
}

.video-one__inner .video-box .border-animation {
    position: absolute;
    top: -15px;
    left: -15px;
    bottom: -15px;
    right: -15px;
    border: 1px solid rgba(255, 255, 255, 1.0);
    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;
}


/***
=============================================
Work Process One
=============================================
***/

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

.work-process-one .shape1 {
    position: absolute;
    top: 160px;
    left: 0;
    right: 0;
    text-align: center;
}

.work-process-one__single {
    position: relative;
    display: block;
    margin-bottom: 40px;
    padding: 0px 20px 0px;
    z-index: 1;
}

.work-process-one__single.mt-100 {
    margin-top: 100px;
}

.work-process-one__single.mt-50 {
    margin-top: 50px;
}

.work-process-one__single .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
    border-radius: 10px;
    margin: 0 auto;
    z-index: 1;
}

.work-process-one__single .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 10px;
    background-color: var(--thm-primary);
    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;
}

.work-process-one__single:hover .icon-box::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.work-process-one__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;
}

.work-process-one__single:hover .icon-box span::before {
    color: #ffffff;
}

.work-process-one__single .content-box {
    position: relative;
    display: block;
    margin-top: 27px;
}

.work-process-one__single .content-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.02em;
    margin-bottom: 7px;
}

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

.work-process-one__single .content-box h3 a:hover {
    color: var(--thm-primary);
}

.work-process-one__single .content-box p {
    margin: 0;
}


/***
=============================================
Team Two
=============================================
***/

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

.team-two .auto-container {
    max-width: 1530px;
    width: 100%;
}

.team-two__single {
    position: relative;
    display: block;
    z-index: 1;
}

.team-two__single::before {
    position: absolute;
    top: 100px;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
    border-radius: 9px;
    content: "";
    z-index: -1;
}

.team-two__single::after {
    position: absolute;
    top: 100px;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    transform: scaleX(0.7) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 0;
    border-radius: 9px;
    content: "";
    z-index: -1;
}

.team-two__single:hover::after {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.team-two__single-img {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    max-width: 320px;
    width: 100%;
    z-index: 1;
}

.team-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(var(--thm-primary-rgb), 0.3);
    opacity: 0;
    z-index: 1;
    content: "";
}

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

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

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

.team-two__single-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 30px 23px;
}

.team-two__single-content .content-box {
    position: relative;
    display: block;
    line-height: 0;
}

.team-two__single-content .content-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
}

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

.team-two__single:hover .team-two__single-content .content-box h3 a {
    color: #ffffff;
}

.team-two__single-content .content-box span {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
}

.team-two__single:hover .team-two__single-content .content-box span {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-two__single-content .social-links {
    position: relative;
    display: block;
    z-index: 5;
}

.team-two__single-content .social-links li {
    position: relative;
    display: inline-block;
}

.team-two__single-content .social-links li.share {
    position: relative;
}

.team-two__single-content .social-links>li>a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--thm-black);
    border-radius: 5px;
    z-index: 1;
}

.team-two__single-content .social-links>li>a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-radius: 5px;
    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:hover .team-two__single-content .social-links>li>a::before {
    transform: scale(1.0);
    opacity: 1;
}

.team-two__single-content .social-links>li>a>span {
    position: relative;
    display: block;
}

.team-two__single-content .social-links>li>a>span::before {
    position: relative;
    display: inline-block;
    top: -1px;
    color: #ffffff;
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-two__single:hover .team-two__single-content .social-links>li>a span::before {
    color: var(--thm-base);
}

.team-two__single-content .social-links .share .social-links-inner {
    position: absolute;
    top: -160px;
    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-two__single-content .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-two__single-content .social-links .share .social-links-inner li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.team-two__single-content .social-links .share .social-links-inner li:last-child {
    margin-bottom: 0px;
}

.team-two__single-content .social-links .share .social-links-inner li a {
    position: relative;
    display: block;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    background: #ffffff;
    border-radius: 5px;
    z-index: 1;
}

.team-two__single-content .social-links .share .social-links-inner li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-primary);
    border-radius: 5px;
    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-content .social-links .share .social-links-inner li a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}

.team-two__single-content .social-links .share .social-links-inner li a i {
    position: relative;
    display: block;
}

.team-two__single-content .social-links .share .social-links-inner li a i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-two__single-content .social-links .share .social-links-inner li a:hover i::before {
    color: #ffffff;
}


/***
=============================================
Testimonial Three
=============================================
***/

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

.testimonial-three__single {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
    padding: 40px 40px 52px;
    border-radius: 15px;
    border-top-left-radius: 0px;
}

.testimonial-three__single-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonial-three__single-top .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 60px;
    z-index: 1;
}

.testimonial-three__single-top .icon-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    border-radius: 3px;
    content: "";
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew(-8deg, 0deg);
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew(-8deg, 0deg);
    z-index: -1;
}

.testimonial-three__single-top .icon-box span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    transform: rotate(180deg);
}

.testimonial-three__single-top .icon-box::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 0%;
    background: var(--thm-primary);
    -moz-transform: skew(-8deg, 0deg) scale(0.6);
    -webkit-transform: skew(-8deg, 0deg) scale(0.6);
    -o-transform: skew(-8deg, 0deg) scale(0.6);
    -ms-transform: skew(-8deg, 0deg) scale(0.6);
    transform: skew(-8deg, 0deg) scale(0.6);
    opacity: 0;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    content: "";
}

.testimonial-three__single:hover .testimonial-three__single-top .icon-box::after {
    opacity: 1;
    z-index: -1;
    -moz-transform: skew(-8deg, 0deg) scale(1.0);
    -webkit-transform: skew(-8deg, 0deg) scale(1.0);
    -o-transform: skew(-8deg, 0deg) scale(1.0);
    -ms-transform: skew(-8deg, 0deg) scale(1.0);
    transform: skew(-8deg, 0deg) scale(1.0);
}

.testimonial-three__single-text {
    position: relative;
    display: block;
    margin-bottom: 19px;
}

.testimonial-three__single-text p {
    font-size: 17px;
    line-height: 34px;
    margin: 0;
}

.testimonial-three__single-bottom {
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid #e2ddda;
    padding-top: 30px;
}

.testimonial-three__single-bottom .img-box {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    z-index: 1;
}

.testimonial-three__single-bottom .img-box .round-one {
    position: absolute;
    top: 0px;
    left: -12px;
    bottom: -12px;
    right: 0;
    border-radius: 50%;
    background: var(--thm-base);
    z-index: -2;
}

.testimonial-three__single-bottom .img-box .round-one::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background-image: -moz-linear-gradient(145deg, rgb(255, 94, 21) 1%, rgb(255, 94, 21) 6%, rgb(247, 150, 35) 100%);
    background-image: -webkit-linear-gradient(145deg, rgb(255, 94, 21) 1%, rgb(255, 94, 21) 6%, rgb(247, 150, 35) 100%);
    background-image: -ms-linear-gradient(145deg, rgb(255, 94, 21) 1%, rgb(255, 94, 21) 6%, rgb(247, 150, 35) 100%);
    opacity: 0;
    transform: scaleY(0.7) rotateY(0deg);
    transition: all 0.4s linear;
    opacity: 0;
    content: "";
}

.testimonial-three__single:hover .testimonial-three__single-bottom .img-box .round-one::before {
    opacity: 1;
    transform: scaleY(1.0) rotateY(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.testimonial-three__single-bottom .img-box .round-two {
    position: absolute;
    top: 0px;
    left: -7px;
    bottom: -7px;
    right: 0;
    border-radius: 50%;
    background: #ffffff;
    z-index: -1;
}

.testimonial-three__single-bottom .img-box .inner {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-three__single-bottom .img-box img {
    width: 100%;
}

.testimonial-three__single-bottom .client-info {
    position: relative;
    display: block;
    line-height: 0;
    margin-left: 15px;
}

.testimonial-three__single-bottom .client-info h4 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
}

.testimonial-three__single-bottom .client-info span {
    color: var(--thm-base);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    text-transform: capitalize;
}

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

.testimonial-three__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-three__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;
}


/***
=============================================
Portfolio Two
=============================================
***/

.portfolio-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 170px;
}

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

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

.portfolio-two__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.portfolio-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, 0.4);
    opacity: 0;
    z-index: 1;
    content: "";
}

.portfolio-two__single:hover .portfolio-two__single-img .inner::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;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 0;
    bottom: -50px;
    right: 0;
    width: 520px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 5px 8.66px 20px 0px rgb(130, 132, 134, 0.08);
    padding: 36px 40px 38px;
    border-radius: 3px;
    overflow: hidden;
    z-index: 3;
    -webkit-transform: perspective(400px) rotateX(40deg) scaleY(0.7);
    -ms-transform: perspective(400px) rotateX(40deg) scaleY(0.7);
    transform: perspective(400px) rotateX(40deg) scaleY(0.7);
    -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;
    opacity: 0;
}

.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;
    opacity: 1;
}

.portfolio-two__single-img .overlay-content .text-box {
    position: relative;
    display: block;
}

.portfolio-two__single-img .overlay-content h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    margin-bottom: 9px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(2rem);
    clip-path: inset(0 100% 0 0);
    transition: all 0.5s ease-in-out 0s;
    transition-delay: 0.5s;
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content h2 {
    text-transform: capitalize;
    visibility: visible;
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
}

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

.portfolio-two__single-img .overlay-content p {
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    opacity: 0;
    transform: translateY(10px);
    transition: all 700ms ease;
}

.portfolio-two__single:hover .portfolio-two__single-img .overlay-content p {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 900ms;
}

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

.portfolio-two__link a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--thm-primary);
    line-height: 0;
    border-radius: 50%;
    z-index: 1;
}

.portfolio-two__link 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: "";
}

.portfolio-two__link a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.portfolio-two__link a span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
}

.portfolio-two__carousel.owl-carousel {
    display: block;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

.portfolio-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0px;
}

.portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .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;
    opacity: 1;
}

.portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img .overlay-content h2 {
    text-transform: capitalize;
    visibility: visible;
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
}

.portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img .overlay-content p {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 900ms;
}

.portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img .inner::before {
    opacity: 1;
}

.portfolio-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .portfolio-two__single-img img {
    transform: scale(1);
}

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

.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: 50%;
    background-color: rgba(255, 255, 255, .8);
    color: var(--thm-black);
    font-size: 20px;
    outline: none;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.portfolio-two .owl-carousel .owl-nav button.owl-prev {
    float: left;
    left: -100px;
}

.portfolio-two .owl-carousel .owl-nav button.owl-prev span::before {
    position: relative;
    display: inline-block;
    transform: rotate(180deg);
    font-weight: 700;
    line-height: 55px;
}

.portfolio-two .owl-carousel .owl-nav button.owl-next span::before {
    font-weight: 700;
    line-height: 55px;
}

.portfolio-two .owl-carousel .owl-nav button.owl-next {
    float: right;
    right: -100px;
}

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


/***
=============================================
Brand Three
=============================================
***/

.brand-two.style3::before {
    left: 0px;
    border-radius: 0px;
}

.brand-two.style3 .swiper-slide img {
    opacity: 1.0;
}

.brand-two.style3 .swiper-slide {
    border: 1px solid rgba(255, 255, 255, 1.0);
}


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

.features-one--about {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
}


/***
=============================================
Pricing Plan One Services
=============================================
***/

.pricing-plan-one--services {
    position: relative;
    display: block;
    padding: 0px 0px 90px;
}


/***
=============================================
Services Details
=============================================
***/

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

.services-details__content {
    position: relative;
    display: block;
}

.services-details-img1 {
    position: relative;
    display: block;
    overflow: hidden;
}

.services-details-img1 img {
    width: 100%;
}

.services-details-text1 {
    position: relative;
    display: block;
    margin-top: 45px;
}

.services-details-text1 h2 {
    color: var(--thm-black);
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.services-details-text1 .text1 {
    margin: 0;
    margin-bottom: 15px;
}

.services-details-text1 .text2 {
    margin: 0;
}

.services-details__list1 {
    position: relative;
    display: block;
    margin-top: 48px;
    padding-bottom: 1px;
}

.services-details__list1 li {
    position: relative;
    display: block;
    padding-left: 60px;
    margin-bottom: 28px;
}

.services-details__list1 li .icon-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -4px;
    left: 0;
    width: 40px;
    height: 40px;
    background: #f2f2f2;
    border-radius: 50%;
}

.services-details__list1 li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #8a8d97;
    font-size: 15px;
}

.services-details__list1 li .text-box {
    position: relative;
    display: block;
}

.services-details__list1 li .text-box p {
    margin: 0;
}

.services-details-text2 {
    position: relative;
    display: block;
    margin-top: 6px;
}

.services-details-text2 p {
    margin: 0;
}

.services-details-text2 ul {
    position: relative;
    display: block;
    margin-top: 30px;
}

.services-details-text2 ul li {
    position: relative;
    display: block;
    margin-bottom: 13px;
}

.services-details-text2 ul li:last-child {
    margin-bottom: 0px;
}

.services-details-text2 ul li p {
    position: relative;
    padding-left: 25px;
}

.services-details-text2 ul li p::before {
    position: absolute;
    top: 11px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #bfc2c3;
    border-radius: 50%;
    content: "";
}

.services-details__video {
    position: relative;
    display: block;
    margin-top: 44px;
}

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

.services-details__video .img-box img {
    width: 100%;
}

.services-details__video .video-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

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

.services-details__video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--thm-base);
}

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

.services-details-text3 {
    position: relative;
    display: block;
    margin-top: 30px;
}

.services-details-text3 .text1 {
    margin: 0;
    margin-bottom: 15px;
}

.services-details-text3 .text2 {
    margin: 0;
}

.services-details-text4 {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.services-details-text4 .img-box {
    position: relative;
    display: block;
}

.services-details-text4 .img-box img {
    width: 100%;
}

.services-details-text4 .content-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 30px;
}

.services-details-text4 .content-box p {
    margin: 0;
}

.services-details-text4 .content-box ul {
    position: relative;
    display: block;
    margin-top: 33px;
}

.services-details-text4 .content-box ul li {
    position: relative;
    display: block;
    padding-left: 60px;
    margin-bottom: 28px;
}

.services-details-text4 .content-box ul li .icon-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -4px;
    left: 0;
    width: 40px;
    height: 40px;
    background: #f2f2f2;
    border-radius: 50%;
}

.services-details-text4 .content-box ul li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #8792a1;
    font-size: 15px;
}

.services-details-text4 .content-box ul li .text-box {
    position: relative;
    display: block;
}

.services-details-text4 .content-box ul li .text-box p {
    margin: 0px;
}

.services-details-text5 {
    position: relative;
    display: block;
    padding-top: 32px;
    margin-bottom: 39px;
}

.services-details-text5 p {
    margin: 0;
}

.services-details-text5 ul {
    position: relative;
    display: block;
    margin-top: 15px;
}

.services-details-text5 ul li {
    position: relative;
    display: block;
    margin-bottom: 13px;
}

.services-details-text5 ul li:last-child {
    margin-bottom: 0px;
}

.services-details-text5 ul li p {
    position: relative;
    padding-left: 25px;
}

.services-details-text5 ul li p::before {
    position: absolute;
    top: 11px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #bfc2c3;
    border-radius: 50%;
    content: "";
}

.services-details-text6 {
    position: relative;
    display: block;
    border-top: 1px solid #c9d5db;
    padding-top: 47px;
}

.services-details-text6-single {
    position: relative;
    display: flex;
    align-items: center;
}

.services-details-text6-single .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: #edf3f6;
}

.services-details-text6-single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 30px;
}

.services-details-text6-single .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 15px;
}

.services-details-text6-single .text-box p {
    margin: 0;
}

.services-details__accordion {
    position: relative;
    display: block;
    margin-top: 47px;
}

.services-details__accordion .tabs-content__content-accordion {
    margin-left: 0px;
}


/***
=============================================
Services Details Sidebar
=============================================
***/

.services-details__sidebar {
    position: relative;
    display: block;
}

.services-details__sidebar-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.services-details__sidebar-single .title-box {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.services-details__sidebar-single .title-box h2 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

.sidebar__search {
    position: relative;
    display: block;
    background-color: #f1f3f2;
    padding: 42px 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: 15px;
    font-weight: 500;
    padding-left: 20px;
    height: 65px;
    width: 100%;
    padding-right: 40px;
    border-radius: 0px;
}

.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: transparent;
    color: #7e828c;
    font-size: 15px;
    position: absolute;
    top: 0px;
    right: 30px;
    bottom: 0px;
    width: 0px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
    color: var(--thm-base);
}

.sidebar__category {
    position: relative;
    display: block;
    background-color: #f1f3f2;
    padding: 42px 30px 50px;
}

.sidebar__category-list {
    position: relative;
    display: block;
}

.sidebar__category-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.sidebar__category-list li:last-child {
    margin-bottom: 0px;
}

.sidebar__category-list li a {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 17px;
    line-height: 27px;
    font-weight: 700;
    text-transform: capitalize;
    background: #ffffff;
    padding: 18px 25px 17px;
    z-index: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__category-list li a:hover,
.sidebar__category-list li a.active {
    color: #ffffff;
}

.sidebar__category-list li a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
    opacity: 1;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    background: var(--thm-base);
    border-radius: 0px;
}

.sidebar__category-list li a:hover::before,
.sidebar__category-list li a.active::before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.sidebar__category-list li a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 22px;
    font-weight: 700;
    top: 3px;
    float: right;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

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

.sidebar__question-form {
    position: relative;
    display: block;
    background-color: #f1f3f2;
    padding: 42px 30px 50px;
}

.sidebar__question-form .input-box {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.sidebar__question-form .input-box .icon {
    position: absolute;
    top: 18px;
    right: 20px;
}

.sidebar__question-form .input-box .icon span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--thm-base);
}

.sidebar__question-form .input-box input[type="text"],
.sidebar__question-form .input-box input[type="email"],
.sidebar__question-form .input-box textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 0px solid #eeeeee;
    width: 100%;
    height: 65px;
    color: var(--thm-gray);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    padding: 0 20px;
    padding-right: 45px;
    border-radius: 5px;
    transition: all 500ms ease;
    outline: none;
}

.sidebar__question-form .input-box textarea {
    height: 125px;
    padding: 20px 20px;
    padding-right: 45px;
    resize: none;
}

.sidebar__question-form .button-box {
    position: relative;
    display: block;
    padding-top: 5px;
}

.sidebar__question-form .button-box button {
    outline: none;
    border: none;
}

.sidebar__contact-box {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 42px 50px 50px;
}

.sidebar__contact-box h2 {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.sidebar__contact-box p {
    color: rgba(255, 255, 255, .7);
}

.sidebar__contact-box .number-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 29px;
}

.sidebar__contact-box .number-box .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.sidebar__contact-box .number-box .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
}

.sidebar__contact-box .number-box .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.sidebar__contact-box .number-box .text-box a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__contact-box .number-box .text-box a:hover {
    color: var(--thm-primary);
}


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

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


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

.banefits-two--team {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 45px;
}


/***
=============================================
Job One
=============================================
***/

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

.job-one__bg {
    position: absolute;
    top: 0;
    left: 55%;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
}

.job-one__content {
    position: relative;
    display: block;
}

.job-one__content .title {
    position: relative;
    display: block;
    margin-bottom: 37px;
}

.job-one__content .title h2 {
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
}

.job-one__content .text-box {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

.job-one__content .text-box p {
    margin: 0;
}

.job-one__list {
    position: relative;
    display: block;
}

.job-one__list li {
    position: relative;
    display: block;
    padding-left: 60px;
    margin-bottom: 28px;
}

.job-one__list li .icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -4px;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--thm-base);
}

.job-one__list li .icon span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
}

.job-one__list li .text {
    position: relative;
    display: block;
}

.job-one__list li .text p {
    margin: 0;
}

.job-one__btn {
    position: relative;
    display: block;
    padding-top: 26px;
    line-height: 0;
}


/***
=============================================
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: #f1f3f2;
    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: 38px;
}

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

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

.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: 16px;
    line-height: 26px;
    font-weight: 600;
    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: 16px;
    line-height: 26px;
    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: 47px;
    line-height: 0;
}


/***
=============================================
Team Details Middle
=============================================
***/

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

.team-details__middle__bg {
    position: absolute;
    top: 120px;
    left: 55%;
    bottom: 120px;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.team-details__middle-content {
    position: relative;
    display: block;
}

.team-details__middle-content .title {
    position: relative;
    display: block;
    margin-bottom: 42px;
}

.team-details__middle-content .title h2 {
    color: var(--thm-black);
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-transform: capitalize;
}

.team-details__middle-content .text-box {
    position: relative;
    display: block;
}

.team-details__middle-content .text-box p {
    margin: 0;
}

.team-details__middle-content-list {
    position: relative;
    display: block;
    margin-top: 37px;
}

.team-details__middle-content-list li {
    position: relative;
    display: block;
    padding-left: 100px;
    margin-bottom: 33px;
}

.team-details__middle-content-list li:last-child {
    margin-bottom: 0;
}

.team-details__middle-content-list li .icon-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 7px;
    left: 0;
    width: 80px;
    height: 80px;
    background: var(--thm-base);
    border-radius: 50%;
    border: 6px solid #ffffff;
    box-shadow: 0px 2px 20px 0px rgb(9, 24, 84, 0.08);
}

.team-details__middle-content-list li .icon-box span::before {
    color: #ffffff;
    font-size: 30px;
}

.team-details__middle-content-list li .content-box {
    position: relative;
    display: block;
}

.team-details__middle-content-list li .content-box h2 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 11px;
}

.team-details__middle-content-list li .content-box p {
    margin: 0;
}


/***
=============================================
Portfolio Three
=============================================
***/

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

.portfolio-three__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

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

.portfolio-three__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

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

.portfolio-three__single:hover .portfolio-three__single-img .inner::before {
    opacity: 1;
}

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

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

.portfolio-three__single-img .inner .overlay-content {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 320px;
    padding: 25px 20px 17px;
    padding-right: 0;
    z-index: 1;
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.portfolio-three__single:hover .portfolio-three__single-img .inner .overlay-content {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.portfolio-three__single-img .inner .overlay-content::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0%, 84% 100%, 0 100%);
    content: "";
    z-index: -1;
}

.portfolio-three__single-img .inner .overlay-content .text-box {
    position: relative;
    display: block;
}

.portfolio-three__single-img .inner .overlay-content .text-box span {
    position: relative;
    display: inline-block;
    background: #f3f3f5;
    border-radius: 5px;
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 7px 20px 7px;
    margin-bottom: 7px;
}

.portfolio-three__single-img .inner .overlay-content .text-box h2 {
    font-size: 23px;
    line-height: 32px;
    font-weight: 700;
}

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

.portfolio-three__single-img .inner .overlay-content .text-box h2 a:hover {
    color: var(--thm-primary);
}

.portfolio-three__single-img .inner .overlay-content .btn-box {
    position: relative;
    display: block;
}

.portfolio-three__single-img .inner .overlay-content .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--thm-base);
    z-index: 1;
}

.portfolio-three__single-img .inner .overlay-content .btn-box a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-primary);
    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;
    z-index: -1;
}

.portfolio-three__single-img .inner .overlay-content .btn-box a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}

.portfolio-three__single-img .inner .overlay-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
}


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

.portfolio-one--project {
    position: relative;
    display: block;
    padding: 90px 0px 90px;
}


/***
=============================================
Appointment Page
=============================================
***/

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

.appointment-page__bg {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
}

.appointment-page__form {
    position: relative;
    display: block;
    background: #f2f2f2;
    padding: 88px 70px 100px;
}

.appointment-page__form .title {
    position: relative;
    display: block;
    margin-bottom: 47px;
}

.appointment-page__form .title h2 {
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    text-transform: capitalize;
}

.appointment-page__form .form-group {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.appointment-page__form .form-group input[type="text"],
.appointment-page__form .form-group input[type="email"],
.appointment-page__form .form-group textarea {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 65px;
    border: 1px solid #e8e7e7;
    color: #707480;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    transition: all 500ms ease;
    font-family: var(--thm-font-2);
    outline: none;
}

.appointment-page__form .form-group input[type="text"]::-webkit-input-placeholder {
    color: #707480;
}

.appointment-page__form .form-group input[type="text"]:-moz-placeholder {
    color: #707480;
}

.appointment-page__form .form-group input[type="text"]::-moz-placeholder {
    color: #707480;
}

.appointment-page__form .form-group input[type="text"]:-ms-input-placeholder {
    color: #707480;
}

.appointment-page__form .form-group input[type="email"]::-webkit-input-placeholder {
    color: #707480;
}

.appointment-page__form .form-group input[type="email"]:-moz-placeholder {
    color: #707480;
}

.appointment-page__form .form-group input[type="email"]::-moz-placeholder {
    color: #707480;
}

.appointment-page__form .form-group input[type="email"]:-ms-input-placeholder {
    color: #707480;
}

.appointment-page__form .form-group textarea::-webkit-input-placeholder {
    color: #707480;
}

.appointment-page__form .form-group textarea:-moz-placeholder {
    color: #707480;
}

.appointment-page__form .form-group textarea::-moz-placeholder {
    color: #707480;
}

.appointment-page__form .form-group textarea:-ms-input-placeholder {
    color: #707480;
}

.appointment-page__form .form-group textarea {
    height: 180px;
    resize: none;
    padding-top: 14px;
}

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

.appointment-page__form .form-group .nice-select {
    background: #ffffff;
    width: 100%;
    height: 65px;
    line-height: 65px;
    border: 1px solid #e8e7e7;
    color: #707480;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
}

.appointment-page__form .form-group .nice-select:after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #707480;
    border-right: 2px solid #707480;
    right: 20px;
    margin-top: 0px;
    top: 25px;
    z-index: 10;
}

.appointment-page__form .form-group .nice-select .list {
    background-color: var(--thm-base);
    color: #ffffff;
}

.appointment-page__form .button-box {
    position: relative;
    display: block;
    margin-top: 15px;
}


/***
=============================================
Shop Page
=============================================
***/

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

.shop-page__top {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.shop-page__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-page__top-inner .left {
    position: relative;
    display: flex;
    align-items: center;
}

.shop-page__top-inner .left .left_icon {
    position: relative;
    display: flex;
    align-items: center;
}

.shop-page__top-inner .left .left_icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #f2f2f2;
    color: #262c48;
    font-size: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.shop-page__top-inner .left .left_icon a:hover,
.shop-page__top-inner .left .left_icon a.active {
    color: #ffffff;
    background: var(--thm-base);
}

.shop-page__top-inner .left .left_icon a+a {
    margin-left: 15px;
}

.shop-page__top-inner .left .left_text {
    position: relative;
    display: block;
    margin-left: 35px;
}

.shop-page__top-inner .left .left_text p {
    color: #6c6c6c;
    font-size: 16px;
    line-height: 26px;
}

.shop-page__top-inner .right {
    position: relative;
    display: block;
}

.shop-page__top-inner .right .shorting {
    position: relative;
    display: block;
}

.shop-page__top-inner .right .shorting .select-box {
    width: 250px;
}

.shop-page__top-inner .right .shorting .nice-select {
    background: #f3f3f3;
    width: 100%;
    height: 55px;
    line-height: 55px;
    border: 0px solid #6c6c6c;
    color: #6c6c6c;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
}

.shop-page__top-inner .right .shorting .nice-select:after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #6c6c6c;
    border-right: 2px solid #6c6c6c;
    right: 20px;
    margin-top: 0px;
    top: 22px;
    z-index: 10;
}

.shop-page__top-inner .right .shorting .nice-select .list {
    background-color: var(--thm-base);
    color: #ffffff;
}

.shop-page__content {
    position: relative;
    display: block;
}

.shop-page__content .poroduct-one__single-img .inner {
    background: #f2f2f2;
}

.shop-page__content .styled-pagination {
    padding-top: 30px;
}

.shop-page__sidebar {
    position: relative;
    display: block;
}

.shop-page__sidebar-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.shop-page__sidebar-single .title-box {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.shop-page__sidebar-single .title-box h2 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

.shop-page__sidebar-single.sidebar__search {
    background-color: #f2f2f2;
}

.shop-page__sidebar-single.sidebar__category {
    background-color: #f2f2f2;
}

.sidebar__product {
    position: relative;
    display: block;
    background-color: #f2f2f2;
    padding: 42px 30px 50px;
}

.sidebar__product-list {
    position: relative;
    display: block;
}

.sidebar__product-list>li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

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

.sidebar__product-list li .img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: #ffffff;
}

.sidebar__product-list li .img-box img {
    width: auto;
}

.sidebar__product-list li .content-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.sidebar__product-list li .content-box .rating-box ul li span {
    color: var(--thm-primary);
}

.sidebar__product-list li .content-box h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 8px;
    margin-bottom: 1px;
}

.sidebar__product-list li .content-box h4 a {
    color: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__product-list li .content-box h4 a:hover {
    color: var(--thm-primary);
}

.sidebar__product-list li .content-box p {
    color: #707480;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

.sidebar__tags {
    position: relative;
    display: block;
    background-color: #f2f2f2;
    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: var(--thm-gray);
    font-size: 13px;
    font-weight: 500;
    background: #ffffff;
    padding: 3px 25px;
    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);
}


/***
=============================================
Shop Page
=============================================
***/

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

.shop-details__img-box {
    position: relative;
    display: block;
    margin-right: 40px;
}

.shop-details__img-box-inner {
    position: relative;
    display: block;
}

.shop-details__img-box-thumb {
    position: absolute;
    bottom: -132px;
    left: 0;
    right: 0;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

.shop-details__img-box-thumb-img {
    position: relative;
    display: block;
}

.shop-details__img-box-thumb-img::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background: var(--alori-base);
    transform: scaleX(0);
    opacity: 0;
    transition: all 500ms linear;
    transition-delay: 0.5s;
    content: "";
}

#shop-details-one__thumb .swiper-slide-thumb-active .shop-details__img-box-thumb-img::before {
    transform: scaleX(1.0);
    opacity: 1;
}

.shop-details__img-box-thumb-img img {
    width: 100%;
}

.shop-details__img-box-img .img-box {
    position: relative;
    display: block;
}

.shop-details__img-box-img .img-box img {
    width: 100%;
}

.shop-details__img-box-img .img-box .overlay-content {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 65px;
    height: 30px;
    background: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-details__img-box-img .img-box .overlay-content p {
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.shop-details-top__nav {
    width: 100%;
    max-width: 100%;
    position: absolute;
    left: 50%;
    bottom: -90px;
    z-index: 5;
    transform: translateY(0%) translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-details-top__nav .swiper-button-next,
.shop-details-top__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 5;
    width: 40px;
    height: 40px;
    background: #f1f3f2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #353535;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
}

.shop-details-top__nav .swiper-button-next i:before,
.shop-details-top__nav .swiper-button-prev i:before {
    font-weight: 700;
}

.shop-details-top__nav .swiper-button-next {
    left: 0px;
}

.shop-details-top__nav .swiper-button-prev {
    right: 0px;
}

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

.shop-details-top__nav .swiper-button-next::after,
.shop-details-top__nav .swiper-button-prev::after {
    display: none;
}

.shop-details-top__nav .swiper-button-prev .angle-left {
    position: relative;
    transform: rotate(0deg);
}

.shop-details__content {
    position: relative;
    display: block;
    margin-top: -8px;
}

.shop-details__content-top {
    position: relative;
    display: block;
}

.shop-details__content-top h2 {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}

.shop-details__content-top h2 del {
    position: relative;
    display: inline-block;
    top: -3px;
    color: #74787c;
    font-size: 14px;
    font-weight: 300;
    margin-right: 8px;
}

.shop-details__content-reveiw {
    position: relative;
    display: block;
    margin-top: 7px;
}

.shop-details__content-reveiw i:before {
    position: relative;
    display: inline-block;
    color: #fe9a24;
    font-size: 15px;
}

.shop-details__content-reveiw .left {
    position: relative;
    display: inline-block;
    color: #74787c;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin-right: 5px;
}

.shop-details__content-reveiw .right {
    position: relative;
    display: inline-block;
    color: #74787c;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin-left: 11px;
    padding-left: 14px;
}

.shop-details__content-reveiw .right::before {
    position: absolute;
    top: 4px;
    left: 0;
    bottom: 4px;
    width: 1px;
    background: #707070;
    content: "";
}

.shop-details__countdown {
    position: relative;
    display: block;
    margin-top: 19px;
}

.shop-details__countdown .timer-box {
    position: relative;
    display: block;
}

.countdown-timer .default-coundown .box {
    position: relative;
    display: block;
}

.shop-details__countdown .countdown-timer li {
    position: relative;
    display: inline-block;
    float: none;
    padding: 0;
    text-align: center;
    margin: 0px 5px 0px;
}

.shop-details__countdown .countdown-timer li:first-child {
    margin-left: 0;
}

.shop-details__countdown .countdown-timer li:last-child {
    margin-right: 0;
}

.shop-details__countdown .countdown-timer li span.days,
.shop-details__countdown .countdown-timer li span.hours,
.shop-details__countdown .countdown-timer li span.minutes,
.shop-details__countdown .countdown-timer li span.seconds {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    color: #fff;
    font-size: 25px;
    line-height: 51px;
    text-align: center;
    border-radius: 0px;
    background-color: var(--thm-base);
    font-weight: 600;
}

.shop-details__countdown .countdown-timer li span.timeRef {
    position: absolute;
    bottom: 9px;
    left: 50%;
    color: #ffffff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    text-align: center;
    transform: translateX(-50%);
}

.shop-details__content-text {
    position: relative;
    display: block;
    margin-top: 16px;
}

.shop-details__content-text h2 {
    color: var(--thm-black);
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.shop-details__content-text p {
    margin: 0;
}

.shop-details__content-bottom {
    position: relative;
    display: block;
}

.shop-details__content-bottom-color {
    position: relative;
    display: block;
    margin-top: 17px;
}

.shop-details__content-bottom-color h4 {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
}

.shop-details__content-bottom-color ul {
    position: relative;
    display: block;
    margin-top: -4px;
}

.shop-details__content-bottom-color ul li {
    position: relative;
    display: inline-block;
    margin-left: 31px;
}

.shop-details__content-bottom-color ul li:first-child {
    margin-left: 0;
}

.shop-details__content-bottom-color ul li label {
    position: relative;
    display: inline-block;
}

.shop-details__content-bottom-color ul li input[type="checkbox"] {
    display: none;
}

.shop-details__content-bottom-color ul li input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 0px;
    left: 0;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    background: #d00e1c;
    cursor: pointer;
    border-radius: 50%;
    transition: all 300ms ease;
}

.shop-details__content-bottom-color ul li input[type="checkbox"]+label span.clr2 {
    background: #5fabab;
}

.shop-details__content-bottom-color ul li input[type="checkbox"]+label span.clr3 {
    background: #b88b8e;
}

.shop-details__content-bottom-color ul li input[type="checkbox"]+label span.clr4 {
    background: #323131;
}

.shop-details__content-bottom-color ul li label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'icomoon' !important;
    content: "\e90f";
    transform: scale(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;
}

.shop-details__content-bottom-color ul li input[type="checkbox"]:checked+label span {
    border-color: rgba(var(--thm-gray-rgb), 0.5);
}

.shop-details__content-bottom-color ul li input[type="checkbox"]:checked+label span:before {
    transform: scale(1.0);
}


/***
=============================================
Poroduct One Shop
=============================================
***/

.poroduct-one--shop {
    position: relative;
    display: block;
    padding: 120px 0px 80px;
    margin-top: 0;
}


/***
=============================================
Blog Page
=============================================
***/

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

.blog-page__content {
    position: relative;
    display: block;
}

.blog-page__content .blog-one__single-img .date-box {
    left: auto;
    right: 70px;
}

.blog-page__content .blog-one__single__content {
    box-shadow: none;
    padding: 40px 0px 0px;
    padding-right: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.blog-page__content .blog-one__single-img .inner {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.blog-page__content .blog-one__single__content h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 21px;
}

.blog-page__content .blog-one__single__content p {
    margin: 0;
    margin-bottom: 0px;
}

.blog-page__content .blog-one__single__content .text2 {
    margin: 0;
    margin-bottom: 0px;
    margin-top: 4px;
}

.blog-page__content .blog-one__single__content .bottom-box {
    position: relative;
    display: block;
    border-top: 0px solid #e4e4ea;
    padding-top: 0px;
    margin-top: 18px;
}

.blog-page__content .blog-one__single__content .bottom-box .read-more-btn a {
    text-transform: uppercase;
}

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

.blog-page__content .blog-one__single__content .bottom-box .read-more-btn a:hover span:before {
    color: var(--thm-base);
}

.blog-page__content .styled-pagination {
    padding-top: 30px;
}

.shop-details__content-bottom-size-box {
    position: relative;
    display: block;
    margin-top: 27px;
}

.shop-details__content-bottom-size-box h4 {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.select-size-box {
    margin: 0 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.select-size-box li {
    position: relative;
    display: inline-block;
    padding: 0 5px 0px;
}

.select-size-box li:first-child {
    padding-left: 0;
}

.select-size-box li:last-child {
    padding-right: 0;
}

.select-size-box li input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.select-size-box li label {
    position: relative;
    display: block;
    height: 25px;
    width: 30px;
    background-color: #ffffff;
    color: #74787c;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
    border-radius: 0px;
    border: 1px solid #e9e9e9;
    cursor: pointer;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.select-size-box li :checked+label {
    color: #858585;
    background-color: #ffffff;
    border: 1px solid #858585;
    box-shadow: none;
}

.select-size-box li input[type="text"] {
    position: relative;
    display: block;
    height: 25px;
    width: 30px;
    background-color: #ffffff;
    color: #74787c;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
    border-radius: 0px;
    border: 1px solid #e9e9e9;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.select-size-box li input[type="text"]::-webkit-input-placeholder {
    color: #74787c;
}

.select-size-box li input[type="text"]:-moz-placeholder {
    color: #74787c;
}

.select-size-box li input[type="text"]::-moz-placeholder {
    color: #74787c;
}

.select-size-box li input[type="text"]:-ms-input-placeholder {
    color: #74787c;
}

.shop-details__content-bottom-checked-box {
    position: relative;
    display: block;
    min-height: 30px;
    margin-top: 24px;
}

.shop-details__content-bottom-checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 35px;
    margin-right: 0px;
    margin-bottom: 0;
    color: #74787c;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    min-height: 30px;
    font-family: var(--thm-font);
}

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

.shop-details__content-bottom-checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #74787c;
    border-radius: 0%;
    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;
}

.shop-details__content-bottom-checked-box label span:before {
    position: absolute;
    top: 4px;
    left: 5px;
    display: block;
    border-bottom: 2px solid #74787c;
    border-right: 2px solid #74787c;
    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;
}

.shop-details__content-bottom-checked-box input[type="checkbox"]:checked+label span {
    border-color: #74787c;
}

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

.shop-details__product-quantity {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 31px;
}

.shop-details__product-quantity-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 1px;
    border: 1px solid #dddddd;
    width: 152px;
}

.shop-details__product-quantity-box .input-group.bootstrap-touchspin {
    position: relative;
    width: 150px;
    height: 60px;
}

.shop-details__product-quantity-box input.quantity-spinner.form-control {
    position: relative;
    display: block;
    padding: 0;
    width: 50px;
    flex: none;
    height: 60px;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    margin: 0 auto;
    text-align: center;
    border: none;
    font-family: var(--thm-font);
    z-index: 5;
    left: 50px;
}

.shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    right: 0;
    width: 100%;
}

.shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn {
    position: relative;
    display: block;
    margin-left: 0px;
    background: #f1f3f2;
    color: var(--thm-black);
    cursor: pointer;
    height: 60px;
    width: 50px;
    margin: 0;
    padding: 0;
}

.shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
    border-radius: 0;
    float: right;
    border-left: none;
}

.shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    border-radius: 0;
    float: left;
    border-right: none;
}

.shop-details__product-quantity-box .form-control {
    background: #f1f3f2;
}

.shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-up:before {
    position: absolute;
    top: 11px;
    left: 0px;
    right: 10px;
    width: 100%;
    height: 100%;
    font-family: 'icomoon' !important;
    content: "\e945";
    color: var(--thm-black);
    font-size: 15px;
    padding: 0;
    line-height: 60px;
    width: 35px;
    height: 35px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    transform: rotate(90deg);
}

.shop-details__product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-down:before {
    position: absolute;
    top: 11px;
    left: 10px;
    width: 100%;
    height: 100%;
    font-family: 'icomoon' !important;
    content: "\e946";
    color: var(--thm-black);
    font-size: 15px;
    padding: 0;
    line-height: 60px;
    width: 35px;
    height: 35px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: rotate(90deg);
    font-weight: 700;
}

.shop-details__product-quantity .btn-box1 {
    position: relative;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
}

.shop-details__product-quantity .btn-box1 a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    background: var(--thm-base);
    padding: 19px 50px 17px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.shop-details__product-quantity .btn-box1 a:hover {
    background: var(--thm-primary);
}

.shop-details__product-quantity .btn-box1 a span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    top: 1px;
    margin-right: 5px;
}

.shop-details__product-quantity .btn-box2 {
    position: relative;
    display: block;
}

.shop-details__product-quantity .btn-box2 a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    background: var(--thm-black);
    padding: 17px 18px 13px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.shop-details__product-quantity .btn-box2 a:hover {
    background: var(--thm-primary);
}

.shop-details__product-quantity .btn-box2 a+a {
    margin-left: 6px;
}


/***
=============================================
Shop Details Tab
=============================================
***/

.shop-details__tab {
    position: relative;
    display: block;
    margin-top: 120px;
}

.shop-details__tab-button {
    position: relative;
    display: block;
    background: #ffffff;
}

.shop-details__tab-button .tab-buttons {
    position: relative;
    display: block;
}

.shop-details__tab-button .tab-buttons li {
    position: relative;
    display: inline-block;
    background: #e9efec;
    cursor: pointer;
    padding: 13px 45px 13px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.shop-details__tab-button .tab-buttons li:hover,
.shop-details__tab-button .tab-buttons li.active-btn {
    background: var(--thm-base);
}

.shop-details__tab-button .tab-buttons li h4 {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.shop-details__tab-button .tab-buttons li:hover h4,
.shop-details__tab-button .tab-buttons li.active-btn h4 {
    color: #ffffff;
}

.shop-details__tab-content-item {
    position: relative;
    display: block;
    border: 1px solid #dddddd;
}

.shop-details__tab .tabs-content .tab {
    position: absolute;
    left: 0px;
    top: 0px;
    display: none;
    opacity: 1;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 1;
}

.shop-details__tab .tabs-content .tab.active-tab {
    position: relative;
    display: block;
    opacity: 1.0;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    z-index: 5;
}

.shop-details__tab-description {
    position: relative;
    display: block;
    padding: 36px 45px 55px;
}

.shop-details__tab-description .text-box1 {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.shop-details__tab-description .text-box1 p {
    margin: 0;
}

.shop-details__tab-description .text-box2 {
    position: relative;
    display: block;
}

.shop-details__tab-description .text-box2 p {
    margin: 0;
}

.shop-details__tab-specifications {
    position: relative;
    display: block;
    padding: 36px 45px 55px;
}

.shop-details__tab-specifications .text-box1 {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.shop-details__tab-specifications .text-box1 p {
    margin: 0px;
}

.shop-details__tab-specifications .text-box2 {
    position: relative;
    display: block;
}

.shop-details__tab-specifications .text-box2 p {
    margin: 0;
}

.shop-details__tab-content-item.style2 {
    position: relative;
    display: block;
    padding: 50px 40px 50px;
}

.shop-details__tab-reviews {
    position: relative;
    display: block;
}

.review-box-outer {
    position: relative;
    display: block;
}

.single-review-box-outer {
    position: relative;
    display: block;
    background: #f5f5f5;
    padding: 38px 30px 34px;
}

.single-review-box {
    position: relative;
    display: block;
    padding-left: 70px;
    min-height: 70px;
}

.single-review-box .img-box {
    position: absolute;
    top: 9px;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.single-review-box .img-box img {
    width: 100%;
    border-radius: 50%;
}

.single-review-box .text-box {
    position: relative;
    display: block;
    padding-left: 25px;
}

.single-review-box .text-box .review-box {
    position: relative;
    display: block;
}

.single-review-box .text-box .review-box ul {
    position: relative;
    display: block;
}

.single-review-box .text-box .review-box ul li {
    position: relative;
    display: inline-block;
}

.single-review-box .text-box .review-box ul li i:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
}

.single-review-box .text-box .review-box {
    padding: 0 0 10px;
}

.single-review-box .text-box h3 {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 6px;
}

.single-review-box .text-box h5 span {
    color: #757575;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
}

.single-review-box .text-box p {
    margin: 0;
}

.review-form {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 53px 60px 60px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
    margin-top: 60px;
}

.review-form .title-box {
    position: relative;
    display: block;
    padding-bottom: 24px;
}

.review-form .title-box h2 {
    font-size: 30px;
    font-weight: 600;
}

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

.review-form .add-rating-box .add-rating-title {
    position: relative;
    float: left;
}

.review-form .add-rating-box .add-rating-title p {
    line-height: 20px;
    margin: 0;
}

.review-form .add-rating-box .review-box {
    position: relative;
    float: left;
    padding-left: 20px;
}

.review-form .add-rating-box .review-box ul li {
    position: relative;
    display: inline-block;
    float: left;
    line-height: 20px;
    margin-right: 5px;
}

.review-form .add-rating-box .review-box ul li:last-child {
    margin-right: 0px;
}

.review-form .add-rating-box .review-box ul li i {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 20px;
    transition: all 500ms ease 0s;
}

.shop-details__tab-reviews .review-form .input-box {
    position: relative;
    display: block;
}

.shop-details__tab-reviews .review-form .input-box .field-label {
    position: relative;
    display: block;
    padding-bottom: 9px;
    color: #757575;
}

.shop-details__tab-reviews .review-form form input[type="text"],
.shop-details__tab-reviews .review-form form input[type="email"],
.shop-details__tab-reviews .review-form form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 60px;
    border: 1px solid #e5e5e5;
    color: #757575;
    font-size: 16px;
    padding: 0 20px;
    margin-bottom: 22px;
    border-radius: 0px;
    transition: all 500ms ease;
    outline: none;
}

.shop-details__tab-reviews .review-form form textarea {
    height: 120px;
    padding: 10px 20px;
}

.shop-details__tab-reviews .review-form form input[type="text"]:focus {
    border-color: #e1dddd;
}

.shop-details__tab-reviews .review-form form input[type="email"]:focus {
    border-color: #e1dddd;
}

.shop-details__tab-reviews .review-form form textarea:focus {
    border-color: #e1dddd;
}

.shop-details__tab-reviews .review-form .button-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 35px;
}

.shop-details__tab-reviews .review-form .button-box .left {
    position: relative;
    display: block;
}

.shop-details__tab-reviews .review-form .button-box .left .thm-btn::before {
    z-index: -1;
}

.shop-details__tab-reviews .review-form .button-box .right {
    position: relative;
    display: block;
    padding-left: 20px;
}

.shop-details__content-bottom-checked-box.style2 {
    position: relative;
    display: block;
    margin-top: 0;
}


/***
=============================================
Brand Three
=============================================
***/

.brand-two.style3 {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}


/***
=============================================
Footer Three
=============================================
***/

.footer-one--three {
    position: relative;
    display: block;
}

.footer-one--three .footer-widget__single-blog-list li .text-box span {
    color: #000000;
}


/***
=============================================
Contact Two
=============================================
***/

.contact-one--two {
    position: relative;
    display: block;
    background: #f1f4f6;
    margin-top: 0px;
    padding: 0px 0px 90px;
    z-index: 2;
}

.contact-one--two.contact-one::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0%;
    background: var(--thm-black);
    content: "";
    z-index: -1;
}

.contact-one--two .contact-one__form {
    margin-left: 0px;
    max-width: 700px;
}

.contact-one--two__img {
    position: absolute;
    right: 100px;
    bottom: 0;
    z-index: -1;
}

.contact-one--two__img .inner {
    position: relative;
    display: block;
    clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0 100%, 0 30%);
}


/***
=============================================
Sidebar
=============================================
***/

.sidebar {
    position: relative;
    display: block;
}

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

.sidebar-single .title-box {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.sidebar-single .title-box h2 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

.sidebar__news {
    position: relative;
    display: block;
    background-color: #f1f3f2;
    padding: 42px 30px 50px;
}

.sidebar__news-list {
    position: relative;
    display: block;
    line-height: 0;
}

.sidebar__news-list li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

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

.sidebar__news-list li .img-box {
    position: relative;
    display: block;
}

.sidebar__news-list li .img-box img {
    width: 100%;
}

.sidebar__news-list li .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 15px;
    margin-top: -12px;
}

.sidebar__news-list li .text-box h4 {
    font-size: 15px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 11px;
}

.sidebar__news-list li .text-box h4 a {
    color: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__news-list li .text-box h4 a:hover {
    color: var(--thm-primary);
}

.sidebar__news-list li .text-box span {
    color: var(--thm-gray);
    font-size: 12px;
    font-weight: 500;
}

.sidebar__newsletter {
    position: relative;
    display: block;
    background-color: #f2f2f2;
    padding: 41px 30px 50px;
}

.sidebar__newsletter-form .input-box {
    position: relative;
    display: block;
}

.sidebar__newsletter-form .input-box input[type="email"] {
    position: relative;
    display: block;
    background: #ffffff;
    border: 0px solid #eeeeee;
    width: 100%;
    height: 60px;
    color: var(--thm-gray);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    padding: 0 20px;
    padding-right: 45px;
    border-radius: 0px;
    transition: all 500ms ease;
    outline: none;
}

.sidebar__newsletter-form .input-box .icon {
    position: absolute;
    top: 16px;
    right: 20px;
}

.sidebar__newsletter-form .input-box .icon span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--thm-base);
    font-weight: 700;
}

.sidebar__newsletter-form .button-box {
    position: relative;
    display: block;
    margin-top: 20px;
}

.sidebar__newsletter-form .button-box .thm-btn {
    width: 100%;
    border-radius: 0px;
}


/***
=============================================
    Google Map
=============================================
***/

.contact-page-google-map {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

.contact-page-google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 550px;
    width: 100%;
}


/***
=============================================
  Contact Page
=============================================
***/

.contact-page {
    position: relative;
    display: block;
    background: #f2f2f2;
    padding: 109px 0px 120px;
}

.contact-page__content {
    position: relative;
    display: block;
}

.contact-page__content .title {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.contact-page__content .title h2 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-transform: capitalize;
}

.contact-page__content-single {
    position: relative;
    display: block;
    margin-bottom: 39px;
}

.contact-page__content-single-inner {
    position: relative;
    display: block;
    padding-left: 70px;
}

.contact-page__content-single-inner .icon-box {
    position: absolute;
    top: 8px;
    left: 0;
    color: var(--thm-base);
    font-size: 45px;
}

.contact-page__content-single-inner .content-box {
    position: relative;
    display: block;
}

.contact-page__content-single-inner .content-box h2 {
    font-size: 27px;
    line-height: 37px;
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-page__content-single-inner .content-box p {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.contact-page__content-single-inner .content-box .number1 {
    margin: 0px;
    margin-bottom: 1px;
}

.contact-page__content-single-inner .content-box .number1 a {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__content-single-inner .content-box .number1 a:hover {
    color: var(--thm-base);
}

.contact-page__content-single-inner .content-box .number2 {
    margin: 0px;
}

.contact-page__content-single-inner .content-box .number2 a {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__content-single-inner .content-box .number2 a:hover {
    color: var(--thm-base);
}

.contact-page__content-single-inner .content-box .email1 {
    margin: 0px;
    margin-bottom: 1px;
}

.contact-page__content-single-inner .content-box .email1 a {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__content-single-inner .content-box .email1 a:hover {
    color: var(--thm-base);
}

.contact-page__content-single-inner .content-box .email2 {
    margin: 0px;
}

.contact-page__content-single-inner .content-box .email2 a {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__content-single-inner .content-box .email2 a:hover {
    color: var(--thm-base);
}

.contact-page__form {
    position: relative;
    display: block;
    margin-top: 126px;
}

.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: #ffffff;
    width: 100%;
    height: 60px;
    border: 1px solid #dcdfe2;
    color: #999999;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 3px;
    transition: all 500ms ease;
    font-family: var(--thm-font-2);
    outline: none;
}

.comment-form__input-box textarea {
    width: 100%;
    height: 200px;
    background-color: #ffffff;
    border: 1px solid #dcdfe2;
    outline: none;
    color: #999999;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 3px;
    padding: 12px 20px 20px;
    font-family: var(--thm-font-2);
    resize: none;
    height: 200px;
}

.comment-form__btn-box {
    position: relative;
    display: block;
    padding-top: 2px;
}

.comment-form__btn {
    position: relative;
    outline: none;
    border-radius: 40px;
    padding: 19px 45px 17px;
}


/***
=============================================
Blog Details
=============================================
***/

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

.blog-details .blog-one__single {
    margin-bottom: 39px;
}

.blog-details .blog-one__single__content .meta-box {
    display: inline-block;
    background: #f2f2f2;
    padding: 25px 45px 25px;
    margin-top: -45px;
    margin-bottom: 19px;
    z-index: 5;
}

.blog-details .blog-one__single__content .meta-box li {
    margin-right: 15px;
}

.blog-details__content .blog-one__single-img .date-box {
    left: auto;
    right: 70px;
}

.blog-details__content .blog-one__single__content {
    box-shadow: none;
    padding: 0px 0px 0px;
    padding-right: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.blog-details__content .blog-one__single-img .inner {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.blog-details__content .blog-one__single__content h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 21px;
}

.blog-details__content .blog-one__single__content p {
    margin: 0;
    margin-bottom: 0px;
}

.blog-details__content .blog-one__single__content .text2 {
    margin: 0;
    margin-bottom: 0px;
    margin-top: 14px;
}

.blog-details__text1 {
    position: relative;
    display: block;
}

.blog-details__text1 .img-box {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.blog-details__text1 .img-box img {
    width: 100%;
}

.blog-details__text1 .text-box1 {
    position: relative;
    display: block;
}

.blog-details__text1 .text-box1 p {
    margin: 0;
}

.blog-details__text1 .text-box2 {
    position: relative;
    display: block;
    padding-left: 80px;
    margin-top: 19px;
    margin-bottom: 29px;
}

.blog-details__text1 .text-box2 .icon-box {
    position: absolute;
    top: 6px;
    left: 0;
}

.blog-details__text1 .text-box2 .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
}

.blog-details__text1 .text-box2 .text-box {
    position: relative;
    display: block;
}

.blog-details__text1 .text-box2 .text-box p {
    margin: 0;
}

.blog-details__text2 {
    position: relative;
    display: block;
    margin-top: 20px;
}

.blog-details__text2-list {
    position: relative;
    display: block;
}

.blog-details__text2-list li {
    position: relative;
    display: block;
    padding-left: 24px;
}

.blog-details__text2-list li:before {
    position: absolute;
    top: 10px;
    left: 0;
    height: 10px;
    width: 10px;
    background-color: #bfc2c3;
    border-radius: 50%;
    content: "";
}

.blog-details__text2-list li+li {
    margin-top: 17px;
}

.blog-details__text2 .text-box1 {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-details__text2 .text-box1 p {
    margin: 0;
}

.blog-details__text2 .text-box2 {
    position: relative;
    display: block;
}

.blog-details__text2 .text-box2 p {
    margin: 0;
}

.blog-details__bottom {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 49px 0 40px;
}

.blog-details__bottom p {
    margin: 0;
}

.blog-details__tags a {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    background-color: #ffffff;
    border: 1px solid #dcdfe2;
    padding: 5px 30px;
    letter-spacing: 0.035em;
    font-family: var(--thm-font);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-details__tags a:hover {
    background-color: var(--thm-base);
    border: 1px solid var(--thm-base);
    color: #ffffff;
}

.blog-details__tags a+a {
    margin-left: 6px;
}

.blog-details__social-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.blog-details__social-list a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-black);
    font-size: 15px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #f2f2f2;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.blog-details__social-list a:hover {
    color: #ffffff;
    background-color: var(--thm-base);
}

.blog-details__social-list a+a {
    margin-left: 10px;
}

.blog-details__social-list a:hover:before {
    transform: scaleX(1);
}

.author-one {
    background-color: #f2f2f2;
    padding: 32px 30px 30px;
    display: -webkit-box;
    display: flex;
    margin-bottom: 51px;
}

.author-one .inner {
    position: relative;
    display: block;
    padding-left: 130px;
}

.author-one__image {
    position: absolute;
    top: 7px;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.author-one__image img {
    width: 100%;
}

.author-one__content {
    position: relative;
    display: block;
}

.author-one__content h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px
}

.author-one__content p {
    margin: 0;
}

.author-one__content {
    position: relative;
    display: block;
}

.author-one__content ul {
    position: relative;
    display: block;
    margin-top: 16px;
}

.author-one__content ul li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.author-one__content ul li:last-child {
    margin-right: 0px;
}

.author-one__content ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 17px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.author-one__content ul li a:hover {
    color: var(--thm-primary);
}


/***
=====================================================
  Comments
=====================================================
***/

.comment-one {
    position: relative;
    display: block;
}

.comment-one__title {
    color: var(--thm-black);
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 31px;
}

.comment-one__single {
    position: relative;
    display: -webkit-box;
    display: flex;
    align-items: center;
    margin-bottom: 53px;
}

.comment-one__image {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-one__image img {
    width: auto;
}

.comment-one__content {
    position: relative;
    margin-left: 30px;
    flex: 1;
}

.comment-one__content h3 {
    margin: 0;
    font-size: 22px;
    margin-bottom: 11px;
    font-weight: 600;
}

.comment-one__content p {
    margin: 0;
    margin-bottom: 13px;
}

.comment-one__content span {
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
}

.comment-one__btn {
    position: relative;
    color: var(--thm-base);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    padding-left: 16px;
}

.comment-one__btn:hover {
    color: var(--thm-primary);
}

.comment-form {
    position: relative;
    display: block;
}

.comment-form__title {
    color: var(--thm-black);
    font-size: 32px;
    line-height: 42px;
    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: #fcfcfc;
    width: 100%;
    height: 60px;
    border: 1px solid #dcdfe2;
    color: var(--thm-gray);
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 3px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    outline: none;
}

.comment-form__input-box textarea {
    width: 100%;
    height: 200px;
    background-color: #fcfcfc;
    border: 1px solid #dcdfe2;
    outline: none;
    color: var(--thm-gray);
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    border-radius: 3px;
    padding: 12px 20px 20px;
    font-family: var(--thm-font);
    resize: none;
}

.comment-form__btn-box {
    position: relative;
    display: block;
}

.comment-form__btn {
    position: relative;
    outline: none;
    border-radius: 40px;
    padding: 19px 45px 17px;
}


/*** 
=============================================
   Cart area 
=============================================
***/

.cart-area {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

.cart-table-box .table-outer {
    position: relative;
    width: 100%;
    overflow-x: auto;
}

.cart-table-box .cart-table {
    min-width: 1024px;
    width: 100%;
}

.cart-table-box .cart-table .cart-header {
    position: relative;
    width: 100%;
    background: var(--thm-base);
}

.cart-table-box .cart-table thead tr {}

.cart-table-box .cart-table thead tr th {
    color: #ffffff;
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    min-width: 160px;
    padding: 22px 40px;
    border: 0px solid #ededed;
    font-family: var(--thm-font);
}

.cart-table-box .cart-table thead tr th.hide-me {
    display: table-column;
}

.cart-table-box .cart-table thead tr th.prod-column {
    position: relative;
}

.cart-table-box .cart-table thead tr th.availability {
    padding: 0 40px
}

.cart-table-box .cart-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
}

.cart-table-box .cart-table tbody tr td {
    min-width: 160px;
    padding: 30px 40px;
    border: 0px solid #ededed;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box {
    position: relative;
    min-height: 73px;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box .prod-thumb {
    width: 80px;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box .prod-thumb a {
    position: relative;
    display: block;
    border-radius: 0px;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box .prod-thumb a img {
    width: 100%;
    border-radius: 10px;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box .prod-thumb,
.cart-table-box .cart-table tbody tr .prod-column .column-box .title {
    display: table-cell;
    vertical-align: middle;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box .title {
    padding-left: 20px;
}

.cart-table-box .cart-table tbody tr .prod-column .column-box .title h3 {
    color: #25283a;
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-font);
}

.cart-table-box .cart-table tbody tr .qty {}

.cart-table-box .cart-table tbody tr .qty .input-group.bootstrap-touchspin {
    float: none;
    width: 90px;
}

.cart-table-box .cart-table tbody tr td.price {
    color: #848484;
    font-size: 17px;
    font-weight: 500;
    font-family: var(--thm-font);
}

.cart-table-box .cart-table tbody tr .sub-total {
    color: #848484;
    font-size: 17px;
    font-weight: 500;
    font-family: var(--thm-font);
}

.cart-table-box .cart-table tbody tr td .remove {
    position: relative;
    display: block;
}

.cart-table-box .cart-table tbody tr td .remove span:before {
    position: relative;
    display: inline-block;
    left: 30px;
    color: #e5e5e5;
    font-size: 25px;
    line-height: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    transform: rotate(45deg);
}

.cart-table-box .cart-table tbody tr td .remove:hover span:before {
    color: var(--thm-base);
}

.cart-button-box {
    padding-top: 50px
}

.cart-button-box .apply-coupon {
    position: relative;
    display: block;
}

.cart-button-box .apply-coupon .text {
    position: relative;
    display: block;
    margin-top: -7px;
    padding-bottom: 17px;
}

.cart-button-box .apply-coupon .text p {
    color: #25283a;
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    margin: 0;
}

.cart-button-box .apply-coupon .inner {
    position: relative;
    display: block;
    padding-left: 270px;
}

.cart-button-box .apply-coupon input[type="text"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 270px;
    height: 60px;
    border: 1px solid #e5e5e5;
    color: #848484;
    font-size: 17px;
    font-weight: 400;
    padding: 0 30px;
    text-transform: capitalize;
    transition: all 500ms ease 0s;
    border-radius: 30px;
    font-family: var(--alori-font-3);
    outline: none;
}

.cart-button-box .apply-coupon .apply-coupon-button button {
    padding: 0 40px;
    margin-left: 10px;
    line-height: 60px;
}

.cart-button-box .apply-coupon .apply-coupon-button button.thm-btn::before {
    z-index: -1;
}

.cart-button-box .update-cart button {
    padding: 0 40px;
    margin-top: 38px;
    line-height: 60px;
}

.cart-button-box .update-cart button.thm-btn::before {
    z-index: -1;
}

.cart-button-box .update-cart {
    float: right;
}

.cart-totals-form {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
    float: right;
    margin-top: 92px;
}

.cart-totals-form h2 {
    color: #25283a;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}

.cart-totals-form ul {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 11px 0 10px;
}

.cart-totals-form ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid #e5e5e5;
    color: #25283a;
    font-size: 17px;
    font-weight: 500;
    line-height: 52px;
}

.cart-totals-form ul li:last-child {
    border-bottom: none;
}

.cart-totals-form ul li span {
    position: relative;
    display: block;
    float: right;
}

.cart-totals-form ul li span.total {
    color: var(--thm-base);
    font-weight: 600;
}

.cart-totals-form button {
    display: block;
    width: 100%;
    margin-top: 10px;
}

.cart-totals-form button.thm-btn {
    text-transform: capitalize;
}

.cart-totals-form button.thm-btn::before {
    z-index: -1;
}

.cart-area .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    display: none;
}


/*** 
=============================================
    Checkout Area Css
=============================================
***/

.checkout-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

.checkout-area .form .title {
    position: relative;
    display: block;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 8px;
    margin-bottom: 25px;
}

.checkout-area .form .title h3 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--thm-font);
}

.checkout-area .form form .field-label {
    color: #1c2035;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px;
    text-transform: none;
}

.checkout-area form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.checkout-area .form form .field-input input[type="text"],
.checkout-area .form form .field-input input[type="email"],
.checkout-area .form form .field-input input[type="tel"] {
    position: relative;
    display: block;
    border: 1px solid #e0e0e0;
    color: rgba(var(--thm-gray-rgb), 0.5);
    font-size: 15px;
    height: 60px;
    margin-bottom: 20px;
    padding: 0 15px;
    width: 100%;
    outline: none;
    transition: all 500ms ease;
}

.checkout-area .form form .field-input .nice-select {
    border-radius: 0px;
    border: 1px solid #e0e0e0;
    color: rgba(var(--thm-gray-rgb), 0.5);
    font-size: 15px;
    font-weight: 400;
    height: 60px;
    line-height: 58px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.checkout-area .form form .field-input .nice-select:after {
    border-bottom: 2px solid var(--thm-black);
    border-right: 2px solid var(--thm-black);
}

.checkout-area .form form .field-input textarea {
    position: relative;
    display: block;
    border: 1px solid #e0e0e0;
    color: rgba(var(--thm-gray-rgb), 0.5);
    font-size: 15px;
    font-weight: 400;
    height: 120px;
    padding: 10px 20px;
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    outline: none;
}

.checkout-area__checkbox {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.checkout-area__checkbox-single+.checkout-area__checkbox-single {
    margin-top: 0px;
}

.checkout-area__checkbox-single label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    cursor: pointer;
}

.checkout-area__checkbox-single input[type="checkbox"] {
    display: none;
}

.checkout-area__checkbox-single input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 7px;
    left: 0;
    width: 17px;
    height: 17px;
    vertical-align: middle;
    border: 1px solid #d6d3d0;
    cursor: pointer;
    border-radius: 0%;
    transition: all 300ms ease;
}

.checkout-area__checkbox-single label span:before {
    position: absolute;
    top: 3px;
    left: 3px;
    bottom: 3px;
    right: 3px;
    content: "";
    background: #d6d3d0;
    border-radius: 0%;
    transform: scale(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;
}

.checkout-area__checkbox-single input[type="checkbox"]:checked+label span {
    border-color: #d6d3d0;
}

.checkout-area__checkbox-single input[type="checkbox"]:checked+label span:before {
    transform: scale(1.0);
}

.checkout-area__sidebar {
    position: relative;
    display: block;
    margin-left: 20px;
}

.checkout-area__sidebar-single {
    position: relative;
    display: block;
    background: #f9f9f9;
    padding: 31px 25px 50px;
    margin-bottom: 30px;
}

.checkout-area__sidebar-single.mb0 {
    margin-bottom: 0;
}

.checkout-area__sidebar-single .title {
    position: relative;
    display: block;
    border-bottom: 1px solid #e4e2e0;
    padding-bottom: 11px;
}

.checkout-area__sidebar-single .title h3 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 34px;
    font-weight: 600;
    font-family: var(--thm-font);
}

.checkout-area__sidebar-single ul {
    position: relative;
    display: block;
}

.checkout-area__sidebar-single ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e4e2e0;
    padding-top: 24px;
    padding-bottom: 23px;
}

.checkout-area__sidebar-single ul li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.checkout-area__sidebar-single ul li .text-box {
    position: relative;
    display: flex;
    align-items: center;
}

.checkout-area__sidebar-single ul li .text-box .img-box {
    position: relative;
    display: block;
    margin-right: 15px;
}

.checkout-area__sidebar-single ul li .text-box .img-box img {
    width: 100%;
}

.checkout-area__sidebar-single ul li .title-box {
    position: relative;
    display: block;
}

.checkout-area__sidebar-single ul li .title-box p {
    color: var(--thm-black);
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
}

.checkout-area__sidebar-single ul li .title-box p span {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.checkout-area__sidebar-single ul li .price {
    position: relative;
    display: block;
    line-height: 0;
}

.checkout-area__sidebar-single ul li .price p {
    color: #1c2035;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.checkout-area__sidebar-single ul li .price span {
    color: rgba(var(--thm-black-rgb), 0.7);
    font-size: 14px;
    line-height: 20px;
}

.checkout-area__sidebar-single ul li .price a {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 14px;
    line-height: 20px;
    text-decoration: underline;
    margin-top: 5px;
}

.checkout__payment {
    position: relative;
    display: block;
    margin-bottom: 10px;
    margin-top: 30px;
}

.checkout__payment__item {
    position: relative;
    display: block;
    border: 1px solid #eae7e7;
    padding: 24px 25px 23px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.checkout__payment__item.checkout__payment__item--active {
    border-color: var(--thm-black);
}

.checkout__payment__title {
    display: flex;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    align-items: center;
    cursor: pointer;
    font-family: var(--thm-font);
}

.checkout__payment__title::before {
    content: '';
    width: 17px;
    height: 17px;
    background-color: transparent;
    border: 2px solid var(--thm-base);
    border-radius: 0%;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
    top: 0px;
    transition: all 500ms ease;
}

.checkout__payment__item--active .checkout__payment__title::before {
    background-color: var(--thm-base);
    border-color: var(--thm-base);
    content: '\f00c';
}

.checkout__payment__content {
    font-size: 15px;
    line-height: 25px;
    color: var(--thm-gray);
    margin-top: 13px;
}

.checkout__payment__checkbox {
    position: relative;
    display: block;
    margin-top: 18px;
}

.checkout__payment-btn {
    position: relative;
    display: block;
    margin-top: 30px;
}

.checkout__payment-btn .thm-btn {
    width: 100%;
    text-align: center;
    border-radius: 0px;
    text-transform: none;
}

.checkout__payment-btn .thm-btn::before {
    z-index: -1;
}

.checkout__payment-btn .thm-btn::after {
    border-radius: 0;
}


/*** 
=============================================
    Login Register Area style
=============================================
***/

.login-register-area {
    position: relative;
    display: block;
    padding-top: 113px;
    padding-bottom: 112px;
}

.shop-page-title .title {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0 0 6px;
    text-transform: uppercase;
    font-family: var(--thm-font);
}

.login-register-area .form .shop-page-title {
    padding-bottom: 26px;
}

.login-register-area .form form {
    width: 100%;
}

.login-register-area .form .input-field {
    position: relative;
}

.login-register-area .form .input-field input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #ededed;
    color: #83888d;
    font-size: 16px;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 50px;
    transition: all 700ms ease 0s;
}

.login-register-area .form .input-field .icon-holder {
    position: absolute;
    top: 15px;
    right: 20px;
}

.login-register-area .form .input-field .icon-holder i {
    color: #999999;
    font-size: 14px;
    font-weight: 400;
}

.login-register-area .form button.thm-btn::before {
    z-index: -1;
}

.login-register-area .form button:hover {}

.login-register-area .form .remember-text {
    margin-top: 19px;
}

.login-register-area .form .remember-text .checkbox label {
    color: #27282c;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
}

.login-register-area .form .remember-text .checkbox input {
    position: relative;
    top: 1px;
}

.login-register-area .form .remember-text .checkbox span {
    color: #27282c;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.login-register-area .form .social-icon {
    position: relative;
    float: right;
    margin-right: -8px;
    margin-top: 10px;
}

.login-register-area .form .social-icon .login-with {
    position: absolute;
    left: -100px;
    top: 8px;
    margin: 0;
}

.login-register-area .form .social-icon li {
    display: inline-block;
    margin: 0 8px;
}

.login-register-area .form .social-icon li a i {
    background: #47588f none repeat scroll 0 0;
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 100;
    height: 40px;
    line-height: 24px;
    padding: 8px 0;
    text-align: center;
    transition: all 700ms ease 0s;
    width: 40px;
}

.login-register-area .form .social-icon li a i.twitter {
    background: #33ccfe none repeat scroll 0 0;
}

.login-register-area .form .social-icon li a i.gplus {
    background: #dd4b39 none repeat scroll 0 0;
}

.login-register-area .form .right {
    display: block;
    overflow: hidden;
    margin-left: -60px;
}

.login-register-area .form .right h6 {
    float: left;
    color: #828282;
    font-size: 14px;
    font-weight: 400;
    margin-top: 18px;
}

.login-register-area .form .right h6 span {
    color: #0b59d9;
}

.login-register-area .form .input-field input[type="text"]:focus {
    border: 1px solid #1d1d1d;
}

.login-register-area .form .social-icon li a:hover i {
    background: #18387b;
}

.login-register-area .form .social-icon li a:hover i.twitter {
    background: #12addf;
}

.login-register-area .form .social-icon li a:hover i.gplus {
    background: #c62d1a;
}

.my-account__checked-box {
    position: relative;
    display: block;
    min-height: 30px;
    margin-top: 24px;
}

.my-account__checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 35px;
    margin-right: 0px;
    margin-bottom: 0;
    color: #74787c;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    min-height: 30px;
    font-family: var(--thm-font);
}

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

.my-account__checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #74787c;
    border-radius: 0%;
    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;
}

.my-account__checked-box label span:before {
    position: absolute;
    top: 4px;
    left: 5px;
    display: block;
    border-bottom: 2px solid #74787c;
    border-right: 2px solid #74787c;
    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;
}

.my-account__checked-box input[type="checkbox"]:checked+label span {
    border-color: #74787c;
}

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

.features-one__single .icon-box img {
    max-width: 60px;
}

/*--------------------------------------------------------------
# End Css 
--------------------------------------------------------------*/