.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility .5s ease .5s, -webkit-transform .5s ease .5s;
    transition: visibility .5s ease .5s, -webkit-transform .5s ease .5s;
    transition: transform .5s ease .5s, visibility .5s ease .5s;
    transition: transform .5s ease .5s, visibility .5s ease .5s, -webkit-transform .5s ease .5s;
    visibility: hidden
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mobile-nav__content .home-showcase__title {
    background-color: rgba(255, 255, 255, .1);
    margin-top: 0
}

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

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

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

.mobile-nav__contact li a {
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s
}

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

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

.mobile-nav__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px
}

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

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

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

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

.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
    display: none !important
}

.main-header {
    position: relative;
    display: block;
    width: 100%;
    background: 0 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 99
}

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

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

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

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

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

@media (min-width:1200px) {

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

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

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

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    position: relative;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    font-family: var(--thm-font-2);
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

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

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

.main-menu .main-menu__list>li.dropdown>a:before {
    position: absolute;
    right: 18px;
    font-family: icomoon !important;
    content: "\e901";
    font-size: 14px;
    font-weight: 400;
    transition: all .2s linear;
    transition-delay: .1s;
    z-index: 1
}

.main-menu .main-menu__list>li>a::after,
.stricky-header .main-menu__list>li>a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1
}

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

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

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

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

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

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

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
    position: relative;
    display: flex;
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-gray);
    letter-spacing: 0;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    padding: 6px 0;
    -webkit-transition: .5s;
    transition: .5s;
    font-family: var(--thm-font);
    z-index: 1
}

.main-menu .main-menu__list>li>ul>li>a:before,
.main-menu .main-menu__list>li>ul>li>ul>li>a:before,
.stricky-header .main-menu__list>li>ul>li>a:before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-base);
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1
}

.main-menu .main-menu__list>li>ul>li:hover>a:before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a:before,
.stricky-header .main-menu__list>li>ul>li:hover>a:before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
    color: #fff;
    padding-left: 15px
}

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

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

.main-menu__wrapper .main-menu__list>.megamenu {
    position: static
}

.main-menu__wrapper .main-menu__list>.megamenu>ul {
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0
}

.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
    padding: 0 !important
}

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

.megamenu-content-box .container {
    max-width: 1200px !important
}

.megamenu-content-box__inner {
    background-color: #fff;
    padding: 40px 35px 40px;
    -webkit-box-shadow: 0 10px 60px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, .1);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.mobile-nav__wrapper .megamenu-content-box__inner {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0)
}

.megamenu-content-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px
}

.home-showcase__image {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-black)
}

.home-showcase__image>img {
    width: 100%;
    -webkit-transition: .5s ease;
    transition: .5s ease;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.home-showcase__image:hover>img {
    opacity: .25
}

.home-showcase__image:hover .home-showcase__buttons {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible
}

.home-showcase__buttons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom center;
    -webkit-transition: .5s ease;
    transition: .5s ease
}

.home-showcase__buttons .home-showcase__buttons__item.top {
    opacity: 0;
    transform: translateY(-50px);
    transition: all .4s ease-in-out .1s
}

.home-showcase__image:hover .home-showcase__buttons .home-showcase__buttons__item.top {
    opacity: 1;
    transform: translateY(0);
    transition: all .4s ease-in-out .2s
}

.home-showcase__buttons__item {
    width: 150px;
    line-height: 50px !important;
    text-align: center
}

.home-showcase__buttons__item:hover {
    color: #fff
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
    margin-top: 10px
}

.home-showcase__title {
    position: relative;
    display: block;
    background-color: rgba(var(--thm-base-rgb, 53, 84, 209), .05);
    padding: 11px 0;
    margin: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--thm-base);
    text-transform: uppercase;
    margin-top: 15px
}

.mobile-nav__wrapper .home-showcase__title {
    color: #fff
}

.mobile-nav__wrapper .megamenu-content-box .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
}

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

.megamenu-box .container {
    max-width: 900px !important
}

.megamenu-box__inner {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 10px 20px 10px;
    -webkit-box-shadow: 0 10px 60px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, .1)
}

.megamenu-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0px
}

.megamenu-box ul {
    position: relative
}

.megamenu-box ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(var(--thm-base-rgb, 53, 84, 209), .05)
}

.megamenu-box ul li:last-child {
    border-bottom: none
}

.megamenu-box ul li a {
    position: relative;
    display: block;
    padding-left: 20px;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 50px;
    font-weight: 500;
    text-align: left;
    text-transform: capitalize;
    letter-spacing: normal;
    font-family: var(--thm-font-2);
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    z-index: 1
}

.megamenu-box ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-base);
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1
}

.megamenu-box ul li:hover a:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center
}

.megamenu-box ul li:hover a {
    color: #fff
}

.mobile-nav__wrapper .megamenu-box ul li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mobile-nav__wrapper .megamenu-box ul li a {
    position: relative;
    display: block;
    padding-left: 0;
    line-height: 46px;
    color: #fff;
    font-size: 14px;
    font-family: var(--thm-font-2);
    font-weight: 400;
    transition: all .5s ease
}

.mobile-nav__wrapper .megamenu-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0px
}

.mobile-nav__wrapper .megamenu-box__inner {
    padding: 0 0;
    background-color: transparent;
    box-shadow: none
}

.mobile-nav__wrapper .megamenu-box__inner .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
}

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

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

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

.main-menu .mobile-nav__toggler {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 28px;
    line-height: 28px;
    cursor: pointer;
    -webkit-transition: .5s;
    transition: .5s
}

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

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

.stricky-header.main-menu {
    background-color: #fff
}

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

.stricky-header .main-menu__wrapper {
    background-color: #fff
}

.stricky-header .main-menu__wrapper-inner {
    background-color: #fff
}

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

.stricky-header .logo-box-style1 {
    top: 0;
    left: 0;
    width: 250px;
    height: 90px
}

.stricky-header .main-menu-style1-right {
    display: none
}

.stricky-header .main-menu__list>li {
    position: relative;
    padding-top: 20px !important;
    padding-bottom: 20px !important
}

.stricky-header .main-menu-style1-left {
    width: 100%
}

.stricky-header .main-menu-style1-left .main-menu-box {
    float: none;
    padding-left: 0
}

.stricky-header .main-menu__list>li>a::after {
    background-color: #f7f1eb !important
}

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

.main-header-style1-top {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 17px 0;
    z-index: 11
}

.main-header-style1-top .auto-container {
    max-width: 100%;
    padding: 0 50px
}

.main-header-style1-top .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

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

.looking-banking-box {
    position: relative;
    display: block;
    padding-left: 100px
}

.looking-banking-box .inner-title {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center
}

.looking-banking-box .inner-title span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 20px;
    padding-right: 8px
}

.looking-banking-box .inner-title p {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 20px;
    margin: 0
}

.looking-banking-box .select-box {
    position: relative;
    display: block;
    width: 170px
}

.looking-banking-box .nice-select {
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 4px;
    border: solid 0 #f6f6f6;
    width: 100%;
    height: 20px;
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    outline: 0;
    padding-left: 0;
    padding-right: 0;
    transition: all .2s ease-in-out;
    font-family: var(--thm-font)
}

.looking-banking-box .nice-select:after {
    position: absolute;
    content: "\e901";
    font-family: icomoon !important;
    color: #7f7873;
    font-size: 12px;
    top: 0;
    right: 0;
    margin: 0;
    font-weight: 400;
    border: none !important;
    transform: rotate(0) !important;
    height: 20px;
    width: 12px
}

.looking-banking-box .nice-select .list {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 10px 0 10px;
    margin-top: 10px
}

.looking-banking-box .nice-select .option {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
    line-height: 35px;
    min-height: 35px
}

.nearest-branch {
    position: relative;
    display: flex;
    margin-left: 30px;
    padding-left: 30px
}

.nearest-branch:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background: #e2deda
}

.nearest-branch span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 20px;
    padding-right: 8px
}

.nearest-branch a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400
}

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

.header-menu-style1 {
    position: relative;
    display: block;
    overflow: hidden
}

.header-menu-style1 ul {
    position: relative;
    display: block;
    overflow: hidden
}

.header-menu-style1 ul li {
    position: relative;
    display: block;
    float: left;
    margin-right: 25px
}

.header-menu-style1 ul li:last-child {
    margin-right: 0
}

.header-menu-style1 ul li a {
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 400
}

.box-search-style1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    border-left: 1px solid #e2deda;
    border-right: 1px solid #e2deda;
    margin-left: 25px;
    margin-right: 13px
}

.box-search-style1 a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    font-family: var(--thm-font)
}

.box-search-style1 a span {
    position: relative;
    display: inline-block;
    padding-right: 3px;
    font-size: 18px;
    top: 2px
}

.main-menu-style1 {
    position: relative;
    display: block;
    background-color: #f7f1eb
}

.main-menu-style1 .container {
    max-width: 100%;
    padding: 0 50px
}

.main-menu-style1 .main-menu__wrapper-inner {
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 10
}

.main-menu-style1-left {
    display: flex;
    align-items: center;
    padding-left: 250px
}

.logo-box-style1 {
    position: absolute;
    top: 30px;
    left: 0;
    width: 250px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: -moz-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%)
}

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

.main-menu-style1-left .main-menu-box {
    position: static;
    display: block;
    float: left;
    padding-left: 80px
}

.main-menu-style1-right {
    position: relative;
    display: flex;
    align-items: center
}

.header-btn-one {
    position: relative;
    display: flex;
    align-items: center
}

.header-btn-one a {
    position: relative;
    display: inline-block;
    padding: 0 30px;
    background-color: var(--thm-black);
    color: #fff;
    font-size: 18px;
    line-height: 50px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, .08);
    transition: all .2s linear;
    transition-delay: .1s
}

.header-btn-one a:hover {
    color: var(--thm-black);
    background-color: #fff
}

.header-btn-one a+a {
    margin-left: 10px
}

.header-btn-one a span:before {
    position: relative;
    top: 2px;
    display: inline-block;
    padding-right: 7px
}

.header-btn-one a.style2 {
    color: var(--thm-black);
    background-color: #fff
}

.header-btn-one a.style2:hover {
    color: #fff;
    background-color: var(--thm-black)
}

/* mobile */
.mobile-lnavs {
    margin-bottom: 10px
}
.mobile-lnavs a {
    padding: 12px 20px;
    background-color: var(--thm-black);
    color: #fff;
    font-size: 18px;
    line-height: 64px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    box-shadow: 0 0 35px 0 rgb(0 0 0 / 8%);
    transition: all .2s linear;
    transition-delay: .1s;
    border-radius: 5px;
}

.mobile-lnavs a:hover {
    color: var(--thm-black);
    background-color: #fff
}

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

.mobile-lnavs a span:before {
    position: relative;
    top: 2px;
    display: inline-block;
    padding-right: 7px
}

.mobile-lnavs a.style2 {
    color: var(--thm-black);
    background-color: #fff
}

.mobile-lnavs a.style2:hover {
    color: #fff;
    background-color: var(--thm-black)
}


.main-header-style1-bottom {
    position: relative;
    display: block;
    background-color: #f7f1eb
}

.main-header-style1-bottom .auto-container {
    max-width: 100%;
    padding: 0 50px
}

.main-header-style1-bottom .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 17px 0;
    padding-left: 250px;
    z-index: 1
}

.main-header-style1-bottom .outer-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 250px;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(180deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(180deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(180deg, #8a0f3d 0, #cf173c 100%);
    z-index: -1
}

.update-box {
    position: relative;
    display: flex;
    align-items: center
}

.update-box .inner-title {
    position: relative;
    display: flex;
    align-items: center;
    width: 120px
}

.update-box .inner-title span {
    position: relative;
    display: inline-block;
    line-height: 0
}

.update-box .inner-title span:before {
    position: relative;
    display: inline-block;
    padding-right: 6px;
    color: #fff;
    font-size: 20px;
    line-height: 20px
}

.update-box .inner-title h4 {
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500
}

.update-box .text {
    position: relative;
    display: flex;
    align-items: center
}

.update-box .text p {
    color: #fff;
    margin: 0
}

.update-box .text a {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all .5s ease
}

.update-box .text a:hover {
    color: var(--thm-black)
}

.update-box .text a span:before {
    position: relative;
    display: inline-block;
    padding-right: 5px;
    font-size: 12px
}

.slogan-box {
    position: relative;
    display: block;
    margin-left: 25px;
    padding-left: 25px;
    border-left: 1px solid rgba(255, 255, 255, .2)
}

.slogan-box p {
    color: #fff
}

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

.main-header-style2__top {
    position: relative;
    display: block;
    padding: 10px 0;
    background-image: -moz-linear-gradient(-180deg, #25b85d 0, #028835 100%);
    background-image: -webkit-linear-gradient(-180deg, #25b85d 0, #028835 100%);
    background-image: -ms-linear-gradient(-180deg, #25b85d 0, #028835 100%)
}

.main-header-style2__top .auto-container {
    max-width: 100%;
    padding: 0 50px
}

.main-header-style2__top .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

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

.notification-box {
    position: relative;
    display: block;
    padding-left: 30px
}

.notification-box .icon {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 0
}

.notification-box .icon span {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    line-height: 26px
}

.notification-box p {
    color: #fff
}

.notification-box p a {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-left: 5px;
    color: #fff;
    font-size: 16px;
    line-height: 16px
}

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

.main-header-style2__top-right .header-menu-style1 ul li a {
    color: #fff
}

.main-header-style2__top-right .header-menu-style1 ul li a:hover {
    color: var(--thm-black)
}

.main-header-style2__top-right .box-search-style1 {
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-right: 1px solid rgba(255, 255, 255, .3)
}

.main-header-style2__top-right .box-search-style1 a {
    color: #fff
}

.main-header-style2__top-right .language-switcher #polyglotLanguageSwitcher a {
    color: #fff
}

.main-header-style2__top-right .language-switcher #polyglotLanguageSwitcher span.trigger:before {
    color: #fff
}

.main-menu-style2 {
    position: relative;
    display: block;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12)
}

.main-menu-style2 .container {
    max-width: 100%;
    padding: 0 50px
}

.main-menu-style2 .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.main-menu-style2-left {
    position: relative;
    display: flex;
    align-items: center
}

.logo-box-style2 {
    position: relative;
    display: block;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #e1e6e4
}

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

.looking-banking-box--style2 {
    position: relative;
    display: block;
    padding-left: 60px
}

.looking-banking-box--style2 .icon {
    position: absolute;
    top: 4px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #e1e6e4;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 24px;
    font-weight: 700
}

.looking-banking-box--style2 .select-box p {
    color: var(--thm-black);
    font-weight: 500;
    margin: 0 0 4px
}

.main-menu-style2-right {
    display: flex;
    align-items: center
}

.main-menu-style2-right .main-menu-box {
    padding-right: 50px
}

.main-menu-style2 .main-menu__list>li+li {
    margin-left: 0
}

.header-logon-box {
    position: relative;
    display: block;
    padding-left: 55px;
    min-height: 45px;
    margin-left: 30px
}

.header-logon-box .icon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #e1e6e4;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 24px;
    font-weight: 700
}

.header-logon-box .select-box {
    position: relative;
    display: block;
    width: 70px
}

.header-logon-box .nice-select {
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 4px;
    border: solid 0 #f6f6f6;
    width: 100%;
    height: 45px;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 45px;
    outline: 0;
    padding-left: 0;
    padding-right: 0;
    transition: all .2s ease-in-out;
    font-family: var(--thm-font-2);
    padding: 0 0
}

.header-logon-box .nice-select:after {
    position: absolute;
    content: "\e901";
    font-family: icomoon !important;
    color: #7f7873;
    font-size: 12px;
    top: 0;
    right: 0;
    margin: 0;
    font-weight: 400;
    border: none !important;
    transform: rotate(0) !important;
    height: 20px;
    width: 12px
}

.header-logon-box .nice-select .list {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0 0 0;
    margin-top: 10px;
    width: 140px;
    left: auto !important
}

.header-logon-box .nice-select .option {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
    line-height: 35px;
    min-height: 35px
}

.stricky-header--style2 .main-menu__wrapper .container {
    max-width: 100%;
    padding: 0 50px
}

.stricky-header--style2 .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.stricky-header--style2 .header-logon-box {
    display: none
}

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

.main-header-style3__top {
    position: relative;
    display: block;
    padding: 10px 0;
    background: #fff;
    border-bottom: 1px solid #e6eced;
    z-index: 11
}

.main-header-style3__top .auto-container {
    max-width: 100%;
    padding: 0 50px
}

.main-header-style3__top .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

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

.main-header-style3__top-left .header-btn-one {
    margin-right: 40px
}

.main-header-style3__top-left .header-btn-one a {
    line-height: 40px;
    padding: 0 20px
}

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

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

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

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

.header-contact-info-style1 ul li:last-child {
    margin-right: 0
}

.header-contact-info-style1 ul li span {
    position: relative;
    top: 2px;
    display: inline-block;
    padding-right: 4px;
    color: var(--thm-black);
    font-size: 18px
}

.header-social-link-style1 {
    position: relative;
    display: block;
    margin-left: 30px
}

.header-social-link-style1 ul {
    position: relative
}

.header-social-link-style1 ul li {
    position: relative;
    display: block;
    float: left;
    margin-right: 20px
}

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

.header-social-link-style1 ul li a {
    color: #757c7d;
    transition: all .2s linear;
    transition-delay: .1s
}

.header-social-link-style1 ul li a:hover {
    color: var(--thm-base)
}

.main-menu-style3 {
    position: relative;
    display: block;
    background-color: #fff
}

.main-menu-style3 .container {
    max-width: 100%;
    padding: 0 50px
}

.main-menu-style3 .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.main-menu-style3-left {
    position: relative;
    display: flex;
    align-items: center
}

.main-menu-style3-left .header-logon-box {
    margin-left: 0
}

.logo-box-style3 {
    position: relative;
    display: block;
    padding-left: 60px
}

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

.main-menu-style3-middle {
    position: static;
    display: block
}

.main-menu-style3-middle .main-menu__list>li+li {
    margin-left: 0
}

.main-menu-style3-right {
    position: relative;
    display: flex;
    align-items: center
}

.phone-number-box-style1 {
    position: relative;
    display: block;
    padding-left: 55px
}

.phone-number-box-style1 .icon {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--thm-base);
    font-size: 40px
}

.phone-number-box-style1 h5 {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px
}

.phone-number-box-style1 h3 {
    font-size: 18px;
    font-weight: 700
}

.phone-number-box-style1 h3 a {
    color: var(--thm-black);
    transition: all .2s linear;
    transition-delay: .1s
}

.phone-number-box-style1 h3 a:hover {
    color: var(--thm-base)
}

.box-search-style2 {
    position: relative;
    display: block;
    padding-left: 50px
}

.box-search-style2 a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2)
}

.box-search-style2 a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #e6eced;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 24px;
    margin-right: 10px
}

.stricky-header--style3 .main-menu__wrapper .container {
    max-width: 1200px;
    padding: 0 15px
}

.stricky-header--style3 .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.stricky-header--style3 .main-menu-style3-left .header-logon-box {
    display: none
}

.stricky-header--style3 .logo-box-style3 {
    padding-left: 0
}

.stricky-header--style3 .main-menu-style3-right {
    display: none
}

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

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

.main-slider-style1 {
    background-color: #f7f1eb;
    padding: 0 50px 50px
}

.slider-buttom-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 11
}

.slider-buttom-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 230px;
    height: 50px;
    background-color: var(--thm-base);
    padding: 0 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all .2s linear;
    transition-delay: .1s
}

.slider-buttom-box a:hover {
    background-color: #8a0f3d
}

.slider-buttom-box a+a {
    margin-top: 10px
}

.slider-buttom-box a.style2 {
    background-color: #8a0f3d
}

.slider-buttom-box a.style2:hover {
    background-color: var(--thm-base)
}

.main-slider .swiper-slide {
    position: relative
}

.main-slider .container {
    position: relative;
    padding-top: 128px;
    padding-bottom: 140px;
    z-index: 30
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #646464;
    background-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1.5s ease-in, -webkit-transform 7s ease;
    transition: opacity 1.5s ease-in, -webkit-transform 7s ease;
    transition: transform 7s ease, opacity 1.5s ease-in;
    transition: transform 7s ease, opacity 1.5s ease-in, -webkit-transform 7s ease;
    z-index: 1
}

.main-slider .swiper-slide-active .image-layer {
    -webkit-transform: scale(1.15);
    transform: scale(1.15)
}

.main-slider .image-layer:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    content: "";
    z-index: -1;
    background: #1a1c23;
    background: linear-gradient(270deg, #1a1c23 0, rgba(26, 28, 35, .9500175070028011) 12%, rgba(26, 28, 35, .865983893557423) 29%, rgba(26, 28, 35, 0) 100%)
}

.main-slider-style1__shape1 {
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    max-width: 470px;
    width: 100%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: right center;
    background-size: cover;
    -webkit-transform: perspective(400px) rotateY(0) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0) translateX(80px);
    transform: perspective(400px) rotateY(0) translateX(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    opacity: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 1
}

