/* CSS Index
============================
1. Theme default css
2. header
3. slider
4. about-area
5. features-box
6. department
7. team
8. video-area
9. counter
10. footer
============================
*/


/*** 
====================================================================
	Css Files
====================================================================
***/
/* Module Css */
@import url('module-css/header.css');
@import url('module-css/footer.css');
@import url('module-css/services.css');
@import url('module-css/about.css');
@import url('module-css/banner.css');
@import url('module-css/blog.css');
@import url('module-css/breadcrumb.css');
@import url('module-css/contact.css');
@import url('module-css/fact-counter.css');
@import url('module-css/partner.css');
@import url('module-css/testimonial.css');
@import url('module-css/team.css');


/*=============================
	1. Variable CSS
===============================*/
:root {
    --thm-font: 'DM Sans', sans-serif;
    --thm-font-2: 'Marcellus', serif;
    --thm-primary: #BF5E44;
    --thm-primary-rgb: 191, 94, 68;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-black: #042748;
    --thm-black-rgb: 4, 39, 72;
    --thm-gray: #5A5D60;
    --thm-gray-rgb: 90, 93, 96;
    --thm-gray-bg: #F9F6F1;
    --thm-gray-bg-rgb: 249, 246, 241;
    --thm-black-bg: #001026;
    --thm-black-bg-rgb: 0, 16, 38;
    --thm-font-size: 17px;
    --thm-font-weight: 400;
    --thm-white-bg: #ffffff;
    --thm-heading-font-weight: 400;
    --thm-blue: #0d6efd;
    --thm-indigo: #6610f2;
    --thm-purple: #6f42c1;
    --thm-pink: #d63384;
    --thm-red: #dc3545;
    --thm-orange: #fd7e14;
    --thm-yellow: #ffc107;
    --thm-green: #198754;
    --thm-teal: #20c997;
    --thm-cyan: #0dcaf0;
}

body {
    font-family: var(--thm-font);
    font-weight: var(--thm-font-weight);
    font-size: var(--thm-font-size);
    line-height: 28px;
    color: var(--thm-gray);
    font-style: normal;
}

p {
    font-size: var(--thm-font-size);
    font-weight: var(--thm-font-weight);
    line-height: 28px;
    color: var(--thm-gray);
    margin-bottom: 0;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

img,
.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

button {
    outline: none;
    border: none;
}

a:focus,
.btn:focus,
button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
    color: var(--thm-primary);
    text-decoration: none;
}

a,
button {
    color: var(--thm-primary);
    outline: medium none;
    text-decoration: none;
}

.btn:focus,
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font-2);
    color: var(--thm-black);
    margin-top: 0px;
    margin-bottom: 0;
    font-style: normal;
    line-height: 1.2em;
    font-weight: var(--thm-heading-font-weight);
    text-transform: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}



/*== Swiper Nav Style1 Css ======*/
.swiper-nav-style1 {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    top: 162px;
    left: 0;
    right: 0;
    max-width: 1320px;
    width: 100%;
    padding: 0px 15px 0px;
    margin: 0 auto;
    height: 40px;
}

.swiper-nav-style1 .swiper-button-next,
.swiper-nav-style1 .swiper-button-prev {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    border-radius: 20px;
    background-color: transparent;
    color: var(--thm-white);
    font-size: 20px;
    font-weight: 400;
    border: 1px solid var(--thm-white);
    outline: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.swiper-nav-style1 .swiper-button-next {
    margin-left: 10px;
}

.swiper-nav-style1 .swiper-button-next i,
.swiper-nav-style1 .swiper-button-prev i {
    font-weight: 400;
}

.swiper-nav-style1 .swiper-button-next:hover,
.swiper-nav-style1 .swiper-button-prev:hover {
    background: var(--thm-primary);
    border-color: var(--thm-primary);
    color: #ffffff;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 0px;
    left: auto;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 0px;
    right: auto;
}

.swiper-nav-style1 .swiper-button-next::after,
.swiper-nav-style1 .swiper-button-prev::after {
    display: none;
}


/*=============================
	Sec Title CSS
===============================*/
.sec-title {
    position: relative;
    display: block;
    margin-top: -2px;
    padding-bottom: 53px;
}

.sec-title .sub-title {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 13px;
}

.sec-title .sub-title.center {
    justify-content: center;
}

.sec-title .sub-title .icon {
    position: relative;
    display: block;
    margin-right: 10px;
}

.sec-title .sub-title .icon img {
    width: 100%;
}

.sec-title .sub-title .text {
    position: relative;
    display: block;
}

.sec-title .sub-title .text p {
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.sec-title h2 {
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    text-transform: uppercase;
}

/*=============================
	Thm Btn
===============================*/
.thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 7.5px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 7.5px;
    background-color: var(--thm-primary);
    color: var(--thm-white);
    font-size: 14px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font);
    border-radius: 0px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 2;
}

.thm-btn:hover {
    color: var(--thm-white);
}

.thm-btn__icon {
    margin-left: 10px;
    position: relative;
    display: inline-flex;
    font-size: 9px;
    color: var(--thm-white);
    transition: all 400ms ease;
}

.thm-btn__hover-group {
    display: block;
}

.thm-btn__hover {
    display: block;
    background-color: var(--thm-black);
    height: 100%;
    top: 0;
    opacity: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: calc(25% + 0.25px);
    z-index: -1;
}

