/* 1. HEADER SECTION */
/*--------------------------------------------------------------
  # Mobile Nav
  --------------------------------------------------------------*/
  .mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.7;
    cursor: pointer;
}

.mobile-nav__content {
    position: relative;
    width: 300px;
    background-color: #d8d8d8;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    z-index: 10;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #01af96;
    font-size: 18px;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.mobile-nav__close:hover {
    background-color: var(--thm-black);
}

.mobile-nav__close i:before {
    position: relative;
    display: inline-block;
    transform: rotate(45deg);
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-nav__container {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: 20px;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 30px;
    color: #000000;
    font-size: 15px;
    font-family: var(--thm-font-2);
    font-weight: 500;
    height: 46px;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list > li > ul > li > a {
    font-size: 14px;
    font-weight: 400;
}

.mobile-nav__content .main-menu__list > li > a.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a.expanded {
    color: var(--thm-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: none;
    border: none;
    outline: none;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    padding: 0;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background-color: none;
    color: var(--thm-base);
}

.mobile-nav__content .home-showcase__title {
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 0px;
}

.mobile-nav__contact {
    position: relative;
    display: block;
    margin-top: 40px;
    margin-bottom: 30px;
}

.mobile-nav__contact li {
    position: relative;
    display: flex;
    align-items: center;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
}

.mobile-nav__contact li + li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #000000;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-black);
}

.mobile-nav__contact li > i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 0%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #000000;
    font-size: 12px;
    margin-right: 10px;
}

.mobile-nav__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__social a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #000000;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    transition: 500ms;
}

.mobile-nav__social a + a {
    margin-left: 10px;
}

.mobile-nav__social a:hover {
    color: var(--thm-base);
    background-color: #ffffff;
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
    display: none !important;
}

/*--------------------------------------------------------------
# Main Header Css
--------------------------------------------------------------*/
.main-header {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 99;
}

.main-menu {
    position: relative;
    display: block;
}

.main-menu__wrapper {
    position: relative;
    display: block;
}

.main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-box {
    display: block;
    float: right;
    margin-left: auto;
}

.main-menu .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: 15px;
    padding-bottom: 15px;
}

.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 500ms ease;
    transition: all 500ms ease;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
    color: var(--thm-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 200ms linear;
    transition-delay: 0.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: #ffffff;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.main-menu .main-menu__list > li:hover > a::after,
.main-menu .main-menu__list > li.current > a::after,
.stricky-header .main-menu__list > li:hover > a::after,
.stricky-header .main-menu__list > li.current > 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: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.3s;
    transition-property: all;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    z-index: 99;
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
    display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
    transition: all 300ms ease;
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
    position: relative;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
    border-top: 1px solid rgba(var(--thm-base-rgb, 53, 84, 209), 0.05);
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
    position: relative;
    display: flex;
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-gray);
    letter-spacing: 0;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    padding: 6px 0px;
    -webkit-transition: 500ms;
    transition: 500ms;
    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: 0px;
    bottom: 0px;
    right: 0;
    background-color: var(--thm-base);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -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: #ffffff;
    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%;
}

/*-------------------------------------
  # Mega Menu Css
  --------------------------------------*/
.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: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.mobile-nav__wrapper .megamenu-content-box__inner {
    padding: 15px 0px;
    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: 500ms ease;
    transition: 500ms ease;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.home-showcase__image:hover > img {
    opacity: 0.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: 500ms ease;
    transition: 500ms ease;
}

.home-showcase__buttons .home-showcase__buttons__item.top {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.4s ease-in-out 0.1s;
}

.home-showcase__image:hover .home-showcase__buttons .home-showcase__buttons__item.top {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.4s ease-in-out 0.2s;
}

.home-showcase__buttons__item {
    width: 150px;
    line-height: 50px !important;
    text-align: center;
}

.home-showcase__buttons__item:hover {
    color: #ffffff;
}

.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), 0.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: #ffffff;
}

.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: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px 0px rgba(0, 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), 0.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: 0.2s;
    z-index: 1;
}