.main-slider .swiper-slide-active .main-slider-style1__shape1 {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0) translateX(0);
    -ms-transform: perspective(400px) rotateY(0) translateX(0);
    transform: perspective(400px) rotateY(0) translateX(0);
    -webkit-transition-delay: 1.5s;
    -moz-transition-delay: 1.5s;
    -ms-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s
}

.main-slider .main-slider-content {
    position: relative;
    display: block;
    max-width: 670px;
    width: 100%;
    float: right
}

.main-slider .main-slider-content__inner {
    position: relative;
    display: block;
    overflow: hidden
}

.main-slider .main-slider-content .big-title {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0) translateY(-80px);
    transform: perspective(400px) rotateY(0) translateY(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10
}

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

.main-slider .main-slider-content .big-title h2 {
    color: #fff;
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: inherit
}

.main-slider .main-slider-content .text {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 16px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0) translateX(80px);
    transform: perspective(400px) rotateY(0) translateX(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10
}

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

.main-slider .main-slider-content .text p {
    color: #ede7e2;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400
}

.main-slider .main-slider-content .btns-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 43px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0) translateY(80px);
    transform: perspective(400px) rotateY(0) translateY(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10
}

.main-slider .swiper-slide-active .main-slider-content .btns-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0) translateY(0);
    -ms-transform: perspective(400px) rotateY(0) translateY(0);
    transform: perspective(400px) rotateY(0) translateY(0);
    -webkit-transition-delay: 1.5s;
    -moz-transition-delay: 1.5s;
    -ms-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s
}

.main-slider__nav {
    position: absolute;
    left: 70px;
    bottom: 20px;
    transform: translateY(0) translateX(0);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    width: 140px
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--thm-black);
    background-color: rgba(255, 255, 255, .4);
    border-radius: 0;
    margin: 0;
    text-align: center;
    transition: all .5s ease;
    z-index: 100
}

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

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

.main-slider__nav .swiper-button-prev {
    transform: rotate(-180deg)
}

.main-slider__nav .swiper-button-prev .angle-left {
    position: relative;
    transform: rotate(0)
}

.main-slider-style2 {
    position: relative
}

.main-slider-style2 .content-layer {
    position: relative;
    display: block;
    width: 50%;
    float: left;
    padding: 136px 100px 146px;
    padding-left: 150px
}

.main-slider-style2 .main-slider-content {
    max-width: 100%;
    width: 100%;
    float: none
}

.main-slider-style2 .main-slider-content .big-title h2 {
    color: var(--thm-black);
    font-size: 85px;
    line-height: 1.1em;
    font-weight: 500;
    text-transform: inherit
}

.main-slider-style2 .main-slider-content .text {
    margin-top: 24px
}

.main-slider-style2 .main-slider-content .text p {
    color: #797c7f
}

.main-slider-style2 .main-slider-content .btns-box {
    padding-top: 43px;
    line-height: inherit
}

.main-slider-style2 .main-slider-content .btns-box a {
    color: #fff
}

.main-slider-style2 .main-slider-content .btns-box a:after {
    background-color: var(--thm-base)
}

.main-slider-style2 .main-slider-content .btns-box a.style2 {
    color: var(--thm-black);
    border: 1px solid #e9eeec;
    line-height: 58px;
    margin-left: 17px
}

.main-slider-style2 .main-slider-content .btns-box a.style2:hover {
    color: #fff;
    border-color: var(--thm-base)
}

.main-slider-style2 .main-slider-content .btns-box a.style2:after {
    background-color: transparent
}

.main-slider .main-slider-content .bottom-text {
    position: relative;
    display: block;
    padding-top: 14px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0) translateY(80px);
    transform: perspective(400px) rotateY(0) translateY(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10
}

.main-slider .swiper-slide-active .main-slider-content .bottom-text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0) translateY(0);
    -ms-transform: perspective(400px) rotateY(0) translateY(0);
    transform: perspective(400px) rotateY(0) translateY(0);
    -webkit-transition-delay: 1.5s;
    -moz-transition-delay: 1.5s;
    -ms-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s
}

.main-slider .main-slider-content .bottom-text p {
    color: var(--thm-black);
    line-height: 20px
}

.main-slider .main-slider-content .bottom-text p span {
    color: var(--thm-base)
}

.main-slider-style2 .image-layer {
    width: 50%;
    left: auto;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.main-slider-style2 .image-layer:before {
    display: none
}

.main-slider-style2 .swiper-slide-active .image-layer {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.slide-single-features {
    position: absolute;
    top: 40%;
    left: -85px;
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .09);
    padding: 20px 20px 20px;
    z-index: 11
}

.slide-single-features.two {
    top: auto;
    left: -40px;
    bottom: 30%
}

.slide-single-features span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 20px;
    padding-right: 6px
}

.slide-single-features h3 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500
}

.slide-single-features.one {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0) translateX(-80px);
    -ms-transform: perspective(400px) rotateY(0) translateX(-80px);
    transform: perspective(400px) rotateY(0) translateX(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

.main-slider .swiper-slide-active .slide-single-features.one {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0) translateX(0);
    -ms-transform: perspective(400px) rotateY(0) translateX(0);
    transform: perspective(400px) rotateY(0) translateX(0);
    -webkit-transition-delay: 1s;
    -moz-transition-delay: 1s;
    -ms-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s
}

.slide-single-features.two {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0) translateX(80px);
    transform: perspective(400px) rotateY(0) translateX(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

.main-slider .swiper-slide-active .slide-single-features.two {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0) translateX(0);
    -ms-transform: perspective(400px) rotateY(0) translateX(0);
    transform: perspective(400px) rotateY(0) translateX(0);
    -webkit-transition-delay: 1.5s;
    -moz-transition-delay: 1.5s;
    -ms-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s
}

.main-slider__nav--style2 {
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateY(0) translateX(-50%);
    margin-left: -100px;
    width: 120px
}

.main-slider__nav--style2 .swiper-button-next,
.main-slider__nav--style2 .swiper-button-prev {
    width: 50px;
    height: 50px;
    border: 1px solid #e6ebe9;
    font-size: 20px;
    color: var(--thm-black);
    background-color: rgba(255, 255, 255, .4)
}

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

.main-slider-style3 {
    position: relative
}

.main-slider-style3 .image-layer {
    background-color: #000
}

.main-slider-style3 .image-layer:before {
    display: none
}

.main-slider-style3 .image-layer:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background: #000;
    opacity: .6;
    z-index: -1
}

.main-slider-style3 .container {
    padding-top: 165px;
    padding-bottom: 180px
}

.main-slider-style3 .main-slider-content {
    position: relative;
    display: block;
    max-width: 100%;
    width: 100%;
    float: none;
    text-align: center
}

.main-slider-style3 .main-slider-content .text {
    margin-top: 23px
}

.main-slider-style3 .main-slider-content .big-title h2 {
    font-size: 90px;
    line-height: 1.1em
}

.main-slider__nav--style3 {
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: 50%;
    transform: translateY(0) translateX(0);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 0;
    margin: 0;
    width: auto;
    z-index: 100
}

.about-style1-area {
    position: relative;
    display: block;
    background: #fff;
    padding: 120px 0 120px;
    z-index: 10
}

.about-style1-img-box {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%
}

.about-style1-img-box .round-box {
    position: absolute;
    left: 0;
    bottom: -70px;
    width: 220px;
    height: 220px;
    border: 2px dashed #e7e7e7;
    border-radius: 50%
}

.about-style1-img-box .shape1 {
    position: absolute;
    top: -80px;
    left: -50px
}

.about-style1-img-box .shape2 {
    position: absolute;
    right: -100px;
    bottom: 80px
}

.about-style1-img-box .experience-box {
    position: absolute;
    top: 80px;
    right: -30px;
    width: 245px;
    height: 245px;
    background-color: var(--thm-base);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .9s linear;
    transition-delay: .1s;
    z-index: 3
}

.about-style1-img-box:hover .experience-box {
    background-color: var(--thm-black)
}

.about-style1-img-box .experience-box:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border: 2px dashed rgba(255, 255, 255, .2);
    border-radius: 50%
}

.about-style1-img-box .experience-box .counting {
    position: relative;
    display: block;
    top: -4px;
    z-index: 2
}

.about-style1-img-box .experience-box .counting h2 {
    color: #fff;
    font-size: 60px;
    line-height: 44px;
    font-weight: 300
}

.about-style1-img-box .experience-box .counting .plus {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 35px;
    line-height: 35px;
    top: 9px
}

.about-style1-img-box .experience-box h4 {
    position: relative;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 6px 0 0;
    z-index: 2
}

.about-style1-img-box__top {
    position: relative;
    display: block;
    max-width: 470px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px
}

.about-style1-img-box__top img {
    width: 100%
}

.about-style1-img-box__top:hover img {
    transform: scale(1.05) rotate(-1deg)
}

.about-style1-img-box__bottom {
    position: relative;
    display: block;
    padding-left: 100px;
    margin-top: -80px
}

.about-style1-img-box__bottom--inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 7px
}

.about-style1-img-box__bottom--inner img {
    width: 100%
}

.about-style1-img-box__bottom--inner:hover img {
    transform: scale(1.05) rotate(1deg)
}

.about-style1-text-box {
    position: relative;
    display: block;
    padding-top: 60px
}

.about-style1-text-box .title-box {
    position: relative;
    display: block;
    padding-bottom: 22px
}

.about-style1-text-box .title-box .sub-title {
    position: relative;
    display: inline-flex;
    background-color: rgba(var(--thm-base-rgb), .07);
    border-radius: 4px;
    padding: 7px 15px
}

.about-style1-text-box .title-box .sub-title h6 {
    color: var(--thm-base);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase
}

.about-style1-text-box .title-box h2 {
    font-size: 48px;
    line-height: 72px;
    font-weight: 400;
    margin: 15px 0 0
}

.about-style1-text-box .inner-text {
    position: relative;
    display: block
}

.about-style2-area {
    position: relative;
    display: block;
    background: #fff;
    padding: 120px 0 120px;
    z-index: 10
}

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

.about-style2-area-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #fff;
    opacity: .8;
    z-index: -1
}

.about-style2-area .video-gallery-style1 {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

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

.about-style2-content-box .title-box {
    position: relative;
    display: block;
    padding-bottom: 40px
}

.about-style2-content-box .title-box .sub-title {
    position: relative;
    display: inline-flex;
    background-color: rgba(var(--thm-base-rgb), .07);
    border-radius: 4px;
    padding: 7px 15px
}

.about-style2-content-box .title-box .sub-title h6 {
    color: var(--thm-base);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase
}

.about-style2-content-box .title-box h2 {
    font-size: 48px;
    line-height: 72px;
    font-weight: 600;
    margin: 15px 0 0
}

.about-style2-content-box__bottom {
    position: relative;
    display: flex;
    align-items: center
}

.about-style2-content-box ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 15px
}

.about-style2-content-box ul li {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    background-color: #fff;
    padding: 2px;
    border-radius: 50%;
    margin: 0 -15px
}

.about-style2-content-box ul li .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 50%
}

.about-style2-content-box ul li .img-box img {
    width: 100%
}

.about-style2-content-box__bottom .signature {
    position: relative;
    display: block;
    padding-left: 40px
}

.about-style3-area {
    position: relative;
    display: block;
    background: #fff;
    padding: 120px 0 240px;
    z-index: 10
}

.video-gallery-style1--style2 {
    position: relative;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    max-width: 500px
}

.video-gallery-style1--style2-bg {
    position: absolute;
    top: -120px;
    left: 0;
    bottom: -120px;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}

.fact-counter-area {
    position: relative;
    display: block;
    background: #fff;
    z-index: 10
}

.fact-counter-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #f9fafe;
    z-index: -1
}

.fact-counter_box {
    position: relative;
    display: block;
    box-shadow: 0 5px 9.1px .9px rgba(15, 15, 15, .03);
    padding: 41px 50px 0;
    background-color: #fff
}

.fact-counter_box ul {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.single-fact-counter {
    position: relative;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    margin-bottom: 42px
}

.single-fact-counter .counting-box {
    position: relative;
    display: flex;
    align-items: center
}

.single-fact-counter .count-box {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 72px;
    line-height: 60px;
    font-weight: 400;
    font-family: var(--thm-font-2)
}

.single-fact-counter .count-box span {
    position: relative;
    display: inline-block;
    line-height: 60px
}

.single-fact-counter .count-box span.k {
    margin-left: -17px
}

.single-fact-counter .count-box span.plus {
    font-size: 46px;
    position: relative;
    display: inline-block;
    margin-right: -15px;
    line-height: 40px;
    top: -5px
}

.single-fact-counter .text {
    position: relative;
    display: block;
    padding-left: 30px
}

.single-fact-counter .text p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize
}

.fact-counter-style2-area {
    position: relative;
    display: block;
    background: #fff;
    padding: 0 0 120px;
    z-index: 11
}

.fact-counter-style2-area.pdtop120 {
    padding-top: 120px
}

.fact-counter-style2-area .fact-counter_box {
    position: relative;
    display: block;
    padding: 41px 50px 0;
    background-color: #fff;
    box-shadow: 0 10px 30px 0 rgb(0 0 0 / 10%)
}

.testimonials-style1-area {
    position: relative;
    display: block;
    background: #f0f5f6;
    padding: 100px 0 100px
}

.single-testimonials-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #e0e6e7;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .08);
    padding: 50px 50px 50px
}

.single-testimonials-style1 .quote-box {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 240px;
    height: 240px;
    background-color: #fff;
    border: 1px solid #e0e6e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .08)
}

.single-testimonials-style1 .quote-box span {
    position: relative;
    display: inline-block;
    color: #e0e6e7;
    font-size: 50px;
    line-height: 50px;
    padding-top: 90px;
    padding-left: 45px
}

.single-testimonials-style1 .customer-info {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 23px
}

.single-testimonials-style1 .customer-info .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 50px;
    border-radius: 50%;
    background-color: #646464
}

.single-testimonials-style1 .customer-info .img-box img {
    mix-blend-mode: luminosity
}

.single-testimonials-style1 .customer-info .title-box {
    position: relative;
    padding-left: 20px;
    flex: 1
}

.single-testimonials-style1 .customer-info .title-box h3 {
    font-size: 22px;
    line-height: 24px
}

.single-testimonials-style1 .customer-info .title-box span {
    color: var(--thm-base)
}

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

.single-testimonials-style1 .inner .text-box {
    position: relative;
    display: block
}

.single-testimonials-style1 .inner .text-box p {
    color: #7f7873
}

.single-testimonials-style1 .inner .review-box {
    position: relative;
    display: block;
    padding-top: 18px
}

.testimonials-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
    width: 120px;
    margin: 50px auto 0
}

.testimonials-style1-carousel.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
    margin-right: 0;
    float: left
}

.testimonials-style1-carousel.owl-carousel .owl-stage-outer {
    overflow: visible
}

.testimonials-style1-carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease
}

.testimonials-style1-carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible
}

.testimonial-style2-area {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 100px 0 70px
}

.single-testimonial-style2 {
    position: relative;
    display: block;
    background-color: #f7f1eb;
    padding: 34px 40px 40px;
    margin-bottom: 30px
}

.single-testimonial-style2.bg-white {
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12)
}

.single-testimonial-style2 .top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 23px
}

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

.single-testimonial-style2 .top .date-box p {
    color: #7f7873
}

.single-testimonial-style2 .text-box {
    position: relative;
    display: block;
    padding-bottom: 28px
}

.single-testimonial-style2 .customer-info {
    position: relative;
    display: flex;
    align-items: center
}

.single-testimonial-style2 .customer-info .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 50px;
    border-radius: 50%;
    background-color: #646464
}

.single-testimonial-style2 .customer-info .img-box img {
    mix-blend-mode: luminosity
}

.single-testimonial-style2 .customer-info .title-box {
    position: relative;
    padding-left: 20px;
    flex: 1
}

.single-testimonial-style2 .customer-info .title-box h3 {
    font-size: 22px;
    line-height: 24px
}

.single-testimonial-style2 .customer-info .title-box span {
    color: var(--thm-base)
}

.partner-area {
    position: relative;
    display: block;
    background: #f5f8f7;
    padding: 93px 0 100px;
    border-top: 1px solid #fff;
    z-index: 10
}

.partner-area__sec-title {
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 42px
}

.partner-area__sec-title h3 {
    font-size: 22px;
    line-height: 30px
}

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

.single-partner-logo-box {
    position: relative;
    display: block;
    text-align: center;
    border: 1px solid #fff;
    z-index: 1
}

.single-partner-logo-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all .3s linear;
    transition-delay: .2s;
    z-index: -1
}

.single-partner-logo-box:hover:before {
    transform: perspective(400px) scaleX(1)
}

.single-partner-logo-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px 0
}

.single-partner-logo-box a img {
    position: relative;
    display: inline-block !important;
    opacity: 1;
    width: auto !important;
    transition: all .2s ease-in-out .1s
}

.single-partner-logo-box:hover a img {
    opacity: 1;
    transition: all .8s ease-in-out .1s
}

.partner-style2-area {
    position: relative;
    display: block;
    background: #fff;
    padding: 100px 0 100px;
    border-top: 1px solid #e6eced;
    z-index: 10
}

.partner-style2-area .single-partner-logo-box {
    border: 1px solid rgba(var(--thm-black-rgb), .05)
}

.partner-style2-area .single-partner-logo-box:before {
    background: var(--thm-black)
}

.bottom-parallax {
    position: relative;
    height: 625px;
    opacity: 0;
    z-index: -999
}

.bottom-parallax .footer-area {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    height: 625px
}

.parallax-visible .bottom-parallax {
    opacity: 1;
    z-index: 1
}

.footer-area {
    position: relative;
    display: block;
    background: #1a1c23;
    z-index: 10
}

.footer-area .right-shape {
    position: absolute;
    right: 0;
    bottom: 80px
}

.footer-top {
    position: relative;
    display: block;
    border-top: 1px solid #2f3139;
    border-bottom: 1px solid #2f3139;
    padding-top: 100px;
    padding-bottom: 50px
}

.footer-top .lef-shape {
    position: absolute;
    top: 0;
    left: 0
}

.footer-top .lef-shape span {
    position: relative;
    display: inline-block;
    color: #1f2128;
    font-size: 430px;
    line-height: 430px
}

.footer-top .single-widget {
    margin-bottom: 43px
}

.single-footer-widget .title {
    position: relative;
    display: block;
    margin-top: -4px
}

.single-footer-widget .title h3 {
    color: #eae0e4;
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize
}

.footer-widget-links {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 28px
}

.single-footer-widget--link-box {
    position: relative
}

.single-footer-widget--link-box-style2 {
    margin-top: 37px
}

.footer-widget-links ul {
    position: relative;
    display: block;
    overflow: hidden
}

.footer-widget-links ul li {
    position: relative;
    display: block;
    line-height: 26px;
    margin-bottom: 11px
}

.footer-widget-links ul li:last-child {
    margin-bottom: 0
}

.footer-widget-links ul li a {
    position: relative;
    display: inline-block;
    padding-right: 25px;
    color: #b8b4b1;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all .1s linear;
    transition-delay: .1s
}

.footer-widget-links ul li a:hover {
    color: #fff;
    padding-left: 2px
}

.footer-widget-links ul li a:before {
    font-family: icomoon !important;
    content: "\e90f";
    position: absolute;
    right: 0;
    font-size: 14px;
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all .3s linear;
    transition-delay: .1s;
    z-index: 1
}

.footer-widget-links ul li a:hover:before {
    transform: perspective(400px) scaleX(1)
}

.footer {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 70px;
    z-index: 9
}

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

.single-footer-widget .our-company-info {
    position: relative;
    display: block
}

.footer-logo-style1 {
    position: relative;
    display: block;
    padding-bottom: 23px
}

.footer-logo-style1 a {
    position: relative;
    display: inline-block
}

.copyright-text {
    position: relative;
    display: block
}

.copyright-text p {
    color: #b8b4b1
}

.copyright-text p a {
    color: #fff;
    font-weight: 500
}

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

.footer-widget-contact-info ul {
    position: relative;
    display: block;
    overflow: hidden
}

.footer-widget-contact-info ul li {
    position: relative;
    display: block
}

.footer-widget-contact-info ul li+li {
    margin-top: 21px
}

.footer-widget-contact-info ul li h3 {
    color: #fff;
    font-size: 22px;
    line-height: 20px;
    font-weight: 500;
    margin: 0 0 10px
}

.footer-widget-contact-info ul li h3 a {
    color: #fff
}

.footer-widget-contact-info ul li p {
    color: #b8b4b1
}

.single-footer-widget-right-colum {
    position: relative;
    display: block
}

.single-footer-widget-right-colum ul {
    position: relative;
    display: block;
    overflow: hidden
}

.single-footer-widget-right-colum ul li {
    position: relative;
    display: block;
    margin-bottom: 20px
}

.single-footer-widget-right-colum ul li:last-child {
    margin-bottom: 0
}

.single-footer-widget-right-colum ul li a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #2f3139;
    padding: 13px 20px 13px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all .2s linear;
    transition-delay: .1s
}

.single-footer-widget-right-colum ul li a span {
    position: relative;
    display: inline-block;
    color: #b8b4b1;
    font-size: 20px
}