.thm-btn__hover--1 {
    left: 0;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.thm-btn__hover--2 {
    left: 25%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.thm-btn__hover--3 {
    left: 50%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.thm-btn__hover--4 {
    left: 75%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.thm-btn:hover .thm-btn__hover {
    opacity: 1;
    transform: scale(1);
}


/*== Owl Nav Style1 Css ======*/
.owl-nav-style1.owl-theme .owl-nav {
    position: relative;
    display: block;
    margin-top: 0;
}

.owl-nav-style1.owl-carousel .owl-nav button.owl-prev,
.owl-nav-style1.owl-carousel .owl-nav button.owl-next {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--thm-black-bg);
    color: var(--thm-white);
    font-size: 15px;
    font-weight: 700;
    outline: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-nav-style1.owl-carousel .owl-nav button.owl-next {
    margin-left: 15px;
}

.owl-nav-style1.owl-carousel .owl-nav button.owl-prev:hover,
.owl-nav-style1.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--thm-primary-color);
    color: #ffffff;
}

.owl-nav-style1.owl-carousel .owl-nav button.owl-prev span,
.owl-nav-style1.owl-carousel .owl-nav button.owl-next span {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.owl-nav-style1.owl-theme .owl-nav [class*=owl-] {
    margin: 0px;
}

/*== Owl Dot Style One Css ======*/
.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 53px !important;
    display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #d8d8d8;
    border: 1px solid #d8d8d8;
    margin: 0px 10px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -1px;
    bottom: -5px;
    right: -1px;
    border-radius: 9px;
    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);
    transition: all 900ms ease;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
    display: none;
}


.list-wrap {
    margin: 0px;
    padding: 0px;
}

.list-wrap li {
    list-style: none
}

hr {
    border-bottom: 1px solid var(--thm-primary);
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

label {
    color: var(--thm-gray);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

*::-moz-selection {
    background: var(--thm-primary);
    color: var(--thm-black);
    text-shadow: none;
}

::-moz-selection {
    background: var(--thm-primary);
    color: var(--thm-black);
    text-shadow: none;
}

::selection {
    background: var(--thm-primary);
    color: var(--thm-black);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--thm-gray);
    font-size: var(--thm-font-size);
    opacity: 1;
}

*::placeholder {
    color: var(--thm-gray);
    font-size: var(--thm-font-size);
    opacity: 1;
}


.theme-overlay {
    position: relative
}

.theme-overlay::before {
    background: var(--thm-primary) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
}

.separator {
    border-top: 1px solid var(--thm-primary);
}

.auto-container {
    position: static;
    max-width: 1320px;
    width: 100%;
    padding: 0px 15px;
    margin: 0 auto;
}

/* Bootstrap 5 */
.container {
    max-width: 1350px;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    --bs-gutter-x: 30px;
}

.row.g-0 {
    --bs-gutter-x: 0;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

.fix {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

/***
=============================================
   Search Popup
=============================================
***/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    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.95;
    cursor: pointer;
}

.search-popup__close-icon {
    position: absolute;
    top: 30px;
    right: 47px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 999;
}

.search-popup__close-icon:hover {
    background: var(--thm-primary);
}

.search-popup__close-icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    transform: rotate(45deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.search-popup__close-icon:hover span {
    color: var(--thm-white);
}

.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: var(--thm-white);
    border-radius: 10px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: var(--thm-white);
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
    padding-right: 75px;
}

.search-popup__content .btn-box {
    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: 0px;
    border-radius: 0;
    background-color: var(--thm-primary);
    border: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.search-popup__content .btn-box:hover {
    background: var(--thm-black);
}

.search-popup__content .btn-box i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 20px;
    font-weight: 400;
    background-color: transparent;
    margin-left: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    transform: rotate(270deg);
    z-index: 5;
}

.search-popup__content .btn-box:hover i::before {
    color: var(--thm-white);
}


/*=============================
	25. Preloader
===============================*/
#preloader {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 999;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 75px;
    display: inline-block;
    vertical-align: middle;
}

.loader .loader-outter {
    position: absolute;
    border: 4px solid var(--thm-primary);
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

.loader .loader-inner {
    position: absolute;
    border: 4px solid var(--thm-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

@-webkit-keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.preloader-two .loader .loader-outter {
    position: absolute;
    border: 4px solid var(--thm-primary-color-two);
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

.preloader-two .loader .loader-inner {
    position: absolute;
    border: 4px solid var(--thm-primary-color-two);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

.preloader-three .loader .loader-outter {
    position: absolute;
    border: 4px solid var(--thm-primary-color-three);
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

.preloader-three .loader .loader-inner {
    position: absolute;
    border: 4px solid var(--thm-primary-color-three);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
}


/* scrollUp */
.scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: -10%;
    right: 50px;
    font-size: var(--thm-body-font-size);
    border-radius: 6px;
    z-index: 99;
    color: var(--thm-white);
    text-align: center;
    cursor: pointer;
    background: var(--thm-primary);
    transition: 1s ease;
    border: none;
    font-size: 12px;
}

.scroll-top.open {
    bottom: 30px;
}

.scroll-top::after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top:hover {
    background: var(--thm-black);
}

.custom-container {
    max-width: 1320px;
}

.body-dark-bg {
    background-color: var(--thm-body-background);
}

/***
=============================================
   Rating Box
=============================================
***/
.rating-box {
    position: relative;
    display: block;
}

.rating-box a {
    position: relative;
    color: var(--thm-primary);
    font-size: 15px;
    line-height: 15px;
}

/***
=============================================
   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: 6px;
}

.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: 0px;
    color: var(--thm-black);
    font-size: 17px;
    line-height: 60px;
    font-weight: 500;
    border: 1px solid #D9D9D9;
    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: var(--thm-white);
    background: var(--thm-primary);
    border-color: var(--thm-primary);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
    border-radius: 0%;
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
    color: var(--thm-white);
}

.styled-pagination li a span:before {
    position: relative;
    top: -3px;
    color: var(--thm-black);
    font-size: 9px;
    font-weight: 400;
    line-height: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
    color: var(--thm-white);
}


/***
=============================================
    xs Sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
    left: 0%;
    top: 0;
    position: fixed;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    cursor: url(../img/icon/cross-out.png), pointer;
    z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: .6;
    visibility: visible;
    transition-delay: 0.0s;
    right: 100%;
    background-color: #000000;
}

.xs-sidebar-widget {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 365px;
    background-color: #000000;
    overflow: hidden;
    overflow-y: auto;
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    left: 0;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.sidebar-textwidget {
    padding: 70px 30px;
}

.sidebar-widget-container {
    position: relative;
    top: -150px;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 600ms ease 800ms;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    z-index: 0;
    background-color: #000000;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    border: 2px solid var(--thm-white);
    border-radius: 50%;
    color: var(--thm-white);
    font-size: 16px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--thm-primary);
    border-color: var(--thm-primary);
}

.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
    position: relative;
    display: inline-block;
}

.xs-sidebar-group .content-inner h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: var(--thm-white);
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 14px;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--thm-white);
}

.xs-sidebar-group .content-inner .content-box {
    margin-bottom: 30px;
    padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
    position: relative;
    display: block;
    padding-top: 2px;
}

.xs-sidebar-group .content-inner .content-box p {
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
    position: relative;
    margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
    margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding: 10px 20px;
    color: var(--thm-body-font-color);
    transition: all 500ms ease;
    outline: none;
    border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    resize: none;
    height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
    border-color: transparent;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn {
    position: relative;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn button {
    border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .btn-one {
    position: relative;
}

.sidebar-contact-info {
    position: relative;
    display: block;
    padding-top: 43px;
}

.sidebar-contact-info ul {
    position: relative;
    display: block;
    padding-bottom: 22px;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    color: var(--thm-white);
    line-height: 30px;
}

.sidebar-contact-info ul li span {
    position: relative;
    display: inline-block;
    width: 25px;
}

.sidebar-contact-info ul li span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
}

.sidebar-contact-info ul li a {
    color: var(--thm-white);
}

.sidebar-contact-info ul li a:hover {
    color: var(--thm-primary);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
    overflow: hidden;
}

.thm-social-link1 {
    position: relative;
    display: block;
}

.thm-social-link1 ul {
    position: relative;
}

.thm-social-link1 ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
    margin-right: 0;
}

.thm-social-link1 ul li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: var(--thm-white);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    z-index: 1;
    transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-primary);
    border-radius: 50%;
    transition: .5s;
    transform: scale(.5);
    opacity: 0;
    content: '';
    z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
    transform: scale(1);
    opacity: 1;
}

.thm-social-link1 ul li a:hover {
    color: var(--thm-black);
}


/***
=============================================
Feauture One
=============================================
***/
.feauture-one {
    position: relative;
    display: block;
    background: var(--thm-gray-bg);
    padding: 120px 0px 90px;
    z-index: 1;
}

.feauture-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.feauture-one__single {
    position: relative;
    display: block;
    background: var(--thm-gray-bg);
    border: 1px solid #d7d4cf;
    padding: 40px 50px 33px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
}

.feauture-one__single .shape1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.feauture-one__single-icon {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.feauture-one__single-icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 55px;
    line-height: 55px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.feauture-one__single:hover .feauture-one__single-icon span {
    transform: scale(0.92);
}

.feauture-one__single-content {
    position: relative;
    display: block;
}

.feauture-one__single-content h2 {
    font-size: 27px;
    line-height: 36px;
    font-weight: 400;
    text-transform: capitalize;
}

.feauture-one__single-content h2 a {
    color: var(--thm-black);
}

.feauture-one__single-content h2 a:hover {
    color: var(--thm-primary);
}

.feauture-one__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 19px;
}

.feauture-one__single-content .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.feauture-one__single-content .btn-box a::before {
    position: absolute;
    top: 50%;
    left: -7px;
    width: 15px;
    height: 15px;
    background: #e1d8c7;
    transform: translateY(-50%);
    border-radius: 50%;
    content: "";
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.feauture-one__single-content .btn-box a:hover::before {
    background: #fcae98;
}

.feauture-one__single-content .btn-box a span {
    position: relative;
    display: inline-block;
    font-size: 9px;
    margin-left: 7px;
    top: 1px;
}

/***
=============================================
Why Choose One
=============================================
***/
.why-choose-one {
    position: relative;
    display: block;
    padding: 0px 0px 120px;
}

.why-choose-one .row {
    align-items: center;
}

.why-choose-one__inner {
    position: relative;
    display: block;
    background: var(--thm-gray-bg);
    padding: 40px 40px 40px;
    overflow: hidden;
    z-index: 1;
}

.why-choose-one__inner .shape1 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.why-choose-one__img {
    position: relative;
    display: block;
}

.why-choose-one__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.why-choose-one__img .inner img {
    width: 100%;
}

.why-choose-one__content {
    position: relative;
    display: block;
    margin-left: 40px;
    max-width: 510px;
    width: 100%;
}

.why-choose-one__content .sec-title {
    padding-bottom: 29px;
}

.why-choose-one__content-text {
    position: relative;
    display: block;
}

.why-choose-one__content-text p {
    margin: 0;
}

.why-choose-one__content-bottom {
    position: relative;
    display: block;
    margin-top: 35px;
}

.why-choose-one__content-bottom ul {
    position: relative;
    display: block;
}

.why-choose-one__content-bottom ul li {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.why-choose-one__content-bottom ul li:last-child {
    margin-bottom: 0px;
}

.why-choose-one__content-bottom ul li p {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--thm-font-2);
}

.why-choose-one__content-bottom ul li p span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 18px;
    line-height: 20px;
}

.why-choose-one__content-bottom .btn-box {
    position: relative;
    display: block;
    margin-top: 41px;
}

/***
=============================================
Case One
=============================================
***/
.case-one {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 120px 0px 0px;
    z-index: 1;
}

.case-one__single {
    position: relative;
    display: block;
    max-width: 620px;
    width: 100%;
    margin-bottom: 96px;
}

.case-one__single.style2 {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

.case-one__single.mt70 {
    margin-top: 90px;
}

.case-one__single-img {
    position: relative;
    display: block;
}

.case-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.case-one__single-img .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}

.case-one__single:hover .case-one__single-img .inner::before {
    opacity: 0.60;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.case-one__single-img .inner .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.case-one__single-img .inner .overlay-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 1px solid var(--thm-white);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.7);
    transition: all 600ms ease;
}

.case-one__single:hover .case-one__single-img .inner .overlay-icon a {
    transform: scale(1);
    opacity: 1;
    transition-delay: 500ms;
}

.case-one__single-img .inner .overlay-icon a span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 10px;
    transform: rotate(-25deg);
}

.case-one__single-img .inner img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.case-one__single:hover .case-one__single-img .inner img {
    transform: scale(1.05) rotate(0deg);
}

.case-one__single-content {
    position: relative;
    display: block;
    margin-top: 28px;
}

.case-one__single-content p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.case-one__single-content h2 {
    font-size: 27px;
    line-height: 37px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.case-one__single-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.case-one__single-content h2 a:hover {
    color: var(--thm-primary);
}

.case-one__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 45px;
}

.case-one__single-content .btn-box .thm-btn {
    background-color: var(--thm-black);
}

.case-one__single-content .btn-box .thm-btn .thm-btn__hover {
    background-color: var(--thm-primary);
}

/***
=============================================
Cta One
=============================================
***/
.cta-one {
    position: relative;
    display: block;
    padding: 160px 0px 160px;
    z-index: 1;
}

.cta-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

.cta-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-bg-rgb), 0.6);
    content: "";
}

.cta-one__inner {
    position: relative;
    display: block;
}

.cta-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 33px;
    background: var(--thm-primary);
    border-radius: 50%;
}

.cta-one__icon img {
    width: auto;
}

.cta-one__inner h2 {
    color: var(--thm-white);
    font-size: 80px;
    line-height: 90px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.cta-one__inner .btn-box {
    position: relative;
    display: block;
}

/***
=============================================
Success One
=============================================
***/
.success-one {
    position: relative;
    display: block;
    background: var(--thm-gray-bg);
    padding: 80px 0px 80px;
    overflow: hidden;
    z-index: 1;
}

.success-one .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.success-one::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--thm-black-bg);
    width: 755px;
    clip-path: polygon(21% 0, 100% 0, 100% 100%, 0 100%);
    content: "";
}

