/* --------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
-------------------------------------------------------------- */
/* --------------------------------------------------------------
# Common
-------------------------------------------------------------- */
/* == Default Css ====== */
:root {
    --thm-font: 'Inter', sans-serif;
    --thm-font-2: 'Inter', sans-serif;
    --thm-base: #241E4E;
    --thm-base-rgb: 37, 184, 93;
    --thm-gray: #7f7873;
    --thm-gray-rgb: 127, 120, 115;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-black: #1a1c23;
    --thm-black-rgb: 26, 28, 35;
    --thm-primary: #ffb400;
    --thm-primary-rgb: 255, 180, 0;
}

.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 {
    font-family: var(--thm-font);
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility; /* Improve readability for large text */
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape mode */
}

body.locked {
    overflow: hidden;
}

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

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-2);
    font-weight: 500;
    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;
}

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

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

/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
    border-color: #43c3ea;
    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;
}

/* == Review Css ====== */
.review-box {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 15px;
}

.review-box ul {
    display: block;
    overflow: hidden;
}

.review-box ul li {
    display: inline-block;
    float: left;
    margin-right: 4px;
    cursor: pointer;
}

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

.review-box ul li i {
    color: #febd2f;
    font-size: 15px;
}

/* == Section Title Css ====== */
.sec-title {
    position: relative;
    display: block;
    margin-top: -8px;
    padding-bottom: 55px;
}

.sec-title h2 {
    color: var(--thm-black);
    font-size: 48px;
    line-height: 1.1em;
    font-weight: 500;
    text-transform: capitalize;
}

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

.sec-title .sub-title p {
    font-size: 18px;
    line-height: 24px;
}

/* == Btn One Css ====== */
.btn-one {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-left: 30px;
    padding-right: 30px;
    background-color: transparent;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 60px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 0px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: var(--thm-font-2);
    z-index: 2;
}

.btn-one:before {
    position: absolute;
    top: 110px;
    left: -50px;
    right: -50px;
    height: 170px;
    content: "";
    background: var(--thm-base);
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    border-radius: 50%;
    transition-duration: 800ms;
    z-index: 1;
}

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

.btn-one:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border-radius: 0px;
    background-color: #ffffff;
    opacity: 1;
    transform: scaleX(1.0);
    transition-duration: 800ms;
    z-index: -1;
}

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

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

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

.btn-one i {
    position: relative;
    display: inline-block;
    padding-left: 5px;
    font-size: 12px;
    font-weight: 700;
}

/* == Owl Dot Style One Css ====== */
.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;
}

/* == Owl Dot Style Two Css ====== */
.owl-carousel.owl-dot-style2 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 30px !important;
    display: block;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 5px solid #ffffff;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

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

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active {
    border: 5px solid #1a1c23;
    background-color: var(--thm-base);
}

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

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

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active span {
}

/* == Owl Nav Style One Css ====== */
.owl-nav-style-one {
}

.owl-nav-style-one .owl-controls {
}

.owl-nav-style-one.owl-theme .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
}

.owl-nav-style-one.owl-theme .owl-nav {
    position: relative;
    display: block;
    line-height: 0;
    margin: 0;
    z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid #e1e6e4;
    border-radius: 0%;
    margin: 0 0 0 0px;
    padding: 0;
    z-index: 1;
    transition: all 700ms ease 0s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    background-color: var(--thm-base);
    z-index: -1;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(0);
    transform: perspective(400px) rotateX(0deg) scale(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover::before {
    opacity: 1.0;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    transition-property: all;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 48px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
    transform: rotate(-180deg);
    margin-right: 10px;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
    margin-left: 0px;
    transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
    color: #ffffff;
}

/* == Scrool To Top Css ====== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 15px;
    display: inline-block;
    width: 55px;
    height: 55px;
    background: var(--thm-base);
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 0%;
    transition: all 0.4s ease;
    transform: rotate(-90deg);
    z-index: 99;
}

.scroll-to-top i {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 24px;
    line-height: 55px;
}

.scroll-to-top:hover {
    background-color: var(--thm-black);
}

.scroll-to-top:hover i {
    color: #fff;
}

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

.styled-pagination.pdtop0 {
    padding-top: 0;
}

.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: 30px;
    height: 40px;
    border-radius: 0px;
    background: #ffffff;
    border: 1px solid #f2ece7;
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 38px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.styled-pagination li a span:before {
    position: relative;
    top: 1px;
    font-size: 14px;
}

.styled-pagination li.prev a span:before {
    position: relative;
    display: inline-block;
    padding-right: 8px;
}

.styled-pagination li.next a span:before {
    position: relative;
    display: inline-block;
    padding-left: 8px;
}

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

.styled-pagination li.prev a,
.styled-pagination li.next a {
    width: 90px;
}

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

/* == checked Css Css ====== */
.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-black);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    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: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #f2ece7;
    cursor: pointer;
    border-radius: 0px;
    -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: "\e918";
    color: var(--thm-base);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    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: #f2ece7;
}

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

/* == Accordion Box Css ====== */
.accordion-box {
    position: relative;
    display: block;
}

.accordion-box .block {
    position: relative;
    display: block;
    margin-bottom: 20px;
    transition: all 500ms ease;
}

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

.accordion-box .block .acc-btn {
    position: relative;
    display: block;
    cursor: pointer;
    background: #ffffff;
    padding-top: 14px;
    padding-left: 60px;
    padding-bottom: 14px;
    padding-right: 20px;
    border: 1px solid #f2ece7;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
    background: #ffffff;
}

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

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

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 20px;
    height: 20px;
    color: var(--thm-gray);
    font-size: 18px;
    text-align: right;
    line-height: 20px;
    font-weight: 400;
    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-base);
    transform: translateY(-50%) rotate(90deg);
}

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

.accordion-box .block .acc-btn.active .icon-outer i:before {
    position: relative;
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding-top: 24px;
    padding-left: 20px;
    padding-bottom: 4px;
    padding-right: 20px;
}

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

.accordion-box .block .acc-content p {
    margin: 0;
}

/* == Search Popup Css ====== */
.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;
}

.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;
    color: #ffffff;
    font-size: 25px;
}

.search-popup__content .thm-btn i {
    background-color: transparent;
    margin-left: 0;
}

.search-popup__content .thm-btn:hover {
    background-color: var(--thm-base);
}

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

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

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

.handle-preloader .animation-preloader .spinner {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 45px auto;
    animation-name: zoomInOut;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: zoomInOut;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: zoomInOut;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    -ms-animation-name: zoomInOut;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: ease-in-out;
    -o-animation-name: zoomInOut;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

/* *
animation: spinner 1s infinite linear;
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
* */
.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

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

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;

    /* *border-top-color: rgba(255, 255, 255, 0.5); * */
}

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

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

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

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

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

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

.footer-social-link-style1 {
    position: relative;
    display: block;
}

.footer-social-link-style1 ul {
    position: relative;
    display: block;
}

.footer-social-link-style1 ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.footer-social-link-style1 ul li:last-child {
    margin-right: 0;
}

.footer-social-link-style1 ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: #ffffff;
    border: 1px solid #f2ece7;
    border-radius: 50%;
    color: #a5a2a0;
    font-size: 14px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-social-link-style1 ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.footer-social-link-style1 ul li:hover a:before {
    opacity: 1.0;
    transform: scale(1.0);
}

.footer-social-link-style1 ul li:hover a {
    color: #ffffff;
    border-color: var(--thm-base);
}

/* ------------------------------------------
  Features style1 Area
-------------------------------------------- */
.features-style1-area {
    position: relative;
    display: block;
    background-color: #f7f1eb;
    padding: 100px 0 40px;
}

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

.features-style1-content ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.features-style1-content ul li {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 33.3333333333%;
    padding: 0 20px;
    margin: 0 auto 95px;
}

.single-features-style1-box {
    position: relative;
    display: block;
    text-align: center;
}

.single-features-style1-box .shape-left {
    position: absolute;
    left: 2px;
    bottom: 15px;
}

.single-features-style1-box .shape-bottom {
    position: absolute;
    left: 50px;
    bottom: -33px;
}

.single-features-style1-box .counting-box {
    position: relative;
    display: block;
    width: 130px;
    height: 130px;
    margin: 0 auto;
    background-color: transparent;
    z-index: 1;
}

.single-features-style1-box .counting-box .counting-box-bg {
    position: absolute;
    top: -18px;
    bottom: -17px;
    left: -16px;
    right: -16px;
    z-index: -1;
}

.single-features-style1-box .counting-box h3 {
    position: relative;
    display: block;
    padding-top: 32px;
    color: #a5a2a0;
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    text-align: center;
}

.single-features-style1-box .text-box {
    position: relative;
    display: block;
    padding-top: 25px;
}

.single-features-style1-box .text-box h4 {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.single-features-style1-box .text-box h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    margin: 14px 0 16px;
}

.single-features-style1-box .text-box p {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
}

.single-features-style1-box .text-box .btn-box {
    position: relative;
    display: block;
    padding-top: 54px;
    line-height: 0;
}

.single-features-style1-box .text-box .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-features-style1-box .text-box .btn-box a:hover {
    color: var(--thm-base);
}

.single-features-style1-box .text-box .btn-box a i {
    position: relative;
    top: -1px;
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    width: 30px;
    background-color: transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-features-style1-box .text-box .btn-box a i:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: scale(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    border-radius: 50%;
    z-index: -1;
}

.single-features-style1-box .text-box .btn-box a:hover i:after {
    transform: scale(1.0);
}

.single-features-style1-box .text-box .btn-box a:hover i {
    color: #ffffff;
}

/* ------------------------------------------
  Service style1 Area
-------------------------------------------- */
.service-style1-area {
    position: relative;
    display: block;
    padding: 100px 0 100px;
    z-index: 10;
}

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

.service-style1-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000000;
    opacity: 0.60;
}

.service-style1-title {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 55px;
}

.service-style1-title .sec-title {
    padding-bottom: 0;
}

.service-style1-title .sec-title h2 {
    color: #ffffff;
}

.service-style1-title .sec-title .sub-title p {
    color: #c9c5c2;
}

.service-style1-title .get-assistant-box {
    position: relative;
    display: block;
    padding-bottom: 5px;
}

.service-style1-title .get-assistant-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    color: #ffffff;
    font-size: 35px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.service-style1-title .get-assistant-box a:hover {
    color: var(--thm-base);
}

.service-style1-title .get-assistant-box a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    border-radius: 50%;
    transform: scale(0);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.service-style1-title .get-assistant-box a:hover::before {
    transform: scale(1.0);
}

.service-style1-tab {
    position: relative;
    display: block;
}

.service-style1-tab__button {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.service-style1-tab__button .tabs-button-box {
    position: relative;
    display: block;
    margin-left: -5px;
    margin-right: -5px;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    width: 50%;
    padding: 0 5px;
    float: left;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(26, 28, 35, 0.30);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 35px 40px 36px;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner {
    border: 1px solid #ffffff;
    transition-delay: 0.2s;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    transform-origin: top center;
    z-index: -1;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner:before,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner .left {
    position: relative;
    display: block;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner .left h4 {
    color: #c9c5c2;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner .left h4,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner .left h4 {
    color: #7f7873;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner .left h3 {
    color: #ffffff;
    font-size: 36px;
    line-height: 36px;
    font-weight: 500;
    margin: 13px 0 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner .left h3,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner .left h3 {
    color: var(--thm-black);
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner .right {
    position: relative;
    display: block;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner .right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: var(--thm-black);
    font-size: 24px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner .right,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner .right {
    color: #a5a2a0;
    background: #f7f1eb;
}

.service-style1-tab .tabs-content-box {
    position: relative;
    display: block;
}

.service-style1-tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.service-style1-tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.service-style1-tab .tab-content-box-item .service-style1-tab-content-box-item {
    transition: all 0.7s ease;
    opacity: 0;
    transform: scaleY(0.9);
    transform-origin: top bottom;
}

.service-style1-tab .tab-content-box-item.tab-content-box-item-active .service-style1-tab-content-box-item {
    opacity: 1.0;
    transform: scaleY(1);
    transform-origin: bottom top;
}

.single-service-box-style1 {
    position: relative;
    display: block;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 40px 39px 36px;
}

.single-service-box-style1 .icon {
    position: relative;
    display: block;
    line-height: 0;
    padding-bottom: 22px;
}

.single-service-box-style1 .icon span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 40px;
    line-height: 40px;
}

.single-service-box-style1 h3 {
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
}

.single-service-box-style1 h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-box-style1 h3 a:hover {
    color: var(--thm-base);
}

.single-service-box-style1 .border-box {
    position: relative;
    display: block;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, .20);
    margin: 26px 0 23px;
}

.single-service-box-style1 .border-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    background-color: var(--thm-base);
}

.single-service-box-style1 .border-box:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0px;
    transition: all 900ms ease 100ms;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
}

.single-service-box-style1:hover .border-box:after {
    width: 100%;
}

.single-service-box-style1 p {
    color: #b8b4b1;
    margin: 0 0 18px;
}

.single-service-box-style1 h6 {
    color: #b8b4b1;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.single-service-box-style1 h6 span {
    color: var(--thm-base);
}

.single-service-box-style1 .btn-box {
    position: absolute;
    top: 20px;
    right: 20px;
}

.single-service-box-style1 .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #ffffff;
    font-size: 14px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-service-box-style1:hover .btn-box a {
    border-color: var(--thm-base);
}

.single-service-box-style1 .btn-box a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    transform: perspective(400px) translateY(-40px) scale(1.0);
    transform-style: preserve-3d;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: right center;
    z-index: -1;
}

.single-service-box-style1:hover .btn-box a:before {
    transform: perspective(400px) translateY(0px) scale(1);
    transform-origin: left center;
}

.service-style1__btns-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 60px;
}

/* ------------------------------------------
  Wealth Secure Area
-------------------------------------------- */
.wealth-secure-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 100px;
    z-index: 10;
}

.single-wealth-secure-box {
    position: relative;
    display: block;
    padding-right: 30px;
}

.single-wealth-secure-box .img-box {
    position: relative;
    display: block;
}

.single-wealth-secure-box .img-box-inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #646464;
}

.single-wealth-secure-box .img-box img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.single-wealth-secure-box:hover .img-box img {
    mix-blend-mode: normal;
}

.single-wealth-secure-box .inner-title {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: -30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 30px 17px;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.1);
    background-image: -moz-linear-gradient(180deg, rgb(15, 212, 216) 0%, rgb(0, 127, 142) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(15, 212, 216) 0%, rgb(0, 127, 142) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(15, 212, 216) 0%, rgb(0, 127, 142) 100%);
}

.single-wealth-secure-box:hover .inner-title {
    justify-content: flex-start;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-wealth-secure-box.style2 .inner-title {
    background-image: -moz-linear-gradient(180deg, rgb(19, 159, 206) 0%, rgb(14, 113, 157) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(19, 159, 206) 0%, rgb(14, 113, 157) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(19, 159, 206) 0%, rgb(14, 113, 157) 100%);
}

.single-wealth-secure-box.style3 .inner-title {
    background-image: -moz-linear-gradient(180deg, rgb(51, 127, 201) 20%, rgb(32, 87, 166) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(51, 127, 201) 20%, rgb(32, 87, 166) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(51, 127, 201) 20%, rgb(32, 87, 166) 100%);
}

.single-wealth-secure-box.style4 .inner-title {
    background-image: -moz-linear-gradient(180deg, rgb(82, 93, 191) 20%, rgb(61, 49, 135) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(82, 93, 191) 20%, rgb(61, 49, 135) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(82, 93, 191) 20%, rgb(61, 49, 135) 100%);
}

.single-wealth-secure-box .inner-title h3 {
    position: relative;
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
    z-index: 1;
}

.single-wealth-secure-box .inner-title h3 a {
    color: #ffffff;
}

.single-wealth-secure-box .inner-title .arrow-top {
    position: absolute;
    top: 0;
    right: 60px;
    border-top: 50px solid #ffffff;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    opacity: 0.20;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
}

.single-wealth-secure-box:hover .inner-title .arrow-top {
    transform: scale(0);
}

.single-wealth-secure-box .inner-title .arrow-bottom {
    position: absolute;
    right: 90px;
    bottom: 0;
    border-bottom: 50px solid #ffffff;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    opacity: 0.20;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
}

.single-wealth-secure-box:hover .inner-title .arrow-bottom {
    transform: scale(0);
}

.single-wealth-secure-box .inner-title .right-arrow-btn {
    position: relative;
    display: block;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-wealth-secure-box:hover .inner-title .right-arrow-btn {
    padding-left: 10px;
}

.single-wealth-secure-box .inner-title .right-arrow-btn a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
}

.single-wealth-secure-box .text-box {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 23px 30px 23px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}

.wealth-secure-carousel-2.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    display: flex;
    justify-content: space-between;
}

.wealth-secure-carousel-2 .owl-dots {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1170px;
    height: 1px;
    background-color: #f2ece7;
    counter-reset: slides-num;
    margin-top: 0 !important;
    z-index: 9999;
}

.wealth-secure-carousel-2 .owl-dots::after {
    position: absolute;
    right: 0;
    content: counter(slides-num);
    display: inline-block;
    color: #a5a2a0;
    font-size: 18px;
    line-height: 40px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    bottom: 0%;
}

.wealth-secure-carousel-2 .owl-dot {
    display: inline-block;
    counter-increment: slides-num;
}

.wealth-secure-carousel-2.owl-theme .owl-dots .owl-dot span {
    display: none;
}

.wealth-secure-carousel-2 .owl-dot.active::before {
    position: absolute;
    right: 20px;
    bottom: 0;
    content: counter(slides-num) "/";
    color: #1a1c23;
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    text-align: right;
    font-family: var(--thm-font-2);
}

.wealth-secure-carousel-2 {
    width: 1572px;
}

.wealth-secure-carousel-2.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding-bottom: 90px;
}

.wealth-secure-carousel-2.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.wealth-secure-carousel-2.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

/* ------------------------------------------
  Wealth Secure Style2 Area
-------------------------------------------- */
.wealth-secure-style2-area {
    position: relative;
    display: block;
    background-color: #f5f8f7;
    padding: 100px 0 100px;
    border-bottom: 1px solid #e1e6e5;
    z-index: 10;
}

.single-wealth-secure-box--style2 {
}

.single-wealth-secure-box--style2 .inner-title {
    background-color: #ffffff;
    background-image: none;
    left: 20px;
    bottom: 20px;
    right: -20px;
    padding: 17px 20px 17px;
}