.single-footer-widget-right-colum ul li a:hover {
    color: #fff;
    border-color: var(--thm-base);
    background-color: var(--thm-base)
}

.footer-bottom {
    position: relative;
    display: block;
    background: #121419
}

.footer-bottom .bottom-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0 20px
}

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

.footer-menu ul {
    position: relative;
    display: block;
    overflow: hidden
}

.footer-menu ul li {
    position: relative;
    display: block;
    float: left;
    margin-right: 30px
}

.footer-menu ul li:last-child {
    margin-right: 0
}

.footer-menu ul li a {
    color: #b8b4b1;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all .2s linear;
    transition-delay: .1s
}

.footer-menu ul li a:hover {
    color: #fff
}

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

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

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

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

.footer-social-link ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    text-align: center;
    transition: all .2s linear;
    transition-delay: .1s;
    z-index: 1
}

.footer-social-link ul li a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(.5);
    transform-style: preserve-3d;
    transition: all .4s cubic-bezier(.62, .21, .45, 1.52);
    z-index: -1
}

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

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

.footer-area--style2 {
    background: #1a1c23
}

.footer-top-style2 {
    position: relative;
    display: block;
    padding: 100px 0 93px
}

.footer-top-style2__left-content {
    position: relative;
    display: block;
    padding-right: 100px
}

.footer-top-style2__left-content .our-company-info .bottom-text2 {
    position: relative;
    display: block;
    padding-top: 5px
}

.footer-top-style2__left-content .our-company-info .bottom-text2 p {
    color: #a5a6aa
}

.footer-top-style2__left-content .our-company-info .bottom-text2 .btn-box {
    position: relative;
    display: block;
    padding-top: 17px
}

.footer-top-style2__left-content .our-company-info .bottom-text2 .btn-box a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2)
}

.footer-top-style2__left-content .our-company-info .bottom-text2 .btn-box a span {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--thm-base);
    font-size: 16px
}

.footer-top-style2__left-content-inner {
    position: relative;
    display: block;
    padding-top: 36px
}

.footer-top-style2__left-content-inner .row {
    --bs-gutter-x: 0px
}

.footer-top-style2__left-content-inner>ul>li {
    position: relative
}

.footer-top-style2__left-content-inner>ul>li:before {
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 7px;
    width: 1px;
    background-color: #2f3139
}

.footer-top-style2__left-content-inner>ul>li:last-child::before {
    display: none
}

.footer-top-style2__left-content-inner>ul>li+li {
    padding-left: 30px
}

.footer-top-style2__left-content-inner>ul>li:last-child {
    border-right: none
}

.footer-top-style2__left-content-inner .footer-widget-links {
    padding-top: 0
}

.footer-top-style2__right-content {
    position: relative;
    display: block
}

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

.footer-contact-info-style ul {
    position: relative;
    display: block;
    overflow: hidden
}

.footer-contact-info-style ul li {
    position: relative;
    display: block;
    padding-left: 80px
}

.footer-contact-info-style ul li+li {
    margin-top: 21px
}

.footer-contact-info-style ul li .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #2f3139;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a5a6aa;
    font-size: 20px
}

.footer-contact-info-style ul li .text {
    position: relative;
    display: block;
    top: -2px
}

.footer-contact-info-style ul li .text h3 {
    color: #eae0e4;
    font-size: 22px;
    line-height: 22px;
    margin: 0 0 14px
}

.footer-contact-info-style ul li .text p {
    color: #a5a6aa
}

.footer-contact-info-style ul li .text p a {
    color: #a5a6aa;
    font-weight: 500;
    transition: all .2s linear;
    transition-delay: .1s
}

.footer-contact-info-style ul li .text p a:hover {
    color: #fff
}

.find-nearest-branch-box {
    position: relative;
    display: block;
    border: 1px solid #2f3139;
    padding: 26px 0 0;
    margin-top: 41px
}

.find-nearest-branch-box .top-outer {
    position: relative;
    display: block;
    padding: 0 30px 28px
}

.find-nearest-branch-box .top {
    position: relative;
    display: block;
    padding-left: 70px
}

.find-nearest-branch-box .top .icon {
    position: absolute;
    top: 4px;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: var(--thm-base);
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center
}

.find-nearest-branch-box .top .inner-title {
    position: relative;
    display: block
}

.find-nearest-branch-box .top .inner-title h3 {
    color: #fff;
    font-size: 20px;
    line-height: 28px
}

.find-nearest-branch-box .form-box1 {
    position: relative;
    display: block
}

.find-nearest-branch-box .form-box1 .zip-form {
    position: relative;
    display: block
}

.find-nearest-branch-box .form-box1 input[type=number] {
    position: relative;
    display: block;
    width: 100%;
    height: 51px;
    border: none;
    border-top: 1px solid #2f3139;
    background-color: transparent;
    color: #a5a6aa;
    font-size: 16px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 100px;
    border-radius: 0;
    transition: all .5s ease 0s
}

.find-nearest-branch-box .form-box1 .zip-form button {
    position: absolute;
    top: 1px;
    right: 0;
    width: 110px;
    height: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2)
}

.find-nearest-branch-box .form-box1 .zip-form button i {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--thm-base);
    font-size: 16px
}

.footer-bottom-style2 {
    position: relative;
    display: block;
    background: #272a32
}

.footer-bottom-style2 .bottom-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 22px 0 22px
}

.scrool-top-btn-style2 {
    position: relative;
    display: block
}

.scrool-top-btn-style2 a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all .2s linear;
    transition-delay: .1s
}

.scrool-top-btn-style2 a:hover {
    color: var(--thm-base)
}

.scrool-top-btn-style2 a i {
    position: relative;
    top: 0;
    display: inline-block;
    padding-right: 9px;
    color: var(--thm-base);
    font-size: 12px
}

.footer-area--style3 {
    position: relative
}

.footer-area--style3 .footer-top {
    border-top: 0 solid #2f3139;
    border-bottom: 1px solid #2f3139;
    padding-top: 100px;
    padding-bottom: 50px
}

.single-footer-widget .our-company-info .bottom-text {
    position: relative;
    display: block;
    padding-top: 10px
}

.single-footer-widget .our-company-info .bottom-text p {
    color: #bcbcbc
}

.footer-certificate-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 23px
}

.footer-certificate-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 25px
}

.footer-certificate-box .title {
    position: relative;
    flex: 1;
    margin-left: 20px
}

.footer-certificate-box .title h3 {
    color: #fff;
    font-size: 18px;
    line-height: 24px
}

.find-nearest-branch-box-style2 {
    position: relative;
    display: block
}

.find-nearest-branch-box-style2 .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 25px
}

.find-nearest-branch-box-style2 h3 {
    color: #fff;
    font-size: 22px;
    line-height: 30px;
    margin: 19px 0 15px
}

.find-nearest-branch-box-style2 form {
    position: relative;
    display: block;
    width: 100%
}

.find-nearest-branch-box-style2 form .input-box {
    position: relative;
    display: block;
    margin-bottom: 10px
}

.find-nearest-branch-box-style2 form .select-box {
    position: relative;
    display: block;
    width: 100%
}

.find-nearest-branch-box-style2 form .select-box .nice-select {
    position: relative;
    display: block;
    background-color: transparent;
    border-radius: 0;
    border: solid 1px #2f3139;
    width: 100%;
    height: 50px;
    color: #bcbcbc;
    font-size: 16px;
    font-weight: 400;
    line-height: 48px;
    outline: 0;
    padding-left: 20px;
    padding-right: 20px;
    transition: all .2s ease-in-out;
    font-family: var(--thm-font)
}

.find-nearest-branch-box-style2 form .nice-select:after {
    position: absolute;
    content: "\e901";
    font-family: icomoon !important;
    color: #bcbcbc;
    font-size: 14px;
    top: 0;
    right: 19px;
    margin: 0;
    font-weight: 400;
    border: none !important;
    transform: rotate(0) !important;
    height: 20px;
    width: 12px
}

.find-nearest-branch-box-style2 form .nice-select .list {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0 0 0;
    margin-top: 10px;
    width: 100%;
    left: auto !important
}

.find-nearest-branch-box-style2 form .nice-select .option {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px
}

.find-nearest-branch-box-style2 form input[type=email],
.find-nearest-branch-box-style2 form input[type=text] {
    position: relative;
    display: block;
    background: 0 0;
    border: 1px solid #2f3139;
    width: 100%;
    height: 50px;
    color: #bcbcbc;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0;
    transition: all .5s ease;
    font-family: var(--thm-font)
}

.find-nearest-branch-box-style2 form .button-box {
    position: relative;
    display: block;
    line-height: 0;
    line-height: 20px;
    padding-top: 12px
}

.find-nearest-branch-box-style2 form .button-box button {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all .2s linear;
    transition-delay: .1s
}

.find-nearest-branch-box-style2 form .button-box button span {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--thm-base);
    font-size: 16px
}

.footer-area--style3 .footer-bottom {
    background: #1a1c23
}

.blog-style1-area {
    position: relative;
    display: block;
    background: #fff;
    padding: 100px 0 50px;
    z-index: 1
}

.single-blog-style1 {
    position: relative;
    display: block;
    padding-right: 20px;
    margin-bottom: 43px;
    z-index: 1
}

.single-blog-style1 .img-holder {
    position: relative;
    display: block
}

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

.single-blog-style1 .img-holder .inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background-color: rgba(26, 28, 35, .5);
    -webkit-transform: translateX(-50%, -50%);
    transform: translateX(-50%, -50%);
    opacity: 0;
    z-index: 1
}

.single-blog-style1:hover .img-holder .inner::before {
    -webkit-animation: circle .95s;
    animation: circle .95s
}

.single-blog-style1 .img-holder .inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #1a1c23;
    opacity: 0;
    z-index: 2;
    transition: all .5s linear;
    transition-delay: .1s
}

.single-blog-style1:hover .img-holder .inner:after {
    opacity: .85
}

.single-blog-style1 .img-holder img {
    width: 100%;
    transform: scale(1);
    mix-blend-mode: luminosity
}

.single-blog-style1:hover .img-holder img {
    transform: scale(1.05) rotate(0)
}

.single-blog-style1 .img-holder .inner .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 70px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0) translateY(-80px);
    transform: perspective(400px) rotateY(0) translateY(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

.single-blog-style1:hover .img-holder .inner .overlay-icon {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0) translateY(0);
    -ms-transform: perspective(400px) rotateY(0) translateY(0);
    transform: perspective(400px) rotateY(0) translateY(0);
    -webkit-transition-delay: .5s;
    -moz-transition-delay: .5s;
    -ms-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s
}

.single-blog-style1 .img-holder .inner .overlay-icon a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 25px
}

.single-blog-style1 .img-holder .category-date-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: -20px;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12);
    padding: 15px 20px 15px;
    display: flex;
    align-items: center;
    z-index: 3
}

.single-blog-style1 .img-holder .category-date-box .category {
    position: relative;
    display: flex;
    align-items: center
}

.single-blog-style1 .img-holder .category-date-box .category span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 14px;
    line-height: 14px;
    padding-right: 8px
}

.single-blog-style1 .img-holder .category-date-box .category h5 {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase
}

.single-blog-style1 .img-holder .category-date-box .date {
    position: relative;
    display: block;
    padding-left: 35px
}

.single-blog-style1 .img-holder .category-date-box .date:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 15px;
    width: 6px;
    height: 6px;
    background-color: #a5a6aa;
    border-radius: 50%
}

.single-blog-style1 .img-holder .category-date-box .date h5 {
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase
}

.single-blog-style1 .text-holder {
    position: relative;
    display: block;
    padding-top: 24px
}

.single-blog-style1 .text-holder .blog-title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
    padding-bottom: 22px;
    border-bottom: 1px solid #e6ebe9
}

.single-blog-style1 .text-holder .blog-title a {
    color: var(--thm-black);
    transition: all .2s linear;
    transition-delay: .1s
}

.single-blog-style1 .text-holder .blog-title a:hover {
    color: var(--thm-base)
}

.single-blog-style1 .text-holder .bottom {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 18px
}

.single-blog-style1 .text-holder .bottom .meta-box {
    position: relative;
    display: block
}

.single-blog-style1 .text-holder .meta-info {
    position: relative;
    display: block;
    overflow: hidden
}

.single-blog-style1 .text-holder .meta-info li {
    position: relative;
    display: block;
    float: left;
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    margin-right: 25px;
    font-family: var(--thm-font);
    text-transform: capitalize
}

.single-blog-style1 .text-holder .meta-info li:last-child {
    margin-right: 0
}

.single-blog-style1 .text-holder .meta-info li span::before {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 4px;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 15px
}

.single-blog-style1 .text-holder .meta-info li a {
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 500;
    transition: all .2s linear;
    transition-delay: .1s
}

.single-blog-style1 .text-holder .meta-info li a:hover {
    color: var(--thm-base)
}

.single-blog-style1 .text-holder .bottom .share-btn {
    position: relative;
    display: block
}

.single-blog-style1 .text-holder .bottom .share-btn a {
    position: relative;
    top: 2px;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 18px
}

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

.blog-style1-carousel.owl-carousel .owl-stage-outer {
    overflow: visible
}

.blog-style1-carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease
}

.blog-style1-carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible
}

.blog-style2-area {
    position: relative;
    display: block;
    background: #fff;
    padding: 100px 0 100px;
    z-index: 1
}

.blog-style2-area.pdb60 {
    padding-bottom: 60px
}

.blog-style2-area__shape1 {
    position: absolute;
    left: 0;
    bottom: 0
}

.blog-style2-area__shape2 {
    position: absolute;
    right: 0;
    bottom: 0
}

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

.blog-style2-area__top .sec-title {
    padding-bottom: 0
}

.blog-style2-area__top .btns-box {
    position: relative;
    display: block;
    padding-bottom: 5px;
    line-height: 0
}

.blog-style2-area__top .btns-box a {
    color: #fff
}

.blog-style2-area__top .btns-box a:after {
    background: var(--thm-black)
}

.single-blog-style1--style2 {
    padding-right: 30px;
    margin-bottom: 40px
}

.single-blog-style1--style2 .text-holder {
    padding: 21px 30px 24px;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12)
}

.single-blog-style1--style2 .text-holder .blog-title {
    font-size: 26px;
    line-height: 36px;
    font-weight: 500;
    text-transform: capitalize;
    padding-bottom: 0;
    border-bottom: 0 solid #e6ebe9
}

.single-blog-style1--style2 .text-holder .bottom {
    padding-top: 15px
}

.single-blog-style1--style2 .text-holder .bottom .read-more-btn {
    position: relative;
    display: block
}

.single-blog-style1--style2 .text-holder .bottom .read-more-btn a {
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all .2s linear;
    transition-delay: .1s
}

.single-blog-style1--style2 .text-holder .bottom .read-more-btn a:hover {
    color: var(--thm-base)
}

.single-blog-style1--style2 .text-holder .bottom .read-more-btn a span {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--thm-base);
    font-size: 16px
}

.single-blog-style1--style2 .img-holder .category-date-box {
    left: 30px;
    bottom: 30px;
    right: -30px
}

.single-blog-style1--style2 .img-holder .category-date-box .author {
    position: relative;
    display: block;
    padding-left: 35px
}

.single-blog-style1--style2 .img-holder .category-date-box .author:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 15px;
    width: 6px;
    height: 6px;
    background-color: #a5a6aa;
    border-radius: 50%
}

.single-blog-style1--style2 .img-holder .category-date-box .author h5 {
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase
}

.single-blog-style1--style2 .img-holder .category-date-box .author h5 a {
    color: var(--thm-gray)
}

.blog-page-one {
    position: relative;
    display: block;
    background: #fff;
    padding: 100px 0 100px;
    z-index: 1
}

.blog-page-two {
    position: relative;
    display: block;
    background: #fff;
    padding: 100px 0 100px;
    z-index: 1
}

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

.single-blog-style1--style2.blog-large {
    margin-bottom: 50px
}

.single-blog-style1--style2.blog-large .img-holder .category-date-box {
    padding: 16px 30px 16px
}

.single-blog-style1--style2.blog-large .img-holder .category-date-box .share-btn {
    position: relative;
    display: block;
    margin-left: auto
}

.single-blog-style1--style2.blog-large .img-holder .category-date-box .share-btn a {
    position: relative;
    top: 2px;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 18px
}

.single-blog-style1--style2.blog-large .text-holder {
    padding: 26px 30px 19px
}

.single-blog-style1--style2.blog-large .text-holder .blog-title {
    font-size: 30px;
    line-height: 40px
}

.single-blog-style1--style2.blog-large .text-holder .text {
    position: relative;
    display: block;
    padding-top: 13px;
    padding-bottom: 28px
}

.single-blog-style1--style2.blog-large .text-holder .bottom {
    padding-top: 20px
}

.single-blog-style1--style2.blog-large .text-holder .bottom:before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    right: -30px;
    height: 1px;
    background: #f2ece7
}

.blog-page-three {
    position: relative;
    display: block;
    background: #fff;
    padding: 100px 0 100px;
    z-index: 1
}

.single-blog-style1--style3 {
    position: relative;
    display: flex;
    padding-right: 0;
    margin-bottom: 40px
}

.single-blog-style1--style3 .image-colum {
    position: relative;
    display: block;
    max-width: 350px;
    width: 100%
}

.single-blog-style1--style3 .text-colum {
    position: relative;
    border: 1px solid #f2ece7;
    padding-top: 30px;
    padding-left: 50px;
    padding-right: 30px;
    flex: 1
}

.single-blog-style1--style3 .text-holder {
    padding: 0
}

.single-blog-style1--style3 .text-holder .blog-title {
    font-size: 26px;
    line-height: 36px;
    padding-bottom: 0;
    border-bottom: 0 solid
}

.single-blog-style1--style3 .text-holder .text {
    position: relative;
    display: block;
    padding: 14px 0 33px;
    border-bottom: 1px solid #f2ece7
}

.single-blog-style1--style3 .text-holder .bottom {
    padding-top: 19px;
    padding-bottom: 20px
}

.blog-details-area {
    position: relative;
    display: block;
    background: #fff;
    padding: 100px 0 100px;
    z-index: 1
}

.blog-details-box {
    position: relative;
    display: block;
    margin-right: 30px
}

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

.blog-details-img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #646464
}

.blog-details-img-box .inner img {
    width: 100%;
    mix-blend-mode: luminosity
}

.blog-details-img-box .share-btn {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12);
    padding: 13px 30px 13px;
    display: flex;
    align-items: center;
    z-index: 3
}

.blog-details-img-box .share-btn a {
    color: #7f7873;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--thm-font-2)
}

.blog-details-img-box .share-btn a span {
    position: relative;
    display: inline-block;
    padding-left: 9px;
    font-size: 18px;
    top: 2px
}

.blog-details-text-box {
    position: relative;
    display: block;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12);
    background-color: #fff;
    padding: 39px 40px 50px
}

.blog-details-text-box .blog-details-title {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 50px;
    padding: 0 0 31px;
    margin: 0 0 22px
}

.blog-details-text-box .blog-details-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background-image: -moz-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%)
}

.blog-details-quote-box {
    position: relative;
    display: flex;
    align-items: flex-start
}

.blog-details-quote-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #f7f1eb;
    border-radius: 50%;
    color: #1a1c23;
    font-size: 30px;
    margin-top: 8px
}

.blog-details-quote-box .text {
    position: relative;
    flex: 1;
    margin-left: 30px
}

.blog-details-quote-box .text h3 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 400;
    margin: 0 0 14px
}

.blog-details-quote-box .text h6 {
    color: #7f7873;
    font-size: 15px;
    text-transform: uppercase
}

.blog-details-text-1 {
    position: relative;
    display: block;
    padding-top: 30px;
    padding-bottom: 26px
}

.blog-details-text-2 {
    position: relative;
    display: block;
    padding-bottom: 26px
}

.blog-details-text-3 {
    position: relative;
    display: block;
    padding-bottom: 26px
}

.blog-details-text-4 {
    position: relative;
    display: block;
    padding-bottom: 34px
}

.blog-details-text-5 {
    position: relative;
    display: block
}

.blog-details-text-5 h3 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 23px
}

.blog-details-text-6 {
    position: relative;
    display: block;
    padding-top: 30px
}

.blog-details-text-6 .inner-title {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 10px
}

.blog-details-text-6 .inner-title .dot-box {
    position: relative;
    display: block;
    width: 10px;
    height: 15px;
    background-color: var(--thm-base);
    clip-path: polygon(50% 0, 50% 0, 100% 50%, 50% 100%, 50% 100%, 0 50%);
    margin-right: 10px
}

.blog-details-text-6 .inner-title h3 {
    font-size: 22px;
    line-height: 30px
}

.blog-details-text-6 ul {
    position: relative;
    display: block;
    padding-top: 26px
}

.blog-details-text-6 ul li {
    position: relative;
    display: block;
    padding-left: 25px;
    color: #1a1c23;
    font-weight: 500
}

.blog-details-text-6 ul li+li {
    margin-top: 11px
}

.blog-details-text-6 ul li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    bottom: 0;
    width: 10px;
    height: 15px;
    background-color: #a5a2a0;
    clip-path: polygon(50% 0, 50% 0, 100% 50%, 50% 100%, 50% 100%, 0 50%)
}