.megamenu-box ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0;
    background-color: var(--thm-base);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -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: #ffffff;
}

.mobile-nav__wrapper .megamenu-box ul li {
    margin-bottom: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__wrapper .megamenu-box ul li a {
    position: relative;
    display: block;
    padding-left: 0;
    line-height: 46px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--thm-font-2);
    font-weight: 400;
    transition: all 500ms ease;
}

.mobile-nav__wrapper .megamenu-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0px;
}

.mobile-nav__wrapper .megamenu-box__inner {
    padding: 0px 0px;
    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 Css
  ---------------------------------------*/
.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 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: 500ms;
    transition: 500ms;
}

.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: #ffffff;
}

.stricky-header .main-menu-box {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.stricky-header .main-menu__wrapper {
    background-color: #ffffff;
}

.stricky-header .main-menu__wrapper-inner {
    background-color: #ffffff;
}

.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: 15px !important;
    padding-bottom: 15px !important;
}

.stricky-header .main-menu-style1-left {
    width: 100%;
}

.stricky-header .main-menu-style1-left .main-menu-box {
    float: none;
    padding-left: 0px;
}

.stricky-header .main-menu__list > li > a::after {
    background-color: #f7f1eb !important;
}

/*----------------------------------------
    Main Header Style1
  ---------------------------------------*/
.main-header-style1 {
    position: relative;
    display: block;
}

.main-header-style1-top {
    position: relative;
    display: block;
    background-color: #ffffff;
    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 0px #f6f6f6;
    width: 100%;
    height: 20px;
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    outline: none;
    padding-left: 0px;
    padding-right: 0px;
    transition: all 0.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: 0px;
    right: 0px;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
    height: 20px;
    width: 12px;
}

.looking-banking-box .nice-select .list {
    background-color: #ffffff;
    border-radius: 0px;
    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, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
}

.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: #ffffff;
    font-size: 18px;
    line-height: 50px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-btn-one a:hover {
    color: var(--thm-black);
    background-color: #ffffff;
}

.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: #ffffff;
}

.header-btn-one a.style2:hover {
    color: #ffffff;
    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: 0px;
    background-image: -moz-linear-gradient(180deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 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: #ffffff;
    font-size: 20px;
    line-height: 20px;
}

.update-box .inner-title h4 {
    color: #ffffff;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}

.update-box .text {
    position: relative;
    display: flex;
    align-items: center;
}

.update-box .text p {
    color: #ffffff;
    margin: 0;
}

.update-box .text a {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 500ms 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, 0.2);
}

.slogan-box p {
    color: #ffffff;
}

/*----------------------------------------
    Main Header Style2
  ---------------------------------------*/
.main-header-style2 {
    position: relative;
    display: block;
}

.main-header-style2__top {
    position: relative;
    display: block;
    padding: 5px 0;
    background-image: -moz-linear-gradient(-180deg, rgb(46, 157, 208) 0%, rgb(1, 175, 150) 100%);
    background-image: -webkit-linear-gradient(-180deg, rgb(46, 157, 208) 0%, rgb(1, 175, 150) 100%);
    background-image: -ms-linear-gradient(-180deg, rgb(46, 157, 208) 0%, rgb(1, 175, 150) 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: #ffffff;
    font-size: 20px;
    line-height: 26px;
}

.notification-box p {
    color: #ffffff;
}

.notification-box p a {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-left: 5px;
    color: #ffffff;
    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: #ffffff;
}

.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, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.main-header-style2__top-right .box-search-style1 a {
    color: #ffffff;
}

.main-header-style2__top-right .language-switcher #polyglotLanguageSwitcher a {
    color: #ffffff;
}

.main-header-style2__top-right .language-switcher #polyglotLanguageSwitcher span.trigger:before {
    color: #ffffff;
}

/** Main Menu Style2 Css **/
.main-menu-style2 {
    position: relative;
    display: block;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 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;
}

.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: 15px;
}

.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: 0px;
    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 0px #f6f6f6;
    width: 100%;
    height: 45px;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 45px;
    outline: none;
    padding-left: 0px;
    padding-right: 0px;
    transition: all 0.2s ease-in-out;
    font-family: var(--thm-font-2);
    padding: 0px 0;
}