.single-wealth-secure-box--style2 .inner-title h3 a {
    color: var(--thm-black);
}

.single-wealth-secure-box--style2 .text-box {
    position: relative;
    padding: 28px 20px 27px;
}

.single-wealth-secure-box--style2 .text-box p {
    color: #797c7f;
}

.single-wealth-secure-box--style2 .text-box ul {
    position: relative;
    display: block;
    padding-top: 14px;
}

.single-wealth-secure-box--style2 .text-box ul li {
    position: relative;
    display: block;
    padding-left: 25px;
    color: #797c7f;
    line-height: 30px;
    margin-bottom: 2px;
}

.single-wealth-secure-box--style2 .text-box ul li:last-child {
    margin-bottom: 0;
}

.single-wealth-secure-box--style2 .text-box ul li:before {
    font-family: 'icomoon' !important;
    position: absolute;
    top: 10px;
    left: 0;
    content: "\ea06";
    font-size: 12px;
    line-height: 12px;
    color: #abacaf;
}

.wealth-secure-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: -110px;
    right: 30px;
}

.wealth-secure-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.wealth-secure-carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.wealth-secure-carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

/* ------------------------------------------
  Features Style2 Area
-------------------------------------------- */
.features-style2-area {
    position: relative;
    display: block;
    background-color: #f7f1eb;
    padding: 100px 0 100px;
}

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

.features-style2-content ul li {
    border-left: 1px solid #e2deda;
}

.single-features-box-style2 {
    position: static;
    display: block;
    width: 100%;
    text-align: center;
    float: left;
    cursor: pointer;
}

.single-features-box-style2 .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border: 1px solid #e2deda;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-style2-tab__button .tabs-button-box .tab-btn-item:hover .single-features-box-style2 .icon,
.features-style2-tab__button .tabs-button-box .tab-btn-item.active-btn-item .single-features-box-style2 .icon {
    border-color: #ffffff;
    background-color: #ffffff;
}

.single-features-box-style2 .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 35px;
    line-height: 35px;
}

.single-features-box-style2:hover .icon span {
}

.features-style2-tab__button .tabs-button-box .tab-btn-item:hover .single-features-box-style2 .icon span,
.features-style2-tab__button .tabs-button-box .tab-btn-item.active-btn-item .single-features-box-style2 .icon span {
    background: -webkit-linear-gradient(#8a0f3d, #ce173c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-features-box-style2 .title {
    position: relative;
    display: block;
    padding-top: 23px;
}

.single-features-box-style2 .title h3 {
    font-size: 18px;
    line-height: 28px;
}

.single-features-box-style2 .title h3 a {
    color: var(--thm-black);
}

.single-features-box-style2 .arrow-button {
    position: absolute;
    left: 0;
    bottom: -30px;
    right: 0;
    opacity: 0;
    transform: perspective(400px) translateY(-10px) scale(1.0);
    transform-style: preserve-3d;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: right center;
}

.single-features-box-style2 .arrow-button a {
    position: relative;
    display: inline-block;
    transform: rotate(90deg);
    color: var(--thm-base);
    font-size: 20px;
}

.single-features-box-style2:hover .arrow-button {
}

.features-style2-tab__button .tabs-button-box .tab-btn-item:hover .single-features-box-style2 .arrow-button,
.features-style2-tab__button .tabs-button-box .tab-btn-item.active-btn-item .single-features-box-style2 .arrow-button {
    opacity: 1;
    transform: perspective(400px) translateY(0px) scale(1);
    transform-origin: left center;
}

.features-style2-carousel {
}

.features-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: -80px;
    right: -80px;
    display: flex;
    justify-content: space-between;
    height: 0;
    margin-top: -25px;
}

.features-style2-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    background-color: transparent;
    border: 1px solid #e2deda;
    border-radius: 50%;
}

.features-style2-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
    background-color: var(--thm-base);
    border-radius: 50%;
}

.features-style2-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    border-right: 1px solid #e2deda;
}

.features-style2-carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.features-style2-carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.features-style2-tab__button {
    position: relative;
    display: block;
    padding-bottom: 70px;
}

.features-style2-tab .tabs-content-box {
    position: relative;
    display: block;
}

.features-style2-tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.features-style2-tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.features-style2-tab .tab-content-box-item .features-style2-tab-content-box-item {
    transition: all 0.7s ease;
    opacity: 0;
    transform: scaleY(0.9);
    transform-origin: top bottom;
}

.features-style2-tab .tab-content-box-item.tab-content-box-item-active .features-style2-tab-content-box-item {
    opacity: 1.0;
    transform: scaleY(1);
    transform-origin: bottom top;
}

.features-style2-text-box {
    position: relative;
    display: block;
    background: #ffffff;
}

.features-style2-text-box>ul {
    position: relative;
    display: block;
}

.features-style2-text-box>ul>li {
    position: relative;
    display: block;
    padding-left: 30px;
    border-bottom: 1px solid #f2ece7;
    border-left: none;
}

.features-style2-text-box>ul>li>a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 400;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-style2-text-box>ul>li>a span {
    position: relative;
    display: block;
    border-left: 1px solid #f2ece7;
    width: 70px;
    line-height: 70px;
    text-align: center;
    color: #a5a2a0;
    font-size: 16px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-style2-text-box>ul>li>a:hover {
    color: var(--thm-base);
}

.features-style2-text-box>ul>li>a span:hover {
    color: var(--thm-base);
}

.features-style2-banner-box {
    position: relative;
    display: flex;
    background-color: #1a1c23;
    width: 100%;
    height: 100%;
    padding: 40px 0 40px;
}

.features-style2-banner-box .text-box {
    position: relative;
    display: block;
    width: 50%;
    text-align: center;
}

.features-style2-banner-box .text-box span {
    color: #ffffff;
    font-size: 40px;
    line-height: 40px;
}

.features-style2-banner-box .text-box h4 {
    color: #ffffff;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    margin: 12px 0 0;
}

.features-style2-banner-box .text-box h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
    margin: 7px 0 24px;
}

.features-style2-banner-box .text-box h2 {
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
}

.features-style2-banner-box .text-box h2 a {
    color: var(--thm-base);
}

.features-style2-banner-box .img-box {
    position: relative;
    display: block;
    width: 50%;
    z-index: 1;
}

.features-style2-banner-box .img-box:before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    bottom: -40px;
    right: 0;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20% 50%);
    z-index: -2;
}

.features-style2-banner-box .img-box .img-box-bg {
    position: absolute;
    top: -40px;
    left: 0;
    bottom: -40px;
    right: -1px;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    background-color: #2e2d2c;
    background-blend-mode: luminosity;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%, 0 50%);
    z-index: 1;
}

/* ------------------------------------------
  Features Style3 Area
-------------------------------------------- */
.features-style3-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 100px;
}

.features-style3-img-box {
    position: relative;
    display: block;
    padding-top: 60px;
    z-index: 1;
}

.features-style3-img-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    bottom: 0;
    right: 60px;
    background-image: -moz-linear-gradient(-90deg, rgb(247, 241, 235) 65%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(247, 241, 235) 65%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(247, 241, 235) 65%, rgb(255, 255, 255) 100%);
    z-index: -1;
}

.features-style3-img-box .inner-img {
    position: relative;
    display: inline-block;
}

.features-style3-img-box .inner-img img {
    width: 100%;
}

.features-style3-img-box .icon-holder {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.features-style3-img-box .icon-holder.two {
    top: auto;
    left: auto;
    bottom: 0;
    right: 100px;
}

.features-style3-img-box .icon-holder.three {
    top: auto;
    left: auto;
    bottom: 150px;
    right: 0px;
}

.features-style3-img-box .icon-holder span {
    color: var(--thm-black);
    font-size: 40px;
    line-height: 40px;
}

/* * Features Style3 Img Box Style2 * */
.features-style3-img-box--style2 {
    position: relative;
    padding-top: 20px;
    margin-right: 20px;
    min-height: 545px;
}

.features-style3-img-box--style2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    bottom: 0;
    right: 0px;
    background-image: -moz-linear-gradient(0deg, rgb(6, 118, 137) 0%, rgb(15, 180, 195) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(6, 118, 137) 0%, rgb(15, 180, 195) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(6, 118, 137) 0%, rgb(15, 180, 195) 100%);
}

.features-style3-img-box--style2 .inner-img-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 20px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
}

.features-style3-img-box--style2 .overaly-text {
    position: absolute;
    left: 0;
    top: 30px;
    width: 230px;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    text-align: center;
    padding: 30px 0 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.features-style3-img-box--style2 .overaly-text h3 {
    color: #757c7d;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    margin: 9px 0 0;
}

.features-style3-img-box--style2 .overaly-text h3 span {
    color: var(--thm-black);
}

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

.features-style3-content .sec-title {
    padding-bottom: 28px;
}

.features-style3-content .sec-title .sub-title {
    padding-top: 23px;
}

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

.features-style3-content .text-box ul {
    position: relative;
    display: block;
}

.features-style3-content .text-box ul li {
    position: relative;
    display: block;
    padding-left: 30px;
}

.features-style3-content .text-box ul li+li {
    margin-top: 11px;
}

.features-style3-content .text-box ul li .icon {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--thm-base);
    font-size: 16px;
}

.features-style3-content .text-box ul li p {
    margin: 0;
}

.apply-credit-card {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
    padding-top: 38px;
}

.apply-credit-card h3 {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 21px;
}

.apply-credit-card .input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.apply-credit-card form input[type="text"],
.apply-credit-card form input[type="email"] {
    position: relative;
    display: block;
    background: transparent;
    width: 100%;
    height: 60px;
    border: 1px solid #f2ece7;
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.apply-credit-card form .button-box button {
    position: relative;
    display: block;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}

/* ------------------------------------------
  Money Exchange Value Area
-------------------------------------------- */
.money-exchange-value-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 70px;
    z-index: 10;
}

.money-exchange-value-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    background-color: #1a1c23;
    background-blend-mode: luminosity;
    z-index: -1;
}

.money-exchange-value-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000000;
    opacity: 0.60;
}

.money-exchange-value-area .sec-title h2 {
    color: #ffffff;
}

.money-exchange-value-area .sec-title .sub-title p {
    color: #b8b4b1;
}

.money-exchange-value-tab {
    position: relative;
    display: block;
}

.money-exchange-value-tab__button {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 50px;
}

.money-exchange-value-tab__button .tabs-button-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.money-exchange-value-tab__button .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    float: left;
    padding: 14px 30px 14px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-top: 1px solid transparent;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.money-exchange-value-tab__button .tabs-button-box .tab-btn-item:hover,
.money-exchange-value-tab__button .tabs-button-box .tab-btn-item.active-btn-item {
    border-color: var(--thm-base);
    border-top-color: var(--thm-base);
    border-bottom-color: transparent;
}

.money-exchange-value-tab__button .tabs-button-box li+li {
    margin-left: 10px;
}

.money-exchange-value-tab__button .tabs-button-box .tab-btn-item h3 {
    color: #b8b4b1;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.money-exchange-value-tab__button .tabs-button-box .tab-btn-item:hover h3,
.money-exchange-value-tab__button .tabs-button-box .tab-btn-item.active-btn-item h3 {
    color: var(--thm-base);
}

.money-exchange-value-tab__button .right {
    position: relative;
    display: block;
    top: 7px;
}

.money-exchange-value-tab__button .right a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.money-exchange-value-tab__button .right a span:before {
    position: relative;
    display: inline-block;
    padding-right: 7px;
    color: var(--thm-base);
    top: 1px;
}

.money-exchange-value-tab .tabs-content-box {
    position: relative;
    display: block;
}

.money-exchange-value-tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.money-exchange-value-tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.money-exchange-value-tab .tab-content-box-item .money-exchange-value-tab-content-box-item {
    opacity: 0;
    transform: scaleY(1.0) translateY(-10px);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.money-exchange-value-tab .tab-content-box-item.tab-content-box-item-active .money-exchange-value-tab-content-box-item {
    opacity: 1.0;
    transform: scaleY(1) translateY(0px);
}

.single-money-exchange-value {
    position: relative;
    display: block;
    border: 1px solid rgba(255, 255, 255, .20);
    padding-top: 30px;
    margin-bottom: 30px;
}

.single-money-exchange-value .flag-box {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50%;
    padding: 5px;
}

.single-money-exchange-value .flag-box .flag-box-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 50%;
}

.single-money-exchange-value .flag-box .flag-box-inner img {
    width: 100%;
}

.single-money-exchange-value h3 {
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    margin: 14px 0 24px;
}

.single-money-exchange-value ul {
    position: relative;
    display: block;
}

.single-money-exchange-value ul li {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, .10);
    line-height: 50px;
    border-top: 1px solid rgba(255, 255, 255, .20);
    padding: 0 15px;
}

.single-money-exchange-value ul li:first-child {
    border-top: none;
}

.single-money-exchange-value ul li .left {
    position: relative;
    display: flex;
    align-items: center;
}

.single-money-exchange-value ul li .left p {
    position: relative;
    display: block;
    width: 70px;
    color: #b8b4b1;
}

.single-money-exchange-value ul li .left p span {
    position: relative;
    display: inline-block;
}

.single-money-exchange-value ul li .right {
    position: relative;
    display: block;
}

.single-money-exchange-value ul li .right p {
    color: #b8b4b1;
}

/* ---------------------------------------
  Faq style1 Area Css
----------------------------------------- */
.faq-style1-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 100px;
    z-index: 10;
}

.faq-style1-title {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 55px;
}

.faq-style1-title .sec-title {
    padding-bottom: 0;
}

.faq-search-box {
    position: relative;
    display: block;
    padding-bottom: 5px;
    max-width: 370px;
    width: 100%;
}

.faq-search-box h3 {
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 15px;
}

.faq-search-box__inner {
    position: relative;
    display: block;
}

.faq-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.faq-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    border: 0px solid #e5e5e5;
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 0px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.faq-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    display: block;
    text-align: center;
    border-radius: 0%;
    border: 0px solid #e7e7e8;
    transition: all 500ms ease 0s;
}

.faq-search-box .search-form button i {
    position: relative;
    top: 2px;
    color: var(--thm-black);
    font-size: 20px;
}

.faq-search-box .search-form input[type="text"]:focus {
    color: #000;
}

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

.faq-style1__image .inner {
    position: relative;
    display: block;
    background-color: #646464;
}

.faq-style1__image .inner img {
    width: 100%;
    mix-blend-mode: luminosity;
}

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

.faq-style1-bottom-box {
    position: relative;
    display: block;
    padding-top: 53px;
}

.faq-style1-bottom-box p {
    position: relative;
}

.faq-style1-bottom-box p a {
    color: var(--thm-base);
    font-weight: 500;
    text-decoration: underline;
}

.faq-style1-bottom-box p a:hover {
    color: var(--thm-gray);
}

.faq-style1-bottom-box .btns-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 23px;
}

.faq-style1-bottom-box .btns-box a {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}

/* ---------------------------------------
  Faq Page One Css
----------------------------------------- */
.faq-page-one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 100px;
    z-index: 10;
}

.faq-page-one .sec-title {
    padding-bottom: 35px;
}

.faq-page-one .faq-search-box {
    margin: 0 auto;
    padding-bottom: 60px;
}

/* ---------------------------------------
  Deals Area Css
----------------------------------------- */
.deals-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    overflow: hidden;
    z-index: 10;
}

.deals-area .auto-container {
    max-width: 1850px;
}

.deals-content-box {
    position: relative;
    display: block;
}

.single-deals-box {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #f7f1eb;
}

.single-deals-box .text-box {
    position: relative;
    display: block;
    width: 50%;
    float: left;
    padding: 97px 60px 100px;
    padding-right: 50px;
}

.single-deals-box .text-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 23px;
}

.single-deals-box .text-box .inner-title h4 {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 11px;
}

.single-deals-box .text-box .inner-title h2 {
    font-size: 40px;
    line-height: 48px;
}

.single-deals-box .text-box p {
    position: relative;
}

.single-deals-box .text-box ul {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 27px;
}

.single-deals-box .text-box ul li {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    margin-bottom: 24px;
}

.single-deals-box .text-box ul li .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.single-deals-box .text-box ul li .inner .icon {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--thm-base);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
}

.single-deals-box .text-box ul li .inner .text {
    position: relative;
    padding-left: 15px;
    flex: 1;
}

.single-deals-box .text-box ul li .inner .text p {
    color: var(--thm-black);
    font-weight: 500;
}

.single-deals-box .text-box .btns-box {
    position: relative;
    display: block;
    padding-top: 10px;
    line-height: 0;
}

.single-deals-box .img-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.single-deals-box .img-box .img-bg {
    position: absolute;
    top: 0;
    left: 120px;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    background-color: #646464;
    background-blend-mode: luminosity;
    z-index: -1;
}

.single-deals-box .img-box .shape-left-1 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 240px;
    background-color: #e5ded8;
    clip-path: polygon(50% 0, 100% 0, 50% 40%, 100% 100%, 40% 100%, 0 40%);
    z-index: 2;
}

.single-deals-box .img-box .shape-right-1 {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: 200px;
    background: #f7f1eb;
    clip-path: polygon(80% 0, 100% 0, 100% 50%, 100% 100%, 100% 100%, 50% 50%);
    z-index: 1;
}

.single-deals-box .img-box .shape-right-2 {
    position: absolute;
    top: 60%;
    right: 20px;
    bottom: 0;
    width: 200px;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    clip-path: polygon(40% 0, 70% 0%, 110% 50%, 100% 100%, 70% 100%, 90% 51%);
    z-index: 1;
}

.deals-carousel-one.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: 0;
    right: 510px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.deals-carousel-one.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
    margin: 0 0 0 0px;
    padding: 0;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    margin: 10px 0;
}

.deals-carousel-one.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
    border-radius: 50%;
}

.deals-carousel-one.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.deals-carousel-one.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.deals-carousel-one.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

/* ** 
=============================================
    Emi Calculator Area Css
=============================================
** */
.emi-calculator-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 100px;
    z-index: 10;
}

.emi-calculator-tab__button {
    position: relative;
    display: block;
    max-width: 400px;
    width: 100%;
    min-height: 610px;
    float: left;
}

.emi-calculator-tab__button--bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #646464;
    background-blend-mode: luminosity;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.emi-calculator-tab__button .tabs-button-box {
    position: absolute;
    top: 60px;
    right: -30px;
    z-index: 10;
}

.emi-calculator-tab__button .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.emi-calculator-tab__button .tabs-button-box .tab-btn-item:last-child {
    margin-bottom: 0;
}