.tag-box {
    position: relative;
    display: block;
    padding-top: 43px;
    padding-bottom: 60px;
    border-bottom: 1px solid #f2ece7
}

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

.tag-box .tag-list li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 5px
}

.tag-box .tag-list li:last-child {
    margin-right: 0
}

.tag-box .tag-list li span {
    position: relative;
    display: block;
    padding: 0 15px 0;
    background: #f7f1eb;
    color: #7f7873;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--thm-font);
    transition: all .2s linear;
    transition-delay: .1s
}

.blog-details-page__prev-next-option {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 51px
}

.blog-details-page__prev-next-option .single-box {
    position: relative;
    display: block;
    width: 50%
}

.blog-details-page__prev-next-option .single-box.right {
    text-align: right
}

.blog-details-page__prev-next-option .single-box .icon-box {
    position: relative;
    display: block
}

.blog-details-page__prev-next-option .single-box .icon-box a {
    position: relative;
    display: inline-block;
    color: #7f7873;
    font-size: 18px;
    line-height: 30px;
    transition: all .2s linear;
    transition-delay: .1s;
    font-family: var(--thm-font-2)
}

.blog-details-page__prev-next-option .single-box:hover .icon-box a {
    color: var(--thm-base)
}

.blog-details-page__prev-next-option .single-box .icon-box a span:before {
    position: relative;
    display: inline-block;
    padding-right: 0;
    padding-left: 7px;
    top: 2px
}

.blog-details-page__prev-next-option .single-box.left .icon-box a span {
    position: relative;
    display: inline-block;
    transform: rotate(180deg)
}

.blog-details-page__prev-next-option .single-box.left .icon-box a span:before {
    top: -2px
}

.blog-details-page__prev-next-option .single-box .title-box {
    position: relative;
    display: block;
    padding-top: 5px
}

.blog-details-page__prev-next-option .single-box .title-box h3 {
    font-size: 18px;
    line-height: 26px
}

.blog-details-page__prev-next-option .single-box .title-box h3 a {
    color: var(--thm-black);
    transition: all .2s linear;
    transition-delay: .1s
}

.blog-details-page__prev-next-option .single-box .title-box h3 a:hover {
    color: var(--thm-base)
}

.author-box-holder {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 37px 40px 40px;
    background: #f7f1eb;
    margin-top: 53px
}

.author-box-holder .inner-box {
    position: relative;
    display: block;
    padding-left: 140px
}

.author-box-holder .inner-box .img-box {
    position: absolute;
    top: 3px;
    left: 0;
    width: 140px;
    height: 140px;
    background-color: #646464;
    border-radius: 50%
}

.author-box-holder .inner-box .img-box img {
    width: 100%;
    border-radius: 50%;
    mix-blend-mode: luminosity
}

.author-box-holder .inner-box .text {
    position: relative;
    display: block;
    padding-left: 40px
}

.author-box-holder .inner-box .text h6 {
    color: #7f7873;
    font-size: 15px;
    text-transform: uppercase
}

.author-box-holder .inner-box .text h3 {
    font-size: 22px;
    line-height: 28px;
    margin: 6px 0 11px
}

.author-box-holder .inner-box .text p {
    margin: 0
}

.author-box-holder .inner-box .text .footer-social-link-style1 {
    position: relative;
    display: block;
    margin-top: 23px
}

.comment-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 53px
}

.comment-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 29px
}

.comment-box .inner-title h2 {
    font-size: 30px;
    line-height: 36px
}

.comment-box .outer-box {
    position: relative;
    display: block
}

.comment-box .single-comment {
    position: relative;
    display: block;
    margin-bottom: 30px
}

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

.comment-box .single-comment-box {
    position: relative;
    display: block;
    padding-left: 70px;
    min-height: 100px
}

.comment-box .single-comment-box .img-holder {
    position: absolute;
    left: 0;
    top: 3px;
    width: 70px;
    height: 70px;
    background-color: #4a4a4a;
    border-radius: 50%
}

.comment-box .single-comment-box .img-holder img {
    width: 100%;
    border-radius: 50%;
    mix-blend-mode: luminosity
}

.comment-box .single-comment-box .text-holder {
    position: relative;
    display: block;
    padding-left: 30px;
    min-height: 100px
}

.comment-box .single-comment-box .text-holder .top {
    position: relative;
    display: block
}

.comment-box .single-comment-box .text-holder .top h3 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize
}

.comment-box .single-comment-box .text-holder .top h3 span {
    position: relative;
    display: inline-block;
    padding-left: 5px;
    color: #7f7873;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--thm-font)
}

.comment-box .single-comment-box .text-holder .text {
    position: relative;
    display: block;
    padding-top: 13px
}

.comment-box .single-comment-box .text-holder .text p {
    margin: 0
}

.comment-box .single-comment .reply {
    position: relative;
    display: block;
    padding-top: 12px
}

.comment-box .single-comment .reply a {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
    transition: all .2s linear;
    transition-delay: .1s
}

.comment-box .single-comment .reply a:hover {
    color: var(--thm-base)
}

.comment-box .single-comment .reply a span {
    position: relative;
    top: 2px;
    display: inline-block;
    padding-right: 5px;
    color: #acaaa8;
    font-size: 20px
}

.add-comment-box {
    position: relative;
    display: block;
    padding: 48px 50px 50px;
    background: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .05);
    margin-top: 30px
}

.add-comment-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 25px
}

.add-comment-box .inner-title h2 {
    font-size: 30px;
    line-height: 36px
}

.add-comment-box #add-comment-form {
    position: relative;
    display: block
}

.add-comment-box #add-comment-form .input-box {
    position: relative;
    display: block;
    margin-bottom: 23px
}

.add-comment-box #add-comment-form .input-box .field-label {
    position: relative;
    display: block;
    padding-bottom: 9px
}

.add-comment-box #add-comment-form .input-box .field-label p {
    margin: 0
}

.add-comment-box #add-comment-form input[type=email],
.add-comment-box #add-comment-form input[type=text],
.add-comment-box #add-comment-form textarea {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid #ede8e6;
    width: 100%;
    height: 60px;
    color: #777;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    padding: 0 30px;
    border-radius: 0;
    transition: all .5s ease;
    font-family: var(--thm-font)
}

.add-comment-box #add-comment-form textarea {
    height: 120px;
    padding: 14px 30px
}

.add-comment-box #add-comment-form input[type=text]:focus {
    border-color: var(--thm-base)
}

.add-comment-box #add-comment-form input[type=email]:focus {
    border-color: var(--thm-base)
}

.add-comment-box #add-comment-form textarea:focus {
    border-color: var(--thm-base)
}

.add-comment-box #add-comment-form .button-box {
    position: relative;
    display: block;
    padding-top: 20px;
    line-height: 0
}

.add-comment-box #add-comment-form .button-box button {
    padding-left: 50px;
    padding-right: 50px
}

.add-comment-box #add-comment-form .button-box button:after {
    background-color: #f7f1eb
}

.thm-sidebar-box {
    position: relative;
    display: block
}

.single-sidebar-box {
    position: relative;
    display: block;
    margin-bottom: 50px
}

.sidebar-title {
    position: relative;
    display: flex;
    align-items: center
}

.sidebar-title .dot-box {
    position: relative;
    display: block;
    width: 8px;
    height: 14px;
    border-left: 8px solid var(--thm-base);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    margin-right: 14px
}

.sidebar-title h3 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    text-transform: capitalize
}

.sidebar-search-box {
    position: relative;
    display: block;
    margin-top: 26px
}

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

.sidebar-search-box .search-form input[type=text] {
    position: relative;
    display: block;
    width: 100%;
    height: 52px;
    background-color: #f7f1eb;
    border: 1px solid #f7f1eb;
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 0;
    font-family: var(--thm-font);
    transition: all .5s ease 0s
}

.sidebar-search-box .search-form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 52px;
    color: var(--thm-black);
    font-size: 16px;
    background: rgba(var(--thm-black-rgb), .05);
    text-align: center;
    border: 0 solid #e7e7e8;
    transition: all .5s ease 0s
}

.sidebar-search-box .search-form button i {
    position: relative;
    top: 0
}

.sidebar-search-box .search-form input[type=text]:focus {
    color: var(--thm-black)
}

.sidebar-search-box .search-form button:hover,
.sidebar-search-box .search-form input[type=text]:focus+button {
    color: var(--thm-base)
}

.sidebar-search-box .search-form input::-webkit-input-placeholder {
    color: #7f7873
}

.sidebar-search-box .search-form input:-moz-placeholder {
    color: #7f7873
}

.sidebar-search-box .search-form input::-moz-placeholder {
    color: #7f7873
}

.sidebar-search-box .search-form input:-ms-input-placeholder {
    color: #7f7873
}

.sidebar-categories-box {
    position: relative;
    display: block;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12);
    border: 1px solid #e2deda;
    padding: 14px 30px 14px;
    margin-top: 26px
}

.sidebar-categories-box li {
    position: relative;
    display: block;
    border-bottom: 1px solid #f2ece7
}

.sidebar-categories-box li:last-child {
    border-bottom: none
}

.sidebar-categories-box li a {
    position: relative;
    display: block;
    padding-left: 30px;
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 42px;
    text-transform: capitalize;
    font-family: var(--thm-font);
    letter-spacing: 0;
    transition: all .3s linear;
    transition-delay: .1s;
    z-index: 1
}

.sidebar-categories-box li a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    margin: 17px 0;
    border: 2px solid #a5a2a0;
    border-radius: 50%;
    transition: all .6s ease .1s;
    z-index: -1
}

.sidebar-categories-box li a:hover:after {
    border-color: var(--thm-base);
    background-color: var(--thm-base)
}

.sidebar-categories-box li:hover a {
    color: var(--thm-base);
    padding-left: 25px
}

.sidebar-blog-post {
    position: relative;
    display: block;
    padding-top: 26px
}

.single-sidebar-blog-post-colum {
    position: relative;
    display: block
}

.single-sidebar-blog-post-colum ul {
    position: relative;
    display: block
}

.single-sidebar-blog-post-colum ul li {
    position: relative;
    display: block;
    margin-bottom: 23px
}

.single-sidebar-blog-post-colum ul li:last-child {
    margin-bottom: 0
}

.sidebar-blog-post-single {
    position: relative;
    display: block
}

.sidebar-blog-post-single .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #646464
}

.sidebar-blog-post-single .img-box img {
    mix-blend-mode: luminosity
}

.sidebar-blog-post-single .img-box .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--thm-base-rgb), .8);
    border-radius: 0;
    opacity: 0;
    transform: perspective(0) scale(0);
    transform-origin: bottom;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
    z-index: 2
}

.sidebar-blog-post-single:hover .img-box .overlay-content {
    opacity: 1;
    transform: perspective(400px) scale(1)
}

.sidebar-blog-post-single .img-box .overlay-content a {
    color: #fff;
    font-size: 16px;
    transition: all .2s linear;
    transition-delay: .1s
}

.sidebar-blog-post-single .img-box .overlay-content a:hover {
    color: var(--thm-black)
}

.sidebar-blog-post-single .title-box {
    position: relative;
    display: block;
    padding-top: 24px
}

.sidebar-blog-post-single .title-box .post-date {
    position: relative;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    font-family: var(--thm-font-2)
}

.sidebar-blog-post-single .title-box h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    margin: 11px 0 0
}

.sidebar-blog-post-single .title-box h4 a {
    color: var(--thm-black);
    transition: all .2s linear;
    transition-delay: .1s
}

.sidebar-blog-post-single .title-box h4 a:hover {
    color: var(--thm-base)
}

.sidebar-blog-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: -62px;
    right: -12px
}

.sidebar-blog-carousel.owl-nav-style-one.owl-theme .owl-nav [class*=owl-] {
    width: 40px;
    height: 50px;
    border: 0 solid #e1e6e4;
    margin-right: 0
}

.sidebar-blog-carousel.owl-nav-style-one.owl-theme .owl-nav [class*=owl-]:before {
    display: none
}

.sidebar-blog-carousel.owl-nav-style-one.owl-theme .owl-nav [class*=owl-] span {
    color: #a5a2a0
}

.sidebar-blog-carousel.owl-nav-style-one.owl-theme .owl-nav [class*=owl-]:hover span {
    color: var(--thm-base)
}

.popular-tag-box {
    position: relative;
    display: block;
    padding-top: 26px
}

.single-sidebar-box .popular-tag {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -2.5px;
    margin-right: -2.5px
}

.single-sidebar-box .popular-tag li {
    position: relative;
    display: block;
    float: left;
    margin: 0 2.5px 5px
}

.single-sidebar-box .popular-tag li a {
    position: relative;
    display: block;
    padding: 3px 14px 3px;
    background: #f7f1eb;
    color: #7f7873;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    border: 1px solid #f7f1eb;
    text-transform: capitalize;
    transition: all .5s ease;
    font-family: var(--thm-font)
}

.single-sidebar-box .popular-tag li:hover a {
    color: var(--thm-base);
    border-color: var(--thm-base);
    background-color: #fff
}

.sidebar-banner-box {
    position: relative;
    display: block;
    background-color: #1a1c23;
    padding: 40px 30px 40px;
    overflow: hidden;
    z-index: 1
}

.sidebar-banner-box .top-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 270px;
    background: #2b2d36;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    z-index: -1
}

.sidebar-banner-box .bottom-box {
    position: absolute;
    right: -30px;
    bottom: -50px;
    width: 180px;
    height: 270px;
    background-image: -moz-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
    z-index: -1
}

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

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

.sidebar-banner-box h3 {
    color: #fff;
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 15px
}

.sidebar-banner-box ul {
    position: relative;
    display: block
}

.sidebar-banner-box ul li {
    position: relative;
    display: block;
    color: #fff;
    font-size: 16px
}

.sidebar-banner-box ul li+li {
    margin-top: 11px
}

.sidebar-banner-box ul li span {
    position: relative;
    display: inline-block;
    padding-right: 10px;
    color: var(--thm-base)
}

.sidebar-banner-box .btns-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 33px
}

.sidebar-banner-box .btns-box a {
    width: 100%;
    line-height: 52px;
    text-align: center
}

.breadcrumb-area {
    position: relative;
    display: block;
    background-color: #f7f1eb;
    padding: 50px;
    padding-top: 0;
    z-index: 11
}

.breadcrumb-area-bg {
    position: absolute;
    top: 0;
    left: 50px;
    bottom: 50px;
    right: 50px;
    background: #646464;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-blend-mode: luminosity;
    z-index: -1
}

.breadcrumb-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    opacity: .15
}

.breadcrumb-area .inner-content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 360px 0 0;
    z-index: 10
}

.breadcrumb-area .title {
    position: absolute;
    left: 0;
    bottom: -50px;
    background: #fff;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, .12);
    padding: 22px 30px 22px
}

.breadcrumb-area .title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-image: -moz-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%)
}

.breadcrumb-area .title h2 {
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -.02em
}

.breadcrumb-menu {
    position: absolute;
    bottom: -37px;
    right: 0
}

.breadcrumb-menu ul {
    position: relative;
    display: flex;
    align-items: center
}

.breadcrumb-menu ul li {
    position: relative;
    display: block;
    float: left;
    color: #7f7873;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
    padding-right: 24px;
    margin-right: 13px;
    font-family: var(--thm-font)
}

.breadcrumb-menu ul li:last-child {
    padding-right: 0;
    margin-right: 0
}

.breadcrumb-menu ul li:before {
    font-family: icomoon !important;
    content: "\e909";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 12px
}

.breadcrumb-menu ul li:last-child:before {
    display: none
}

.breadcrumb-menu ul li a {
    color: #7f7873;
    transition: all .2s linear;
    transition-delay: .1s
}

.breadcrumb-menu ul li.active,
.breadcrumb-menu ul li:hover a {
    color: var(--thm-black)
}

.main-contact-form-area {
    position: relative;
    display: block;
    background: #fff;
    padding: 100px 0 140px;
    z-index: 10
}

.main-contact-form-area.pdb100 {
    padding-bottom: 100px
}

.contact-info-box-style1 {
    position: relative;
    display: block;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12);
    padding: 41px 50px 1px;
    margin-right: -30px
}

.contact-info-box-style1 .box1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 330px;
    height: 310px;
    background-color: var(--thm-base);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: -1
}

.contact-info-box-style1 .title {
    position: relative;
    display: block;
    margin-bottom: 43px
}

.contact-info-box-style1 .title h2 {
    font-size: 36px;
    line-height: 46px
}

.contact-info-box-style1 .title p {
    font-size: 18px;
    line-height: 28px;
    margin: 11px 0 0
}

.contact-info-1 {
    position: relative;
    display: block;
    border: 1px solid #f2ece7;
    padding: 50px 40px 43px;
    margin-right: -100px;
    background: #fff;
    z-index: 2
}

.contact-info-1 li {
    position: relative;
    display: block;
    padding-left: 90px
}

.contact-info-1 li+li {
    margin-top: 32px
}

.contact-info-1 li .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #f7f1eb;
    border: 1px solid #f7f1eb;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
    transition-delay: .1s
}

.contact-info-1 li:hover .icon {
    color: var(--thm-base);
    background-color: #fff
}

.contact-info-1 li .text {
    position: relative;
    display: block
}

.contact-info-1 li .text p {
    font-size: 16px;
    line-height: 16px;
    margin: 0 0 7px
}

.contact-info-1 li .text h3 {
    font-size: 22px;
    line-height: 30px
}

.contact-info-1 li .text h3 a {
    color: var(--thm-black);
    transition: all .2s linear;
    transition-delay: .1s
}

.contact-info-1 li .text h3 a:hover {
    color: var(--thm-base)
}

.contact-info-box-style1 .bottom-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 40px
}

.contact-info-box-style1 .bottom-box .btn-box {
    position: relative;
    display: block
}

.contact-info-box-style1 .bottom-box .btn-box a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2)
}

.contact-info-box-style1 .bottom-box .btn-box a i {
    position: relative;
    display: inline-block;
    padding-right: 5px;
    top: 1px
}

.contact-info-box-style1__single .social-link {
    position: relative;
    display: block
}

.contact-info-box-style1__single .social-link li {
    position: relative;
    display: inline-block;
    margin-right: 16px
}

.contact-info-box-style1__single .social-link li:last-child {
    margin-right: 0
}

.contact-info-box-style1__single .social-link li a {
    position: relative;
    display: block;
    color: var(--thm-gray);
    font-size: 15px;
    transition: all .2s linear;
    transition-delay: .1s
}

.contact-info-box-style1__single .social-link li a:hover {
    color: var(--thm-base)
}

.contact-form {
    position: relative;
    display: block;
    background: #f7f1eb;
    padding-top: 43px;
    padding-left: 100px;
    padding-bottom: 50px;
    padding-right: 50px
}

.contact-form form {
    position: relative;
    display: block
}

.contact-form form .form-group {
    position: relative;
    display: block;
    padding-bottom: 19px
}

.contact-form form .form-group label {
    position: relative;
    top: 0;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    font-family: var(--thm-font-2);
    margin: 0 0 12px
}

.contact-form form .input-box {
    position: relative;
    display: block
}

.contact-form form input[type=email],
.contact-form form input[type=text],
.contact-form form textarea {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid #e2deda;
    width: 100%;
    height: 52px;
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-left: 21px;
    padding-right: 20px;
    border-radius: 0;
    transition: all .5s ease;
    font-family: var(--thm-font)
}

.contact-form form input[type=email]:focus,
.contact-form form input[type=text]:focus,
.contact-form form textarea:focus {
    border: 1px solid var(--thm-base);
    outline: 0
}

.contact-form form textarea {
    height: 108px;
    padding-top: 12px;
    padding-left: 21px;
    padding-right: 20px;
    padding-bottom: 10px
}

.contact-form form input[type=text]::-webkit-input-placeholder {
    color: #7f7873
}

.contact-form form input[type=text]:-moz-placeholder {
    color: #7f7873
}

.contact-form form input[type=text]::-moz-placeholder {
    color: #7f7873
}

.contact-form form input[type=text]:-ms-input-placeholder {
    color: #7f7873
}

.contact-form form input[type=email]::-webkit-input-placeholder {
    color: #7f7873
}

.contact-form form input[type=email]:-moz-placeholder {
    color: #7f7873
}

.contact-form form input[type=email]::-moz-placeholder {
    color: #7f7873
}

.contact-form form input[type=email]:-ms-input-placeholder {
    color: #7f7873
}

.contact-form form textarea::-webkit-input-placeholder {
    color: #7f7873
}

.contact-form form textarea:-moz-placeholder {
    color: #7f7873
}

.contact-form form textarea::-moz-placeholder {
    color: #7f7873
}

.contact-form form textarea:-ms-input-placeholder {
    color: #7f7873
}

.contact-form form .button-box {
    position: relative;
    display: block;
    padding-top: 6px
}

.contact-form form .button-box button {
    color: #fff
}

.contact-form form .button-box button:after {
    background-color: var(--thm-base)
}

.contact-form form .button-box button:before {
    background-color: var(--thm-black)
}

.google-map {
    position: relative;
    display: block;
    background: #fff
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 680px;
    width: 100%;
    mix-blend-mode: luminosity
}