.success-one .row {
    align-items: center;
}

.success-one__content {
    position: relative;
    display: block;
}

.success-one__content .sec-title {
    padding-bottom: 29px;
}

.success-one__content-text {
    position: relative;
    display: block;
}

.success-one__content-text p {
    margin: 0;
}

.success-one__progress {
    position: relative;
    display: block;
    margin-top: 39px;
}

.success-one__progress-single {
    position: relative;
    display: block;
    margin-bottom: 42px;
}

.success-one__progress-single.mb0 {
    margin-bottom: 0;
}

.success-one__progress-single .title {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.success-one__progress-single .title p {
    color: var(--thm-black);
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
}

.success-one__progress-single .bar {
    position: relative;
    width: 100%;
    height: 8px;
    background-color: var(--thm-gray);
    border-radius: 0px;
    flex: 1;
}

.success-one__progress-single .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 8px;
    border-radius: 0px;
    background: var(--thm-primary);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.success-one__progress-single .bar-inner::before {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
    width: 4px;
    background: var(--thm-white);
    content: "";
}

.success-one__progress-single .count-text {
    position: absolute;
    top: -43px;
    right: 0px;
    width: 35px;
    height: 25px;
    background: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 11px;
    line-height: 21px;
    font-weight: 700;
    text-align: center;
    border-radius: 3px;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.success-one__progress-single .count-text::before {
    position: absolute;
    bottom: -10px;
    right: 13px;
    margin: 0 auto;
    content: "";
    border-right: 15px solid var(--thm-primary);
    border-bottom: 15px solid transparent;
}

.success-one__progress-single .bar-inner.counted .count-text {
    opacity: 1;
}

.success-one__img {
    position: relative;
    display: block;
    margin-left: 80px;
}

.success-one__img img {
    max-width: none;
    float: left;
}

/*=============================
Scrolling Text One Css
===============================*/
.scrolling-text-one {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 47px 0px 47px;
    z-index: 1;
}

.scrolling-text-one__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 100%;
}

.scrolling-text-one__wrap:hover .scrolling-text-one__title {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.scrolling-text-one__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 6px;
    -webkit-animation: slide-left 20s linear infinite;
    animation: slide-left 20s linear infinite;
}

.scrolling-text-one__wrap .scrolling-text-one__title {
    padding: 0;
    -webkit-animation: slide-left 20s linear infinite;
    animation: slide-left 20s linear infinite;
}

.scrolling-text-one__title h2 {
    position: relative;
    color: var(--thm-white);
    font-size: 90px;
    line-height: 90px;
    font-weight: 400;
    text-transform: uppercase;
}


@keyframes slide-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/*=============================
Faq One Css
===============================*/
.faq-one {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

.faq-one__img {
    position: relative;
    display: block;
}

.faq-one__img-inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.faq-one__img-inner .overlay-content {
    position: absolute;
    top: 50px;
    right: 0;
    display: flex;
    align-items: center;
    padding: 20px 40px 20px;
    z-index: 5;
}

.faq-one__img-inner .overlay-content::before {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0;
    background: var(--thm-primary);
    content: "";
    z-index: -1;
}

.faq-one__img-inner .overlay-content::after {
    position: absolute;
    top: 0;
    left: -10px;
    bottom: -10px;
    right: 0;
    background: var(--thm-white);
    content: "";
    z-index: -2;
}

.faq-one__img-inner .overlay-content .counter-box {
    position: relative;
    display: block;
}

.faq-one__img-inner .overlay-content .counter-box h2 {
    color: var(--thm-white);
    font-size: 60px;
    line-height: 70px;
    font-weight: 400;
}

.faq-one__img-inner .overlay-content .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.faq-one__img-inner .overlay-content .text-box h3 {
    color: var(--thm-white);
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    text-transform: uppercase;
}

.faq-one__img-inner img {
    width: 100%;
}

.faq-one__content {
    position: relative;
    display: block;
    margin-left: 50px;
}

.faq-one__content .sec-title {
    padding-bottom: 45px;
}

.faq-one__accrodion {
    position: relative;
    display: block;
}

.faq-one__accrodion .accrodion {
    position: relative;
    display: block;
    margin-bottom: 43px;
    padding-bottom: 21px;
    border-bottom: 1px solid #D9D9D9;
    transition: all 500ms ease;
}

.faq-one__accrodion .accrodion:last-child {
    margin-bottom: 0px;
}

.faq-one__accrodion .accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    transition: all 500ms ease;
    border-radius: 0px;
    padding-right: 40px;
}

.faq-one__accrodion .accrodion .accrodion-title.active {
    padding-bottom: 22px;
}

.faq-one__accrodion .accrodion .accrodion-title h3 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    transition: all 500ms ease;
}