.emi-calculator-tab__button .tabs-button-box .tab-btn-item .icon-box {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    color: var(--thm-black);
    font-size: 40px;
    line-height: 80px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    cursor: pointer;
    z-index: 10;
}

.emi-calculator-tab__button .tabs-button-box .tab-btn-item:hover .icon-box,
.emi-calculator-tab__button .tabs-button-box .tab-btn-item.active-btn-item .icon-box {
    color: #ffffff;
}

.emi-calculator-tab__button .tabs-button-box .tab-btn-item .icon-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    transform: scale(0);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    z-index: -1;
}

.emi-calculator-tab__button .tabs-button-box .tab-btn-item:hover .icon-box:before,
.emi-calculator-tab__button .tabs-button-box .tab-btn-item.active-btn-item .icon-box:before {
    transform: scale(1.0);
}

.emi-calculator-tab__button .tabs-button-box .tab-btn-item .icon-box .overlay-text {
    position: absolute;
    top: 0;
    right: 100%;
    width: 200px;
    text-align: right;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 25px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.emi-calculator-tab__button .tabs-button-box .tab-btn-item:hover .icon-box .overlay-text,
.emi-calculator-tab__button .tabs-button-box .tab-btn-item.active-btn-item .icon-box .overlay-text {
    opacity: 1;
    transform: translateX(0px);
}

.emi-calculator-tab__button .tabs-button-box .tab-btn-item .icon-box .overlay-text p {
    position: relative;
    display: inline-block;
    background-color: #ffffff;
    padding: 8px 15px 8px;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.emi-calculator-tab__button .tabs-button-box .tab-btn-item .icon-box .overlay-text p:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    border-left: 10px solid #ffffff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.emi-calculator-tab-content-box-outer {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    float: left;
    min-height: 610px;
    padding: 56px 100px 0;
    padding-right: 60px;
    background-image: -moz-linear-gradient(-90deg, rgb(247, 241, 235) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(247, 241, 235) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(247, 241, 235) 0%, rgb(255, 255, 255) 100%);
}

.emi-calculator-tab .tabs-content-box {
    position: relative;
    display: block;
}

.emi-calculator-tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.emi-calculator-tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.emi-calculator-tab .tab-content-box-item .emi-calculator-tab-content-box-item {
    opacity: 0;
    transform: scaleY(1.0) translateY(-10px);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.emi-calculator-tab .tab-content-box-item.tab-content-box-item-active .emi-calculator-tab-content-box-item {
    opacity: 1.0;
    transform: scaleY(1) translateY(0px);
}

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

.price-range-box {
    position: relative;
    display: block;
    padding-right: 140px;
    margin-bottom: 28px;
}

.price-range-box .inner {
    position: relative;
    display: block;
}

.price-range-box h4 {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 11px;
}

.price-range-box .price-range-slider {
    border: none;
    height: 8px;
    background-color: rgb(255, 255, 255);
    box-shadow: inset 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.price-range-box .price-range-slider .ui-slider-range {
    border-radius: 0;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
}

.price-range-box .price-range-slider.ui-slider .ui-slider-handle {
    position: absolute;
    content: '';
    top: 0px;
    width: 2px;
    height: 16px;
    border: none;
    border-radius: 0%;
    cursor: pointer;
    margin-left: 0px;
    background-image: none;
    background-color: rgb(207, 23, 60);
    outline: none;
}

.price-range-box .range-input {
    position: relative;
    display: block;
    padding-top: 7px;
}

.price-range-box .range-input .input {
    position: relative;
    display: block;
}

.price-range-box .range-input .input input {
    position: relative;
    display: block;
    color: #7f7873;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font);
    border: none;
    background: transparent;
    width: 100%;
}

.price-range-box .right-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 110px;
    height: 50px;
    border: 1px solid #e3ddd7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.price-range-box .right-box h5 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}

.loan-term-range-box {
    position: relative;
    display: block;
    padding-right: 140px;
    margin-bottom: 28px;
}

.loan-term-range-box .inner {
    position: relative;
    display: block;
}

.loan-term-range-box h4 {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 11px;
}

.loan-term-range-box h4 span {
    font-weight: 400;
}

.loan-term-range-box .loan-term-range-slider {
    border: none;
    height: 8px;
    background-color: rgb(255, 255, 255);
    box-shadow: inset 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.loan-term-range-box .loan-term-range-slider .ui-slider-range {
    border-radius: 0;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
}

.loan-term-range-box .loan-term-range-slider.ui-slider .ui-slider-handle {
    position: absolute;
    content: '';
    top: 0px;
    width: 2px;
    height: 16px;
    border: none;
    border-radius: 0%;
    cursor: pointer;
    margin-left: 0px;
    background-image: none;
    background-color: rgb(207, 23, 60);
}

.loan-term-range-box .range-input {
    position: relative;
    display: block;
    padding-top: 7px;
}

.loan-term-range-box .range-input .input {
    position: relative;
    display: block;
}

.loan-term-range-box .range-input .input input {
    position: relative;
    display: block;
    color: #7f7873;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font);
    border: none;
    background: transparent;
    width: 100%;
}

.loan-term-range-box .right-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 110px;
    height: 50px;
    border: 1px solid #e3ddd7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.loan-term-range-box .right-box h5 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}

.interest-rate-range-box {
    position: relative;
    display: block;
    padding-right: 140px;
}

.interest-rate-range-box .inner {
    position: relative;
    display: block;
}

.interest-rate-range-box h4 {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 11px;
}

.interest-rate-range-box .interest-rate-range-slider {
    border: none;
    height: 8px;
    background-color: rgb(255, 255, 255);
    box-shadow: inset 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.interest-rate-range-box .interest-rate-range-slider .ui-slider-range {
    border-radius: 0;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
}

.interest-rate-range-box .interest-rate-range-slider.ui-slider .ui-slider-handle {
    position: absolute;
    content: '';
    top: 0px;
    width: 2px;
    height: 16px;
    border: none;
    border-radius: 0%;
    cursor: pointer;
    margin-left: 0px;
    background-image: none;
    background-color: rgb(207, 23, 60);
}

.interest-rate-range-box .range-input {
    position: relative;
    display: block;
    padding-top: 7px;
}

.interest-rate-range-box .range-input .input {
    position: relative;
    display: block;
}

.interest-rate-range-box .range-input .input input {
    position: relative;
    display: block;
    color: #7f7873;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font);
    border: none;
    background: transparent;
    width: 100%;
}

.interest-rate-range-box .right-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 110px;
    height: 50px;
    border: 1px solid #e3ddd7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.interest-rate-range-box .right-box h5 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}

.emi-calculator-output-box {
    position: relative;
    display: block;
    padding: 40px 30px 40px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    margin-top: 53px;
}

.emi-calculator-output-box:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    bottom: 40px;
    width: 1px;
    background-color: #f2ece7;
}

.emi-calculator-output-box .left-box {
    position: relative;
    display: block;
    width: 50%;
    float: left;
}

.emi-calculator-output-box .left-box .top {
    position: relative;
    display: block;
    overflow: hidden;
    padding-left: 60px;
}

.emi-calculator-output-box .left-box .top .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border: 1px solid #f7f1eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-base);
    font-size: 30px;
}

.emi-calculator-output-box .left-box .top .inner-title {
    position: relative;
    display: block;
    padding-left: 20px;
}

.emi-calculator-output-box .left-box .top .inner-title h3 {
    color: #7f7873;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    margin: 0 0 12px;
}

.emi-calculator-output-box .left-box .top .inner-title h2 {
    font-size: 30px;
    line-height: 30px;
}

.emi-calculator-output-box .left-box .top .inner-title h2 span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    padding-right: 5px;
    top: -5px;
}

.emi-calculator-output-box .left-box .btns-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 30px;
}

.emi-calculator-output-box .left-box .btns-box a {
    line-height: 50px;
}

.emi-calculator-output-box .left-box .btns-box a:after {
    background-color: #f7f1eb;
}

.emi-calculator-output-box .right-box {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    padding-left: 30px;
}

.emi-calculator-output-box .right-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.emi-calculator-output-box .right-box ul li {
    position: relative;
    display: block;
}

.emi-calculator-output-box .right-box ul li+li {
    border-top: 1px solid #f2ece7;
    padding-top: 18px;
    margin-top: 18px;
}

.emi-calculator-output-box .right-box ul li .inner {
    position: relative;
    display: block;
    padding-left: 30px;
}

.emi-calculator-output-box .right-box ul li .icon {
    position: absolute;
    top: 4px;
    left: 0;
    color: var(--thm-base);
    font-size: 15px;
}

.emi-calculator-output-box .right-box ul li .text {
    position: relative;
    display: block;
}

.emi-calculator-output-box .right-box ul li .text a {
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.emi-calculator-output-box .right-box ul li .text p {
    margin: 1px 0 0;
}

/* ** 
=============================================
    Emi Calculator Style2 Area Css
=============================================
** */
.emi-calculator-style2-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 100px;
    z-index: 10;
}

.emi-calculator-style2-area .sec-title .sub-title p {
    color: #797c7f;
}

.emi-calculator-tab--style2 {
    position: relative;
    display: block;
}

.emi-calculator-tab--style2 .emi-calculator-tab__button .tabs-button-box .tab-btn-item .icon-box:before {
    background-image: -moz-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    background-image: -webkit-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    background-image: -ms-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
}

.emi-calculator-tab--style2 .emi-calculator-tab-content-box-outer {
    background-image: -moz-linear-gradient(-90deg, rgb(245, 248, 247) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(245, 248, 247) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(245, 248, 247) 0%, rgb(255, 255, 255) 100%);
}

.emi-calculator-tab--style2 .price-range-box .price-range-slider .ui-slider-range {
    background-image: -moz-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    background-image: -webkit-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    background-image: -ms-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
}

.emi-calculator-tab--style2 .price-range-box .price-range-slider.ui-slider .ui-slider-handle {
    background-color: var(--thm-base);
}

.emi-calculator-tab--style2 .price-range-box .right-box {
    border: 1px solid #e1e6e4;
}

.emi-calculator-tab--style2 .price-range-box .range-input .input input {
    color: #797c7f;
}

.emi-calculator-tab--style2 .loan-term-range-box .loan-term-range-slider .ui-slider-range {
    background-image: -moz-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    background-image: -webkit-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    background-image: -ms-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
}

.emi-calculator-tab--style2 .loan-term-range-box .loan-term-range-slider.ui-slider .ui-slider-handle {
    background-color: var(--thm-base);
}

.emi-calculator-tab--style2 .loan-term-range-box .right-box {
    border: 1px solid #e1e6e4;
}

.emi-calculator-tab--style2 .loan-term-range-box .range-input .input input {
    color: #797c7f;
}

.emi-calculator-tab--style2 .interest-rate-range-box .interest-rate-range-slider .ui-slider-range {
    background-image: -moz-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    background-image: -webkit-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    background-image: -ms-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
}

.emi-calculator-tab--style2 .interest-rate-range-box .interest-rate-range-slider.ui-slider .ui-slider-handle {
    background-color: var(--thm-base);
}

.emi-calculator-tab--style2 .interest-rate-range-box .right-box {
    border: 1px solid #e1e6e4;
}

.emi-calculator-tab--style2 .interest-rate-range-box .range-input .input input {
    color: #797c7f;
}

.emi-calculator-tab--style2 .emi-calculator-output-box .left-box .top .icon {
    border: 1px solid #e6ebe9;
}

.emi-calculator-tab--style2 .emi-calculator-output-box .left-box .top .inner-title h3 {
    color: #797c7f;
}

.emi-calculator-tab--style2 .emi-calculator-output-box .left-box .btns-box a:after {
    background-color: #f5f8f7;
}

.emi-calculator-tab--style2 .emi-calculator-output-box:before {
    background-color: #e6ebe9;
}

.emi-calculator-tab--style2 .emi-calculator-output-box .right-box ul li .text p {
    color: #797c7f;
}

.emi-calculator-tab--style2 .emi-calculator-output-box .right-box ul li+li {
    border-top: 1px solid #e6ebe9;
}

/* ** 
=============================================
    Slogan Area Css
=============================================
** */
.slogan-area {
    position: relative;
    display: block;
    background-color: rgb(26, 28, 35);
}

.slogan-content-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 75px 0;
    z-index: 1;
}

.slogan-content-box-bg {
    position: absolute;
    top: 0;
    left: 300px;
    bottom: 0;
    right: 100px;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    background-color: #1a1c23;
    background-blend-mode: luminosity;
    z-index: -1;
}

.slogan-content-box-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(26, 28, 35);
    background: linear-gradient(270deg, rgba(26, 28, 35, 1) 0%, rgba(26, 28, 35, 1) 5%, rgba(26, 28, 35, 0.4990371148459384) 40%, rgba(26, 28, 35, 1) 95%, rgba(26, 28, 35, 1) 100%);
}

.slogan-content-box .inner-title {
    position: relative;
    display: block;
}

.slogan-content-box .inner-title h2 {
    color: #ffffff;
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    margin: 0 0 7px;
}

.slogan-content-box .inner-title p {
    color: #b8b4b1;
}

.get-app-box {
    position: relative;
    display: block;
}

.get-app-box ul {
    position: relative;
    display: block;
}

.get-app-box ul li {
    position: relative;
    display: block;
    float: left;
    margin-right: 20px;
}

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

.get-app-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f8f6f3;
    padding: 16px 30px 17px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}

.get-app-box ul li a:hover {
    background-color: var(--thm-base);
}

.get-app-box ul li a .icon {
    width: 30px;
    line-height: 0;
}

.get-app-box ul li a .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.get-app-box ul li a:hover .icon span {
    color: #ffffff;
}

.get-app-box ul li a .text {
    position: relative;
    flex: 1;
}

.get-app-box ul li a .text h4 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.get-app-box ul li a:hover .text h4 {
    color: #ffffff;
}

.get-app-box ul li a.style2 {
    background-color: var(--thm-base);
}

.get-app-box ul li a.style2 .icon span {
    color: #ffffff;
}

.get-app-box ul li a.style2 .text h4 {
    color: #ffffff;
}

.get-app-box ul li a.style2:hover {
    background-color: #f8f6f3;
}

.get-app-box ul li a.style2:hover .icon span {
    color: var(--thm-base);
}

.get-app-box ul li a.style2:hover .text h4 {
    color: var(--thm-base);
}

/* ** 
=============================================
  Slogan Area Style2 Css
=============================================
** */
.slogan-area--style2 {
    background: #067689;
}

.slogan-content-box--style2 {
    position: relative;
}

.slogan-content-box--style2 .inner-title p {
    color: #ffffff;
}

.slogan-content-box--style2 .slogan-content-box-bg {
    background-color: var(--thm-base);
}

.slogan-content-box--style2 .slogan-content-box-bg:before {
    background: rgb(6, 118, 137);
    background: linear-gradient(270deg, rgba(6, 118, 137, 1) 0%, rgba(6, 118, 137, 1) 5%, rgba(6, 118, 137, 0.4990371148459384) 40%, rgba(6, 118, 137, 1) 95%, rgba(6, 118, 137, 1) 100%);
}

/* ** 
=============================================
    Individual Corporate Banking Area Css
=============================================
** */
.individual-corporate-banking-area {
    position: relative;
    display: block;
    z-index: 10;
}

.individual-corporate-banking-area .container {
    max-width: 100%;
    padding: 0;
}

.individual-corporate-banking-area .container .row {
    --bs-gutter-x: 0px;
}

.individual-banking {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 93px 0 70px;
    z-index: 1;
}

.individual-banking-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    background-color: #1a1c23;
    background-blend-mode: luminosity;
    z-index: -1;
}

.individual-banking-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(26, 28, 35);
    background: linear-gradient(90deg, rgba(26, 28, 35, 1) 0%, rgba(26, 28, 35, 0) 0%, rgba(26, 28, 35, 0) 40%, rgba(26, 28, 35, 0.3701855742296919) 51%, rgba(26, 28, 35, 0.9472163865546218) 65%, rgba(26, 28, 35, 1) 100%);
}

.individual-banking-bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #1a1c23;
    opacity: 0.80;
}

.individual-banking__inner {
    position: relative;
    display: block;
    max-width: 670px;
    width: 100%;
    float: right;
    padding-right: 100px;
    z-index: 2;
}

.individual-banking__inner .sec-title {
    margin-top: 0px;
    padding-bottom: 55px;
}

.individual-banking__inner .sec-title h2 {
    color: #ffffff;
}

.individual-banking__inner .sec-title .sub-title p {
    color: #a5a6aa;
}

.individual-banking__inner-content {
    position: relative;
    display: block;
    overflow: hidden;
}

.individual-banking__inner-content ul {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -15px;
    margin-right: -15px;
}

.individual-banking__inner-content ul li {
    position: relative;
    display: block;
    float: left;
    width: 33.3333333333%;
    padding: 0 15px;
}

.single-features-of-banking {
    position: relative;
    display: block;
    background-color: #272a32;
    border: 1px solid #363a42;
    text-align: center;
    padding: 30px 0px 0;
    width: 170px;
    margin: 0 auto 30px;
    z-index: 1;
}

.single-features-of-banking:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-right: 55px solid #30343c;
    border-top: 102px solid transparent;
    border-bottom: 102px solid transparent;
}

.single-features-of-banking::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    border: 1px solid var(--thm-base);
    z-index: -1;
    opacity: 0;
    transform: perspective(400px) scaleX(0.7);
    transform-origin: center;
}

.single-features-of-banking:hover::after {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.single-features-of-banking .icon-holder {
    font-size: 40px;
}

.single-features-of-banking h3 {
    font-size: 20px;
    line-height: 28px;
    margin: 12px 0 11px;
}

.single-features-of-banking h3 a {
    color: #ffffff;
}

.single-features-of-banking .btn-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    padding-top: 9px;
    z-index: 1;
}

.single-features-of-banking .btn-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    border-bottom: 55px solid #30343c;
    border-left: 85px solid transparent;
    border-right: 85px solid transparent;
}