.google-map-content-box {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 100
}

.branch-atm-tab {
    position: relative;
    display: block
}

.branch-atm-tab__button {
    position: relative;
    display: flex;
    align-items: center;
    background: #1a1c23;
    padding: 20px 40px 20px;
    margin-bottom: 100px
}

.branch-atm-tab__button .tabs-button-box {
    position: relative;
    display: block;
    width: 200px
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    float: left;
    margin-right: 25px
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item:last-child {
    margin-right: 0
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item h5 {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    cursor: pointer
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item h5:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 2px solid #b8b4b1;
    border-radius: 50%;
    transition: all .2s linear;
    transition-delay: .1s
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item.active-btn-item h5:before,
.branch-atm-tab__button .tabs-button-box .tab-btn-item:hover h5:before {
    border-color: var(--thm-base)
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item h5:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 5px;
    width: 5px;
    height: 5px;
    background: var(--thm-base);
    border-radius: 50%;
    transform: scale(0);
    transition: all .2s linear;
    transition-delay: .1s
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item.active-btn-item h5:after,
.branch-atm-tab__button .tabs-button-box .tab-btn-item:hover h5:after {
    transform: scale(1)
}

.branch-atm-tab__button .location-search-box {
    position: relative;
    flex: 1
}

.location-search-box {
    position: relative;
    display: block
}

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

.location-search-box form.search-form .input-box {
    position: relative;
    display: block
}

.location-search-box .search-form input[type=text] {
    position: relative;
    display: block;
    width: 100%;
    height: 45px;
    background-color: #1a1c23;
    border: 1px solid #1a1c23;
    border-left: 1px solid #3c3d43;
    color: #b8b4b1;
    font-size: 16px;
    font-weight: 400;
    padding-left: 45px;
    padding-right: 130px;
    border-radius: 0;
    font-family: var(--thm-font);
    transition: all .5s ease 0s
}

.location-search-box form.search-form .input-box .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: #b8b4b1;
    font-size: 18px
}

.location-search-box .search-form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 120px;
    height: 45px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 45px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    background: #fff;
    text-align: center;
    border: 0 solid #e7e7e8;
    transition: all .5s ease 0s
}

.location-search-box .search-form input[type=text]:focus {
    color: #fff
}

.location-search-box .search-form button:hover,
.location-search-box .search-form input[type=text]:focus+button {
    color: var(--thm-base)
}

.location-search-box .search-form input::-webkit-input-placeholder {
    color: #b8b4b1
}

.location-search-box .search-form input:-moz-placeholder {
    color: #b8b4b1
}

.location-search-box .search-form input::-moz-placeholder {
    color: #b8b4b1
}

.location-search-box .search-form input:-ms-input-placeholder {
    color: #b8b4b1
}

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

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

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

.branch-atm-tab .tab-content-box-item .branch-atm-tab-content-box-item {
    opacity: 0;
    transform: scaleY(1) translateY(-10px);
    transition: all .5s linear;
    transition-delay: .1s
}

.branch-atm-tab .tab-content-box-item.tab-content-box-item-active .branch-atm-tab-content-box-item {
    opacity: 1;
    transform: scaleY(1) translateY(0)
}

.branch-atm-tab-content-box-item {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12);
    padding: 38px 40px 33px;
    z-index: 1
}

.branch-atm-tab-content-box-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-image: -moz-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    z-index: -1
}

.branch-atm-tab-content-box-item .inner-title {
    position: relative;
    display: block;
    padding-bottom: 22px;
    border-bottom: 1px solid #f2ece7
}

.branch-atm-tab-content-box-item .inner-title h3 {
    font-size: 22px;
    line-height: 30px
}

.branch-atm-tab-content-box-item ul {
    position: relative;
    display: block;
    padding-top: 26px
}

.branch-atm-tab-content-box-item ul li {
    position: relative;
    display: block;
    margin-bottom: 19px
}

.branch-atm-tab-content-box-item ul li:last-child {
    margin-bottom: 0
}

.branch-atm-tab-content-box-item ul li h3 {
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0 0 9px
}

.branch-atm-tab-content-box-item ul li p {
    color: #7f7873
}

.branch-atm-tab-content-box-item ul li p a {
    color: #7f7873;
    transition: all .2s linear;
    transition-delay: .1s
}

.branch-atm-tab-content-box-item ul li p a:hover {
    color: var(--thm-base)
}

:root {
    --thm-font: 'Manrope', sans-serif;
    --thm-font-2: 'DM Sans', sans-serif;
    --thm-base: #cf173c;
    --thm-base-rgb: 207, 23, 60;
    --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: 0 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
}

body.locked {
    overflow: hidden
}

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

a,
a:focus,
a:hover,
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: 0 0;
    padding: 0
}

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

li,
ol {
    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
}

input:focus,
select:focus,
textarea:focus {
    border-color: #43c3ea;
    outline: 0
}

#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-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: 0
}

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

.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 {
    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: 0;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .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: .8s;
    z-index: 1
}

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

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

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

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

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

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

.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: 0 solid #a5a5a5;
    margin: 0 10px;
    padding: 0;
    border-radius: 0;
    transition: all .1s linear;
    transition-delay: .1s
}

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

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

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

.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 #fff;
    margin: 0 5px;
    padding: 0;
    border-radius: 50%;
    transition: all .1s linear;
    transition-delay: .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 .5s 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)
}

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

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

.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;
    padding: 0;
    z-index: 1;
    transition: all .7s 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(0) scale(0);
    -ms-transform: perspective(400px) rotateX(0) scale(0);
    transform: perspective(400px) rotateX(0) 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;
    -webkit-transform: perspective(400px) rotateX(0) scale(1);
    -ms-transform: perspective(400px) rotateX(0) scale(1);
    transform: perspective(400px) rotateX(0) scale(1);
    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 .2s linear;
    transition-delay: .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: 0;
    transform: rotate(0)
}

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

.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 .4s ease;
    transition: all .4s ease;
    display: none;
    border-radius: 0;
    transition: all .4s ease;
    transform: rotate(-90deg);
    z-index: 99
}

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

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

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

.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: 0;
    background: #fff;
    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 .5s 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.active a,
.styled-pagination li:hover a {
    color: #fff;
    border-color: var(--thm-base);
    background: var(--thm-base)
}

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

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

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

.checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0;
    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: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.checked-box1 label span:before {
    font-family: icomoon !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "\e918";
    color: var(--thm-base);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    margin: 0;
    opacity: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s 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
}

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

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

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

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

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

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    transition: all .5s 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(0);
    transition: all .5s 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
}

.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, .3);
    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: .2s
}

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

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

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: .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
}

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

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

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #fff
}

@keyframes spinner {
    to {
        transform: rotateZ(360deg)
    }
}

@keyframes letters-loading {

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

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

@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: #fff;
    border: 1px solid #f2ece7;
    border-radius: 50%;
    color: #a5a2a0;
    font-size: 14px;
    text-align: center;
    transition: all .2s linear;
    transition-delay: .1s;
    z-index: 1
}

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

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

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

.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 .2s linear;
    transition-delay: .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 .2s linear;
    transition-delay: .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 .2s linear;
    transition-delay: .1s;
    background-image: -moz-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    border-radius: 50%;
    z-index: -1
}

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

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

.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: #000;
    z-index: -1
}

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

.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: #fff
}

.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, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    color: #fff;
    font-size: 35px;
    transition: all .2s linear;
    transition-delay: .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: #fff;
    border-radius: 50%;
    transform: scale(0);
    transform-style: preserve-3d;
    transition: all .4s cubic-bezier(.62, .21, .45, 1.52);
    z-index: -1
}

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

.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, .3);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 35px 40px 36px;
    cursor: pointer;
    transition: all .2s linear;
    transition-delay: .1s;
    z-index: 1
}

.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner,
.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner {
    border: 1px solid #fff;
    transition-delay: .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: #fff;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .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.active-btn-item .inner:before,
.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .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 .2s linear;
    transition-delay: .1s
}

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

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

.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner .left h3,
.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .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: #fff;
    color: var(--thm-black);
    font-size: 24px;
    transition: all .2s linear;
    transition-delay: .1s
}

.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner .right,
.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .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: 0;
    top: 0;
    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 .7s ease;
    opacity: 0;
    transform: scaleY(.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;
    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: #fff;
    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: #fff;
    transition: all .2s linear;
    transition-delay: .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, .2);
    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: 0;
    transition: all .9s ease .1s;
    background-image: -moz-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 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: #fff;
    font-size: 14px;
    transition: all .2s linear;
    transition-delay: .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, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    transform: perspective(400px) translateY(-40px) scale(1);
    transform-style: preserve-3d;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    transform-origin: right center;
    z-index: -1
}

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

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