.faq-one__accrodion .accrodion .accrodion-title h3::before {
    position: absolute;
    top: 50%;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0px solid var(--thm-primary);
    border-radius: 0%;
    color: var(--thm-gray);
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    transform: translateY(-50%);
    transition: all 500ms ease;
    font-family: 'icomoon' !important;
    content: "\e925";
}

.faq-one__accrodion .accrodion.active .accrodion-title h3::before {
    font-family: "FontAwesome" !important;
    content: "\f068";
    color: var(--thm-primary);
    font-size: 18px;
}

.faq-one__accrodion .accrodion .accrodion-content {
    position: relative;
    display: none;
    padding-top: 18px;
    padding-bottom: 1px;
}

.faq-one__accrodion .accrodion .accrodion-content .inner {
    position: relative;
    display: block;
}

.faq-one__accrodion .accrodion .accrodion-content .inner p {
    margin: 0;
    color: var(--thm-black);
}

/*=============================
Case Two Css
===============================*/
.case-two {
    position: relative;
    display: block;
    background: var(--thm-white);
    z-index: 1;
}

.case-two .container {
    max-width: 100%;
    width: 100%;
    padding: 0px;
}

.case-two__single {
    position: relative;
    display: block;
}

.case-two__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.case-two__single-img::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.case-two__single:hover .case-two__single-img::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.case-two__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.case-two__single:hover .case-two__single-img img {
    transform: scale(1);
}