.single-features-of-banking:hover .btn-box:before {
    border-bottom-color: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-features-of-banking .btn-box a {
    position: relative;
    display: inline-block;
    color: #a5a6aa;
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-features-of-banking:hover .btn-box a {
    color: #ffffff;
}

.single-features-of-banking.more-services {
    background-color: transparent;
    border: none;
    padding: 34px 0px 0;
    box-shadow: none;
    margin-top: 1px;
}

.single-features-of-banking.more-services:before {
    display: none;
}

.single-features-of-banking.more-services:after {
    display: none;
}

.single-features-of-banking .more-service-box {
    position: relative;
    display: block;
    padding: 2px 0 32px;
}

.single-features-of-banking .more-service-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 50%;
    color: #747579;
    font-size: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-features-of-banking .more-service-box a:hover {
    color: #ffffff;
    background-color: var(--thm-base);
}

.single-features-of-banking .more-service-box h3 {
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    margin: 16px 0 0;
}

.corporate-banking {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 93px 0 70px;
    z-index: 1;
}

.corporate-banking-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    background-color: #1a1c23;
    background-blend-mode: luminosity;
    z-index: -1;
}

.corporate-banking-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(26, 28, 35);
    background: linear-gradient(90deg, rgba(26, 28, 35, 1) 0%, rgba(245, 248, 247, 1) 0%, rgba(245, 248, 247, 1) 30%, rgba(245, 248, 247, 1) 40%, rgba(245, 248, 247, 1) 55%, rgba(245, 248, 247, 0) 100%);
}

.corporate-banking-bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #f5f8f7;
    opacity: 0.80;
}

.corporate-banking__inner {
    position: relative;
    display: block;
    max-width: 670px;
    width: 100%;
    float: left;
    padding-left: 100px;
    z-index: 2;
}

.corporate-banking__inner .sec-title {
    margin-top: 0px;
    padding-bottom: 55px;
}

.corporate-banking__inner .sec-title h2 {
    color: var(--thm-black);
}

.corporate-banking__inner .sec-title .sub-title p {
    color: #797c7f;
}

.corporate-banking__inner-content {
    position: relative;
    display: block;
    overflow: hidden;
}

.corporate-banking__inner-content ul {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -15px;
    margin-right: -15px;
}

.corporate-banking__inner-content ul li {
    position: relative;
    display: block;
    float: left;
    width: 33.3333333333%;
    padding: 0 15px;
}

.single-features-of-banking--style2 {
    border-color: #e1e6e4;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
}

.single-features-of-banking--style2 h3 a {
    color: var(--thm-black);
}

.single-features-of-banking--style2:before {
    border-right: 55px solid #f5f8f7;
}

.single-features-of-banking--style2 .btn-box:before {
    border-bottom: 55px solid #f5f8f7;
}

.single-features-of-banking--style2 .more-service-box h3 {
    color: var(--thm-black);
}

/* ** 
=============================================
    Service Request Area Css
=============================================
** */
.service-request-area {
    position: relative;
    display: block;
    z-index: 10;
}

.service-request-area .container {
    max-width: 100%;
    padding: 0;
}

.service-request-area__inner {
    --bs-gutter-x: 0px;
}

.service-request-content-one {
    position: relative;
    display: block;
    min-height: 730px;
    z-index: 1;
}

.service-request-content-one-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-color: #646464;
    background-blend-mode: luminosity;
    z-index: -1;
}

.service-request-content-one__title {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    min-height: 320px;
    z-index: 2;
    padding: 92px 80px 85px;
}

.service-request-content-one__title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(180deg, #463c85 0%, #241E4E  70%);
    background-image: -webkit-linear-gradient(180deg, #463c85 0%, #241E4E  70%);
    background-image: -ms-linear-gradient(180deg, #463c85 0%, #241E4E  70%);
    clip-path: polygon(0 0, 100% 110px, 100% 100%, 0% 100%);
    z-index: -1;
}

.service-request-content-one__title:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #241E4E;
    opacity: 0.70;
    clip-path: polygon(0 110px, 100% 0, 100% 100%, 0% 100%);
    z-index: -2;
}

.service-request-content-one__title .sec-title {
    margin-top: 0px;
    padding-bottom: 0px;
}

.service-request-content-one__title .sec-title h2 {
    color: #ffffff;
}

.service-request-content-one__title .sec-title .sub-title p {
    color: #ffffff;
}

.service-request-content-two {
    position: relative;
    display: block;
    min-height: 730px;
    z-index: 1;
}

.service-request-content-two-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-color: #1a1c23;
    background-blend-mode: luminosity;
    z-index: -1;
}

.service-request-content-two-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #1a1c23;
    opacity: 0.90;
}

.service-request-content-two__inner {
    position: relative;
    display: block;
}

.service-request-content-two__inner>ul.row {
    --bs-gutter-x: 0;
}

.service-request-content-two__inner>ul.row>li {
    position: relative;
}

.service-request-content-two__inner>ul.row>li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #363841;
}

.service-request-content-two__inner>ul.row>li+li {
    border-left: 1px solid #363841;
}

.single-service-request-content-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-service-request-content-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #1f2129;
    z-index: 1;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(-100%);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(-100%);
    transform: perspective(400px) rotateX(0deg) translateY(-100%);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    transition-property: all;
}

.single-service-request-content-box:hover:before {
    opacity: 1.0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0%);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0%);
    transform: perspective(400px) rotateX(0deg) translateY(-0%);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.single-service-request-content-box .static-content {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 365px;
    padding: 30px 30px 30px;
}

.single-service-request-content-box .icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 50px;
}

.single-service-request-content-box .more-btn {
    position: absolute;
    left: 30px;
    bottom: 30px;
    line-height: 0;
}

.single-service-request-content-box .more-btn a {
    position: relative;
    display: inline-block;
}

.single-service-request-content-box .more-btn a span {
    position: relative;
    display: inline-block;
    font-size: 70px;
    line-height: 70px;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #373a42;
}

.single-service-request-content-box .inner-title {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.single-service-request-content-box .inner-title h3 {
    color: #ffffff;
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 11px;
}

.single-service-request-content-box .inner-title h4 {
    color: #a5a6aa;
    font-size: 18px;
}

.single-service-request-content-box .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 36px 30px 30px;
    z-index: 2;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(100%);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(100%);
    transform: perspective(400px) rotateX(0deg) translateY(100%);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    transition-property: all;
}

.single-service-request-content-box:hover .overlay-content {
    opacity: 1.0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0%);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0%);
    transform: perspective(400px) rotateX(0deg) translateY(-0%);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.single-service-request-content-box .overlay-content .title {
    position: relative;
    display: inline-flex;
}

.single-service-request-content-box .overlay-content .title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    right: 0;
    height: 4px;
    background-color: var(--thm-base);
}

.single-service-request-content-box .overlay-content .title h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 24px;
}

.single-service-request-content-box .overlay-content ul {
    position: relative;
    display: block;
    padding-top: 24px;
}

.single-service-request-content-box .overlay-content ul li {
    position: relative;
    display: block;
    padding-left: 25px;
    color: #a5a6aa;
    font-size: 18px;
    line-height: 30px;
    font-family: var(--thm-font-2);
}

.single-service-request-content-box .overlay-content ul li+li {
    border-top: 1px solid #3a3b43;
    padding-top: 10px;
    margin-top: 10px;
}

.single-service-request-content-box .overlay-content ul li:before {
    font-family: 'icomoon' !important;
    position: absolute;
    top: 20px;
    left: 0;
    content: "\ea06";
    font-size: 12px;
    line-height: 12px;
}

.single-service-request-content-box .overlay-content ul li:first-child::before {
    top: 9px;
}

/* ** 
=============================================
    Locker Facility Area Css
=============================================
** */
.locker-facility-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 100px;
    z-index: 10;
}

.locker-facility-highlights {
    position: relative;
    display: block;
    padding: 50px 0 50px;
    background-image: -moz-linear-gradient(0deg, rgb(245, 248, 247) 80%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(245, 248, 247) 80%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(245, 248, 247) 80%, rgb(255, 255, 255) 100%);
}

.locker-facility-highlights .img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.locker-facility-highlights .img-box .inner {
    position: relative;
    display: inline-block;
}

.locker-facility-highlights .img-box .icon {
    position: absolute;
    left: -70px;
    bottom: 50px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
    font-size: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.locker-facility-highlights .single-box {
    position: absolute;
    display: block;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
    padding-top: 12px;
    padding-left: 45px;
    padding-bottom: 12px;
    padding-right: 20px;
    z-index: 3;
}

.locker-facility-highlights .single-box .icon {
    position: absolute;
    top: 12px;
    left: 20px;
    color: var(--thm-base);
    font-size: 18px;
    line-height: 26px;
}

.locker-facility-highlights .single-box.one {
    top: 60px;
    left: 50px;
}

.locker-facility-highlights .single-box.two {
    top: 120px;
    right: 70px;
}

.locker-facility-highlights .single-box.three {
    right: 30px;
    bottom: 120px;
}

.locker-facility-text-box {
    position: relative;
    display: block;
    padding-top: 50px;
}

.locker-facility-text-box .sec-title {
    padding-bottom: 32px;
}

.locker-facility-text-box .text-box {
    position: relative;
    display: block;
    padding-bottom: 34px;
}

.locker-facility-text-box .btns-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-bottom: 40px;
}

.locker-facility-text-box .btns-box a {
    background-color: #f5f8f7;
}

.locker-facility-text-box .btns-box a:after {
    background-color: #f5f8f7;
}

.faq-question-btn {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-left: 90px;
    min-height: 70px;
}

.faq-question-btn .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: -moz-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    background-image: -webkit-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    background-image: -ms-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
}

.faq-question-btn p {
    line-height: 16px;
    margin: 0 0 13px;
}

.faq-question-btn a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 16px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    text-transform: uppercase;
}

.faq-question-btn a span::before {
    position: relative;
    display: inline-block;
    font-size: 14px;
    padding-right: 7px;
    color: var(--thm-base);
}

/* ** 
=============================================
    Facts Area Css
=============================================
** */
.facts-area {
    position: relative;
    display: block;
    padding: 100px 0 50px;
    z-index: 10;
}

.facts-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    z-index: -1;
}

.facts-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-black);
    opacity: 0.75;
}

.facts-area-bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(26, 28, 35);
    background: linear-gradient(0deg, rgba(26, 28, 35, 1) 0%, rgba(26, 28, 35, 1) 0%, rgba(26, 28, 35, 0.700717787114846) 40%, rgba(26, 28, 35, 0.4962359943977591) 60%, rgba(26, 28, 35, 0) 100%);
}

.facts-area .sec-title h2 {
    color: #ffffff;
}

.facts-area .sec-title .sub-title p {
    color: #a5a6aa;
}

.single-fact-box {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 43px;
}

.single-fact-box .icon {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 50%;
    font-size: 60px;
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-fact-box:hover .icon {
    color: var(--thm-base);
    border: 1px solid rgba(255, 255, 255, 1.0);
}

.single-fact-box .icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0;
    background-color: #ffffff;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.single-fact-box:hover .icon:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.single-fact-box .text {
    position: relative;
    display: block;
    padding-top: 31px;
}

.single-fact-box .text h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 24px;
    margin: 0 0 8px;
}

.single-fact-box .text p {
    color: #a5a6aa;
}

/* ** 
=============================================
    Features Style4 Area Css
=============================================
** */
.features-style4-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 100px;
    z-index: 10;
}

.features-style4-area:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    z-index: -1;
    background-image: -moz-linear-gradient(-90deg, rgb(245, 248, 247) 65%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(245, 248, 247) 65%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(245, 248, 247) 65%, rgb(255, 255, 255) 100%);
}

.features-style4-title-box {
    position: relative;
    display: block;
}

.features-style4-title-box .sec-title {
    padding-bottom: 34px;
}

.features-style4-title-box .sec-title h2 {
    text-transform: none;
}

.features-style4-title-box .sec-title .sub-title {
    padding-top: 23px;
}

.features-style4-title-box .btns-box {
    position: relative;
    display: block;
    line-height: 0;
}

.features-style4-title-box .btns-box .btn-one {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}

.app-screen {
    position: relative;
    display: block;
}

.app-screen img {
    width: 100%;
}

.account-creation-step {
    position: relative;
    display: block;
    margin-top: 10px;
}

.account-creation-step ul {
    position: relative;
    display: block;
}

.account-creation-step ul li {
    position: relative;
    display: block;
    margin-bottom: 51px;
}

.account-creation-step ul li:last-child {
    margin-bottom: 0;
}

.account-creation-step .single-step {
    position: relative;
    display: block;
    padding-left: 100px;
}

.account-creation-step .single-step .counting {
    position: absolute;
    top: -10px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #e6ebe9;
    background-color: #ffffff;
    color: #a8a8a8;
    font-size: 22px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 300ms linear;
    transition-delay: 0.2s;
    z-index: 1;
}

.account-creation-step .single-step .counting::after {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: -110px;
    width: 1px;
    background: #e6ebe9;
    content: "";
    margin: 0 auto;
    z-index: 1;
}

.account-creation-step .single-step .lnone.counting::after {
    display: none;
}

.account-creation-step .single-step:hover .counting {
    color: #ffffff;
}

.account-creation-step .single-step .counting::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    background-image: -webkit-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    background-image: -ms-linear-gradient(180deg, #463c85 0%, #241E4E 100%);
    border-radius: 50%;
    transition: all 300ms linear;
    transition-delay: 0.2s;
    transform: scale(0.7);
    opacity: 0;
    z-index: -1;
    content: "";
}

.account-creation-step .single-step:hover .counting::before {
    transform: scale(1.0);
    opacity: 1;
}

.account-creation-step .single-step .text-box {
    position: relative;
    display: block;
    background: #f5f8f7;
    padding: 22px 30px 23px;
}

.account-creation-step .single-step .text-box::before {
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    background: #f5f8f7;
    height: 5px;
    content: "";
}

.account-creation-step .single-step .text-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 9px;
}

.account-creation-step .single-step .text-box p {
    margin: 0;
}

/* ** 
=============================================
    Offers Area Css
=============================================
** */
.offers-area {
    position: relative;
    display: block;
    background-color: #f5f8f7;
    padding-top: 100px;
    padding-bottom: 93px;
}

.single-offer-box {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
    padding: 30px 30px 24px;
    margin-bottom: 30px;
}

.single-offer-box .top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 26px;
}

.single-offer-box .top .offer-logo {
    position: relative;
    display: block;
}

.single-offer-box .top .offer-logo img {
    width: auto;
}

.single-offer-box .top .date-box {
    position: relative;
    display: block;
}

.single-offer-box .top .date-box p {
    color: #797c7f;
}

.single-offer-box .category {
    position: relative;
    display: flex;
    align-items: center;
}

.single-offer-box .category h4 {
    color: var(--thm-base);
    font-size: 16px;
    line-height: 20px;
}

.single-offer-box .category .border-box {
    position: relative;
    display: block;
    margin-left: 10px;
    width: 70px;
    height: 1px;
    background-image: -moz-linear-gradient(0deg, rgb(37, 184, 93) 0%, rgba(37, 184, 93, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(37, 184, 93) 0%, rgba(37, 184, 93, 0) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(37, 184, 93) 0%, rgba(37, 184, 93, 0) 100%);
}

.single-offer-box h3 {
    font-size: 22px;
    line-height: 30px;
    margin: 9px 0 15px;
}

.single-offer-box .bottom {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.single-offer-box .bottom .btn-box {
    position: relative;
    display: block;
}

.single-offer-box .bottom .btn-box a {
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.single-offer-box .bottom .btn-box a span {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--thm-base);
    font-size: 16px;
}

.single-offer-box .bottom .share-btn {
    position: relative;
    display: block;
}

.single-offer-box .bottom .share-btn a {
    color: #797c7f;
    font-size: 16px;
}

.single-offer-box .bottom .share-btn a span {
    position: relative;
    top: 2px;
    display: inline-block;
    padding-right: 7px;
    font-size: 18px;
}

.subscribe-box-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
    padding: 50px 30px 50px;
    text-align: center;
}

.subscribe-box-style1 .icon {
    position: relative;
    display: inline-block;
}

.subscribe-box-style1 .inner-title {
    position: relative;
    display: block;
    padding-top: 15px;
    padding-bottom: 23px;
}

.subscribe-box-style1 .inner-title h3 {
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 5px;
}

.subscribe-box-style1 .inner-title p {
    color: #797c7f;
}

.subscribe-form-style1 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subscribe-form-style1 .input-box {
    position: relative;
    display: block;
    width: 100%;
}

.subscribe-form-style1 .input-box input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 52px;
    padding: 0 22px;
    padding-right: 50px;
    background: #ffffff;
    border: 1px solid #e6ebe9;
    color: #797c7f;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.subscribe-form-style1 .input-box .inner-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #b1b2b5;
    font-size: 14px;
    line-height: 14px;
}

.subscribe-form-style1 input::-webkit-input-placeholder {
    color: #808080;
}

.subscribe-form-style1 input:-moz-placeholder {
    color: #808080;
}

.subscribe-form-style1 input::-moz-placeholder {
    color: #808080;
}

.subscribe-form-style1 input:-ms-input-placeholder {
    color: #808080;
}

.subscribe-form-style1 button {
    position: relative;
    display: block;
    margin-top: 20px;
    line-height: 50px;
}

.subscribe-form-style1 button:after {
    background-color: #f5f8f7;
}

.subscribe-form-style1 input[type="email"]:focus {
    color: var(--thm-black);
}

.subscribe-form-style1 input[type="email"]:focus+button,
.subscribe-form-style1 button:hover {
    color: #ffffff;
}

/* * Subscribe Box Style2 Css * */
.subscribe-box-style1--style2 {
    position: relative;
    display: block;
    background-color: #ffffff;
    box-shadow: none;
    padding: 0px 0px 0px;
    text-align: center;
    max-width: 570px;
    width: 100%;
    margin: 60px auto 0;
}

.subscribe-box-style1--style2 .inner-title {
    padding-top: 16px;
    padding-bottom: 25px;
}

.subscribe-box-style1--style2 .inner-title h3 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 5px;
}

.subscribe-box-style1--style2 button {
    color: #ffffff;
}

.subscribe-box-style1--style2 button:after {
    background-color: var(--thm-black);
}

.view-all-offer-btn {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 13px;
}

.view-all-offer-btn a {
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.view-all-offer-btn a span {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--thm-base);
    font-size: 16px;
}

.view-all-offer-btn a:hover {
    color: var(--thm-base);
}

/* ** 
=============================================
    Awards Achivements Area Css
=============================================
** */
.awards-achivements-area {
    position: relative;
    display: block;
    background-color: #f5f8f7;
    padding: 100px 0 70px;
    z-index: 10;
}

.awards-achivements-left-box {
    position: relative;
    display: block;
}

.single-awards-achivements-box {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
    padding: 23px 30px 23px;
    margin-bottom: 30px;
}

.single-awards-achivements-box .top {
    position: relative;
    display: block;
    padding-left: 60px;
    margin-bottom: 17px;
}

.single-awards-achivements-box .top .icon {
    position: absolute;
    top: 7px;
    left: 0;
}