.wealth-secure-area {
    position: relative;
    display: block;
    background-color: #fff;
    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: 0 20px 20px 0 rgba(0, 0, 0, .1);
    background-image: -moz-linear-gradient(180deg, #0fd4d8 0, #007f8e 100%);
    background-image: -webkit-linear-gradient(180deg, #0fd4d8 0, #007f8e 100%);
    background-image: -ms-linear-gradient(180deg, #0fd4d8 0, #007f8e 100%)
}

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

.single-wealth-secure-box.style2 .inner-title {
    background-image: -moz-linear-gradient(180deg, #139fce 0, #0e719d 100%);
    background-image: -webkit-linear-gradient(180deg, #139fce 0, #0e719d 100%);
    background-image: -ms-linear-gradient(180deg, #139fce 0, #0e719d 100%)
}

.single-wealth-secure-box.style3 .inner-title {
    background-image: -moz-linear-gradient(180deg, #337fc9 20%, #2057a6 100%);
    background-image: -webkit-linear-gradient(180deg, #337fc9 20%, #2057a6 100%);
    background-image: -ms-linear-gradient(180deg, #337fc9 20%, #2057a6 100%)
}

.single-wealth-secure-box.style4 .inner-title {
    background-image: -moz-linear-gradient(180deg, #525dbf 20%, #3d3187 100%);
    background-image: -webkit-linear-gradient(180deg, #525dbf 20%, #3d3187 100%);
    background-image: -ms-linear-gradient(180deg, #525dbf 20%, #3d3187 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: #fff
}

.single-wealth-secure-box .inner-title .arrow-top {
    position: absolute;
    top: 0;
    right: 60px;
    border-top: 50px solid #fff;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    opacity: .2;
    transition: all .2s linear;
    transition-delay: .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 #fff;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    opacity: .2;
    transition: all .2s linear;
    transition-delay: .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 .2s linear;
    transition-delay: .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: #fff;
    font-size: 20px;
    line-height: 20px
}

.single-wealth-secure-box .text-box {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 23px 30px 23px;
    box-shadow: 0 0 30px 0 rgba(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 .5s ease, visibility .5s ease
}

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

.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 .inner-title {
    background-color: #fff;
    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 .5s ease, visibility .5s ease
}

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

.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 .2s linear;
    transition-delay: .1s
}

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

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

.features-style2-tab__button .tabs-button-box .tab-btn-item.active-btn-item .single-features-box-style2 .icon span,
.features-style2-tab__button .tabs-button-box .tab-btn-item:hover .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);
    transform-style: preserve-3d;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .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
}

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

.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 .5s ease, visibility .5s 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: 0;
    top: 0;
    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 .7s ease;
    opacity: 0;
    transform: scaleY(.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;
    transform: scaleY(1);
    transform-origin: bottom top
}

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

.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 .2s linear;
    transition-delay: .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 .2s linear;
    transition-delay: .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: #fff;
    font-size: 40px;
    line-height: 40px
}

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

.features-style2-banner-box .text-box h3 {
    color: #fff;
    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, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 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 {
    position: relative;
    display: block;
    background: #fff;
    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, #f7f1eb 65%, #fff 100%);
    background-image: -webkit-linear-gradient(-90deg, #f7f1eb 65%, #fff 100%);
    background-image: -ms-linear-gradient(-90deg, #f7f1eb 65%, #fff 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: #fff;
    box-shadow: 0 0 30px 0 rgba(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: 0
}

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

.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: 0;
    background-image: -moz-linear-gradient(0deg, #067689 0, #0fb4c3 100%);
    background-image: -webkit-linear-gradient(0deg, #067689 0, #0fb4c3 100%);
    background-image: -ms-linear-gradient(0deg, #067689 0, #0fb4c3 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: #fff;
    box-shadow: 0 0 30px 0 rgba(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=email],
.apply-credit-card form input[type=text] {
    position: relative;
    display: block;
    background: 0 0;
    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: 0;
    transition: all .5s ease;
    font-family: var(--thm-font)
}

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

.money-exchange-value-area {
    position: relative;
    display: block;
    background-color: #fff;
    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: #000;
    opacity: .6
}

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

.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, .2);
    border-top: 1px solid transparent;
    cursor: pointer;
    transition: all .2s linear;
    transition-delay: .1s
}

.money-exchange-value-tab__button .tabs-button-box .tab-btn-item.active-btn-item,
.money-exchange-value-tab__button .tabs-button-box .tab-btn-item:hover {
    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 .2s linear;
    transition-delay: .1s
}

.money-exchange-value-tab__button .tabs-button-box .tab-btn-item.active-btn-item h3,
.money-exchange-value-tab__button .tabs-button-box .tab-btn-item:hover 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: #fff;
    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: 0;
    top: 0;
    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) translateY(-10px);
    transition: all .5s linear;
    transition-delay: .1s
}

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

.single-money-exchange-value {
    position: relative;
    display: block;
    border: 1px solid rgba(255, 255, 255, .2);
    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, .2);
    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: #fff;
    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, .1);
    line-height: 50px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    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 {
    position: relative;
    display: block;
    background-color: #fff;
    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: #fff;
    border: 0 solid #e5e5e5;
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 0;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12);
    font-family: var(--thm-font);
    transition: all .5s ease 0s
}

.faq-search-box .search-form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    display: block;
    text-align: center;
    border-radius: 0;
    border: 0 solid #e7e7e8;
    transition: all .5s 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: 0 0 30px 0 rgba(0, 0, 0, .12)
}

.faq-page-one {
    position: relative;
    display: block;
    background-color: #fff;
    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 {
    position: relative;
    display: block;
    background-color: #fff;
    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: #fff;
    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, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 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: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    box-shadow: 0 0 30px 0 rgba(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 .5s ease, visibility .5s ease
}

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

.emi-calculator-area {
    position: relative;
    display: block;
    background-color: #fff;
    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: #fff;
    border-radius: 50%;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .15);
    color: var(--thm-black);
    font-size: 40px;
    line-height: 80px;
    text-align: center;
    transition: all .2s linear;
    transition-delay: .1s;
    cursor: pointer;
    z-index: 10
}

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

.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 .4s cubic-bezier(.62, .21, .45, 1.52);
    background-image: -moz-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    z-index: -1
}

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

.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 .2s linear;
    transition-delay: .1s;
    z-index: -1
}

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

.emi-calculator-tab__button .tabs-button-box .tab-btn-item .icon-box .overlay-text p {
    position: relative;
    display: inline-block;
    background-color: #fff;
    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 .2s linear;
    transition-delay: .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 #fff;
    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, #f7f1eb 0, #fff 100%);
    background-image: -webkit-linear-gradient(-90deg, #f7f1eb 0, #fff 100%);
    background-image: -ms-linear-gradient(-90deg, #f7f1eb 0, #fff 100%)
}

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

.emi-calculator-tab .tab-content-box-item {
    position: absolute;
    left: 0;
    top: 0;
    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) translateY(-10px);
    transition: all .5s linear;
    transition-delay: .1s
}

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

.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: #fff;
    box-shadow: inset 0 3px 3px 0 rgba(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, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%)
}

.price-range-box .price-range-slider.ui-slider .ui-slider-handle {
    position: absolute;
    content: '';
    top: 0;
    width: 2px;
    height: 16px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    margin-left: 0;
    background-image: none;
    background-color: #cf173c;
    outline: 0
}

.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: 0 0;
    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: #fff;
    box-shadow: inset 0 3px 3px 0 rgba(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, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%)
}

.loan-term-range-box .loan-term-range-slider.ui-slider .ui-slider-handle {
    position: absolute;
    content: '';
    top: 0;
    width: 2px;
    height: 16px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    margin-left: 0;
    background-image: none;
    background-color: #cf173c
}

.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: 0 0;
    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: #fff;
    box-shadow: inset 0 3px 3px 0 rgba(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, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%)
}

.interest-rate-range-box .interest-rate-range-slider.ui-slider .ui-slider-handle {
    position: absolute;
    content: '';
    top: 0;
    width: 2px;
    height: 16px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    margin-left: 0;
    background-image: none;
    background-color: #cf173c
}

.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: 0 0;
    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: 0 0 30px 0 rgba(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 {
    position: relative;
    display: block;
    background-color: #fff;
    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, #25b85d 0, #028835 100%);
    background-image: -webkit-linear-gradient(180deg, #25b85d 0, #028835 100%);
    background-image: -ms-linear-gradient(180deg, #25b85d 0, #028835 100%)
}

.emi-calculator-tab--style2 .emi-calculator-tab-content-box-outer {
    background-image: -moz-linear-gradient(-90deg, #f5f8f7 0, #fff 100%);
    background-image: -webkit-linear-gradient(-90deg, #f5f8f7 0, #fff 100%);
    background-image: -ms-linear-gradient(-90deg, #f5f8f7 0, #fff 100%)
}

.emi-calculator-tab--style2 .price-range-box .price-range-slider .ui-slider-range {
    background-image: -moz-linear-gradient(180deg, #25b85d 0, #028835 100%);
    background-image: -webkit-linear-gradient(180deg, #25b85d 0, #028835 100%);
    background-image: -ms-linear-gradient(180deg, #25b85d 0, #028835 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, #25b85d 0, #028835 100%);
    background-image: -webkit-linear-gradient(180deg, #25b85d 0, #028835 100%);
    background-image: -ms-linear-gradient(180deg, #25b85d 0, #028835 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, #25b85d 0, #028835 100%);
    background-image: -webkit-linear-gradient(180deg, #25b85d 0, #028835 100%);
    background-image: -ms-linear-gradient(180deg, #25b85d 0, #028835 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 {
    position: relative;
    display: block;
    background-color: #1a1c23
}

.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: #1a1c23;
    background: linear-gradient(270deg, #1a1c23 0, #1a1c23 5%, rgba(26, 28, 35, .4990371148459384) 40%, #1a1c23 95%, #1a1c23 100%)
}

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

.slogan-content-box .inner-title h2 {
    color: #fff;
    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 .2s linear;
    transition-delay: .1s;
    box-shadow: 0 0 30px 0 rgba(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 .2s linear;
    transition-delay: .1s
}

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

.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 .2s linear;
    transition-delay: .1s
}

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

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

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

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

.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 {
    background: #067689
}

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

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

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

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

.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: #1a1c23;
    background: linear-gradient(90deg, #1a1c23 0, rgba(26, 28, 35, 0) 0, rgba(26, 28, 35, 0) 40%, rgba(26, 28, 35, .3701855742296919) 51%, rgba(26, 28, 35, .9472163865546218) 65%, #1a1c23 100%)
}

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

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

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

.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 0 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(.7);
    transform-origin: center
}

.single-features-of-banking:hover::after {
    opacity: 1;
    transform: perspective(400px) scaleX(1);
    transition: all .3s linear;
    transition-delay: .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: #fff
}

.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 .2s linear;
    transition-delay: .1s
}

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

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

.single-features-of-banking.more-services {
    background-color: transparent;
    border: none;
    padding: 34px 0 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: #fff;
    border-radius: 50%;
    color: #747579;
    font-size: 40px;
    transition: all .2s linear;
    transition-delay: .1s
}

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

.single-features-of-banking .more-service-box h3 {
    color: #fff;
    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: #1a1c23;
    background: linear-gradient(90deg, #1a1c23 0, #f5f8f7 0, #f5f8f7 30%, #f5f8f7 40%, #f5f8f7 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: .8
}

.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: 0;
    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: #fff;
    box-shadow: 0 0 30px 0 rgba(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 {
    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, #25b85d 0, #028835 70%);
    background-image: -webkit-linear-gradient(180deg, #25b85d 0, #028835 70%);
    background-image: -ms-linear-gradient(180deg, #25b85d 0, #028835 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: #028835;
    opacity: .7;
    clip-path: polygon(0 110px, 100% 0, 100% 100%, 0 100%);
    z-index: -2
}

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

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

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

.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: .9
}

.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(0) translateY(-100%);
    -ms-transform: perspective(400px) rotateX(0) translateY(-100%);
    transform: perspective(400px) rotateX(0) 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;
    -webkit-transform: perspective(400px) rotateX(0) translateY(0);
    -ms-transform: perspective(400px) rotateX(0) translateY(0);
    transform: perspective(400px) rotateX(0) 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: #fff;
    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(0) translateY(100%);
    -ms-transform: perspective(400px) rotateX(0) translateY(100%);
    transform: perspective(400px) rotateX(0) 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;
    -webkit-transform: perspective(400px) rotateX(0) translateY(0);
    -ms-transform: perspective(400px) rotateX(0) translateY(0);
    transform: perspective(400px) rotateX(0) 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: #fff;
    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 {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 100px 0 100px;
    z-index: 10
}

.locker-facility-highlights {
    position: relative;
    display: block;
    padding: 50px 0 50px;
    background-image: -moz-linear-gradient(0deg, #f5f8f7 80%, #fff 100%);
    background-image: -webkit-linear-gradient(0deg, #f5f8f7 80%, #fff 100%);
    background-image: -ms-linear-gradient(0deg, #f5f8f7 80%, #fff 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: #fff;
    box-shadow: 0 0 30px 0 rgba(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: #fff;
    box-shadow: 0 0 30px 0 rgba(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: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: -moz-linear-gradient(180deg, #25b85d 0, #028835 100%);
    background-image: -webkit-linear-gradient(180deg, #25b85d 0, #028835 100%);
    background-image: -ms-linear-gradient(180deg, #25b85d 0, #028835 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 {
    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: .75
}

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

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

.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, .3);
    border-radius: 50%;
    font-size: 60px;
    color: #fff;
    transition: all .2s linear;
    transition-delay: .1s;
    z-index: 1
}

.single-fact-box:hover .icon {
    color: var(--thm-base);
    border: 1px solid #fff
}

.single-fact-box .icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .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: #fff;
    font-size: 22px;
    line-height: 24px;
    margin: 0 0 8px
}

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

.features-style4-area {
    position: relative;
    display: block;
    background-color: #fff;
    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, #f5f8f7 65%, #fff 100%);
    background-image: -webkit-linear-gradient(-90deg, #f5f8f7 65%, #fff 100%);
    background-image: -ms-linear-gradient(-90deg, #f5f8f7 65%, #fff 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: 0 0 30px 0 rgba(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: #fff;
    color: #a8a8a8;
    font-size: 22px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all .3s linear;
    transition-delay: .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: #fff
}

.account-creation-step .single-step .counting::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(180deg, #25b85d 0, #028835 100%);
    background-image: -webkit-linear-gradient(180deg, #25b85d 0, #028835 100%);
    background-image: -ms-linear-gradient(180deg, #25b85d 0, #028835 100%);
    border-radius: 50%;
    transition: all .3s linear;
    transition-delay: .2s;
    transform: scale(.7);
    opacity: 0;
    z-index: -1;
    content: ""
}

.account-creation-step .single-step:hover .counting::before {
    transform: scale(1);
    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 {
    position: relative;
    display: block;
    background-color: #f5f8f7;
    padding-top: 100px;
    padding-bottom: 93px
}

.single-offer-box {
    position: relative;
    display: block;
    background: #fff;
    box-shadow: 0 0 30px 0 rgba(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, #25b85d 0, rgba(37, 184, 93, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, #25b85d 0, rgba(37, 184, 93, 0) 100%);
    background-image: -ms-linear-gradient(0deg, #25b85d 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: #fff;
    box-shadow: 0 0 30px 0 rgba(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: #fff;
    border: 1px solid #e6ebe9;
    color: #797c7f;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    border-radius: 0;
    transition: all .5s 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: grey
}

.subscribe-form-style1 input:-moz-placeholder {
    color: grey
}

.subscribe-form-style1 input::-moz-placeholder {
    color: grey
}

.subscribe-form-style1 input:-ms-input-placeholder {
    color: grey
}

.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 button:hover,
.subscribe-form-style1 input[type=email]:focus+button {
    color: #fff
}

.subscribe-box-style1--style2 {
    position: relative;
    display: block;
    background-color: #fff;
    box-shadow: none;
    padding: 0 0 0;
    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: #fff
}

.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 .2s linear;
    transition-delay: .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 {
    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: #fff;
    box-shadow: 0 0 30px 0 rgba(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: #fff;
    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 {
    position: relative;
    display: block;
    background-color: #fff;
    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: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12);
    padding: 17px 20px 18px;
    transition: all .2s linear;
    transition-delay: .1s
}

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

.single-account-box-style1 .text-holder h3 {
    position: relative;
    display: block;
    padding-left: 0;
    font-size: 22px;
    line-height: 32px;
    transition: all .2s linear;
    transition-delay: .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 .2s linear;
    transition-delay: .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 .2s linear;
    transition-delay: .1s
}

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

.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 .2s linear;
    transition-delay: .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 {
    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, #1a1c23 0, rgba(26, 28, 35, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, #1a1c23 0, rgba(26, 28, 35, 0) 100%);
    background-image: -ms-linear-gradient(90deg, #1a1c23 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: #fff;
    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: 0 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, .1);
    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, .1)
}

.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, #067689 0, #0fb4c3 100%);
    background-image: -webkit-linear-gradient(0deg, #067689 0, #0fb4c3 100%);
    background-image: -ms-linear-gradient(0deg, #067689 0, #0fb4c3 100%);
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .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.active-btn-item .inner:before,
.banking-tab__button .tabs-button-box .tab-btn-item:hover .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: 0;
    top: 0;
    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 .7s ease;
    opacity: 0;
    transform: scaleY(1);
    transform-origin: top bottom
}

.banking-tab .tab-content-box-item.tab-content-box-item-active .banking-tab-content-item {
    opacity: 1;
    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: #fff;
    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: #fff;
    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: #fff;
    font-size: 22px;
    line-height: 24px;
    margin: 10px 0 0
}

.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, #f7f1eb 5%, #0fb4c3 50%, #f7f1eb 95%);
    background-image: -webkit-linear-gradient(90deg, #f7f1eb 5%, #0fb4c3 50%, #f7f1eb 95%);
    background-image: -ms-linear-gradient(90deg, #f7f1eb 5%, #0fb4c3 50%, #f7f1eb 95%)
}

li.single-benefits-box-colum:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-image: -moz-linear-gradient(180deg, #f7f1eb 10%, #0fb4c3 50%, #f7f1eb 90%);
    background-image: -webkit-linear-gradient(180deg, #f7f1eb 10%, #0fb4c3 50%, #f7f1eb 90%);
    background-image: -ms-linear-gradient(180deg, #f7f1eb 10%, #0fb4c3 50%, #f7f1eb 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: #fff;
    box-shadow: 0 0 30px 0 rgba(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: 0;
    left: 1px;
    bottom: 0;
    right: 0;
    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 {
    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, #f7f1eb 5%, #cf173c 50%, #f7f1eb 95%);
    background-image: -webkit-linear-gradient(90deg, #f7f1eb 5%, #cf173c 50%, #f7f1eb 95%);
    background-image: -ms-linear-gradient(90deg, #f7f1eb 5%, #cf173c 50%, #f7f1eb 95%)
}

.benefits-style2-area li.single-benefits-box-colum:after {
    background-image: -moz-linear-gradient(180deg, #f7f1eb 10%, #cf173c 50%, #f7f1eb 90%);
    background-image: -webkit-linear-gradient(180deg, #f7f1eb 10%, #cf173c 50%, #f7f1eb 90%);
    background-image: -ms-linear-gradient(180deg, #f7f1eb 10%, #cf173c 50%, #f7f1eb 90%)
}

.service-request-style2-area {
    position: relative;
    display: block;
    background-color: #fff;
    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 .2s linear;
    transition-delay: .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);
    -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(0) translateX(-10px);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

.single-service-request-style2-box:hover .title h3 a {
    opacity: 1;
    transform: perspective(400px) rotateY(0) translateX(0)
}

.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: #fff
}

.service-request-style2__btns-box a.btn-one:after {
    background-color: var(--thm-black)
}

.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: #fff;
    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: #fff;
    box-shadow: 0 0 30px 0 rgba(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 {
    position: relative;
    display: block;
    background-color: #fff;
    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: #fff;
    margin: 0 auto;
    transition: all .2s linear;
    transition-delay: .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: 0 0;
    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, .9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .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 .2s linear;
    transition-delay: .1s
}

.intro-video-gallery-style1 .icon:hover .video-popup span::before {
    color: #fff
}

.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);
    transition: all .2s ease
}

.intro-style1-single-box:hover .img-box img {
    transform: scale(1.2) rotate(0)
}

.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 .2s linear;
    transition-delay: .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: #fff;
    box-shadow: 0 0 30px 0 rgba(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 {
    position: relative;
    display: block;
    background: #fff;
    padding: 0 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: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12);
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    color: var(--thm-black);
    font-size: 50px;
    transition: all .2s linear;
    transition-delay: .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 {
    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 0
}

.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: .4;
    z-index: 1
}

.single-statements-box .img-box img {
    width: 100%;
    mix-blend-mode: luminosity;
    transform: scale(1);
    transition: all .7s ease
}

.single-statements-box:hover .img-box img {
    transform: scale(1.05) rotate(0);
    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: #fff;
    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;
    -webkit-transform: perspective(400px) rotateX(0) translateX(0);
    -ms-transform: perspective(400px) rotateX(0) translateX(0);
    transform: perspective(400px) rotateX(0) 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, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 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: #fff;
    font-size: 48px;
    line-height: 58px
}

.statements-text-box .inner-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: #fff
}

.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: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all .2s linear;
    transition-delay: .1s
}

.statements-text-box .text .btn-box a span {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    font-size: 16px
}

.statistics-area {
    position: relative;
    display: block;
    background: #fff;
    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 {
    position: relative;
    display: block;
    background: #fff;
    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 .5s linear;
    transition-delay: .2s
}

.single-team-style1:hover .img-holder .inner img {
    transform: scale(1.1) rotate(0);
    transition: all .5s linear;
    transition-delay: .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: #fff;
    cursor: pointer;
    border-radius: 50%;
    transition: all .2s linear;
    transition-delay: .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 .2s linear;
    transition-delay: .1s
}

.single-team-style1 .img-holder .share-button:hover .icon span:before {
    color: #fff
}

.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 .3s linear;
    transition-delay: .1s
}

.single-team-style1 .img-holder .share-button:hover .social-links {
    transform: scaleX(1)
}

.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: #fff;
    color: #7f7873;
    font-size: 14px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    transition: all .2s linear;
    transition-delay: .1s
}

.single-team-style1 .img-holder .share-button .social-links li a:hover {
    color: #fff;
    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(.1);
    transform-origin: top;
    transition: all .2s linear;
    transition-delay: .1s;
    z-index: -1
}

.single-team-style1:hover .text-holder:before {
    transform: scaleY(1);
    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 .2s linear;
    transition-delay: .1s
}

.single-team-style1:hover .text-holder h3 a {
    color: #fff
}

.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 {
    position: relative;
    display: block;
    background: #fff;
    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 .2s linear;
    transition-delay: .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 .2s linear;
    transition-delay: .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 {
    position: relative;
    display: block;
    background-color: #fff;
    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;
    margin-bottom: 27px
}

.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 .2s linear;
    transition-delay: .1s
}

.job-title-box .right button:hover {
    color: #fff;
    background-color: var(--thm-base);
    border-color: var(--thm-base)
}

.job-title-box .right button.style2 {
    border-color: #fff;
    background-color: #fff
}

.job-title-box .right button.style2:hover {
    color: #fff;
    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: 15px 0 15px
}

.responsibilities-content h2 {
    font-size: 30px;
    line-height: 38px;
    margin: 24px 0 4px
}

.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: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 50px;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    transition: all .2s linear;
    transition-delay: .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: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500
}

.resume-box__one {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 28px 30px 23px;
    box-shadow: 0 0 30px 0 rgba(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, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 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: .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: #fff;
    font-size: 22px
}

.resume-box__two .text-box p {
    color: #fff;
    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: #fff
}

.resume-box__two .text-box ul li+li {
    margin-top: 2px
}

.resume-box__two .text-box ul li a {
    color: #fff;
    transition: all .2s linear;
    transition-delay: .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, .1);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    text-align: center;
    transition: all .2s linear;
    transition-delay: .1s;
    z-index: 1
}

.resume-social-link-box>ul>li>a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(.5);
    transform-style: preserve-3d;
    transition: all .4s cubic-bezier(.62, .21, .45, 1.52);
    z-index: -1
}

.resume-social-link-box>ul>li:hover>a:before {
    opacity: 1;
    transform: scale(1)
}

.resume-social-link-box>ul>li:hover>a {
    color: var(--thm-base);
    border-color: var(--thm-base)
}

.account-steps-style2-area {
    position: relative;
    display: block;
    background: #fff;
    padding: 100px 0 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: #fff;
    text-align: center;
    padding: 5px 0 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: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(180deg, #0fd4d8 0, #007f8e 100%);
    background-image: -webkit-linear-gradient(180deg, #0fd4d8 0, #007f8e 100%);
    background-image: -ms-linear-gradient(180deg, #0fd4d8 0, #007f8e 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: #fff;
    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: #fff;
    transition: all .2s linear;
    transition-delay: .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 #fff;
    padding-top: 18px
}

.single-account-steps-box-style2 .text p {
    color: #fff
}

.single-account-steps-box-style2.bg2::before {
    background-image: -moz-linear-gradient(180deg, #139fce 20%, #0e719d 100%);
    background-image: -webkit-linear-gradient(180deg, #139fce 20%, #0e719d 100%);
    background-image: -ms-linear-gradient(180deg, #139fce 20%, #0e719d 100%)
}

.single-account-steps-box-style2.bg2::after {
    border-color: #139fce
}

.single-account-steps-box-style2.bg3::before {
    background-image: -moz-linear-gradient(180deg, #337fc9 20%, #2057a6 100%);
    background-image: -webkit-linear-gradient(180deg, #337fc9 20%, #2057a6 100%);
    background-image: -ms-linear-gradient(180deg, #337fc9 20%, #2057a6 100%)
}

.single-account-steps-box-style2.bg3::after {
    border-color: #337fc9
}

.single-account-steps-box-style2.bg4::before {
    background-image: -moz-linear-gradient(180deg, #525dbf 20%, #3d3187 100%);
    background-image: -webkit-linear-gradient(180deg, #525dbf 20%, #3d3187 100%);
    background-image: -ms-linear-gradient(180deg, #525dbf 20%, #3d3187 100%)
}

.single-account-steps-box-style2.bg4::after {
    border-color: #525dbf
}

.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 {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 100px 0 100px;
    z-index: 1
}

.overview-content-box-one {
    position: relative;
    display: block;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(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 .2s linear;
    transition-delay: .1s
}

.single-overview-box:hover .icon {
    color: #fff;
    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-style2-area {
    position: relative;
    display: block;
    background: #fff;
    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: .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 {
    position: relative;
    display: block;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .08);
    z-index: 9999;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

.page-contains-area.section-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 3px 10px 0 rgba(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 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 .2s linear;
    transition-delay: .1s;
    padding-top: 7px;
    padding-bottom: 7px
}

.page-contains-btn li.current a,
.page-contains-btn li:hover 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 .2s linear;
    transition-delay: .1s
}

.page-contains-btn li.current a span,
.page-contains-btn li:hover 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 .2s linear;
    transition-delay: .1s
}

.page-contains-box .right-btn a:hover {
    color: #fff;
    border-color: var(--thm-base);
    background-color: var(--thm-base)
}

.eligibility-area {
    position: relative;
    display: block;
    background-color: #fff;
    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: #fff;
    box-shadow: 0 0 30px 0 rgba(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: #fff;
    border-radius: 50%;
    box-shadow: 0 0 30px 0 rgba(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 {
    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: #fff;
    box-shadow: 0 0 30px 0 rgba(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 {
    position: relative;
    display: block;
    padding: 100px 0 100px;
    background-image: -moz-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    z-index: 1
}

.interest-charges-area-shape1 {
    position: absolute;
    top: 0;
    left: 0
}

.interest-charges-area-shape1 img {
    opacity: .08;
    mix-blend-mode: luminosity
}

.interest-charges-area .sec-title h2 {
    color: #fff
}

.interest-charges-area .sec-title .sub-title p {
    color: #fff
}

.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: 0 30px;
    border: 1px solid rgba(255, 255, 255, .2);
    font-family: var(--thm-font-2)
}

.interest-charges-table-box .interest-charges-table tbody tr td.title {
    position: relative;
    padding: 0 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, .2);
    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, .2);
    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 {
    position: relative;
    display: block;
    background-color: #fff;
    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: 0;
    left: 150px;
    right: 150px;
    height: 1px;
    background: #f2ece7;
    z-index: -1
}

.applying-process-step-box-top:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 230px;
    height: 1px;
    margin: 0 auto;
    background: #fff;
    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: #fff;
    border-radius: 50%;
    color: var(--thm-gray);
    font-size: 22px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all .2s linear;
    transition-delay: .1s;
    z-index: 1
}

.applying-process-single-step-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .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: #fff
}

.single-applying-process-box {
    position: relative;
    display: block;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12);
    padding: 32px 30px 24px;
    text-align: center;
    margin-bottom: 40px;
    transition: all .2s linear;
    transition-delay: .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 .2s linear;
    transition-delay: .1s
}

.single-applying-process-box:hover::before {
    background-color: #fff
}

.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 {
    position: relative;
    display: block;
    background-color: #fff;
    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: 0;
    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=email],
#apply-form .form-group input[type=text] {
    position: relative;
    display: block;
    background: #fff;
    border: 0 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: 0;
    transition: all .5s 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: 0;
    border: solid 0 #f6f6f6;
    width: 100%;
    height: 50px;
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    outline: 0;
    padding-left: 20px;
    padding-right: 20px;
    transition: all .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: 0;
    right: 0;
    margin: 0;
    font-weight: 400;
    border: none !important;
    transform: rotate(0) !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: #fff;
    border-radius: 0;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0 0 0;
    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: #fff
}

#apply-form .button-box button:after {
    background-color: var(--thm-base)
}

.card-banner-area {
    position: relative;
    display: block;
    background: #fff;
    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 {
    position: relative;
    display: block;
    background: #fff;
    padding: 0 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: #fff;
    transform: rotate(45deg);
    z-index: 2
}

.card-types-box ul li a {
    position: relative;
    display: block;
    background: #fff;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    padding: 14px 40px 14px;
    padding-right: 20px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12);
    transition: all .2s linear;
    transition-delay: .1s;
    z-index: 1
}

.card-types-box ul li a:hover,
.card-types-box ul li.active a {
    color: #fff;
    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 .2s linear;
    transition-delay: .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: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .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: #fff;
    border: 1px solid #fff !important;
    border-bottom: 1px solid #f2ece7 !important;
    font-family: var(--thm-font);
    border-radius: 0;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 400;
    padding-left: 0;
    padding-right: 0
}

.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: 0;
    top: 16px;
    z-index: 10
}

.single-card-box {
    position: relative;
    display: flex;
    background-color: #fff;
    border: 1px solid #f2ece7;
    margin-bottom: 60px
}

.single-card-box .category-box {
    position: absolute;
    top: -15px;
    right: 20px;
    background-image: -moz-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -webkit-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    background-image: -ms-linear-gradient(0deg, #8a0f3d 0, #cf173c 100%);
    color: #fff;
    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 #9e122e;
    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: 0 0 30px 0 rgba(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: 0;
    width: 6px;
    height: 6px;
    background-color: #cf173c;
    border-radius: 2px
}

.cards-text-box .compare-box {
    position: relative;
    display: block;
    padding-top: 22px;
    border-top: 1px solid #f2ece7
}

.cards-details-area {
    position: relative;
    display: block;
    background: #fff;
    padding: 100px 0 100px;
    z-index: 1
}

.sidebar-box-style2 {
    position: relative;
    display: block;
    background-color: #f8f4ef;
    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 #fff;
    box-shadow: 0 0 30px 0 rgba(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
}

.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 .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, #cf173c 0, rgba(207, 23, 60, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, #cf173c 0, rgba(207, 23, 60, 0) 100%);
    background-image: -ms-linear-gradient(0deg, #cf173c 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: #fff
}

.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: 0 0 30px 0 rgba(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 {
    position: relative;
    display: block;
    background: #fff;
    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: #fff;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .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.active-btn-item::before,
.customer-care-numbers-tab__button .tabs-button-box .tab-btn-item:hover::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.active-btn-item h4,
.customer-care-numbers-tab__button .tabs-button-box .tab-btn-item:hover 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: 0;
    top: 0;
    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) translateY(5px);
    transition: all .5s linear;
    transition-delay: .1s
}

.customer-care-numbers-tab .tab-content-box-item.tab-content-box-item-active .customer-care-numbers-tab-content-box-item {
    opacity: 1;
    transform: scaleY(1) translateY(0)
}

.customer-care-numbers-table-box {
    position: relative;
    display: block;
    box-shadow: 0 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: #fff
}

.customer-care-numbers-table-box .customer-care-numbers-table:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #fff
}

.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: 0 0;
    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 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 {
    position: relative;
    display: block;
    padding: 92px 0 100px;
    background: #fff;
    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: 0;
    background: #fff;
    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 .5s 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: #fff;
    font-size: 16px;
    line-height: 10px;
    display: block;
    text-align: center;
    border: 0 solid #e1e1e1;
    transition: all .5s 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 button:hover,
.error-page-search-box .search-form input[type=text]:focus+button {
    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
}


.nk-result {
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #000
}

#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: Poppins, sans-serif;
    font-size: 14px;
    border-radius: 0;
    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: #000 !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 #333 !important;
    background: #333 !important;
    color: #fff !important
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all .5s ease;
    cursor: pointer
}

.ui-datepicker .ui-datepicker-next {
    right: 5px
}

.ui-datepicker .ui-datepicker-next:hover,
.ui-datepicker .ui-datepicker-prev:hover {
    top: 7px;
    background: #fff;
    border: none
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 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:active,
.ui-datepicker-calendar .ui-state-default:hover {
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea
}

.account {
    margin-top: 9px
}

@media only screen and (min-width:1200px) and (max-width:1849px) {
    .deals-carousel-one.owl-nav-style-one.owl-theme .owl-nav {
        display: none
    }

    .service-request-area {
        padding-top: 100px
    }

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

    .service-request-area__inner .col-xl-5.width100 {
        width: 100%
    }

    .service-request-area__inner .col-xl-7.width100 {
        width: 100%
    }
}

@media only screen and (min-width:1200px) and (max-width:1400px) {
    .individual-corporate-banking-area .row [class*=col-] {
        width: 100%
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .overview-content-box-one {
        margin-right: 0
    }

    .overview-content-box-two {
        padding-top: 50px
    }

    .statistics-style2-area-bg {
        width: 40%
    }

    .page-contains-btn li {
        padding-right: 15px;
        margin-right: 15px
    }

    .eligibility-img-box .sec-title {
        text-align: center
    }

    .eligibility-img-box__inner {
        margin-right: 0
    }

    .eligibility-content-box {
        padding-top: 50px
    }

    .facts-box-style2 {
        padding-top: 50px;
        padding-left: 0
    }

    .faq-style1__image {
        padding-bottom: 50px
    }

    .features-style1-content ul li {
        width: 100%
    }

    .single-features-style1-box {
        max-width: 370px;
        margin: 0 auto
    }

    .wealth-secure-carousel-2 {
        width: 100%
    }

    .wealth-secure-carousel-2 .owl-dots {
        width: 100%
    }

    .features-style3-img-box {
        max-width: 700px
    }

    .features-style3-img-box .inner-img img {
        transform: none !important
    }

    .features-style3-content {
        padding-top: 80px
    }

    .single-deals-box .text-box {
        width: 100%;
        float: none;
        padding: 97px 60px 100px;
        padding-right: 50px
    }

    .single-deals-box .img-box {
        display: none
    }

    .deals-carousel-one.owl-nav-style-one.owl-theme .owl-nav {
        right: 20px
    }

    .emi-calculator-tab__button {
        max-width: 100%;
        width: 100%;
        min-height: 610px;
        float: none
    }

    .emi-calculator-tab-content-box-outer {
        max-width: 100%;
        width: 100%;
        float: none;
        min-height: 610px;
        padding: 56px 100px 0;
        padding-right: 100px
    }

    .emi-calculator-tab__button .tabs-button-box {
        top: 60px;
        right: 20px
    }

    .footer-top-style2__left-content {
        padding-right: 0
    }

    .footer-top-style2__right-content {
        padding-top: 60px
    }

    .find-nearest-branch-box {
        max-width: 700px
    }

    .service-request-area {
        padding-top: 100px
    }

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

    .service-request-area__inner .col-xl-5.width100 {
        width: 100%
    }

    .service-request-area__inner .col-xl-7.width100 {
        width: 100%
    }

    .service-request-content-two__inner>ul.row>li {
        max-width: 570px;
        margin: 0 auto;
        border-right: 1px solid #363841
    }

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

    .features-style4-area:before {
        display: none
    }

    .features-style4-title-box {
        padding-bottom: 60px
    }

    .features-style4-title-box .sec-title h2 br {
        display: none
    }

    .app-screen {
        padding-bottom: 50px
    }

    .app-screen img {
        width: auto
    }

    .subscribe-box-style1 {
        margin-bottom: 30px
    }

    .awards-img-box {
        max-width: 400px;
        margin: 0 auto 30px
    }

    .single-account-box-style1 .text-holder h3 {
        font-size: 20px;
        line-height: 30px
    }

    .banking-tab-img-box {
        min-height: 500px;
        margin-right: 0
    }

    .banking-tab-text-box {
        max-width: 100%;
        padding-top: 70px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 160px
    }

    .banking-tab__button .tabs-button-box .tab-btn-item .inner .title h3 {
        font-size: 18px
    }

    li.single-benefits-box-colum {
        padding: 0 0 43px
    }

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

    li.single-benefits-box-colum:after {
        display: none
    }

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

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

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

    .service-request-style2-img-box {
        padding-right: 0
    }

    .service-request-style2-content-box {
        padding-top: 50px
    }

    .single-account-steps-colum {
        padding: 0 0;
        margin-bottom: 43px
    }

    .single-account-steps-colum:before {
        display: none
    }

    .features-style3-img-box--style2 {
        padding-top: 0;
        margin-right: 0;
        min-height: 545px;
        max-width: 100%
    }

    .blog-style2-area__shape1 {
        display: none
    }

    .blog-style2-area__shape2 {
        display: none
    }

    .single-account-steps-box-style2 {
        width: 270px;
        margin: 0 auto 40px
    }

    .card-banner-content-bg {
        width: 550px;
        background-position: left center;
        opacity: .2
    }

    .sidebar-box-style1 {
        padding-bottom: 50px
    }

    .single-sidebar-box-style1.margintop {
        margin-top: 0
    }

    .cards-deails-content-box {
        padding-top: 60px
    }

    .intro-style1-content-box {
        padding-top: 60px
    }

    .statements-area {
        padding: 100px 0 100px
    }

    .statistics-chart {
        position: relative;
        display: block;
        padding-top: 50px
    }

    .intro-style2-content-box {
        padding-top: 50px
    }

    .resume-box {
        margin-left: 0;
        padding-top: 60px
    }

    .faq-style1__content.margintop {
        margin-top: 70px
    }

    .single-blog-style1 .text-holder .blog-title {
        font-size: 20px;
        line-height: 28px
    }

    .single-blog-style1--style3 .text-holder .blog-title {
        font-size: 26px;
        line-height: 34px
    }

    .thm-sidebar-box {
        padding-top: 80px
    }

    .contact-info-box-style1 {
        margin-right: 0
    }

    .contact-info-1 {
        padding: 50px 40px 43px;
        margin-right: 0
    }

    .contact-form {
        padding-top: 43px;
        padding-left: 50px;
        padding-bottom: 50px;
        padding-right: 50px
    }

    .intro-style1-video-gallery {
        min-height: 600px;
        margin-right: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .single-footer-widget.marbtm50 {
        margin-bottom: 50px
    }

    .footer-bottom .bottom-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 25px 0 30px
    }

    .footer-bottom .bottom-inner .footer-social-link {
        padding-top: 18px
    }

    .overview-content-box-one {
        margin-right: 0
    }

    .overview-content-box-two {
        padding-top: 50px
    }

    .statistics-style2-area-bg {
        display: none
    }

    .progress-block .count-box {
        margin-left: 15px
    }

    .page-contains-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 32px 0 40px
    }

    .page-contains-btn li {
        display: flex;
        align-items: center;
        justify-content: center;
        float: none;
        padding-right: 0;
        margin-right: 0;
        border-right: none
    }

    .page-contains-box .right-btn {
        padding-top: 18px
    }

    .single-benefits-box .text h3 {
        font-size: 20px
    }

    .applying-process-area {
        padding: 100px 0 0
    }

    .applying-process-area .sec-title {
        padding-bottom: 155px
    }

    .applying-process-step-box-top {
        display: none
    }

    .single-applying-process-box {
        margin-bottom: 130px
    }

    .single-applying-process-box:nth-child(3) {
        margin-bottom: 0
    }

    .applying-process-single-step-box {
        top: -100px
    }

    .single-applying-process-box:hover {
        text-align: center
    }

    li.single-benefits-box-colum {
        padding: 0 30px 43px
    }

    .benefits-style2-area li.single-benefits-box-colum:before {
        display: none
    }

    .benefits-style2-area li.single-benefits-box-colum:after {
        display: none
    }

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

    .eligibility-img-box .sec-title {
        text-align: center
    }

    .eligibility-img-box__inner {
        margin-right: 0
    }

    .eligibility-content-box {
        padding-top: 50px
    }

    .facts-box-style2 {
        padding-top: 50px;
        padding-left: 0
    }

    .page-contains-area.section-fixed {
        position: relative;
        box-shadow: 0 0 30px 0 rgb(0 0 0 / 8%)
    }

    .faq-style1__image {
        padding-bottom: 50px
    }

    .faq-style1-title {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 60px
    }

    .faq-style1-title .sec-title {
        padding-bottom: 31px
    }

    .faq-search-box {
        padding-bottom: 0
    }

    .features-style1-content ul li {
        width: 100%
    }

    .single-features-style1-box {
        max-width: 370px;
        margin: 0 auto
    }

    .single-service-box-style1 {
        margin-bottom: 30px
    }

    .service-style1-tab__button .tabs-button-box .tab-btn-item .inner .left h3 {
        font-size: 28px;
        line-height: 28px
    }

    .service-style1__btns-box {
        padding-top: 30px
    }

    .wealth-secure-carousel-2 {
        width: 100%
    }

    .wealth-secure-carousel-2 .owl-dots {
        width: 100%
    }

    .features-style3-img-box {
        max-width: 570px
    }

    .features-style3-img-box .inner-img img {
        transform: none !important
    }

    .features-style3-content {
        padding-top: 80px
    }

    .money-exchange-value-tab__button .right {
        display: none
    }

    .single-deals-box .text-box {
        width: 100%;
        float: none;
        padding: 97px 60px 100px;
        padding-right: 50px
    }

    .single-deals-box .img-box {
        display: none
    }

    .deals-carousel-one.owl-nav-style-one.owl-theme .owl-nav {
        right: 20px
    }

    .emi-calculator-tab__button {
        max-width: 100%;
        width: 100%;
        min-height: 610px;
        float: none
    }

    .emi-calculator-tab-content-box-outer {
        max-width: 100%;
        width: 100%;
        float: none;
        min-height: 610px;
        padding: 56px 100px 0;
        padding-right: 100px
    }

    .emi-calculator-tab__button .tabs-button-box {
        top: 60px;
        right: 20px
    }

    .slogan-content-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 71px 0 80px
    }

    .slogan-content-box .inner-title {
        padding-bottom: 33px
    }

    .wealth-secure-style2-area .sec-title {
        text-align: center
    }

    .wealth-secure-carousel.owl-nav-style-one.owl-theme .owl-nav {
        display: none
    }

    .footer-top-style2__left-content {
        padding-right: 0
    }

    .footer-top-style2__right-content {
        padding-top: 60px
    }

    .find-nearest-branch-box {
        max-width: 500px
    }

    .service-request-area {
        padding-top: 100px
    }

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

    .service-request-area__inner .col-xl-5.width100 {
        width: 100%
    }

    .service-request-area__inner .col-xl-7.width100 {
        width: 100%
    }

    .service-request-content-two__inner>ul.row>li {
        max-width: 570px;
        margin: 0 auto;
        border-right: 1px solid #363841
    }

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

    .features-style4-area:before {
        display: none
    }

    .features-style4-title-box {
        padding-bottom: 60px
    }

    .app-screen {
        padding-bottom: 50px
    }

    .app-screen img {
        width: auto
    }

    .subscribe-box-style1 {
        margin-bottom: 30px
    }

    .awards-img-box {
        max-width: 400px;
        margin: 0 auto 30px
    }

    .banking-tab-img-box {
        min-height: 500px;
        margin-right: 0
    }

    .banking-tab-text-box {
        max-width: 100%;
        padding-top: 70px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 160px
    }

    .banking-tab__button .tabs-button-box {
        display: block;
        border: 0 solid;
        border-bottom: none
    }

    .banking-tab__button .tabs-button-box .tab-btn-item {
        width: 100%;
        width: 100%
    }

    li.single-benefits-box-colum {
        padding: 0 0 43px
    }

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

    li.single-benefits-box-colum:after {
        display: none
    }

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

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

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

    .service-request-style2-img-box {
        padding-right: 0
    }

    .service-request-style2-content-box {
        padding-top: 50px
    }

    .single-account-steps-colum {
        padding: 0 0;
        margin-bottom: 43px
    }

    .single-account-steps-colum:before {
        display: none
    }

    .features-style3-img-box--style2 {
        padding-top: 0;
        margin-right: 0;
        min-height: 545px;
        max-width: 100%
    }

    .blog-style2-area__top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 60px
    }

    .blog-style2-area__top .btns-box {
        padding-top: 25px;
        padding-bottom: 0
    }

    .blog-style2-area__shape1 {
        display: none
    }

    .blog-style2-area__shape2 {
        display: none
    }

    .single-account-steps-box-style2 {
        width: 270px;
        margin: 0 auto 40px
    }

    .card-banner-content-bg {
        width: 550px;
        background-position: left center;
        opacity: .1
    }

    .sidebar-box-style1 {
        padding-bottom: 50px
    }

    .single-sidebar-box-style1.margintop {
        margin-top: 0
    }

    .cards-content-box-top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 60px
    }

    .cards-content-box-top .left-box {
        top: 0
    }

    .single-card-box {
        display: block
    }

    .cards-img-box {
        max-width: 100%;
        width: 100%;
        border-right: 0 solid;
        padding: 35px 40px 30px
    }

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

    .cards-img-box .inner img {
        width: 100%
    }

    .cards-text-box {
        padding: 0 40px 30px
    }

    .cards-deails-content-box {
        padding-top: 60px
    }

    .cards-deails-content-2 .text-box {
        padding-top: 50px
    }

    .intro-style1-content-box {
        padding-top: 60px
    }

    .single-choose-style1-colum:before {
        display: none
    }

    .statements-area {
        padding: 100px 0 100px
    }

    .statistics-chart {
        position: relative;
        display: block;
        padding-top: 50px
    }

    .intro-style2-content-box {
        padding-top: 50px
    }

    .resume-box {
        margin-left: 0;
        padding-top: 60px
    }

    .faq-style1__content.margintop {
        margin-top: 70px
    }

    .thm-sidebar-box {
        padding-top: 80px
    }

    .single-blog-style1--style3 {
        display: block
    }

    .single-blog-style1--style3 .image-colum {
        max-width: 100%;
        width: 100%
    }

    .single-blog-style1--style3 .text-colum {
        border: 1px solid #f2ece7;
        border-top: none;
        padding-top: 31px;
        padding-left: 30px;
        padding-right: 30px
    }

    .blog-details-text-box .blog-details-title br {
        display: none
    }

    .contact-info-box-style1 {
        margin-right: 0
    }

    .contact-info-1 {
        padding: 50px 40px 43px;
        margin-right: 0
    }

    .contact-form {
        padding-top: 43px;
        padding-left: 50px;
        padding-bottom: 50px;
        padding-right: 50px
    }

    .intro-style1-video-gallery {
        min-height: 600px;
        margin-right: 0
    }
}

@media only screen and (max-width:767px) {
    .sec-title h2 br {
        display: none
    }

    .single-footer-widget.marbtm50 {
        margin-bottom: 50px
    }

    .footer-bottom .bottom-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 25px 0 30px
    }

    .footer-menu ul {
        text-align: center
    }

    .footer-menu ul li {
        float: none;
        margin-right: 0;
        margin: 0 10px
    }

    .footer-menu ul li:last-child {
        margin-right: 10px
    }

    .footer-bottom .bottom-inner .footer-social-link {
        padding-top: 18px
    }

    .breadcrumb-area {
        padding: 0;
        padding-top: 0;
        padding-bottom: 100px
    }

    .breadcrumb-area-bg {
        left: 15px;
        right: 15px;
        bottom: 100px
    }

    .breadcrumb-area .inner-content {
        padding: 250px 0 0
    }

    .breadcrumb-area .title {
        position: relative;
        left: 0;
        bottom: 0;
        right: 0;
        padding: 22px 30px 22px;
        text-align: center;
        margin: 0 auto
    }

    .breadcrumb-area .title h2 {
        font-size: 36px
    }

    .breadcrumb-menu {
        left: 0;
        bottom: -100px;
        right: 0;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .breadcrumb-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .breadcrumb-menu ul li {
        float: none;
        padding-right: 0;
        margin-right: 0
    }

    .breadcrumb-menu ul li:before {
        display: none
    }

    .overview-content-box-one {
        margin-right: 0
    }

    .overview-content-box-two {
        padding-top: 50px
    }

    .overview-content-box-one ul li {
        float: none;
        width: 100%;
        border-right: 0 solid
    }

    .overview-content-box-one ul li:nth-child(3) {
        border-bottom: 1px solid #f2ece7
    }

    .statistics-style2-area-bg {
        display: none
    }

    .page-contains-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 33px 0 40px
    }

    .page-contains-btn li {
        display: flex;
        align-items: center;
        justify-content: center;
        float: none;
        padding-right: 0;
        margin-right: 0;
        border-right: none
    }

    .page-contains-box .right-btn {
        padding-top: 17px
    }

    .applying-process-area {
        padding: 100px 0 0
    }

    .applying-process-area .sec-title {
        padding-bottom: 155px
    }

    .applying-process-step-box-top {
        display: none
    }

    .single-applying-process-box {
        margin-bottom: 130px
    }

    .single-applying-process-box:nth-child(3) {
        margin-bottom: 0
    }

    .applying-process-single-step-box {
        top: -100px
    }

    .single-applying-process-box:hover {
        text-align: center
    }

    .apply-form-box {
        padding: 20px
    }

    .apply-form-box__content {
        padding: 50px 20px 50px
    }

    .apply-form-box__content .sec-title h2 {
        font-size: 38px
    }

    li.single-benefits-box-colum {
        padding: 0 30px 43px
    }

    .benefits-style2-area li.single-benefits-box-colum:before {
        display: none
    }

    .benefits-style2-area li.single-benefits-box-colum:after {
        display: none
    }

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

    .eligibility-img-box .sec-title {
        text-align: center
    }

    .eligibility-img-box__inner {
        margin-right: 0
    }

    .eligibility-content-box {
        padding-top: 50px
    }

    .facts-box-style2 {
        padding-top: 50px;
        padding-left: 0
    }

    .facts-box-style2 .inner-title {
        margin-left: 20px
    }

    .facts-box-style2 .inner-title h3 br {
        display: none
    }

    .page-contains-area.section-fixed {
        position: relative;
        box-shadow: 0 0 30px 0 rgb(0 0 0 / 8%)
    }

    .faq-style1__image {
        padding-bottom: 50px
    }

    .faq-style1-title {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 60px
    }

    .faq-style1-title .sec-title {
        padding-bottom: 31px
    }

    .faq-search-box {
        padding-bottom: 0
    }

    .features-style1-content ul li {
        width: 100%;
        padding: 0 0
    }

    .single-features-style1-box {
        max-width: 370px;
        margin: 0 auto
    }

    .service-style1-title {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 60px
    }

    .service-style1-title .get-assistant-box {
        padding-top: 25px;
        padding-bottom: 0
    }

    .service-style1-tab__button .tabs-button-box {
        margin-left: 0;
        margin-right: 0
    }

    .service-style1-tab__button .tabs-button-box .tab-btn-item {
        width: 100%;
        padding: 0 0;
        float: none;
        margin-bottom: 20px
    }

    .service-style1-tab__button .tabs-button-box .tab-btn-item:last-child {
        margin-bottom: 0
    }

    .single-service-box-style1 {
        margin-bottom: 30px
    }

    .service-style1-tab__button .tabs-button-box .tab-btn-item .inner .left h3 {
        font-size: 28px;
        line-height: 28px
    }

    .service-style1__btns-box {
        padding-top: 30px
    }

    .wealth-secure-carousel-2 {
        width: 100%
    }

    .wealth-secure-carousel-2 .owl-dots {
        width: 100%
    }

    .features-style3-img-box {
        max-width: 570px
    }

    .features-style3-img-box:before {
        top: 0;
        left: 0;
        bottom: 0;
        right: 0
    }

    .features-style3-img-box .inner-img img {
        transform: none !important
    }

    .features-style3-content {
        padding-top: 80px
    }

    .money-exchange-value-tab__button .right {
        display: none
    }

    .money-exchange-value-tab__button .tabs-button-box .tab-btn-item {
        float: none
    }

    .money-exchange-value-tab__button .tabs-button-box .tab-btn-item {
        padding: 14px 20px 14px
    }

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

    .single-deals-box .text-box {
        width: 100%;
        float: none;
        padding: 97px 60px 100px;
        padding-right: 50px
    }

    .single-deals-box .img-box {
        display: none
    }

    .deals-carousel-one.owl-nav-style-one.owl-theme .owl-nav {
        right: 20px
    }

    .single-deals-box .text-box ul li {
        float: none;
        width: 100%;
        margin-bottom: 24px
    }

    .emi-calculator-tab__button {
        max-width: 100%;
        width: 100%;
        min-height: 610px;
        float: none
    }

    .emi-calculator-tab-content-box-outer {
        max-width: 100%;
        width: 100%;
        float: none;
        min-height: 610px;
        padding: 56px 30px 0;
        padding-right: 30px
    }

    .emi-calculator-tab__button .tabs-button-box {
        top: 60px;
        right: 20px
    }

    .emi-calculator-output-box .left-box {
        width: 100%;
        float: none
    }

    .emi-calculator-output-box .right-box {
        float: none;
        width: 100%;
        padding-left: 0;
        margin-top: 23px
    }

    .emi-calculator-output-box:before {
        display: none
    }

    .slogan-content-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 71px 0 80px
    }

    .slogan-content-box .inner-title {
        padding-bottom: 33px
    }

    .get-app-box ul {
        display: flex;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

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

    .get-app-box ul li+li {
        margin-top: 10px
    }

    .features-style2-banner-box {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0 0 0
    }

    .features-style2-banner-box .text-box {
        width: 100%;
        padding: 50px 0 50px
    }

    .features-style2-banner-box .img-box {
        width: 100%;
        height: 400px
    }

    .features-style2-banner-box .img-box:before {
        top: 0;
        left: 0;
        bottom: 0;
        right: 0
    }

    .features-style2-banner-box .img-box .img-box-bg {
        top: 0;
        left: 0;
        bottom: 0;
        right: 0
    }

    .individual-banking {
        padding: 93px 0 66px
    }

    .individual-banking__inner .sec-title {
        text-align: center
    }

    .individual-banking__inner {
        max-width: 100%;
        width: 100%;
        float: none;
        padding-left: 15px;
        padding-right: 15px
    }

    .individual-banking__inner-content ul {
        margin-left: 0;
        margin-right: 0
    }

    .individual-banking__inner-content ul li {
        float: none;
        width: 100%;
        padding: 0 0
    }

    .single-features-of-banking.more-services {
        padding: 8px 0 0
    }

    .single-features-of-banking .more-service-box {
        padding: 2px 0 0
    }

    .single-features-of-banking {
        width: 220px
    }

    .corporate-banking {
        padding: 93px 0 66px
    }

    .corporate-banking__inner {
        max-width: 100%;
        width: 100%;
        float: none;
        padding-left: 15px;
        padding-right: 15px
    }

    .corporate-banking__inner .sec-title {
        text-align: center
    }

    .corporate-banking__inner-content ul {
        margin-left: 0;
        margin-right: 0
    }

    .corporate-banking__inner-content ul li {
        float: none;
        width: 100%;
        padding: 0 0
    }

    .wealth-secure-style2-area .sec-title {
        text-align: center
    }

    .wealth-secure-carousel.owl-nav-style-one.owl-theme .owl-nav {
        display: none
    }

    .footer-top-style2__left-content {
        padding-right: 0
    }

    .footer-top-style2__right-content {
        padding-top: 50px
    }

    .find-nearest-branch-box {
        max-width: 500px
    }

    .footer-top-style2__left-content-inner>ul>li+li {
        padding-left: 0;
        margin-top: 36px
    }

    .footer-top-style2__left-content-inner>ul>li:before {
        display: none
    }

    .footer-bottom-style2 .bottom-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 22px 0 22px
    }

    .scrool-top-btn-style2 {
        padding-top: 12px
    }

    .find-nearest-branch-box .top .inner-title h3 {
        font-size: 18px;
        line-height: 26px
    }

    .service-request-area {
        padding-top: 100px
    }

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

    .service-request-area__inner .col-xl-5.width100 {
        width: 100%
    }

    .service-request-content-one__title {
        padding: 142px 20px 85px
    }

    .service-request-content-one__title .sec-title h2 {
        font-size: 32px
    }

    .single-service-request-content-box .overlay-content ul li {
        font-size: 15px
    }

    .service-request-area__inner .col-xl-7.width100 {
        width: 100%
    }

    .service-request-content-two__inner>ul.row>li {
        max-width: 570px;
        margin: 0 auto;
        border-right: 1px solid #363841
    }

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

    .locker-facility-highlights .img-box .icon {
        left: 20px
    }

    .features-style4-area:before {
        display: none
    }

    .features-style4-title-box {
        padding-bottom: 60px
    }

    .app-screen {
        padding-bottom: 50px
    }

    .app-screen img {
        width: auto
    }

    .subscribe-box-style1 {
        margin-bottom: 30px
    }

    .blog-style1-area .sec-title {
        text-align: center
    }

    .blog-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
        display: none
    }

    .awards-img-box {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .awards-img-box .round-box {
        top: 40px;
        width: 290px;
        height: 290px
    }

    .banking-tab-img-box {
        min-height: 500px;
        margin-right: 0
    }

    .banking-tab-text-box {
        max-width: 100%;
        padding-top: 70px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 50px
    }

    .banking-tab__button .tabs-button-box {
        display: block;
        border: 0 solid;
        border-bottom: none
    }

    .banking-tab__button .tabs-button-box .tab-btn-item {
        width: 100%;
        width: 100%
    }

    .banking-tab__button .tabs-button-box .tab-btn-item+.tab-btn-item {
        border-left: 0 solid
    }

    .banking-tab__button {
        margin: 0 auto 0
    }

    li.single-benefits-box-colum {
        padding: 0 0 43px
    }

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

    li.single-benefits-box-colum:after {
        display: none
    }

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

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

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

    .service-request-style2-img-box {
        padding-right: 0
    }

    .service-request-style2-content-box {
        padding-top: 50px
    }

    .service-request-style2-content-box__inner ul li {
        width: 100%;
        float: none;
        margin-bottom: 40px
    }

    .service-request-style2-content-box__inner ul li:nth-child(2) {
        border-left: 0 solid;
        padding-left: 0
    }

    .service-request-style2-content-box__inner ul li:nth-child(4) {
        border-left: 0 solid;
        padding-left: 0
    }

    .single-account-steps-colum {
        padding: 0 0;
        margin-bottom: 43px
    }

    .single-account-steps-colum:before {
        display: none
    }

    .features-style3-img-box--style2 {
        padding-top: 0;
        margin-right: 0;
        min-height: 545px;
        max-width: 100%
    }

    .single-testimonials-style1 {
        padding: 50px 30px 50px
    }

    .blog-style2-area__top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 60px
    }

    .blog-style2-area__top .btns-box {
        padding-top: 25px;
        padding-bottom: 0
    }

    .single-blog-style1 .text-holder .blog-title a br {
        display: none
    }

    .single-blog-style1--style2 .img-holder .category-date-box {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        left: 20%
    }

    .single-blog-style1--style2 .img-holder .category-date-box .author {
        margin-top: 6px
    }

    .single-blog-style1--style2 .img-holder .category-date-box .date {
        margin-top: 6px
    }

    .single-blog-style1--style2 .img-holder .inner .overlay-icon {
        display: none
    }

    .blog-style2-area__shape1 {
        display: none
    }

    .blog-style2-area__shape2 {
        display: none
    }

    .single-account-steps-box-style2 {
        width: 270px;
        margin: 0 auto 40px
    }

    .app-download-area {
        padding: 100px 0 100px;
        min-height: auto
    }

    .app-download-area-bg {
        display: none
    }

    .app-download-content {
        padding-top: 0
    }

    .card-banner-content-bg {
        width: 350px;
        background-position: left center;
        opacity: .1
    }

    .card-banner-content-img-box {
        display: none
    }

    .card-banner-content {
        padding: 53px 30px 60px
    }

    .card-banner-content .inner-title h2 {
        font-size: 26px;
        line-height: 36px
    }

    .card-banner-content .inner-title h2 br {
        display: none
    }

    .sidebar-box-style1 {
        padding-bottom: 50px
    }

    .single-sidebar-box-style1.margintop {
        margin-top: 0
    }

    .cards-content-box-top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 60px
    }

    .cards-content-box-top .left-box {
        top: 0;
        margin-bottom: 12px
    }

    .single-card-box {
        display: block
    }

    .cards-img-box {
        max-width: 100%;
        width: 100%;
        border-right: 0 solid;
        padding: 35px 20px 30px
    }

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

    .cards-img-box .inner img {
        width: 100%
    }

    .cards-text-box {
        padding: 0 20px 30px
    }

    .cards-img-box .btn-box {
        flex-direction: column
    }

    .sidebar-box-style2 {
        margin-right: 0;
        padding: 38px 20px 40px
    }

    .cards-deails-content-box {
        padding-top: 60px
    }

    .cards-deails-content-2 .text-box {
        padding-top: 50px
    }

    .intro-style1-content-box {
        padding-top: 50px
    }

    .intro-style1-content-box .text {
        padding-bottom: 3px
    }

    .intro-style1-single-box {
        margin-top: 40px
    }

    .single-choose-style1-colum {
        padding: 0 15px
    }

    .single-choose-style1-colum:before {
        display: none
    }

    .statements-area {
        padding: 100px 0 100px
    }

    .statements-content-box ul {
        margin-left: 0;
        margin-right: 0
    }

    .statements-content-box ul li {
        float: none;
        width: 100%;
        padding: 0 0 0
    }

    .statements-text-box .inner-title h2 {
        font-size: 38px;
        line-height: 48px
    }

    .statements-text-box .inner-title h2 br {
        display: none
    }

    .statements-text-box {
        padding: 40px 30px 45px
    }

    .statistics-chart {
        position: relative;
        display: block;
        padding-top: 50px
    }

    .intro-style2-content-box {
        padding-top: 50px
    }

    .career-details-area {
        padding: 100px 0 100px
    }

    .resume-box {
        margin-left: 0;
        padding-top: 60px
    }

    .job-title-box {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 37px 40px 40px
    }

    .job-title-box .right {
        padding-top: 18px
    }

    .job-social-share-box ul li {
        float: none;
        width: 100%
    }

    .requirements-content-box ul li span {
        width: 100px
    }

    .requirements-content-box ul li b {
        width: 20px
    }

    .faq-style1__content.margintop {
        margin-top: 70px
    }

    .thm-sidebar-box {
        padding-top: 80px
    }

    .single-blog-style1--style3 {
        display: block
    }

    .single-blog-style1--style3 .image-colum {
        max-width: 100%;
        width: 100%
    }

    .single-blog-style1--style3 .text-colum {
        border: 1px solid #f2ece7;
        border-top: none;
        padding-top: 31px;
        padding-left: 20px;
        padding-right: 20px
    }

    .single-blog-style1--style3 .img-holder .category-date-box {
        align-items: center;
        justify-content: center;
        flex-direction: column
    }

    .single-blog-style1--style3 .img-holder .category-date-box .date {
        margin-top: 7px
    }

    .single-blog-style1--style2.blog-large .img-holder .category-date-box .share-btn {
        display: none
    }

    .blog-details-text-box {
        padding: 39px 15px 50px
    }

    .blog-details-text-box .blog-details-title {
        font-size: 26px;
        line-height: 36px
    }

    .blog-details-text-box .blog-details-title br {
        display: none
    }

    .blog-details-page__prev-next-option {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 51px
    }

    .blog-details-page__prev-next-option .single-box {
        width: 100%
    }

    .blog-details-page__prev-next-option .single-box.right {
        text-align: center;
        margin-top: 14px
    }

    .author-box-holder {
        padding: 40px 30px 40px
    }

    .author-box-holder .inner-box {
        padding-left: 0
    }

    .author-box-holder .inner-box .img-box {
        position: relative;
        top: 0;
        left: 0
    }

    .author-box-holder .inner-box .text {
        padding-top: 27px;
        padding-left: 0
    }

    .comment-box .single-comment-box {
        padding-left: 0
    }

    .comment-box .single-comment-box .img-holder {
        position: relative;
        left: 0;
        top: 0
    }

    .comment-box .single-comment-box .text-holder {
        padding-top: 22px;
        padding-left: 0
    }

    .add-comment-box {
        padding: 48px 20px 50px
    }

    .blog-details-quote-box {
        display: block
    }

    .blog-details-quote-box .text {
        margin-left: 0;
        padding-top: 22px
    }

    .contact-info-box-style1 {
        margin-right: 0;
        padding: 41px 30px 1px
    }

    .contact-info-box-style1 .title h2 br {
        display: none
    }

    .contact-info-1 {
        padding: 50px 20px 43px;
        margin-right: 0
    }

    .contact-form {
        padding-top: 43px;
        padding-left: 30px;
        padding-bottom: 50px;
        padding-right: 30px
    }

    .contact-info-1 li {
        padding-left: 0
    }

    .contact-info-1 li .icon {
        position: relative;
        right: 0;
        margin: 0 auto
    }

    .contact-info-1 li .text {
        padding-top: 23px;
        text-align: center
    }

    .contact-info-box-style1 .bottom-box .btn-box {
        padding-bottom: 13px
    }

    .contact-info-box-style1 .bottom-box {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start
    }

    .branch-atm-tab__button {
        padding: 20px 15px 20px;
        margin-bottom: 100px;
        flex-direction: column
    }

    .branch-atm-tab__button .location-search-box {
        margin-top: 10px;
        width: 100%
    }

    .intro-style1-video-gallery {
        min-height: 600px;
        margin-right: 0
    }
}

@media only screen and (min-width:1500px) and (max-width:1770px) {
    .main-menu-style1 .main-menu__list>li+li {
        margin-left: 5px
    }

    .main-menu-style1-left .main-menu-box {
        padding-left: 50px
    }

    .header-btn-one a {
        padding-left: 15px;
        padding-right: 15px
    }

    .main-header-style1-bottom .outer-box .slogan-box {
        display: none
    }

    .logo-box-style2 {
        padding-right: 0;
        margin-right: 0;
        border-right: 0 solid
    }

    .looking-banking-box--style2 {
        display: none
    }

    .main-menu-style3-right .phone-number-box-style1 {
        display: none
    }
}

@media only screen and (min-width:1200px) and (max-width:1499px) {
    .main-menu-style1-left {
        padding-left: 250px;
        width: 100%
    }

    .main-menu-style1-left .main-menu-box {
        float: right;
        padding-left: 0
    }

    .main-menu-style1-right {
        display: none
    }

    .main-header-style1-bottom .outer-box .slogan-box {
        display: none
    }

    .main-menu-style1 .main-menu__list>li+li {
        margin-left: 5px
    }

    .logo-box-style2 {
        padding-right: 0;
        margin-right: 0;
        border-right: 0 solid
    }

    .looking-banking-box--style2 {
        display: none
    }

    .main-menu-style2-right .main-menu-box {
        padding-right: 0
    }

    .header-btn-one {
        display: none
    }

    .main-menu-style3-right .phone-number-box-style1 {
        display: none
    }

    .main-menu-style3-left .header-logon-box {
        display: none
    }

    .logo-box-style3 {
        padding-left: 0
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .main-menu .mobile-nav__toggler {
        display: inline-block;
        padding: 36px 0 35px
    }

    .main-header-style1-top {
        display: none
    }

    .main-header-style1-bottom {
        display: none
    }

    .main-menu-style1-right {
        display: none
    }

    .main-menu-style1-left {
        padding-left: 250px;
        width: 100%
    }

    .main-menu-style1-left .main-menu-box {
        float: none;
        padding-left: 0
    }

    .logo-box-style1 {
        top: 0;
        width: 250px;
        height: 100px
    }

    .main-header-style2__top .outer-box {
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .looking-banking-box--style2 {
        display: none
    }

    .logo-box-style2 {
        padding-right: 0;
        margin-right: 0;
        border-right: none
    }

    .main-header-style3__top {
        display: none
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .main-menu .mobile-nav__toggler {
        display: inline-block;
        padding: 36px 0 35px
    }

    .main-header-style1-top {
        display: none
    }

    .main-header-style1-bottom {
        display: none
    }

    .main-menu-style1-right {
        display: none
    }

    .main-menu-style1-left {
        padding-left: 250px;
        width: 100%
    }

    .main-menu-style1-left .main-menu-box {
        float: none;
        padding-left: 0
    }

    .logo-box-style1 {
        top: 0;
        width: 250px;
        height: 100px
    }

    .main-header-style2__top .outer-box {
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .looking-banking-box--style2 {
        display: none
    }

    .logo-box-style2 {
        padding-right: 0;
        margin-right: 0;
        border-right: none
    }

    .main-header-style3__top {
        display: none
    }

    .main-menu-style3-left .header-logon-box {
        display: none
    }

    .logo-box-style3 {
        padding-left: 0
    }

    .main-menu-style3-right {
        display: none
    }
}

@media (max-width:767px) {
    .main-menu .mobile-nav__toggler {
        display: inline-block;
        padding: 36px 0 35px
    }

    .main-header-style1-top {
        display: none
    }

    .main-header-style1-bottom {
        display: none
    }

    .main-menu-style1-right {
        display: none
    }

    .main-menu-style1-left {
        padding-left: 250px;
        width: 100%
    }

    .main-menu-style1-left .main-menu-box {
        float: none;
        padding-left: 0
    }

    .logo-box-style1 {
        top: 0;
        width: 250px;
        height: 100px
    }

    .main-menu-style1 .container {
        max-width: 100%;
        padding: 0 15px
    }

    .main-header-style2__top {
        display: none
    }

    .logo-box-style2 {
        padding-right: 0;
        margin-right: 0;
        border-right: 0 solid
    }

    .looking-banking-box--style2 {
        display: none
    }

    .header-btn-one {
        display: none
    }

    .header-logon-box {
        display: none
    }

    .main-menu-style2-right .main-menu-box {
        padding-right: 0
    }

    .main-header-style3__top {
        display: none
    }

    .main-menu-style3-left .header-logon-box {
        display: none
    }

    .logo-box-style3 {
        padding-left: 0
    }

    .main-menu-style3-right {
        display: none
    }
}

@media only screen and (min-width:1400px) and (max-width:1800px) {
    .main-slider-style2 .main-slider-content .big-title h2 {
        font-size: 65px;
        line-height: 1.1em
    }

    .main-slider-style2 .main-slider-content .big-title h2 br {
        display: none
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .main-slider-style2 .content-layer {
        padding: 136px 50px 146px;
        padding-left: 50px
    }

    .main-slider-style2 .main-slider-content .big-title h2 {
        font-size: 45px;
        line-height: 1.1em
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .main-slider-style1__shape1 {
        display: none
    }

    .main-slider-style2 .content-layer {
        width: 100%;
        float: none;
        padding: 90px 50px 96px;
        padding-left: 50px
    }

    .main-slider-style2 .main-slider-content .big-title h2 {
        font-size: 65px;
        line-height: 1.1em
    }

    .main-slider-style2 .image-layer {
        position: relative;
        width: 100%;
        min-height: 570px
    }

    .slide-single-features {
        top: 20%;
        left: 50px
    }

    .slide-single-features.two {
        left: 20px;
        bottom: 50%
    }

    .main-slider__nav--style2 {
        margin-left: auto
    }

    .main-slider-style3 .container {
        padding-top: 140px;
        padding-bottom: 150px
    }

    .main-slider-style3 .main-slider-content .big-title h2 {
        font-size: 70px;
        line-height: 1.1em
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .main-slider .image-layer:before {
        width: 100%
    }

    .main-slider .container {
        padding-top: 128px;
        padding-bottom: 210px
    }

    .main-slider-style1__shape1 {
        display: none
    }

    .main-slider .main-slider-content .big-title h2 {
        font-size: 40px
    }

    .main-slider-style2 .content-layer {
        width: 100%;
        float: none;
        padding: 90px 50px 96px;
        padding-left: 50px
    }

    .main-slider-style2 .main-slider-content .big-title h2 {
        font-size: 65px;
        line-height: 1.1em
    }

    .main-slider-style2 .image-layer {
        position: relative;
        width: 100%;
        min-height: 470px
    }

    .slide-single-features {
        top: 20%;
        left: 50px
    }

    .slide-single-features.two {
        left: 20px;
        bottom: 50%
    }

    .main-slider__nav--style2 {
        margin-left: auto
    }

    .main-slider-style3 .container {
        padding-top: 140px;
        padding-bottom: 150px
    }

    .main-slider-style3 .main-slider-content .big-title h2 {
        font-size: 50px;
        line-height: 1.1em
    }
}

@media only screen and (max-width:767px) {
    .main-slider__nav {
        display: none
    }

    .main-slider-style1 {
        padding: 0 15px
    }

    .main-slider .image-layer:before {
        width: 100%
    }

    .main-slider .container {
        padding-top: 128px;
        padding-bottom: 210px
    }

    .main-slider-style1__shape1 {
        display: none
    }

    .main-slider .main-slider-content .big-title h2 {
        font-size: 40px
    }

    .main-slider .main-slider-content .big-title h2 br {
        display: none
    }

    .main-slider .main-slider-content .text p br {
        display: none
    }

    .main-slider-style2 .content-layer {
        width: 100%;
        float: none;
        padding: 90px 20px 96px;
        padding-left: 20px
    }

    .main-slider-style2 .main-slider-content .big-title h2 {
        font-size: 45px;
        line-height: 1.1em
    }

    .main-slider-style2 .main-slider-content .big-title h2 br {
        display: none
    }

    .main-slider-style2 .image-layer {
        position: relative;
        width: 100%;
        min-height: 400px
    }

    .slide-single-features {
        top: 30%;
        left: 50px
    }

    .slide-single-features.two {
        left: 20px;
        bottom: 30%
    }

    .main-slider__nav--style2 {
        margin-left: auto
    }

    .main-slider-style3 .container {
        padding-top: 142px;
        padding-bottom: 150px
    }

    .main-slider-style3 .main-slider-content .big-title h2 {
        font-size: 40px;
        line-height: 1.1em
    }
}