.case-two__single-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--thm-gray-bg);
    padding: 33px 50px 30px;
    margin-top: -65px;
    z-index: 5;
    margin-left: 50px;
    margin-right: 50px;
}

.case-two__single-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 0px;
    background-color: var(--thm-primary);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.case-two__single:hover .case-two__single-content::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.case-two__single-content .content-box {
    position: relative;
    display: block;
}

.case-two__single-content .content-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.case-two__single:hover .case-two__single-content .content-box p {
    color: var(--thm-white);
}

.case-two__single-content .content-box h2 {
    font-size: 27px;
    line-height: 37px;
    font-weight: 400;
    text-transform: capitalize;
    margin-top: 5px;
}

.case-two__single-content .content-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.case-two__single:hover .case-two__single-content .content-box h2 a {
    color: var(--thm-white);
}

.case-two__single-content .btn-box {
    position: relative;
    display: block;
}

.case-two__single-content .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #D9D9D9;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.case-two__single:hover .case-two__single-content .btn-box a {
    background-color: var(--thm-white);
    border-color: var(--thm-white);
}

.case-two__single-content .btn-box a span {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 9px;
    transform: rotate(-30deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.case-two__single:hover .case-two__single-content .btn-box a span {
    color: var(--thm-primary);
}

/*=============================
Why Choose One Css
===============================*/
.why-choose-two {
    position: relative;
    display: block;
    background: var(--thm-black-bg);
    padding: 120px 0px 84px;
    z-index: 1;
}

.why-choose-two::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 640px;
    background: var(--thm-primary);
    clip-path: polygon(0 0, 81% 0, 100% 100%, 0% 100%);
    content: "";
    z-index: -1;
}

.why-choose-two .shape1 {
    position: absolute;
    top: 100px;
    left: 330px;
    z-index: 1;
}

.why-choose-two .shape2 {
    position: absolute;
    top: 85px;
    left: 30px;
    z-index: -1;
}

.why-choose-two__img {
    position: relative;
    display: block;
    z-index: 5;
}

.why-choose-two__img ul {
    position: relative;
    display: block;
}

.why-choose-two__img ul li {
    position: relative;
    display: block;
    float: left;
    margin-right: 10px;
}

.why-choose-two__img ul li:last-child {
    margin-right: 0;
}

.why-choose-two__img ul li .img-box {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.why-choose-two__img ul li .img-box img {
    width: 100%;
}

.why-choose-two__content {
    position: relative;
    display: block;
    margin-left: 60px;
}

.why-choose-two__content .sec-title {
    padding-bottom: 29px;
}

.why-choose-two__content .sec-title .sub-title .text p {
    color: var(--thm-white);
}

.why-choose-two__content .sec-title h2 {
    color: var(--thm-white);
}

.why-choose-two__content-text {
    position: relative;
    display: block;
}

.why-choose-two__content-text p {
    color: #B3B7BB;
}

.why-choose-two__content-bottom {
    position: relative;
    display: block;
    margin-top: 43px;
}

.why-choose-two__content-bottom .single-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 58px;
}

.why-choose-two__content-bottom .single-box .icon-box {
    position: relative;
    display: block;
}

.why-choose-two__content-bottom .single-box .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 55px;
    line-height: 55px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.why-choose-two__content-bottom .single-box:hover .icon-box span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.why-choose-two__content-bottom .single-box .title-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.why-choose-two__content-bottom .single-box .title-box h2 {
    color: var(--thm-white);
    font-size: 27px;
    line-height: 36px;
    font-weight: 400;
    text-transform: capitalize;
}

/*=============================
Why Choose Style3 Css
===============================*/
.why-choose-one.style3 {
    position: relative;
    display: block;
    background: var(--thm-black-bg);
}

.why-choose-one.style3 .why-choose-one__inner {
    background: #0C192C;
}

.why-choose-one.style3 .sec-title .sub-title .text p {
    color: #B3B7BB;
}

.why-choose-one.style3 .sec-title h2 {
    color: var(--thm-white);
}

.why-choose-one.style3 .why-choose-one__content-text p {
    color: #B3B7BB;
}

.why-choose-one.style3 .why-choose-one__content-bottom ul li p {
    color: var(--thm-white);
}

.why-choose-one.style3 .why-choose-one__inner .shape1 {
    opacity: 0.05;
}

/***
=============================================
Success Style2
=============================================
***/
.success-one.style2 {
    position: relative;
    display: block;
    background: #0C192C;
}

.success-one.style2::before {
    background: var(--thm-primary);
}

.success-one.style2 .sec-title .sub-title .text p {
    color: #B3B7BB;
}

.success-one.style2 .sec-title h2 {
    color: var(--thm-white);
}

.success-one.style2 .success-one__content-text p {
    color: #B3B7BB;
}

.success-one.style2 .success-one__progress-single .title p {
    color: var(--thm-white);
}

/***
=============================================
Faq Two
=============================================
***/
.faq-one.style2 {
    position: relative;
    display: block;
    background: #0C192C;
}

.faq-one.style2 .sec-title .sub-title .text p {
    color: #B3B7BB;
}

.faq-one.style2 .sec-title h2 {
    color: var(--thm-white);
}

.faq-one.style2 .faq-one__accrodion .accrodion .accrodion-title h3 {
    color: var(--thm-white);
}

.faq-one.style2 .faq-one__accrodion .accrodion .accrodion-content .inner p {
    color: #B3B7BB;
}

.faq-one.style2 .faq-one__accrodion .accrodion .accrodion-title h3::before {
    color: #B3B7BB;
}

.faq-one.style2 .faq-one__accrodion .accrodion.active .accrodion-title h3::before {
    color: var(--thm-primary);
}

.faq-one.style2 .faq-one__accrodion .accrodion {
    border-bottom: 1px solid rgba(var(--thm-white-rgb), 0.2);
}

/***
=============================================
Company History
=============================================
***/
.company-history {
    position: relative;
    display: block;
    background: var(--thm-gray-bg);
    padding: 120px 0px 70px;
    z-index: 1;
}

.company-history .container {
    position: relative;
}

.company-history .border-box {
    position: absolute;
    top: 56.5%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    height: 0.5px;
    background: #D9D9D9;
    content: "";
}

.company-history__single {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.company-history__single-content {
    position: relative;
    display: block;
}

.company-history__single-content h2 {
    font-size: 27px;
    line-height: 37px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.company-history__single-content p {
    margin: 0;
}

.company-history__single-content .date-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 42px;
    background: var(--thm-primary);
    text-align: center;
    color: var(--thm-white);
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--thm-font-2);
    border-radius: 21px;
    margin: 27px auto 0px;
}

.company-history__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 35px;
}