.single-awards-achivements-box .top .inner-title {
    position: relative;
    display: block;
}

.single-awards-achivements-box .top .inner-title h3 {
    font-size: 22px;
    line-height: 30px;
}

.single-awards-achivements-box ul {
    position: relative;
    display: block;
    border-top: 1px solid #e6ebe9;
    padding-top: 23px;
}

.single-awards-achivements-box ul li {
    position: relative;
    display: block;
    margin-bottom: 6px;
}

.single-awards-achivements-box ul li:last-child {
    margin-bottom: 0;
}

.single-awards-achivements-box ul li span {
    position: relative;
    display: inline-block;
    width: 85px;
}

.single-awards-achivements-box ul li b {
    padding-right: 20px;
}

.awards-img-box {
    position: relative;
    display: block;
}

.awards-img-box .shape1 {
    position: absolute;
    top: 0;
    left: 0;
}

.awards-img-box .shape2 {
    position: absolute;
    top: 0;
    right: 0;
}

.awards-img-box .round-box {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    width: 370px;
    height: 370px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    z-index: -1;
}

.awards-img-box .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.awards-img-box .inner img {
    position: relative;
    top: 20px;
    width: auto;
}

.awards-achivements-right-box {
    position: relative;
    display: block;
}

/* ** 
=============================================
    Account Style1 Area Css
=============================================
** */
.account-style1-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 92px;
    z-index: 10;
}

.single-account-box-style1 {
    position: relative;
    display: block;
    padding-right: 20px;
    margin-bottom: 30px;
}

.single-account-box-style1 .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #646464;
}

.single-account-box-style1 .img-holder img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.single-account-box-style1 .text-holder {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 0;
    background: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 17px 20px 18px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-account-box-style1:hover .text-holder {
    background: #1a1c23;
}

.single-account-box-style1 .text-holder h3 {
    position: relative;
    display: block;
    padding-left: 0px;
    font-size: 22px;
    line-height: 32px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-account-box-style1:hover .text-holder h3 {
    padding-left: 25px;
}

.single-account-box-style1 .text-holder h3::before {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    color: var(--thm-base);
    font-size: 15px;
    font-family: 'icomoon' !important;
    content: "\e90f";
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-account-box-style1:hover .text-holder h3::before {
    opacity: 1;
}

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

.single-account-box-style1:hover .text-holder h3 a {
    color: #ffffff;
}

.single-account-box-style1:hover .text-holder h3 a:hover {
    color: var(--thm-base);
}

.single-account-box-style1 .text-holder p {
    margin: 4px 0 0;
}

.single-account-box-style1:hover .text-holder p {
    color: #bcbcbc;
}

.account-style1-area_btn {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 14px;
}

.account-style1-area_btn a {
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.account-style1-area_btn a:hover {
    color: var(--thm-base);
}

.account-style1-area_btn a span {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--thm-base);
    font-size: 16px;
}

/* ** 
=============================================
    Banking Tab Area Css
=============================================
** */
.banking-tab-area {
    position: relative;
    display: block;
    background-color: #1a1c23;
    z-index: 10;
}

.banking-tab-area .auto-container {
    max-width: 100%;
    padding: 0;
}

.banking-tab {
    position: relative;
    display: block;
}

.banking-tab-img-box {
    position: relative;
    display: block;
    min-height: 760px;
    margin-right: 31.5px;
}

.banking-tab-img-box__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    background-color: #646464;
    background-blend-mode: luminosity;
}

.banking-tab-img-box__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(90deg, rgb(26, 28, 35) 0%, rgba(26, 28, 35, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(26, 28, 35) 0%, rgba(26, 28, 35, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(26, 28, 35) 0%, rgba(26, 28, 35, 0) 100%);
}

.banking-tab-text-box {
    position: relative;
    display: block;
    max-width: 570px;
    padding-top: 100px;
    padding-left: 10px;
}

.banking-tab-text-box .inner-title {
    position: relative;
    display: block;
    margin-top: -3px;
    padding-bottom: 22px;
}

.banking-tab-text-box .inner-title h3 {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 22px;
}

.banking-tab-text-box .inner-title h2 {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.1em;
    font-weight: 500;
    text-transform: capitalize;
    margin: 17px 0 0;
}

.banking-tab-text-box__inner {
    position: relative;
    display: block;
}

.banking-tab-text-box__inner .text {
    position: relative;
    display: block;
    padding-bottom: 24px;
}

.banking-tab-text-box__inner .text p {
    color: #bcbcbc;
}

.banking-tab-text-box__inner ul {
    position: relative;
    display: block;
}

.banking-tab-text-box__inner ul li {
    position: relative;
    display: block;
    padding-left: 35px;
    color: #bcbcbc;
    line-height: 30px;
}

.banking-tab-text-box__inner ul li+li {
    margin-top: 7px;
}

.banking-tab-text-box__inner ul li:before {
    content: "\e918";
    font-family: 'icomoon' !important;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--thm-base);
    font-size: 16px;
}

.banking-tab__button {
    position: relative;
    display: block;
    max-width: 1200px;
    padding: 0px 15px;
    margin: -111px auto 0;
    z-index: 100;
}

.banking-tab__button .tabs-button-box {
    position: relative;
    display: flex;
    border: 1px solid rgba(255, 255, 255, .10);
    border-bottom: none;
}

.banking-tab__button .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    width: 33.3333333333%;
    width: 100%;
}

.banking-tab__button .tabs-button-box .tab-btn-item+.tab-btn-item {
    border-left: 1px solid rgba(255, 255, 255, .10);
}

.banking-tab__button .tabs-button-box .tab-btn-item .inner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px 30px 30px;
    cursor: pointer;
    z-index: 1;
}

.banking-tab__button .tabs-button-box .tab-btn-item .inner:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: 0;
    right: -1px;
    background-image: -moz-linear-gradient(0deg, rgb(6, 118, 137) 0%, rgb(15, 180, 195) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(6, 118, 137) 0%, rgb(15, 180, 195) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(6, 118, 137) 0%, rgb(15, 180, 195) 100%);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.banking-tab__button .tabs-button-box .tab-btn-item:hover .inner:before,
.banking-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner:before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    background-color: var(--thm-black);
}

.banking-tab .tabs-content-box {
    position: relative;
    display: block;
}

.banking-tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.banking-tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.banking-tab .tab-content-box-item .banking-tab-content-item {
    transition: all 0.7s ease;
    opacity: 0;
    transform: scaleY(1.0);
    transform-origin: top bottom;
}

.banking-tab .tab-content-box-item.tab-content-box-item-active .banking-tab-content-item {
    opacity: 1.0;
    transform: scaleY(1);
    transform-origin: bottom top;
}

.banking-tab__button .tabs-button-box .tab-btn-item .inner .icon {
    position: relative;
    display: block;
    width: 70px;
    color: #ffffff;
    font-size: 50px;
}

.banking-tab__button .tabs-button-box .tab-btn-item .inner .title {
    position: relative;
    flex: 1;
}

.banking-tab__button .tabs-button-box .tab-btn-item .inner .title h4 {
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.banking-tab__button .tabs-button-box .tab-btn-item .inner .title h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 24px;
    margin: 10px 0 0;
}

/* ** 
=============================================
    Benefits Area Css
=============================================
** */
.benefits-area {
    position: relative;
    display: block;
    background: #f0f5f6;
    padding: 100px 0 93px;
}

ul.row.benefits-content {
    --bs-gutter-x: 0px;
}

li.single-benefits-box-colum {
    position: relative;
    padding: 0 30px 39px;
}

li.single-benefits-box-colum:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background-image: -moz-linear-gradient(90deg, rgb(247, 241, 235) 5%, rgb(15, 180, 195) 50%, rgb(247, 241, 235) 95%);
    background-image: -webkit-linear-gradient(90deg, rgb(247, 241, 235) 5%, rgb(15, 180, 195) 50%, rgb(247, 241, 235) 95%);
    background-image: -ms-linear-gradient(90deg, rgb(247, 241, 235) 5%, rgb(15, 180, 195) 50%, rgb(247, 241, 235) 95%);
}

li.single-benefits-box-colum:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-image: -moz-linear-gradient(180deg, rgb(247, 241, 235) 10%, rgb(15, 180, 195) 50%, rgb(247, 241, 235) 90%);
    background-image: -webkit-linear-gradient(180deg, rgb(247, 241, 235) 10%, rgb(15, 180, 195) 50%, rgb(247, 241, 235) 90%);
    background-image: -ms-linear-gradient(180deg, rgb(247, 241, 235) 10%, rgb(15, 180, 195) 50%, rgb(247, 241, 235) 90%);
}

li.single-benefits-box-colum:last-child:before {
    display: none;
}

li.single-benefits-box-colum:nth-child(3):before {
    display: none;
}

li.single-benefits-box-colum:nth-child(4):after {
    display: none;
}

li.single-benefits-box-colum:nth-child(5):after {
    display: none;
}

li.single-benefits-box-colum:nth-child(6):after {
    display: none;
}

li.single-benefits-box-colum:nth-child(4) {
    padding-top: 45px;
    padding-bottom: 0;
}

li.single-benefits-box-colum:nth-child(5) {
    padding-top: 45px;
    padding-bottom: 0;
}

li.single-benefits-box-colum:nth-child(6) {
    padding-top: 45px;
    padding-bottom: 0;
}

li.single-benefits-box-colum:nth-child(2) .single-benefits-box .icon {
    background: linear-gradient(to right, #0f76a2 0%, #1297c5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

li.single-benefits-box-colum:nth-child(3) .single-benefits-box .icon {
    background: linear-gradient(to right, #2159a7 0%, #327dc8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

li.single-benefits-box-colum:nth-child(4) .single-benefits-box .icon {
    background: linear-gradient(to right, #3e3389 0%, #515bbd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

li.single-benefits-box-colum:nth-child(5) .single-benefits-box .icon {
    background: linear-gradient(to right, #649519 0%, #96c723 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

li.single-benefits-box-colum:nth-child(6) .single-benefits-box .icon {
    background: linear-gradient(to right, #ff9238 0%, #ffc22c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.single-benefits-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border: 1px solid #e0e6e7;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
    background: linear-gradient(to right, #018795 0%, #0eced3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    z-index: 1;
}

.single-benefits-box .icon:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 1px;
    bottom: 0px;
    right: 0px;
    border: 1px solid #e0e6e7;
    transform: rotate(45deg);
}

.single-benefits-box .text {
    position: relative;
    display: block;
    padding-top: 26px;
}

.single-benefits-box .text h3 {
    font-size: 22px;
    line-height: 24px;
    margin: 0 0 13px;
}

.single-benefits-box .text p {
    color: #757c7d;
}

/* ** 
=============================================
    Benefits Style2 Area Css
=============================================
** */
.benefits-style2-area {
    position: relative;
    display: block;
    background: #f7f1eb;
    padding: 100px 0 93px;
}

.benefits-style2-area li.single-benefits-box-colum:before {
    background-image: -moz-linear-gradient(90deg, rgb(247, 241, 235) 5%, rgb(207, 23, 60) 50%, rgb(247, 241, 235) 95%);
    background-image: -webkit-linear-gradient(90deg, rgb(247, 241, 235) 5%, rgb(207, 23, 60) 50%, rgb(247, 241, 235) 95%);
    background-image: -ms-linear-gradient(90deg, rgb(247, 241, 235) 5%, rgb(207, 23, 60) 50%, rgb(247, 241, 235) 95%);
}

.benefits-style2-area li.single-benefits-box-colum:after {
    background-image: -moz-linear-gradient(180deg, rgb(247, 241, 235) 10%, rgb(207, 23, 60) 50%, rgb(247, 241, 235) 90%);
    background-image: -webkit-linear-gradient(180deg, rgb(247, 241, 235) 10%, rgb(207, 23, 60) 50%, rgb(247, 241, 235) 90%);
    background-image: -ms-linear-gradient(180deg, rgb(247, 241, 235) 10%, rgb(207, 23, 60) 50%, rgb(247, 241, 235) 90%);
}

/* ** 
=============================================
  Service Request Style2 Area Css
=============================================
** */
.service-request-style2-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 100px;
    z-index: 10;
}

.service-request-style2-img-box {
    position: relative;
    display: block;
    padding-right: 20px;
}

.service-request-style2-img-box__inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #646464;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-request-style2-img-box__inner:hover {
    background-color: var(--thm-base);
}

.service-request-style2-img-box__inner img {
    width: 100%;
    mix-blend-mode: luminosity;
    transform: scale(1.0);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: all;
    transition-property: all;
}

.service-request-style2-img-box__inner:hover img {
    transform: scale(1.05) rotate(1deg);
}

.service-request-style2-content-box {
    position: relative;
    display: block;
}

.service-request-style2-content-box .pattern-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 50px;
}

.service-request-style2-content-box .sec-title {
    padding-bottom: 32px;
    margin-top: -7px;
}

.service-request-style2-content-box .sec-title .sub-title {
    padding-top: 22px;
}

.service-request-style2-content-box .sec-title .sub-title p {
    font-size: 16px;
    line-height: 26px;
}

.service-request-style2-content-box__inner {
    position: relative;
    display: block;
}

.service-request-style2-content-box__inner ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-request-style2-content-box__inner ul li {
    position: relative;
    display: block;
    width: 50%;
    float: left;
    margin-bottom: 40px;
}

.service-request-style2-content-box__inner ul li:nth-child(2) {
    border-left: 1px solid #e6eced;
    padding-left: 40px;
}

.service-request-style2-content-box__inner ul li:nth-child(4) {
    border-left: 1px solid #e6eced;
    padding-left: 40px;
}

.single-service-request-style2-box {
    position: relative;
    display: block;
}

.single-service-request-style2-box .icon {
    position: relative;
    display: block;
    padding-bottom: 10px;
}

.single-service-request-style2-box .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 40px;
    line-height: 40px;
}

.single-service-request-style2-box .title {
    position: relative;
    display: block;
}

.single-service-request-style2-box .title h3 {
    font-size: 20px;
    line-height: 28px;
}

.single-service-request-style2-box .title h3 a {
    position: relative;
    top: 2px;
    display: inline-block;
    padding-left: 5px;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 0;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateX(-10px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.single-service-request-style2-box:hover .title h3 a {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateX(0px);
}

.single-service-request-style2-box .title h3 a span {
    position: relative;
    display: inline-block;
    line-height: 28px;
}

.service-request-style2__btns-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 3px;
}

.service-request-style2__btns-box a.btn-one {
    color: #ffffff;
}

.service-request-style2__btns-box a.btn-one:after {
    background-color: var(--thm-black);
}

/* ** 
=============================================
    Account Steps Area Css
=============================================
** */
.account-steps-area {
    position: relative;
    display: block;
    background-color: #f0f5f6;
    padding: 100px 0 93px;
    z-index: 10;
}

.account-steps__content {
    position: relative;
    --bs-gutter-x: 0px;
}

.single-account-steps-colum {
    position: relative;
    padding: 0 45px;
    margin-bottom: 43px;
}

.single-account-steps-colum:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 7px;
    width: 1px;
    background: #e0e6e7;
}

.single-account-steps-colum:last-child::before {
    display: none;
}

.single-account-steps {
    position: relative;
    display: block;
}

.single-account-steps .icon {
    position: relative;
    display: block;
    padding-top: 50px;
    width: 90px;
    margin: 0 auto;
}

.single-account-steps .icon .counting {
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 50px;
    background-color: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.single-account-steps .icon-inner {
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-black);
    font-size: 50px;
}

.single-account-steps .text {
    position: relative;
    display: block;
    padding-top: 27px;
}

.single-account-steps .text h3 {
    font-size: 22px;
    line-height: 24px;
    margin: 0 0 18px;
}

.single-account-steps .text p {
    color: #757c7d;
}

.account-steps-area__bottom-text {
    position: relative;
    display: block;
    text-align: center;
    margin-top: -7px;
}

.account-steps-area__bottom-text p {
    color: var(--thm-black);
}

.account-steps-area__bottom-text p a {
    color: var(--thm-base);
    font-weight: 500;
}

/* ** 
=============================================
    Intro Style1 Area Css
=============================================
** */
.intro-style1-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 100px;
    z-index: 1;
}

.intro-style1-video-gallery {
    position: relative;
    display: block;
    min-height: 720px;
    margin-right: 20px;
}

.intro-style1-video-gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: #646464;
    background-blend-mode: luminosity;
}

.intro-video-gallery-style1 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-video-gallery-style1 .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: #ffffff;
    margin: 0 auto;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.intro-video-gallery-style1 .icon:hover {
    background-color: var(--thm-base);
}

.intro-video-gallery-style1 .icon:after,
.intro-video-gallery-style1 .icon:before {
    width: 100%;
    height: 100%;
    border-radius: 0%;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
    -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;
    z-index: -1;
}

.intro-video-gallery-style1 .icon:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.intro-video-gallery-style1 .icon .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.intro-video-gallery-style1 .icon .video-popup span::before {
    position: relative;
    color: var(--thm-black);
    font-size: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.intro-video-gallery-style1 .icon:hover .video-popup span::before {
    color: #ffffff;
}

.intro-style1-content-box {
    position: relative;
    display: block;
}

.intro-style1-content-box .sec-title {
    padding-bottom: 33px;
}

.intro-style1-content-box .text {
    position: relative;
    display: block;
    padding-bottom: 43px;
}

.intro-style1-content-box .text p {
    margin: 0;
}

.intro-style1-content-box .text p+p {
    margin-top: 16px;
}

.intro-style1-single-box {
    position: relative;
    display: block;
    padding-right: 20px;
}

.intro-style1-single-box .img-box {
    position: relative;
    display: block;
    background-color: #646464;
}

.intro-style1-single-box .img-box .img-box-inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.intro-style1-single-box .img-box img {
    width: 100%;
    mix-blend-mode: luminosity;
    transform: scale(1.0);
    transition: all 200ms ease;
}

.intro-style1-single-box:hover .img-box img {
    transform: scale(1.2) rotate(0deg);
}

.intro-style1-single-box .title-box {
    position: relative;
    display: block;
    padding-top: 22px;
}

.intro-style1-single-box .title-box h3 {
    font-size: 22px;
    line-height: 28px;
}

.intro-style1-single-box .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.intro-style1-single-box .title-box h3 a:hover {
    color: var(--thm-base);
}

.intro-style1-single-box .overlay-text {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 14px 20px 15px;
    z-index: 2;
}

.intro-style1-single-box .overlay-text h3 {
    color: var(--thm-base);
    font-size: 18px;
    font-weight: 500;
}

/* ** 
=============================================
    choose Style1 Area Css
=============================================
** */
.choose-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0 50px;
}

.choose-style1__content {
    position: relative;
    --bs-gutter-x: 0px;
}

.single-choose-style1-colum {
    position: relative;
    padding: 0 45px;
    margin-bottom: 43px;
}

.single-choose-style1-colum:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 7px;
    width: 1px;
    background: #e0e6e7;
}

.single-choose-style1-colum:last-child::before {
    display: none;
}

.single-choose-style1 {
    position: relative;
    display: block;
}

.single-choose-style1 .icon {
    position: relative;
    display: block;
    padding-top: 50px;
    width: 90px;
    margin: 0 auto;
}

.single-choose-style1 .icon .icon-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    color: var(--thm-black);
    font-size: 50px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-choose-style1:hover .icon .icon-inner {
    background: -webkit-linear-gradient(#8a0f3d, #cd173c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-choose-style1 .icon .counting {
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 50px;
    background-color: #f7f1eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    color: #a5a2a0;
    font-size: 22px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.single-choose-style1 .text {
    position: relative;
    display: block;
    padding-top: 27px;
}

.single-choose-style1 .text h3 {
    font-size: 22px;
    line-height: 24px;
    margin: 0 0 18px;
}

.single-choose-style1 .text p {
    color: #7f7873;
}

/* ** 
=============================================
  Statements Area Css
=============================================
** */
.statements-area {
    position: relative;
    display: block;
    background-color: #f7f1eb;
    padding: 100px 0 90px;
}

.statements-content-box {
    position: relative;
    display: block;
}

.statements-content-box ul {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
}

.statements-content-box ul li {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    padding: 0 5px 0px;
}

.single-statements-box {
    position: relative;
    display: block;
    padding-bottom: 10px;
}

.single-statements-box .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #646464;
    z-index: 1;
}

.single-statements-box .img-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #1a1c23;
    opacity: 0.40;
    z-index: 1;
}

.single-statements-box .img-box img {
    width: 100%;
    mix-blend-mode: luminosity;
    transform: scale(1.0);
    transition: all 700ms ease;
}

.single-statements-box:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
    filter: grayscale(.01);
}

.single-statements-box .img-box .static-content {
    position: absolute;
    left: 0;
    bottom: 25px;
    right: 0;
    text-align: center;
    z-index: 2;
    transition: all .4s ease-in-out .3s;
}

.single-statements-box:hover .img-box .static-content {
    bottom: 50%;
    transform: translateY(50%);
}

.single-statements-box .img-box .static-content h2 {
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
}

.single-statements-box .img-box .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .15);
    font-size: 200px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(20deg) translateX(-50%);
    -ms-transform: perspective(400px) rotateX(20deg) translateX(-50%);
    transform: perspective(400px) rotateX(20deg) translateX(-50%);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: 1;
}