.header-logon-box .nice-select:after {
    position: absolute;
    content: "\e901";
    font-family: "icomoon" !important;
    color: #7f7873;
    font-size: 12px;
    top: 0px;
    right: 0px;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
    height: 20px;
    width: 12px;
}

.header-logon-box .nice-select .list {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    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
  ---------------------------------------*/
.main-header-style3 {
    position: relative;
    display: block;
}

.main-header-style3__top {
    position: relative;
    display: block;
    padding: 10px 0;
    background: #ffffff;
    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 200ms linear;
    transition-delay: 0.1s;
}

.header-social-link-style1 ul li a:hover {
    color: var(--thm-base);
}

/** Main Menu Style3 Css **/
.main-menu-style3 {
    position: relative;
    display: block;
    background-color: #ffffff;
}

.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: 0px;
}

.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 200ms linear;
    transition-delay: 0.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: 0px;
}

.stricky-header--style3 .main-menu-style3-right {
    display: none;
}

.stricky-header.dark-home .main-menu__list > li > a {
    color: var(--thm-black);
}



/* 2. BANNER SECTION */
/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider-style1 {
    background-color: #f7f1eb;
    padding: 0 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: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.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 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.main-slider .image-layer:before {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
    width: 80%;
    content: "";
    z-index: -1;
    background: rgb(26, 28, 35);
    background: linear-gradient(270deg, rgba(26, 28, 35, 1) 0%, rgba(26, 28, 35, 0.9500175070028011) 12%, rgba(26, 28, 35, 0.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(0deg) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
    transform: perspective(400px) rotateY(0deg) translateX(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 1;
}

.main-slider .swiper-slide-active .main-slider-style1__shape1 {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider .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(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .big-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .main-slider-content .big-title h2 {
    color: #ffffff;
    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(0deg) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
    transform: perspective(400px) rotateY(0deg) translateX(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.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(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .btns-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider__nav {
    position: absolute;
    left: 270px;
    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, 0.4);
    border-radius: 0%;
    margin: 0;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: #ffffff;
    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(0deg);
}

/*--------------------------------------------------------------
# Main Slider Style2
--------------------------------------------------------------*/
.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: #ffffff;
}

.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: #ffffff;
    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(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .bottom-text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.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: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 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(0deg) translateX(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(-80px);
    transform: perspective(400px) rotateY(0deg) translateX(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.main-slider .swiper-slide-active .slide-single-features.one {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.slide-single-features.two {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
    transform: perspective(400px) rotateY(0deg) translateX(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.main-slider .swiper-slide-active .slide-single-features.two {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider__nav--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, 0.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
--------------------------------------------------------------*/
.main-slider-style3 {
    position: relative;
}

.main-slider-style3 .image-layer {
    background-color: #000000;
}

.main-slider-style3 .image-layer:before {
    display: none;
}

.main-slider-style3 .image-layer:after {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background: #000;
    opacity: 0.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;
}



/* 3. ABOUT SECTION */
/*** 
=============================================
    About Style1 Area Css   
=============================================
***/
.about-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    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: 0px;
    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 900ms linear;
    transition-delay: 0.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, 0.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: #ffffff;
    font-size: 60px;
    line-height: 44px;
    font-weight: 300;
}

.about-style1-img-box .experience-box .counting .plus {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 35px;
    line-height: 35px;
    top: 9px;
}

.about-style1-img-box .experience-box h4 {
    position: relative;
    color: #ffffff;
    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), 0.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 Css   
=============================================
***/
.about-style2-area {
    position: relative;
    display: block;
    background: #ffffff;
    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: #ffffff;
    opacity: 0.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), 0.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: #ffffff;
    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 Css   
=============================================
***/
.about-style3-area {
    position: relative;
    display: block;
    background: #ffffff;
    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;
}


/* 4. FACT COUNTER SECTION */
/*** 
=============================================
    Fact Counter Area style
=============================================
***/
.fact-counter-area {
    position: relative;
    display: block;
    background: #ffffff;
    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: 0px 5px 9.1px 0.9px rgba(15, 15, 15, 0.03);
    padding: 41px 50px 0;
    background-color: #ffffff;
}

.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 style
=============================================
***/
.fact-counter-style2-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 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: #ffffff;
    box-shadow: 0 10px 30px 0px rgb(0 0 0 / 10%);
}



/* 5. TESTIMONIAL SECTION */
/*** 
=============================================
   Testimonial Style1 Area Css
=============================================
***/
.testimonials-style1-area {
    position: relative;
    display: block;
    background: #f0f5f6;
    padding: 100px 0px 100px;
}

.single-testimonials-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #e0e6e7;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 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: #ffffff;
    border: 1px solid #e0e6e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0px 0px 30px 0px rgba(0, 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: 0px;
    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 500ms ease, visibility 500ms ease;
}

.testimonials-style1-carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

/*** 
=============================================
   Testimonial Style2 Area Css
=============================================
***/
.testimonial-style2-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    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: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 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);
}



/* 6. PARTNER SECTION */
/*** 
=============================================
    Partner Area Css
=============================================
***/
.partner-area {
    position: relative;
    display: block;
    background: #f5f8f7;
    padding: 93px 0 100px;
    /* border-top: 1px solid #ffffff; */
    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;
    z-index: 1;
}

.single-partner-logo-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 300ms linear;
    transition-delay: 0.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 0.2s ease-in-out 0.1s;
}

.single-partner-logo-box:hover a img {
    opacity: 1;
    transition: all 0.8s ease-in-out 0.1s;
}

/*** 
=============================================
    Partner Style2 Area Css
=============================================
***/
.partner-style2-area {
    position: relative;
    display: block;
    background: #ffffff;
    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), 0.05);
}

.partner-style2-area .single-partner-logo-box:before {
    background: var(--thm-black);
}



/* 7. FOOTER SECTION */
/*** 
=============================================
    Footer area style
=============================================
***/
.bottom-parallax {
    position: relative;
    height: 625px;
    opacity: 0;
    z-index: -999;
}

.bottom-parallax .footer-area {
    position: fixed;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: 625px;
}

.parallax-visible .bottom-parallax {
    opacity: 1;
    z-index: 1;
}

/*** 
=============================================
    Footer Area Css
=============================================
***/
.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 100ms linear;
    transition-delay: 0.1s;
}

.footer-widget-links ul li a:hover {
    color: #ffffff;
    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 300ms linear;
    transition-delay: 0.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: #ffffff;
    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: #ffffff;
    font-size: 22px;
    line-height: 20px;
    font-weight: 500;
    margin: 0 0 10px;
}

.footer-widget-contact-info ul li h3 a {
    color: #ffffff;
}

.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: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.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: #ffffff;
    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 0px 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 200ms linear;
    transition-delay: 0.1s;
}

.footer-menu ul li a:hover {
    color: #ffffff;
}

.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, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-social-link ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: #ffffff;
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.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 Style2 Area Css
=============================================
***/
.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: #ffffff;
    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 200ms linear;
    transition-delay: 0.1s;
}

.footer-contact-info-style ul li .text p a:hover {
    color: #ffffff;
}

.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: #ffffff;
    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: #ffffff;
    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: 0px;
    transition: all 500ms ease 0s;
}

.find-nearest-branch-box .form-box1 .zip-form button {
    position: absolute;
    top: 1px;
    right: 0px;
    width: 110px;
    height: 50px;
    color: #ffffff;
    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 0px 22px;
}

.scrool-top-btn-style2 {
    position: relative;
    display: block;
}

.scrool-top-btn-style2 a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.scrool-top-btn-style2 a:hover {
    color: var(--thm-base);
}

.scrool-top-btn-style2 a i {
    position: relative;
    top: 0px;
    display: inline-block;
    padding-right: 9px;
    color: var(--thm-base);
    font-size: 12px;
}

/*** 
=============================================
    Footer Area Style3 Css
=============================================
***/
.footer-area--style3 {
    position: relative;
}

.footer-area--style3 .footer-top {
    border-top: 0px 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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 25px;
}

.find-nearest-branch-box-style2 h3 {
    color: #ffffff;
    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: 0px;
    border: solid 1px #2f3139;
    width: 100%;
    height: 50px;
    color: #bcbcbc;
    font-size: 16px;
    font-weight: 400;
    line-height: 48px;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 0.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: 0px;
    right: 19px;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
    height: 20px;
    width: 12px;
}

.find-nearest-branch-box-style2 form .nice-select .list {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    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="text"],
.find-nearest-branch-box-style2 form input[type="email"] {
    position: relative;
    display: block;
    background: transparent;
    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: 0px;
    transition: all 500ms 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: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.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;
}



/* 8. BLOG SECTION */
/*** 
=============================================
Blog Style1 Area Css
=============================================
**/
.blog-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    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;
}

.single-blog-style1 .img-holder .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background-color: rgba(26, 28, 35, 0.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 0.95s;
    animation: circle 0.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 500ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1:hover .img-holder .inner:after {
    opacity: 0.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(0deg);
}

.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(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.single-blog-style1:hover .img-holder .inner .overlay-icon {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.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: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 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;
}

.single-blog-style1 .text-holder .blog-title a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.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 200ms linear;
    transition-delay: 0.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 500ms ease, visibility 500ms ease;
}

.blog-style1-carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

/*** 
=============================================
    Blog Style2 Area Css
=============================================
**/
.blog-style2-area {
    position: relative;
    display: block;
    background: #ffffff;
    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: #ffffff;
}

.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: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 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: 0px;
    border-bottom: 0px 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 200ms linear;
    transition-delay: 0.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 Css
=============================================
***/
.blog-page-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 100px;
    z-index: 1;
}

/*** 
=============================================
    Blog Page Two Css
=============================================
***/
.blog-page-two {
    position: relative;
    display: block;
    background: #ffffff;
    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 Css
=============================================
***/
.blog-page-three {
    position: relative;
    display: block;
    background: #ffffff;
    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: 0px 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 Css
=============================================
***/
.blog-details-area {
    position: relative;
    display: block;
    background: #ffffff;
    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: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 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: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    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, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
}

.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: rgb(247, 241, 235);
    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;
    margin-right: 5px;
}

.tag-box .tag-list li:last-child {
    margin-right: 0;
}

.tag-box .tag-list li span {
    position: relative;
    display: block;
    padding: 0px 15px 0px;
    background: #f7f1eb;
    color: #7f7873;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.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 200ms linear;
    transition-delay: 0.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: 0px;
    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 200ms linear;
    transition-delay: 0.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;
}

/*** 
=============================================
   comments Box Css
=============================================
***/
.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 200ms linear;
    transition-delay: 0.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 Css
=============================================
***/
.add-comment-box {
    position: relative;
    display: block;
    padding: 48px 50px 50px;
    background: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 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="text"],
.add-comment-box #add-comment-form input[type="email"],
.add-comment-box #add-comment-form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #ede8e6;
    width: 100%;
    height: 60px;
    color: #777777;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    padding: 0 30px;
    border-radius: 0px;
    transition: all 500ms 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: 0px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.sidebar-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 52px;
    color: var(--thm-black);
    font-size: 16px;
    background: rgba(var(--thm-black-rgb), 0.05);
    text-align: center;
    border: 0px solid #e7e7e8;
    transition: all 500ms ease 0s;
}

.sidebar-search-box .search-form button i {
    position: relative;
    top: 0px;
}

.sidebar-search-box .search-form input[type="text"]:focus {
    color: var(--thm-black);
}

.sidebar-search-box .search-form input[type="text"]:focus + button,
.sidebar-search-box .search-form button:hover {
    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: 0px 0px 30px 0px rgba(0, 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: 0em;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.sidebar-categories-box li a:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    width: 8px;
    height: 8px;
    margin: 17px 0;
    border: 2px solid #a5a2a0;
    border-radius: 50%;
    transition: all 600ms ease 100ms;
    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: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(var(--thm-base-rgb), 0.8);
    border-radius: 0%;
    opacity: 0;
    transform: perspective(0px) scale(0);
    transform-origin: bottom;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 500ms 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: #ffffff;
    font-size: 16px;
    transition: all 200ms linear;
    transition-delay: 0.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 200ms linear;
    transition-delay: 0.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: 0px 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 500ms 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: #ffffff;
}

.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, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    clip-path: polygon(0 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: #ffffff;
    font-size: 22px;
    line-height: 30px;
    margin: 34px 0 15px;
}

.sidebar-banner-box ul {
    position: relative;
    display: block;
}

.sidebar-banner-box ul li {
    position: relative;
    display: block;
    color: #ffffff;
    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;
}



/* 9. BREADCRUMB SECTION */
/*** 
=============================================
    Breadcrumb area style
=============================================
***/
.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: #000000;
    opacity: 0.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 0px;
    z-index: 10;
}

.breadcrumb-area .title {
    position: absolute;
    left: 0;
    bottom: -50px;
    background: #ffffff;
    box-shadow: 0px 0px 35px 0px rgba(0, 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, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
}

.breadcrumb-area .title h2 {
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -0.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: 0px;
    right: 0;
    bottom: 0px;
    font-size: 12px;
}

.breadcrumb-menu ul li:last-child:before {
    display: none;
}

.breadcrumb-menu ul li a {
    color: #7f7873;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.breadcrumb-menu ul li:hover a,
.breadcrumb-menu ul li.active {
    color: var(--thm-black);
}



/* 10. CONTACT SECTION */
/*** 
=============================================
    Main Contact Form Area Css
=============================================
***/
.main-contact-form-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0px 140px;
    z-index: 10;
}

.main-contact-form-area.pdb100 {
    padding-bottom: 100px;
}

.contact-info-box-style1 {
    position: relative;
    display: block;
    box-shadow: 0px 0px 30px 0px rgba(0, 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 200ms linear;
    transition-delay: 0.1s;
}

.contact-info-1 li:hover .icon {
    color: var(--thm-base);
    background-color: #ffffff;
}

.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 200ms linear;
    transition-delay: 0.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: #ffffff;
    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: 0px;
}

.contact-info-box-style1__single .social-link li a {
    position: relative;
    display: block;
    color: var(--thm-gray);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.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: 0px;
    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="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    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: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.contact-form form input[type="text"]:focus,
.contact-form form input[type="email"]:focus,
.contact-form form textarea:focus {
    border: 1px solid var(--thm-base);
    outline: none;
}

.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: #ffffff;
}

.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
--------------------------------------------------------------*/
.google-map {
    position: relative;
    display: block;
    background: #ffffff;
}

.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: #ffffff;
    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 200ms linear;
    transition-delay: 0.1s;
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item:hover h5:before,
.branch-atm-tab__button .tabs-button-box .tab-btn-item.active-btn-item 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 200ms linear;
    transition-delay: 0.1s;
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item:hover h5:after,
.branch-atm-tab__button .tabs-button-box .tab-btn-item.active-btn-item 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: 0px;
    font-family: var(--thm-font);
    transition: all 500ms 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: 0px;
    right: 0px;
    bottom: 0px;
    width: 120px;
    height: 45px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 45px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    background: #ffffff;
    text-align: center;
    border: 0px solid #e7e7e8;
    transition: all 500ms ease 0s;
}

.location-search-box .search-form input[type="text"]:focus {
    color: #ffffff;
}

.location-search-box .search-form input[type="text"]:focus + button,
.location-search-box .search-form button:hover {
    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: 0px;
    top: 0px;
    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 500ms linear;
    transition-delay: 0.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(0px);
}

.branch-atm-tab-content-box-item {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 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, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    z-index: -1;
}

.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 200ms linear;
    transition-delay: 0.1s;
}

.branch-atm-tab-content-box-item ul li p a:hover {
    color: var(--thm-base);
}

/*** 
=============================================
    End Css
=============================================
***/