.company-history__single-img img {
    width: auto;
}

.company-history__single.style2 {
    position: relative;
    display: block;
}

.company-history__single.style2 .company-history__single-img {
    margin-top: 0px;
    margin-bottom: 10px;
    top: -15px;
}

.company-history__single.style2 .company-history__single-content .date-box {
    margin: 0px auto 37px;
}


/***
=============================================
Case One About
=============================================
***/
.case-one--about {
    position: relative;
    display: block;
    padding-bottom: 105px;
}

/***
=============================================
Testimonials Two About
=============================================
***/
.testimonials-two--about {
    position: relative;
    display: block;
    background: var(--thm-gray-bg);
    z-index: 1;
}

.testimonials-two--about__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;
    z-index: -1;
}

.testimonials-two--about .testimonials-two__thumb-img .round-box::before {
    background: var(--thm-gray-bg);
}

/***
=============================================
Success One Service
=============================================
***/
.success-one--service {
    position: relative;
    display: block;
}

.success-one--service.success-one::before {
    background: var(--thm-primary);
}

/***
=============================================
Service Two Service
=============================================
***/
.services-two--service {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding-bottom: 90px;
}

.services-two--service .services-two__single-content {
    background: var(--thm-gray-bg);
}

.services-two--service .services-two__single {
    margin-bottom: 30px;
}

/***
=============================================
Video One
=============================================
***/
.video-one {
    position: relative;
    display: block;
    padding: 260px 0px 252px;
    z-index: 1;
}

.video-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;
}

.video-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-bg-rgb), 0.3);
    content: "";
}

.video-one__inner {
    position: relative;
    display: block;
}

.video-one__video-btn {
    position: relative;
    display: block;
}

.video-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    width: 130px;
    height: 130px;
    background: transparent;
    border: 2px solid rgba(var(--thm-white-rgb), 0.7);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin: 0 auto;
}

.video-one__icon:hover {
    border-color: var(--thm-primary);
    color: var(--thm-primary);
}

.video-one__icon::before,
.video-one__icon::after {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    transition: all .4s ease;
}