.single-statements-box:hover .img-box .overlay-content {
    opacity: 1.0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(0%);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(0%);
    transform: perspective(400px) rotateX(0deg) translateX(-0%);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.statements-text-box {
    position: relative;
    display: block;
    padding: 40px 50px 45px;
    background-image: -moz-linear-gradient(0deg, #241E4E 0%, #241E4E 100%);
    background-image: -webkit-linear-gradient(0deg, #241E4E 0%, #1bac52 100%);
    background-image: -ms-linear-gradient(0deg, #25b75d 0%, #3cc770 100%);
}

.statements-text-box .shape {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    font-size: 100px;
}

.statements-text-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 19px;
}

.statements-text-box .inner-title h2 {
    color: #ffffff;
    font-size: 48px;
    line-height: 58px;
}

.statements-text-box .inner-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: #ffffff;
}

.statements-text-box .text {
    position: relative;
    display: block;
    padding-top: 33px;
}

.statements-text-box .text p {
    color: #e2deda;
}

.statements-text-box .text .btn-box {
    position: relative;
    display: block;
    padding-top: 27px;
}

.statements-text-box .text .btn-box a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.statements-text-box .text .btn-box a span {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    font-size: 16px;
}

/* ** 
=============================================
  Statistics Area Css
=============================================
** */
.statistics-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 100px;
    z-index: 1;
}

.statistics-content-box {
    position: relative;
    display: block;
}

.statistics-content-box .sec-title {
    padding-bottom: 32px;
}

.statistics-content-box .text {
    position: relative;
    display: block;
    padding-bottom: 33px;
}

.statistics-content-box .text p {
    color: #7f7873;
}

.statistics-content-box .download-box {
    position: relative;
    display: flex;
    align-items: center;
}

.statistics-content-box .download-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f7f1eb;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
}

.statistics-content-box .download-box .title {
    position: relative;
    flex: 1;
    margin-left: 20px;
}

.statistics-content-box .download-box .title h5 {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.statistics-content-box .download-box .title h5 a {
    color: var(--thm-base);
}

.statistics-content-box .download-box .title h3 {
    font-size: 18px;
    line-height: 20px;
    margin: 9px 0 0;
}

/* ** 
=============================================
    Team Style1 Area Css
=============================================
** */
.team-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 75px;
    z-index: 10;
}

.single-team-style1 {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.single-team-style1 .img-holder {
    position: relative;
    display: block;
}

.single-team-style1 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #646464;
    z-index: 1;
}

.single-team-style1 .img-holder .inner img {
    width: 100%;
    mix-blend-mode: luminosity;
    transition: all 500ms linear;
    transition-delay: 0.2s;
}

.single-team-style1:hover .img-holder .inner img {
    transform: scale(1.1) rotate(0deg);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .img-holder .share-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
}

.single-team-style1 .img-holder .share-button .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .img-holder .share-button:hover .icon {
    background-color: var(--thm-base);
}

.single-team-style1 .img-holder .share-button .icon span:before {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .img-holder .share-button:hover .icon span:before {
    color: #ffffff;
}

.single-team-style1 .img-holder .share-button .social-links {
    position: absolute;
    left: 0;
    bottom: 100%;
    right: 0;
    padding-bottom: 10px;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .img-holder .share-button:hover .social-links {
    transform: scaleX(1.0);
}

.single-team-style1 .img-holder .share-button .social-links li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.single-team-style1 .img-holder .share-button .social-links li:last-child {
    margin-bottom: 0;
}

.single-team-style1 .img-holder .share-button .social-links li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #7f7873;
    font-size: 14px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .img-holder .share-button .social-links li a:hover {
    color: #ffffff;
    background-color: var(--thm-black);
}

.single-team-style1 .text-holder {
    position: relative;
    display: block;
    padding-top: 19px;
    padding-bottom: 22px;
    text-align: center;
    z-index: 1;
}

.single-team-style1 .text-holder:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background-color: var(--thm-black);
    transform: scaleY(0.1);
    transform-origin: top;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.single-team-style1:hover .text-holder:before {
    transform: scaleY(1.0);
    height: 100%;
}

.single-team-style1 .text-holder h3 {
    font-size: 22px;
    line-height: 30px;
}

.single-team-style1 .text-holder h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1:hover .text-holder h3 a {
    color: #ffffff;
}

.single-team-style1 .text-holder h3 a:hover {
    color: var(--thm-base);
}

.single-team-style1 .text-holder h5 {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 9px 0 0;
}

/* ** 
=============================================
    Intro Style2 Area Css
=============================================
** */
.intro-style2-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 100px;
    z-index: 1;
}

.intro-style2-img-box {
    position: relative;
    display: block;
    padding-right: 20px;
}

.intro-style2-img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background: #646464;
}

.intro-style2-img-box img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.intro-style2-img-box .inner .shape-1 {
    position: absolute;
    left: -1px;
    bottom: -1px;
}

.intro-style2-content-box {
    position: relative;
    display: block;
}

.intro-style2-content-box .sec-title {
    padding-bottom: 32px;
}

.intro-style2-content-box .text {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.intro-style2-content-box .text p+p {
    margin-top: 15px;
}

.intro-style2-content-box ul {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.intro-style2-content-box ul li {
    position: relative;
    display: block;
    padding-left: 35px;
    margin-bottom: 10px;
}

.intro-style2-content-box ul li:last-child {
    margin-bottom: 0;
}

.intro-style2-content-box ul li .icon-box {
    position: absolute;
    top: 5px;
    left: 0;
}

.intro-style2-content-box ul li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
}

.intro-style2-content-box ul li p {
    margin: 0;
}

.send-resume-box {
    position: relative;
    display: block;
    padding-left: 70px;
}

.send-resume-box .icon {
    position: absolute;
    top: 7px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f7f1eb;
    text-align: center;
}

.send-resume-box .icon span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
}

.send-resume-box .title {
    position: relative;
    display: block;
}

.send-resume-box .title h4 {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.send-resume-box .title h4 a {
    color: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.send-resume-box .title h4 a:hover {
    color: var(--thm-black);
}

.send-resume-box .title h3 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
}

.send-resume-box .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.send-resume-box .title h3 a:hover {
    color: var(--thm-base);
}

.job-list-table-box {
    position: relative;
    display: block;
    padding-top: 100px;
    padding-bottom: 40px;
}

.job-list-table-box .table-outer {
    overflow-x: auto;
    position: relative;
    width: 100%;
}

.job-list-table-box .table-outer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.job-list-table-box .job-list-table {
    min-width: 1024px;
    width: 100%;
}

.job-list-table-box .job-list-table .header {
    position: relative;
    background: #f7f1eb;
    text-transform: capitalize;
    width: 100%;
    font-family: var(--thm-font-2);
}

.job-list-table-box .job-list-table thead tr th {
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    min-width: 110px;
    padding: 13px 30px;
    border: 1px solid #e2deda;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
}

.job-list-table-box .job-list-table tbody {
    position: relative;
    border: 1px solid #f2ece7;
}

.job-list-table-box .job-list-table tbody tr {
    border-bottom: 1px solid #f2ece7;
}

.job-list-table-box .job-list-table tbody tr td {
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    min-width: 110px;
    padding: 27.5px 30px;
    border: 1px solid #f2ece7;
}

.job-list-table-box .job-list-table tbody tr td.department h3 {
    color: var(--thm-base);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.job-list-table-box .job-list-table tbody tr td.job-role h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.job-list-table-box .job-list-table tbody tr td.location p {
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.job-list-table-box .job-list-table tbody tr td.last-date p {
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.job-list-table-box .job-list-table tbody tr td .btn-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.job-list-table-box .job-list-table tbody tr td .btn-box a {
    border: 1px solid #f2ece7;
    line-height: 38px;
}

.job-list-table-box .job-list-table tbody tr td .btn-box a:hover {
    border-color: var(--thm-base);
}

/* ** 
=============================================
    Career Details Area Style      
=============================================
** */
.career-details-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 80px;
}

.career-details-content {
    position: relative;
    display: block;
}

.job-title-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f7f1eb;
    padding: 27px 40px 24px;
}

.job-title-box .left {
    position: relative;
    display: block;
}

.job-title-box .left h4 {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 20px;
}

.job-title-box .left h3 {
    font-size: 30px;
    line-height: 38px;
    margin: 8px 0 9px;
}

.job-title-box .left p {
    color: #7f7873;
}

.job-title-box .left p span {
    position: relative;
    top: 2px;
    display: inline-block;
    padding-right: 3px;
    color: var(--thm-base);
    font-size: 18px;
}

.job-title-box .right {
    position: relative;
    display: flex;
    flex-direction: column;
}

.job-title-box .right button {
    position: relative;
    display: inline-block;
    border: 1px solid #e2deda;
    padding: 0 30px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 43px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.job-title-box .right button:hover {
    color: #ffffff;
    background-color: var(--thm-base);
    border-color: var(--thm-base);
}

.job-title-box .right button.style2 {
    border-color: #ffffff;
    background-color: #ffffff;
}

.job-title-box .right button.style2:hover {
    color: #ffffff;
    background-color: var(--thm-base);
    border-color: var(--thm-base);
}

.job-title-box .right button+button {
    margin-top: 5px;
}

.job-description-content {
    position: relative;
    display: block;
    padding-top: 52px;
}

.job-description-content h2 {
    font-size: 30px;
    line-height: 38px;
    margin: 0 0 24px;
}

.job-description-content p {
    margin: 0;
}

.job-description-content p+p {
    margin-top: 15px;
}

.responsibilities-content {
    position: relative;
    display: block;
    padding: 35px 0 35px;
}

.responsibilities-content h2 {
    font-size: 30px;
    line-height: 38px;
    margin: 0 0 24px;
}

.responsibilities-content ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.responsibilities-content ul li {
    position: relative;
    display: block;
    padding-left: 25px;
}

.responsibilities-content ul li+li {
    margin-top: 14px;
}

.responsibilities-content ul li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    bottom: 0;
    width: 10px;
    height: 15px;
    background-color: var(--thm-base);
    clip-path: polygon(50% 0, 50% 0, 100% 50%, 50% 100%, 50% 100%, 0% 50%);
}

.requirements-content-box {
    position: relative;
    display: block;
}

.requirements-content-box h2 {
    font-size: 30px;
    line-height: 38px;
    margin: 0 0 24px;
}

.requirements-content-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.requirements-content-box ul li {
    position: relative;
    display: block;
    padding-left: 25px;
}

.requirements-content-box ul li+li {
    margin-top: 13px;
}

.requirements-content-box ul li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    bottom: 0;
    width: 10px;
    height: 15px;
    background-color: var(--thm-base);
    clip-path: polygon(50% 0, 50% 0, 100% 50%, 50% 100%, 50% 100%, 0% 50%);
}

.requirements-content-box ul li span {
    position: relative;
    display: inline-block;
    width: 140px;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
}

.requirements-content-box ul li b {
    position: relative;
    display: inline-block;
    width: 40px;
}

.job-social-share-box {
    position: relative;
    display: block;
    padding-top: 35px;
}

.job-social-share-box h2 {
    font-size: 30px;
    line-height: 38px;
    margin: 0 0 31px;
}

.job-social-share-box ul {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -15px;
    margin-right: -15px;
}

.job-social-share-box ul li {
    position: relative;
    display: block;
    float: left;
    width: 25%;
    padding: 0 15px;
    margin-bottom: 20px;
}

.job-social-share-box ul li a {
    position: relative;
    display: block;
    width: 100%;
    background: #3b5999;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 50px;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.job-social-share-box ul li a:hover {
    background-color: var(--thm-black);
}

.job-social-share-box ul li a i {
    position: relative;
    display: inline-block;
    padding-right: 10px;
}

.job-social-share-box ul li a.tw {
    background: #1da1f2;
}

.job-social-share-box ul li a.tw:hover {
    background: var(--thm-black);
}

.job-social-share-box ul li a.googlep {
    background: #d44d40;
}

.job-social-share-box ul li a.googlep:hover {
    background: var(--thm-black);
}

.job-social-share-box ul li a.linked {
    background: #0077b5;
}

.job-social-share-box ul li a.linked:hover {
    background: var(--thm-black);
}

.resume-box {
    position: relative;
    display: block;
    margin-left: 30px;
}

.resume-box .inner-title {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    text-align: center;
    padding: 13px 5px 13px;
}

.resume-box .inner-title h3 {
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.resume-box__one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 28px 30px 23px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    margin-top: 40px;
    margin-bottom: 40px;
}

.resume-box__one ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.resume-box__one ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid #f2ece7;
    padding-bottom: 13px;
    margin-bottom: 18px;
}

.resume-box__one ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.resume-box__one ul li h5 {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.resume-box__one ul li p {
    margin: 6px 0 0;
}

.resume-box__two {
    position: relative;
    display: block;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    padding: 40px 30px 40px;
    z-index: 1;
}

.resume-box__two-shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: -1;
    opacity: 0.12;
}

.resume-box__two .img-box {
    position: relative;
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    background: #646464;
}

.resume-box__two .img-box img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.resume-box__two .text-box {
    position: relative;
    display: block;
    padding-top: 26px;
    text-align: center;
}

.resume-box__two .text-box h3 {
    color: #ffffff;
    font-size: 22px;
}

.resume-box__two .text-box p {
    color: #ffffff;
    margin: 2px 0 0;
}

.resume-box__two .text-box ul {
    position: relative;
    display: block;
    padding-top: 16px;
}

.resume-box__two .text-box ul li {
    position: relative;
    display: block;
    color: #ffffff;
}

.resume-box__two .text-box ul li+li {
    margin-top: 2px;
}

.resume-box__two .text-box ul li a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.resume-box__two .text-box ul li a:hover {
    color: var(--thm-black);
}

.resume-social-link-box {
    position: relative;
    display: block;
    padding-top: 23px;
}

.resume-social-link-box>ul {
    position: relative !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.resume-social-link-box>ul>li {
    position: relative;
    display: inline-block;
    margin: 0 5px 0 !important;
}

.resume-social-link-box>ul>li>a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.resume-social-link-box>ul>li>a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: #ffffff;
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.resume-social-link-box>ul>li:hover>a:before {
    opacity: 1.0;
    transform: scale(1.0);
}

.resume-social-link-box>ul>li:hover>a {
    color: var(--thm-base);
    border-color: var(--thm-base);
}

/* ** 
=============================================
    Account Steps style2 Area Css      
=============================================
** */
.account-steps-style2-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0px 70px;
}

.account-steps-style2-area .row {
    --bs-gutter-x: 40px;
}

.single-account-steps-box-style2 {
    position: relative;
    display: block;
    margin-bottom: 40px;
    z-index: 1;
}

.single-account-steps-box-style2 .inner {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 30px 30px 23px;
}

.single-account-steps-box-style2 .inner .step-box {
    position: absolute;
    top: 16px;
    right: -95px;
    background: #ffffff;
    text-align: center;
    padding: 5px 0px 4px;
    transform: rotate(45deg);
    width: 100%;
}

.single-account-steps-box-style2 .inner .step-box h4 {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.single-account-steps-box-style2::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-image: -moz-linear-gradient(180deg, rgb(15, 212, 216) 0%, rgb(0, 127, 142) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(15, 212, 216) 0%, rgb(0, 127, 142) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(15, 212, 216) 0%, rgb(0, 127, 142) 100%);
    content: "";
    z-index: -1;
}

.single-account-steps-box-style2::after {
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: -10px;
    right: -10px;
    border: 1px solid #0fd4d8;
    content: "";
    z-index: -2;
}

.single-account-steps-box-style2 .icon-holder {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.single-account-steps-box-style2 .icon-holder span {
    position: relative;
    display: block;
    line-height: 0;
}

.single-account-steps-box-style2 .icon-holder span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 40px;
    line-height: 40px;
}