.video-one__icon::after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 22px;
}

.video-one__inner .title-box {
    position: relative;
    display: block;
    margin-top: 18px;
}

.video-one__inner .title-box p {
    color: var(--thm-white);
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
    text-transform: capitalize;
}

/***
=============================================
Contact One Case
=============================================
***/
.contact-one--case {
    position: relative;
    display: block;
    z-index: 1;
}

.contact-one--case__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 800px;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.contact-one--case .contact-one__form::before {
    background: var(--thm-gray-bg);
}

.contact-one--case .contact-one__form::after {
    background: var(--thm-gray-bg);
}

.contact-one--case .contact-one__form .sec-title .sub-title .text p {
    color: var(--thm-black);
}

.contact-one--case .contact-one__form .sec-title h2 {
    color: var(--thm-black);
}

/***
=============================================
Case Three
=============================================
***/
.case-three {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 120px 0px 90px;
    z-index: 1;
}

.case-three__menu-box {
    position: relative;
    display: block;
    padding-bottom: 20px;
}

.case-three__menu-box .project-filter {
    position: relative;
    display: block;
    z-index: 1;
}

.case-three__menu-box .project-filter li {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    margin-right: 10px;
}

.case-three__menu-box .project-filter li:last-child {
    margin-bottom: 0px;
    margin-right: 0px;
}

.case-three__menu-box .project-filter li .filter-text {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    background: transparent;
    border-radius: 0px;
    padding: 7px 20px 7px;
    border: 1px solid #D9D9D9;
    cursor: pointer;
    transition: all .4s ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.case-three__menu-box .project-filter li:hover .filter-text,
.case-three__menu-box .project-filter li.active .filter-text {
    background: var(--thm-primary);
    border-color: var(--thm-primary);
}

.case-three__menu-box .project-filter li:hover .filter-text,
.case-three__menu-box .project-filter li.active .filter-text {
    color: #ffffff;
}

.case-three__menu-box .project-filter li .count {
    display: none;
}

.case-three__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.case-three__single-img {
    position: relative;
    display: block;
}

.case-three__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.case-three__single-img .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black-bg);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}

.case-three__single:hover .case-three__single-img .inner::before {
    opacity: 0.30;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.case-three__single-img .inner img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.case-three__single:hover .case-three__single-img .inner img {
    transform: scale(1.05) rotate(0deg);
}

.case-three__single-img .inner .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: all 600ms ease;
    z-index: 5;
}

.case-three__single:hover .case-three__single-img .inner .overlay-icon {
    transform: scale(1);
    opacity: 1;
    transition-delay: 500ms;
}

.case-three__single-img .inner .overlay-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(var(--thm-white-rgb), 0.5);
    border-radius: 50%;
}

.case-three__single-img .inner .overlay-icon a span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 14px;
    transform: rotate(-25deg);
}

.case-three__single-content {
    position: relative;
    display: block;
    background: var(--thm-gray-bg);
    padding: 35px 40px 30px;
    margin-left: 25px;
    margin-top: -65px;
    z-index: 5;
}

.case-three__single-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 0px;
    background-color: var(--thm-primary);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.case-three__single:hover .case-three__single-content::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.case-three__single-content p {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.case-three__single:hover .case-three__single-content p {
    color: var(--thm-white);
}

.case-three__single-content h2 {
    font-size: 27px;
    line-height: 37px;
    font-weight: 400;
    text-transform: capitalize;
    margin-top: 6px;
}

.case-three__single-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.case-three__single:hover .case-three__single-content h2 a {
    color: var(--thm-white);
}

.case-three__single-content h2 a:hover {
    color: var(--thm-primary);
}


/***
=============================================
Case Details
=============================================
***/
.case-details {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.case-details__sidebar {
    position: relative;
    display: block;
}

.case-details__sidebar-text {
    position: relative;
    display: block;
    margin-bottom: 42px;
}

.case-details__sidebar-text h2 {
    font-size: 50px;
    line-height: 65px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.case-details__sidebar-text p {
    margin: 0;
}

.case-details__sidebar-project {
    position: relative;
    display: block;
    border: 1px solid #D9D9D9;
    padding: 40px 40px 40px;
}

.case-details__sidebar-project .title-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -7px;
    margin-bottom: 21px;
    margin-left: -41px;
    z-index: 2;
}

.case-details__sidebar-project .title-box .shape-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 7px;
}

.case-details__sidebar-project .title-box .shape-box .line {
    position: relative;
    display: block;
    width: 20px;
    height: 1px;
    background: var(--thm-primary);
}

.case-details__sidebar-project .title-box .shape-box .round {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    background: var(--thm-primary);
    border-radius: 50%;
    margin-left: 3px;
}

.case-details__sidebar-project .title-box .text {
    position: relative;
    display: block;
}

.case-details__sidebar-project .title-box .text h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    text-transform: capitalize;
}

.case-details__sidebar-project-list {
    position: relative;
    display: block;
    background: #FAF8F4;
    border: 1px solid #E8E4DD;
    padding: 30px 30px 30px;
}

.case-details__sidebar-project-list ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.case-details__sidebar-project-list ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid #D9D9D9;
    padding-top: 15px;
    padding-bottom: 11px;
}

.case-details__sidebar-project-list ul li:first-child {
    padding-top: 0px;
}

.case-details__sidebar-project-list ul li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.case-details__sidebar-project-list ul li .text-box {
    position: relative;
    display: block;
}

.case-details__sidebar-project-list ul li .text-box p {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.case-details__sidebar-project-list ul li .text-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
}

.case-details__content {
    position: relative;
    display: block;
}

.case-details__content-img1 {
    position: relative;
    display: block;
    margin-bottom: 41px;
}

.case-details__content-img1-single {
    position: relative;
    display: block;
}

.case-details__content-img1-single img {
    width: 100%;
}