.single-account-steps-box-style2 h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.single-account-steps-box-style2 h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-account-steps-box-style2 h3 a:hover {
    color: var(--thm-black);
}

.single-account-steps-box-style2 .text {
    position: relative;
    display: block;
    border-top: 2px solid #ffffff;
    padding-top: 18px;
}

.single-account-steps-box-style2 .text p {
    color: #ffffff;
}

.single-account-steps-box-style2.bg2::before {
    background-image: -moz-linear-gradient(180deg, rgb(19, 159, 206) 20%, rgb(14, 113, 157) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(19, 159, 206) 20%, rgb(14, 113, 157) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(19, 159, 206) 20%, rgb(14, 113, 157) 100%);
}

.single-account-steps-box-style2.bg2::after {
    border-color: #139fce;
}

.single-account-steps-box-style2.bg3::before {
    background-image: -moz-linear-gradient(180deg, rgb(51, 127, 201) 20%, rgb(32, 87, 166) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(51, 127, 201) 20%, rgb(32, 87, 166) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(51, 127, 201) 20%, rgb(32, 87, 166) 100%);
}

.single-account-steps-box-style2.bg3::after {
    border-color: #337fc9;
}

.single-account-steps-box-style2.bg4::before {
    background-image: -moz-linear-gradient(180deg, rgb(82, 93, 191) 20%, rgb(61, 49, 135) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(82, 93, 191) 20%, rgb(61, 49, 135) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(82, 93, 191) 20%, rgb(61, 49, 135) 100%);
}

.single-account-steps-box-style2.bg4::after {
    border-color: #525dbf;
}

/* ** 
=============================================
    App Download Area Style      
=============================================
** */
.app-download-area {
    position: relative;
    display: block;
    background: #f7f1eb;
    padding: 100px 0 100px;
    min-height: 850px;
    z-index: 1;
}

.app-download-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
    background-size: cover;
    max-width: 1820px;
    width: 100%;
    margin: 0 auto;
}

.app-download-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 400px;
}

.app-download-content p {
    color: var(--thm-black);
    font-weight: 500;
    margin: 0 0 23px;
}

/* ** 
=============================================
    Overview Area Css      
=============================================
** */
.overview-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 100px;
    z-index: 1;
}

.overview-content-box-one {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    margin-right: 20px;
}

.overview-content-box-one ul {
    position: relative;
    display: block;
}

.overview-content-box-one ul li {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    border-right: 1px solid #f2ece7;
    border-bottom: 1px solid #f2ece7;
}

.overview-content-box-one ul li:nth-child(2) {
    border-right: none;
}

.overview-content-box-one ul li:nth-child(3) {
    border-bottom: none;
}

.overview-content-box-one ul li:last-child {
    border-right: none;
    border-bottom: none;
}

.single-overview-box {
    position: relative;
    display: block;
    text-align: center;
    padding: 30px 0 22px;
}

.single-overview-box .icon {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid #f2ece7;
    margin: 0 auto;
    border-radius: 50%;
    color: #a5a2a0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-overview-box:hover .icon {
    color: #ffffff;
    background-color: var(--thm-base);
    border-color: var(--thm-base);
}

.single-overview-box .title {
    position: relative;
    display: block;
    padding-top: 18px;
}

.single-overview-box .title h3 {
    font-size: 18px;
    line-height: 28px;
}

.single-overview-box .title h3 a {
    color: var(--thm-black);
}

.overview-content-box-two {
    position: relative;
    display: block;
}

.overview-content-box-two .inner-title {
    position: relative;
    display: block;
}

.overview-content-box-two .inner-title h5 {
    color: #cf173c;
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 4px;
}

.overview-content-box-two .inner-title h2 {
    font-size: 30px;
    line-height: 36px;
}

.overview-content-box-two .text {
    position: relative;
    display: block;
    padding-top: 25px;
    padding-bottom: 43px;
}

.overview-content-box-two .text p {
    margin: 0;
}

.overview-content-box-two .text p+p {
    margin-top: 15px;
}

.overview-content-box-two .btns-box {
    position: relative;
    display: block;
    line-height: 0;
}

.overview-content-box-two .btns-box a.btn-one:after {
    background-color: #f7f1eb;
}

.overview-content-box-two .btns-box a.btn-one .txt i {
    position: relative;
    display: inline-block;
    padding-left: 0;
    padding-right: 7px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    top: 4px;
}

/* ** 
=============================================
    Statistics Area Style      
=============================================
** */
.statistics-style2-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 100px;
    border-top: 1px solid #f2ece7;
    z-index: 1;
}

.statistics-style2-area-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #646464;
    background-blend-mode: luminosity;
    z-index: -1;
}

.statistics-style2-area-shape1 {
    position: absolute;
    top: 0;
    left: 0;
}

.statistics-style2-area-shape1 img {
    opacity: 0.08;
    mix-blend-mode: luminosity;
}

.statistics-content-box-style2 {
    position: relative;
    display: block;
}

.statistics-content-box-style2 .sec-title {
    padding-bottom: 39px;
}

.progress-block {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.progress-block .inner-box {
    position: relative;
    min-height: 140px;
    width: 140px;
}

.progress-block .graph-outer {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    min-height: 140px;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-block .outer-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.progress-block .outer-text h3 {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.progress-block .count-box {
    position: relative;
    flex: 1;
    margin-left: 30px;
}

.progress-block .count-box .count-text-outer {
    position: relative;
    display: inline-block;
    font-size: 36px;
    line-height: 30px;
    color: var(--thm-base);
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.progress-block .count-box h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 8px 0 7px;
}

.progress-block .count-box p {
    color: #7f7873;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.progress-block .count-box .btn-box {
    position: relative;
    display: block;
    padding-top: 21px;
    line-height: 0;
}

.progress-block .count-box .btn-box a {
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.progress-block .count-box .btn-box a span {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--thm-base);
    font-size: 16px;
}

/* ** 
=============================================
    Page Contains Area Css
=============================================
** */
.page-contains-area {
    position: relative;
    display: block;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.page-contains-area.section-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
}

.page-contains-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    z-index: 1;
}

.page-contains-btn {
    position: relative;
    display: block;
}

.page-contains-btn li {
    position: relative;
    display: block;
    overflow: hidden;
    float: left;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #f2ece7;
    z-index: 1;
}

.page-contains-btn li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}

/* **
.page-contains-btn li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  right: 0;
  height: 4px;
  background: var(--thm-base);
  z-index: -1;
  transform: perspective(400px) translateX(-100%) scale(1.0);
  transform-style: preserve-3d;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: right center;
}

.page-contains-btn li:hover::before,
.page-contains-btn li.current::before {
  transform: perspective(400px) translateX(0) scale(1);
  transform-origin: left center;
}

* */
.page-contains-btn li a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    padding-top: 7px;
    padding-bottom: 7px;
}

.page-contains-btn li:hover a,
.page-contains-btn li.current a {
    color: var(--thm-base);
}

.page-contains-btn li a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 1px solid #f2ece7;
    border-radius: 50%;
    color: #a5a2a0;
    font-size: 12px;
    margin-right: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.page-contains-btn li:hover a span,
.page-contains-btn li.current a span {
    color: var(--thm-black);
    transform: rotate(90deg);
}

.page-contains-box .right-btn {
    position: relative;
    display: block;
}

.page-contains-box .right-btn a {
    position: relative;
    display: inline-block;
    padding: 0 30px;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 38px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #f2ece7;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.page-contains-box .right-btn a:hover {
    color: #ffffff;
    border-color: var(--thm-base);
    background-color: var(--thm-base);
}

/* ** 
=============================================
    Eligibility Area Style      
=============================================
** */
.eligibility-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 100px;
}

.eligibility-img-box {
    position: relative;
    display: block;
}

.eligibility-img-box .sec-title {
    padding-bottom: 45px;
}

.eligibility-img-box__inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #646464;
    margin-right: -90px;
}

.eligibility-img-box__inner img {
    mix-blend-mode: luminosity;
    width: 100%;
}

.eligibility-img-box__inner:hover img {
    transform: scale(1.05);
    mix-blend-mode: normal;
}

.eligibility-content-box {
    position: relative;
    display: block;
}

.eligibility-content-box__inner {
    position: relative;
    display: block;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    z-index: 1;
}

.eligibility-content-box__inner ul {
    position: relative;
    display: block;
}

.eligibility-content-box__inner ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid #f2ece7;
    padding: 22px 30px 23px;
}

.eligibility-content-box__inner ul li .inner {
    position: relative;
    display: block;
    padding-left: 60px;
}

.eligibility-content-box__inner ul li .counting {
    position: absolute;
    top: 8px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    color: #a5a2a0;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.eligibility-content-box__inner .text {
    position: relative;
    display: block;
}

.eligibility-content-box__inner .text h3 {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 5px;
}

.eligibility-content-box__inner .text p {
    color: #7f7873;
}

.facts-box-style2 {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 50px;
    padding-left: 110px;
}

.facts-box-style2 .counting {
    position: relative;
    width: 105px;
    height: 70px;
    color: var(--thm-base);
    font-size: 40px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
}

.facts-box-style2 .counting:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    background: #f7f1eb;
    border-radius: 50%;
    z-index: -1;
}

.facts-box-style2 .counting h2 {
    color: var(--thm-base);
    font-size: 40px;
    font-weight: 500;
}

.facts-box-style2 .counting .k {
    margin-left: -1px;
}

.facts-box-style2 .inner-title {
    position: relative;
    flex: 1;
    margin-left: 30px;
}

.facts-box-style2 .inner-title h3 {
    font-size: 22px;
    line-height: 30px;
}

/* ** 
=============================================
    Documents Area Style      
=============================================
** */
.documents-area {
    position: relative;
    display: block;
    background-color: #f7f1eb;
    padding: 100px 0 90px;
    z-index: 1;
}

.documents-area .row {
    --bs-gutter-x: 10px;
}

.single-documents-box {
    position: relative;
    display: block;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    padding: 23px 30px 23px;
    margin-bottom: 10px;
}

.single-documents-box .inner-title {
    position: relative;
    display: block;
    padding-left: 20px;
}

.single-documents-box .inner-title:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--thm-base);
}

.single-documents-box .inner-title h3 {
    font-size: 20px;
    line-height: 28px;
}

.single-documents-box ul {
    position: relative;
    display: block;
}

.single-documents-box ul li {
    font-size: 16px;
    line-height: 34px;
}

.single-documents-box ul li span {
    position: relative;
    display: inline-block;
    padding-right: 13px;
    font-size: 12px;
    line-height: 34px;
    font-weight: 500;
    color: #a5a2a0;
}

.single-documents-box ul li a {
    color: #7f7873;
}

/* ** 
=============================================
    Interest Charges Area Style      
=============================================
** */
.interest-charges-area {
    position: relative;
    display: block;
    padding: 100px 0 100px;
    background-image: -moz-linear-gradient(0deg, #463c85 0%, #241E4E 100%);
    background-image: -webkit-linear-gradient(0deg, #463c85 0%, #241E4E 100%);
    background-image: -ms-linear-gradient(0deg, #463c85 0%, #241E4E 100%);
    z-index: 1;
}

.interest-charges-area-shape1 {
    position: absolute;
    top: 0;
    left: 0;
}

.interest-charges-area-shape1 img {
    opacity: 0.08;
    mix-blend-mode: luminosity;
}

.interest-charges-area .sec-title h2 {
    color: #ffffff;
}

.interest-charges-area .sec-title .sub-title p {
    color: #ffffff;
}

.interest-charges-table-box {
    position: relative;
    display: block;
}

.interest-charges-table-box .table-outer {
    overflow-x: auto;
    position: relative;
    width: 100%;
}

.interest-charges-table-box .interest-charges-table {
    min-width: 1024px;
    width: 100%;
}

.interest-charges-table-box .interest-charges-table tbody {
    position: relative;
}

.interest-charges-table-box .interest-charges-table tbody tr {
    position: relative;
}

.interest-charges-table-box .interest-charges-table tbody tr td {
    min-width: 100px;
    padding: 0px 30px;
    border: 1px solid rgba(255, 255, 255, .20);
    font-family: var(--thm-font-2);
}

.interest-charges-table-box .interest-charges-table tbody tr td.title {
    position: relative;
    padding: 0px 60px;
    padding-right: 20px;
}

.interest-charges-table-box .interest-charges-table tbody tr td.title h3 {
    color: #f2ece7;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
}

.interest-charges-table-box .interest-charges-table tbody tr td.balance {
    position: relative;
    padding: 0;
}

.interest-charges-table-box .interest-charges-table tbody tr td.balance .inner-title {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .20);
    padding: 18px 30px 18px;
}

.interest-charges-table-box .interest-charges-table tbody tr td.balance .inner-title h3 {
    color: #f2ece7;
    font-size: 20px;
    font-weight: 500;
}

.interest-charges-table-box .interest-charges-table tbody tr td.balance ul {
    position: relative;
    display: block;
    padding: 18px 30px 17px;
}

.interest-charges-table-box .interest-charges-table tbody tr td.balance ul li {
    color: #f2ece7;
    font-size: 16px;
    line-height: 36px;
}

.interest-charges-table-box .interest-charges-table tbody tr td.interest {
    position: relative;
    padding: 0;
}

.interest-charges-table-box .interest-charges-table tbody tr td.interest .inner-title {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .20);
    padding: 18px 30px 18px;
}

.interest-charges-table-box .interest-charges-table tbody tr td.interest .inner-title h3 {
    color: #f2ece7;
    font-size: 20px;
    font-weight: 500;
}

.interest-charges-table-box .interest-charges-table tbody tr td.interest ul {
    position: relative;
    display: block;
    padding: 18px 30px 17px;
}

.interest-charges-table-box .interest-charges-table tbody tr td.interest ul li {
    color: #f2ece7;
    font-size: 16px;
    line-height: 36px;
}

/* ** 
=============================================
    Applying Process Area Style      
=============================================
** */
.applying-process-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 60px;
}

.applying-process-area .sec-title {
    padding-bottom: 90px;
}

.applying-process-step-box-top {
    position: relative;
    max-width: 870px;
    width: 100%;
    height: 1px;
    margin: 0 auto;
    padding-bottom: 75px;
    z-index: 1;
}

.applying-process-step-box-top:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 150px;
    right: 150px;
    height: 1px;
    background: #f2ece7;
    z-index: -1;
}

.applying-process-step-box-top:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 230px;
    height: 1px;
    margin: 0 auto;
    background: #ffffff;
    z-index: -1;
}

.applying-process-single-step-box {
    position: absolute;
    top: -110px;
    left: 0;
    right: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border: 1px solid #f2ece7;
    background: #ffffff;
    border-radius: 50%;
    color: var(--thm-gray);
    font-size: 22px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.applying-process-single-step-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0;
    background-image: -moz-linear-gradient(0deg, #1d9c4d 0%, #241E4E 100%);
    background-image: -webkit-linear-gradient(0deg, #1d9c4d 0%, #241E4E 100%);
    background-image: -ms-linear-gradient(0deg, #1d9c4d 0%, #241E4E 100%);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.single-applying-process-box:hover .applying-process-single-step-box:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.single-applying-process-box:hover .applying-process-single-step-box {
    color: #ffffff;
}

.single-applying-process-box {
    position: relative;
    display: block;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 32px 30px 24px;
    text-align: center;
    margin-bottom: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-applying-process-box:hover {
    background-color: #f7f1eb;
    text-align: left;
    box-shadow: none;
}

.single-applying-process-box::before {
    position: absolute;
    content: '';
    top: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: #f7f1eb;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-applying-process-box:hover::before {
    background-color: #ffffff;
}

.single-applying-process-box h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 9px;
}

.single-applying-process-box p {
    color: #7f7873;
    font-size: 16px;
    line-height: 26px;
}

/* ** 
=============================================
    Apply Form Area Style      
=============================================
** */
.apply-form-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding-bottom: 100px;
    z-index: 100;
}

.apply-form-box {
    position: relative;
    display: block;
    padding: 50px;
    z-index: 10;
}

.apply-form-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #646464;
    background-blend-mode: luminosity;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    z-index: -1;
}

.apply-form-box__content {
    position: relative;
    display: block;
    max-width: 670px;
    width: 100%;
    float: right;
    background-color: #f7f1eb;
    padding: 50px;
}

.apply-form-box__content .sec-title {
    padding-bottom: 45px;
}

#apply-form {
    position: relative;
    display: block;
}

#apply-form .form-group {
    position: relative;
    display: block;
    padding-bottom: 30px;
}

#apply-form .form-group .input-box {
    position: relative;
    display: block;
}

#apply-form .form-group .input-box .icon {
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    color: #a5a2a0;
    font-size: 16px;
    line-height: 50px;
    width: 45px;
    text-align: center;
}

#apply-form .form-group .input-box .icon:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    bottom: 10px;
    width: 1px;
    background: #f2ece7;
}

#apply-form .form-group input[type="text"],
#apply-form .form-group input[type="email"] {
    position: relative;
    display: block;
    background: #ffffff;
    border: 0px solid #f0f0f0;
    width: 100%;
    height: 50px;
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

#apply-form .form-group .select-box {
    position: relative;
    display: block;
    width: 100%;
}

#apply-form .form-group .nice-select {
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 0px;
    border: solid 0px #f6f6f6;
    width: 100%;
    height: 50px;
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 0.2s ease-in-out;
    font-family: var(--thm-font);
}

#apply-form .form-group .nice-select:after {
    position: absolute;
    content: "\e901";
    font-family: 'icomoon' !important;
    color: #7f7873;
    font-size: 16px;
    top: 0px;
    right: 0px;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
    height: 50px;
    width: 45px;
    bottom: 0;
    text-align: center;
}

#apply-form .form-group .nice-select:before {
    content: "";
    position: absolute;
    top: 10px;
    right: 45px;
    bottom: 10px;
    width: 1px;
    background: #f2ece7;
}

#apply-form .form-group .nice-select .list {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
}

#apply-form .form-group .nice-select .option {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
}

#apply-form .button-box {
    position: relative;
    display: block;
}

#apply-form .button-box button {
    color: #ffffff;
}

#apply-form .button-box button:after {
    background-color: var(--thm-base);
}

/* ** 
=============================================
    Card Banner Area Style      
=============================================
** */
.card-banner-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 100px;
    z-index: 1;
}

.card-banner-content {
    position: relative;
    display: block;
    background-color: #f7f1eb;
    padding: 53px 60px 60px;
    z-index: 1;
}

.card-banner-content-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 750px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    z-index: -1;
}

.card-banner-content-img-box {
    position: absolute;
    bottom: 0;
    right: 60px;
}