.case-details__content-text1 {
    position: relative;
    display: block;
}

.case-details__content-text1 h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.case-details__content-text1 p {
    margin: 0;
}

.case-details__content-text1 h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-top: 20px;
}

.case-details__content-text2 {
    position: relative;
    display: block;
    margin-top: 61px;
}

.case-details__content-text2 h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.case-details__content-text2 p {
    margin: 0;
    margin-bottom: 30px;
}

.case-details__content-text2-list {
    position: relative;
    display: block;
}

.case-details__content-text2-list ul {
    position: relative;
    display: block;
}

.case-details__content-text2-list ul li {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.case-details__content-text2-list ul li:last-child {
    margin-bottom: 0;
}

.case-details__content-text2-list ul li h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
}

.case-details__content-text2-list ul li h3 span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 17px;
}


.case-details__content-text3 {
    position: relative;
    display: block;
    margin-top: 61px;
}

.case-details__content-text3 h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.case-details__content-text3 p {
    margin: 0;
}

.case-details__content-text3 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 37px;
}

.case-details__content-text3 .img-box img {
    width: 100%;
}

.case-details__form {
    position: relative;
    display: block;
    margin-top: 60px;
}

.case-details__form .title-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.case-details__form .title-box h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 400;
    text-transform: capitalize;
}

.case-details__form .contact-one__form {
    max-width: 100%;
    width: 100%;
    float: none;
}

.case-details__form .contact-one__form::before {
    display: none;
}

.case-details__form .contact-one__form::after {
    display: none;
}

.case-details__form .contact-one__form form {
    background: transparent;
    padding: 0px 0px 0px;
}

.case-details__form .contact-one__form form input[type="text"],
.case-details__form .contact-one__form form input[type="email"] {
    color: var(--thm-gray);
    background-color: var(--thm-gray-bg);
    border: 1px solid #E8E4DD;
}

.case-details__form .contact-page__input-box .icon-box span {
    color: var(--thm-primary);
}

.case-details__form .contact-one__form form textarea {
    color: var(--thm-gray);
    background-color: var(--thm-gray-bg);
    border: 1px solid #E8E4DD;
}

.case-details__form .contact-one__form form input[type="text"]:focus {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form input[type="email"]:focus {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form textarea:focus {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form input[type="text"]:-moz-placeholder {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form input[type="text"]::-moz-placeholder {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form input[type="text"]:-ms-input-placeholder {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form input[type="email"]:-moz-placeholder {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form input[type="email"]::-moz-placeholder {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form input[type="email"]:-ms-input-placeholder {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form textarea::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form textarea:-moz-placeholder {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form textarea::-moz-placeholder {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form form textarea:-ms-input-placeholder {
    color: var(--thm-gray);
}

.case-details__form .contact-one__form .contact-page__btn button.thm-btn {
    background-color: var(--thm-primary);
}

.case-details__form .contact-one__form .contact-page__btn button.thm-btn .thm-btn__hover {
    background-color: var(--thm-black);
}

/***
=============================================
Pricing One
=============================================
***/
.pricing-one {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 120px 0px 90px;
    z-index: 1;
}

.pricing-one__single {
    position: relative;
    display: block;
    background: #FAF8F4;
    border: 1px solid #E8E4DD;
    padding: 50px 45px 50px;
    margin-bottom: 30px;
}

.pricing-one__single .table-header {
    position: relative;
    display: block;
    padding-top: 90px;
}

.pricing-one__single .table-header .icon-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 190px;
    background: var(--thm-white);
    margin: 0 auto;
    border-radius: 50%;
    z-index: 2;
}

.pricing-one__single .table-header .icon-box::before {
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    background: #F4EFE6;
    border-radius: 50%;
    content: "";
    z-index: 1;
}

.pricing-one__single .table-header .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 80px;
    line-height: 80px;
    z-index: 2;
}

.pricing-one__single .table-header__inner {
    position: relative;
    display: block;
    background: #F4EFE6;
    padding: 122px 0px 21px;
    border-radius: 5px;
    z-index: 1;
}

.pricing-one__single .table-header__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 5px;
    background-color: var(--thm-primary);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.pricing-one__single:hover .table-header__inner::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.pricing-one__single .table-header__inner .text-box {
    position: relative;
    display: block;
    z-index: 3;
}

.pricing-one__single .table-header__inner .text-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 6px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.pricing-one__single:hover .table-header__inner .text-box h3 {
    color: var(--thm-white);
}

.pricing-one__single .table-header__inner .text-box h2 {
    color: var(--thm-primary);
    font-size: 50px;
    line-height: 65px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.pricing-one__single:hover .table-header__inner .text-box h2 {
    color: var(--thm-white);
}

.pricing-one__single .table-content {
    position: relative;
    display: block;
    margin-top: 37px;
}

.pricing-one__single .table-content ul {
    position: relative;
    display: block;
}

.pricing-one__single .table-content ul li {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.pricing-one__single .table-content ul li:last-child {
    margin-bottom: 0;
}

.pricing-one__single .table-content ul li p {
    margin: 0;
    text-transform: capitalize;
}

.pricing-one__single .table-content ul li p span {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 16px;
    margin-right: 3px;
}

.pricing-one__single .table-footer {
    position: relative;
    display: block;
    margin-top: 42px;
}

.pricing-one__single .table-footer .btn-box {
    position: relative;
    display: block;
}

/***
=============================================
Blog Two Faq
=============================================
***/
.blog-two--faq {
    position: relative;
    display: block;
    padding-top: 0px;
}

/***
=============================================
Faq Page
=============================================
***/
.faq-page {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 120px 0px 0px;
    z-index: 1;
}

.faq-page__inner {
    position: relative;
    display: block;
    max-width: 870px;
    width: 100%;
    margin: 0 auto;
}