.card-banner-content .inner-title {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.card-banner-content .inner-title h4 {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
}

.card-banner-content .inner-title h2 {
    font-size: 36px;
    line-height: 46px;
}

.card-banner-content .text {
    position: relative;
    display: block;
    padding-bottom: 28px;
}

.card-banner-content .text p {
    color: #7f7873;
}

.card-banner-content .btns-box {
    position: relative;
    display: block;
    line-height: 0;
}

/* ** 
=============================================
    Cards Area Style      
=============================================
** */
.cards-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0 40px;
    z-index: 1;
}

.sidebar-box-style1 {
    position: relative;
    display: block;
}

.single-sidebar-box-style1 {
    position: relative;
    display: block;
}

.single-sidebar-box-style1.margintop {
    margin-top: 17px;
}

.card-types-box {
    position: relative;
    display: block;
    padding-top: 26px;
}

.card-types-box ul {
    position: relative;
    display: block;
}

.card-types-box ul li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.card-types-box ul li:last-child {
    margin-bottom: 0;
}

.card-types-box ul li:before {
    content: "";
    position: absolute;
    top: 24px;
    right: 22px;
    width: 8px;
    height: 8px;
    background: #ffffff;
    transform: rotate(45deg);
    z-index: 2;
}

.card-types-box ul li a {
    position: relative;
    display: block;
    background: #ffffff;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    padding: 14px 40px 14px;
    padding-right: 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.card-types-box ul li a:hover,
.card-types-box ul li.active a {
    color: #ffffff;
    box-shadow: none;
    padding-left: 20px;
}

.card-types-box ul li a::before {
    position: absolute;
    content: '';
    top: 25px;
    left: 20px;
    width: 6px;
    height: 6px;
    background-color: #a5a2a0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.card-types-box ul li a:hover::before,
.card-types-box ul li.active a::before {
    transform: scale(0);
}

.card-types-box ul li a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.card-types-box ul li a:hover::after,
.card-types-box ul li.active a::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.cards-content-box {
    position: relative;
    display: block;
}

.cards-content-box-top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 60px;
}

.cards-content-box-top .left-box {
    position: relative;
    display: block;
    top: 10px;
}

.cards-content-box-top .left-box h2 {
    font-size: 36px;
    line-height: 1.1em;
    font-weight: 500;
}

.cards-content-box-top .right-box {
    position: relative;
    display: block;
}

.short-by {
    position: relative;
    display: block;
}

.cards-content-box-top .right-box .select-box {
    width: 270px;
}

.cards-content-box-top .right-box .nice-select {
    position: relative;
    display: block;
    height: 45px;
    line-height: 43px;
    background: #ffffff;
    border: 1px solid #ffffff !important;
    border-bottom: 1px solid #f2ece7 !important;
    font-family: var(--thm-font);
    border-radius: 0px;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 400;
    padding-left: 0px;
    padding-right: 0px;
}

.cards-content-box-top .right-box .nice-select:after {
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #aca9a7;
    border-right: 1px solid #aca9a7;
    right: 2px;
    margin-top: 0px;
    top: 16px;
    z-index: 10;
}

.single-card-box {
    position: relative;
    display: flex;
    background-color: #ffffff;
    border: 1px solid #f2ece7;
    margin-bottom: 60px;
}

.single-card-box .category-box {
    position: absolute;
    top: -15px;
    right: 20px;
    background-image: -moz-linear-gradient(0deg, #159445 0%, #241E4E 100%);
    background-image: -webkit-linear-gradient(0deg, #159445 0%, #241E4E 100%);
    background-image: -ms-linear-gradient(0deg, #159445 0%, #241E4E 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    padding: 0 20px;
    font-family: var(--thm-font-2);
}

.single-card-box .category-box:before {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 15px;
    border-left: 10px solid #241E4E;
    border-top: 15px solid transparent;
}

.cards-img-box {
    position: relative;
    display: block;
    max-width: 400px;
    width: 100%;
    border-right: 1px solid #f2ece7;
    padding: 35px 29px 30px;
}

.cards-img-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 23px;
}

.cards-img-box .inner-title h3 {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
}

.cards-img-box .btn-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 20px;
    margin-left: -5px;
    margin-right: -5px;
}

.cards-img-box .btn-box a {
    text-align: center;
    margin: 0 5px 10px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    width: 100%;
    line-height: 52px;
}

.cards-img-box .btn-box a.style2 {
    box-shadow: none;
}

.cards-img-box .btn-box a.style2:after {
    background: #f7f1eb;
}

.cards-text-box {
    position: relative;
    padding: 33px 40px 0;
    flex: 1;
}

.cards-text-box p {
    padding-bottom: 27px;
}

.cards-text-box h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
}

.cards-text-box ul {
    position: relative;
    display: block;
    padding-bottom: 31px;
}

.cards-text-box ul li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 32px;
    padding-left: 26px;
    margin-bottom: 5px;
}

.cards-text-box ul li:last-child {
    margin-bottom: 0;
}

.cards-text-box ul li::before {
    position: absolute;
    content: '';
    top: 14px;
    left: 0px;
    width: 6px;
    height: 6px;
    background-color: #241E4E;
    border-radius: 2px;
}

.cards-text-box .compare-box {
    position: relative;
    display: block;
    padding-top: 22px;
    border-top: 1px solid #f2ece7;
}

/* ** 
=============================================
    Cards Details Area Style      
=============================================
** */
.cards-details-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 100px;
    z-index: 1;
}

.sidebar-box-style2 {
    position: relative;
    display: block;
    background-color: rgb(248, 244, 239);
    margin-right: 30px;
    padding: 38px 30px 40px;
}

.sidebar-box-style2 .border-box-1 {
    position: relative;
    display: block;
    width: 100%;
    height: 4px;
    background: #e2deda;
    margin: 40px 0 40px;
}

.cards-deails-content-box {
    position: relative;
    display: block;
}

.cards-deails-content-1 {
    position: relative;
    display: block;
}

.cards-deails-content-1 .inner-title {
    position: relative;
    display: block;
    padding-bottom: 22px;
}

.cards-deails-content-1 .inner-title h5 {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 3px;
}

.cards-deails-content-1 .inner-title h2 {
    font-size: 36px;
    line-height: 46px;
}

.cards-deails-content-1 .text {
    position: relative;
    display: block;
}

.cards-deails-content-1 .text p+p {
    margin: 26px 0 0;
}

.cards-deails-content-2 {
    position: relative;
    display: block;
    padding-top: 33px;
}

.cards-deails-content-2 .img-box {
    position: relative;
    display: block;
}

.cards-deails-content-2 .img-box ul {
    position: relative;
    display: block;
}

.cards-deails-content-2 .img-box ul li {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.cards-deails-content-2 .img-box ul li:last-child {
    margin-bottom: 0;
}

.cards-deails-content-2 .img-box .single-img-box {
    position: relative;
    display: block;
    border: 15px solid #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}

.cards-deails-content-2 .img-box .single-img-box img {
    width: 100%;
}

.cards-deails-content-2 .text-box {
    position: relative;
    display: block;
}

.cards-deails-content-2 .text-box ul {
    position: relative;
    display: block;
}

.cards-deails-content-2 .text-box ul li {
    position: relative;
    display: block;
    margin-bottom: 33px;
}

.cards-deails-content-2 .text-box ul li:last-child {
    margin-bottom: 0;
}

.cards-deails-content-2 .text-box span {
    font-size: 30px;
    line-height: 30px;
    background: linear-gradient(to right, #8d1340 0%, #cc173c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards-deails-content-2 .text-box h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 7px 0 9px;
}

.cards-deails-content-2 .text-box p {
}

.card-details-features-box {
    position: relative;
    display: block;
    padding-top: 52px;
}

.card-details-features-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 33px;
}

.card-details-features-box .inner-title h2 {
    font-size: 30px;
    line-height: 38px;
    margin: 0 0 14px;
}

.card-details-single-features-box {
    position: relative;
    display: block;
    margin-bottom: 33px;
}

.card-details-single-features-box .single-benefits-box {
}

.card-details-single-features-box .single-benefits-box .icon {
    margin: 0;
}

.card-details-single-features-box.style2 .single-benefits-box .icon {
    background: linear-gradient(to right, #0f76a2 0%, #1297c5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-details-single-features-box.style3 .single-benefits-box .icon {
    background: linear-gradient(to right, #3e3389 0%, #515bbd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-details-single-features-box.style4 .single-benefits-box .icon {
    background: linear-gradient(to right, #649519 0%, #96c723 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-details-offer-box {
    position: relative;
    display: block;
    padding-top: 13px;
}

.card-details-offer-box .inner-title {
    position: relative;
    display: block;
    margin-bottom: 33px;
}

.card-details-offer-box .inner-title h3 {
    font-size: 30px;
    line-height: 40px;
}

.card-details-offer-box .inner-title p {
    padding-top: 15px;
}

.card-details-offer-box .single-offer-box .category .border-box {
    background-image: -moz-linear-gradient(0deg, rgb(207, 23, 60) 0%, rgba(207, 23, 60, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(207, 23, 60) 0%, rgba(207, 23, 60, 0) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(207, 23, 60) 0%, rgba(207, 23, 60, 0) 100%);
}

.card-deatils-accordion-box {
    position: relative;
    display: block;
    padding-top: 40px;
}

.card-deatils-accordion-box .accordion-box .block .acc-btn {
    padding-top: 14px;
    padding-left: 40px;
    padding-bottom: 14px;
    padding-right: 60px;
    border: 1px solid #f0eae5;
}

.card-deatils-accordion-box .accordion-box .block .acc-btn.active {
    border: 1px solid #1a1c23;
    background-color: #1a1c23;
}

.card-deatils-accordion-box .accordion-box .block .acc-btn.active h3 {
    color: #ffffff;
}

.card-deatils-accordion-box .accordion-box .block .acc-btn .icon-outer {
    left: auto;
    right: 35px;
    width: auto;
    height: auto;
    color: #a5a2a0;
    font-size: 16px;
    line-height: 16px;
}

.card-deatils-accordion-box .accordion-box .block .acc-btn.active .icon-outer {
    color: var(--thm-base);
}

.card-deatils-accordion-box .accordion-box .block .acc-content {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding-top: 33px;
    padding-left: 40px;
    padding-bottom: 40px;
    padding-right: 30px;
}

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

.card-deatils-accordion-box-content h4 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 25px;
}

.card-deatils-accordion-box-content ul {
    position: relative;
    display: block;
}

.card-deatils-accordion-box-content ul li {
    position: relative;
    display: block;
    padding-left: 20px;
    margin-bottom: 10px;
}

.card-deatils-accordion-box-content ul li:last-child {
    margin-bottom: 0;
}

.card-deatils-accordion-box-content ul li::before {
    position: absolute;
    content: '';
    top: 7px;
    left: 0;
    bottom: 0;
    width: 8px;
    height: 12px;
    border-left: 8px solid #a5a2a0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

.card-deatils-accordion-box-content .btns-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 23px;
}

.card-deatils-accordion-box-content .btns-box .btn-one {
    line-height: 50px;
}

.card-deatils-accordion-box-content .btns-box .btn-one:after {
    background-color: #f8f4ef;
}

/* ** 
=============================================
    Customer Care Numbers Area Style      
=============================================
** */
.customer-care-numbers-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 93px 0 100px;
    z-index: 1;
}

.customer-care-numbers-area .title-box {
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 52px;
}

.customer-care-numbers-area .title-box h2 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
}

.customer-care-numbers-tab {
    position: relative;
    display: block;
}

.customer-care-numbers-tab__button {
    position: relative;
    display: block;
}

.customer-care-numbers-tab__button .tabs-button-box {
    position: relative;
    display: block;
    z-index: 10;
}

.customer-care-numbers-tab__button .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    float: left;
    width: 205px;
    z-index: 1;
}

.customer-care-numbers-tab__button .tabs-button-box .tab-btn-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    box-shadow: -6px -10px 20px -1px rgb(0 0 0 / 5%);
    z-index: -1;
}

.customer-care-numbers-tab__button .tabs-button-box .tab-btn-item:hover::before,
.customer-care-numbers-tab__button .tabs-button-box .tab-btn-item.active-btn-item::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.customer-care-numbers-tab__button .tabs-button-box .tab-btn-item h4 {
    position: relative;
    display: block;
    color: #a5a2a0;
    font-size: 18px;
    line-height: 50px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
}

.customer-care-numbers-tab__button .tabs-button-box .tab-btn-item:hover h4,
.customer-care-numbers-tab__button .tabs-button-box .tab-btn-item.active-btn-item h4 {
    color: var(--thm-base);
}

.customer-care-numbers-tab .tabs-content-box {
    position: relative;
    display: block;
}

.customer-care-numbers-tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.customer-care-numbers-tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.customer-care-numbers-tab .tab-content-box-item .customer-care-numbers-tab-content-box-item {
    opacity: 0;
    transform: scaleY(1.0) translateY(5px);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.customer-care-numbers-tab .tab-content-box-item.tab-content-box-item-active .customer-care-numbers-tab-content-box-item {
    opacity: 1.0;
    transform: scaleY(1) translateY(0px);
}

.customer-care-numbers-table-box {
    position: relative;
    display: block;
    box-shadow: 0px 5px 20px 1px rgb(0 0 0 / 12%);
}

.customer-care-numbers-table-box .table-outer {
    overflow-x: auto;
    position: relative;
    width: 100%;
}

.customer-care-numbers-table-box .customer-care-numbers-table {
    position: relative;
    min-width: 1024px;
    width: 100%;
}

.customer-care-numbers-table-box .customer-care-numbers-table:before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    bottom: 0;
    width: 1px;
    background: #ffffff;
}

.customer-care-numbers-table-box .customer-care-numbers-table:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #ffffff;
}

.customer-care-numbers-table .header {
    position: relative;
    text-transform: capitalize;
    width: 100%;
    font-family: var(--thm-font-2);
}

.customer-care-numbers-table thead tr th {
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    min-width: 110px;
    padding: 25px 30px;
    border-left: 1px solid #f2ece7;
    border-right: 1px solid #f2ece7;
    border-top: none;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
    text-align: center;
}

.customer-care-numbers-table tbody {
    position: relative;
}

.customer-care-numbers-table tbody tr {
    border-bottom: 1px solid #f2ece7;
}

.customer-care-numbers-table tbody tr td {
    min-width: 110px;
    padding: 0px 0px;
    border: 1px solid #f2ece7;
}

.customer-care-numbers-table tbody tr td.inner-title {
    position: relative;
    padding: 0 40px;
    padding-right: 20px;
}

.customer-care-numbers-table tbody tr td.inner-title h3 {
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    font-style: italic;
    font-family: var(--thm-font-2);
}

.customer-care-numbers-table tbody tr td.contact-info {
    position: relative;
}

.customer-care-numbers-table tbody tr td.contact-info ul {
    position: relative;
    display: block;
}

.customer-care-numbers-table tbody tr td.contact-info ul li {
    position: relative;
    display: block;
    padding-top: 14px;
    padding-left: 40px;
    padding-bottom: 13px;
    padding-right: 30px;
}

.customer-care-numbers-table tbody tr td.contact-info ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #f2ece7;
}

.customer-care-numbers-table tbody tr td.contact-info ul li:first-child::before {
    display: none;
}

.customer-care-numbers-table tbody tr td.contact-info ul li+li {
}

.customer-care-numbers-table tbody tr td.contact-info ul li a {
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.customer-care-numbers-table tbody tr td.contact-info ul li a.color2 {
    color: var(--thm-base);
}

.customer-care-numbers-table-box .bottom-text {
    position: relative;
    display: block;
    border-top: 1px solid #f2ece7;
    padding-top: 34px;
    padding-bottom: 33px;
}

.customer-care-numbers-table-box .bottom-text h3 {
    font-size: 18px;
    line-height: 26px;
}

.customer-care-numbers-table-box .bottom-text h3 a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-weight: 500;
    text-decoration: underline;
}

/* ** 
=============================================
    Error Page Area Style      
=============================================
** */
.error-page-area {
    position: relative;
    display: block;
    padding: 92px 0 100px;
    background: #ffffff;
    z-index: 10;
}

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

.error-content .big-title {
    position: relative;
    display: block;
    z-index: 1;
}

.error-content .big-title h2 {
    color: var(--thm-base);
    font-size: 72px;
    line-height: 70px;
    font-weight: 800;
    text-transform: uppercase;
}

.error-content .title {
    position: relative;
    display: block;
    padding-top: 23px;
    padding-bottom: 28px;
}

.error-content .title h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
}

.error-content .text {
    position: relative;
    display: block;
    padding-bottom: 29px;
}

.error-content .text p {
    margin: 0;
}

.error-page-search-box {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
}

.error-page-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.error-page-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    border-radius: 0px;
    background: #ffffff;
    border: 1px solid #f7f1eb;
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .1em;
    padding-left: 30px;
    padding-right: 60px;
    transition: all 500ms ease 0s;
    font-family: var(--thm-font);
}

.error-page-search-box .search-form button {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    background: var(--thm-base);
    color: #ffffff;
    font-size: 16px;
    line-height: 10px;
    display: block;
    text-align: center;
    border: 0px solid #e1e1e1;
    transition: all 500ms ease 0s;
}

.error-page-search-box .search-form button i {
    font-size: 16px;
}

.error-page-search-box .search-form input[type="text"]:focus {
    color: var(--thm-primary);
    border-color: var(--thm-base);
}

.error-page-search-box .search-form input[type="text"]:focus+button,
.error-page-search-box .search-form button:hover {
    color: #fff;
}

.error-page-search-box .search-form input::-webkit-input-placeholder {
    color: #757575;
}

.error-page-search-box .search-form input:-moz-placeholder {
    color: #757575;
}

.error-page-search-box .search-form input::-moz-placeholder {
    color: #757575;
}

.error-page-search-box .search-form input:-ms-input-placeholder {
    color: #757575;
}

.error-content .btns-box {
    line-height: 0;
    padding-top: 20px;
}

.error-content .btns-box a {
    padding-left: 40px;
    padding-right: 40px;
}

.error-content .btns-box a:after {
    background: #f7f1eb;
}

#ui-datepicker-div.ui-widget-content {
    border: 1px solid #c5c5c5;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #777;
    color: #252525;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
    z-index: 999 !important;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: #151515 none repeat scroll 0 0;
    border: 2px solid #252525;
    border-radius: 0;
    color: #fff;
    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;
}

* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

/* ** 
=============================================
    Element Page Css
=============================================
** */
/* --------------------------------------------------------------
# End Css 
-------------------------------------------------------------- */