
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: 'Jost', sans-serif;
    --thm-reey-font: 'reeyregular';
    --thm-gray: #6f6f6f;
    --thm-gray-rgb: 111, 111, 111;
    --thm-primary: #3EA0D9;
    --thm-primary-rgb: 62, 160, 217;
    --thm-black: #0d0d0d;
    --thm-black-rgb: 13, 13, 13;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-extra: #e8e8e8;
    --thm-extra-rgb: 232, 232, 232;
}

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

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

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

body.locked {
    overflow: hidden;
}

.error{
    color:red;
}

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

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::placeholder {
    color: inherit;
    opacity: 1;
}


.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--thm-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}


.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--thm-base);
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 60px 16px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--thm-primary);
}

.thm-btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    background-color: var(--thm-primary);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    z-index: -1;
}

.thm-btn:hover:after {
    width: 100%;
    opacity: 1;
}

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



.section-title {
    margin-top: -8px;
    margin-bottom: 48px;
}

.section-title__tagline {
    display: inline-flex;
    color: var(--thm-gray);
    font-size: 16px;
    align-items: center;
    line-height: 16px;
    margin-bottom: 3px;
}

.section-title__tagline::before {
    content: '';
    background-color: var(--thm-primary);
    width: 3px;
    height: 15px;
    margin-right: 10px;
}

.section-title__title {
    margin: 0;
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--thm-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--thm-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
    background: var(--thm-primary);
    color: #fff;
    cursor: pointer;
}


.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--thm-primary);
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
    line-height: 45px;
}

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

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

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    background: transparent;
    z-index: 999;
    transition: all 500ms ease;
}

.main-menu {
    position: relative;
    padding: 0 0;
    z-index: 91;
}

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

.main-menu-wrapper:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    height: 1px;
    background-color: rgba(var(--thm-base-rgb), .10);
}

.main-menu-wrapper:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    height: 5px;
    background-color: var(--thm-primary);
}

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

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

.main-menu-wrapper__logo {
    position: relative;
    float: left;
    margin-right: 70px;
}
.main-menu-wrapper__logo img{
    width: 226px;
    padding: 18px
;
}

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

.main-menu-wrapper__right {
    position: relative;
    display: flex;
    float: right;
    padding: 29.5px 0;
    align-items: center;
}

.main-menu-wrapper__call {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    margin-right: 32px;
}

.main-menu-wrapper__call-icon {
    height: 50px;
    width: 50px;
    background-color: transparent;
    font-size: 24px;
    color: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid var(--thm-primary);
    border-radius: 50%;
}

.main-menu-wrapper__call:hover .main-menu-wrapper__call-icon {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}



.main-menu-wrapper__call-number {
    margin-left: 20px;
}

.main-menu-wrapper__call-number a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.stricky-header .main-menu-wrapper__call-number a {
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-wrapper__call-number a:hover {
    color: var(--thm-primary);
}

.main-menu-wrapper__call-number p {
    font-size: 14px;
    margin: 0;
    line-height: 14px;
    font-weight: 400;
    opacity: 1;
    color: lightgray;
}
.stricky-header .main-menu-wrapper__call-number p {
    font-size: 14px;
    margin: 0;
    line-height: 14px;
    font-weight: 400;
    opacity: 1;
    color: rgb(88, 88, 88);
}

.main-menu-wrapper__search-box {
    position: relative;
    display: block;
    float: right;
}

.main-menu-wrapper__search-box:before {
    position: absolute;
    top: -14px;
    bottom: -11px;
    left: 0;
    content: "";
    width: 1px;
    background-color: rgba(var(--thm-base-rgb), .10);
}

.main-menu-wrapper__search {
    position: relative;
    font-size: 24px;
    color: var(--thm-base);
    width: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.main-menu-wrapper__search:hover {
    color: var(--thm-primary);
}

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

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

@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list ul {
        display: flex;
    }
}

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

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

.main-menu .main-menu__list>li>a {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: lightgrey;
    position: relative;
    transition: all 500ms ease;
}

.stricky-header .main-menu__list>li>a{
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    position: relative;
    transition: all 500ms ease;
}


.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
    content: '';
    height: 12px;
    width: 3px;
    border-radius: 0px;
    background-color: var(--thm-primary);
    position: absolute;
    top: 16px;
    bottom: 0;
    left: -12px;
    transition: transform 500ms ease;
    transform: scale(0) translateY(-50%);
    z-index: -1;
}

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

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
    transform: scale(1) translateY(-50%);
}

.main-menu .main-menu__list>li.current>a::before {
    background-color: var(--thm-primary);
}

.main-menu .main-menu__list>li:hover>a::before {
    background-color: var(--thm-primary);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 500ms ease;
    z-index: 99;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list li:hover>ul,
.stricky-header .main-menu__list li:hover>ul {
    opacity: 1;
    visibility: visible;
}

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

.main-menu .main-menu__list li ul li+li,
.stricky-header .main-menu__list li ul li+li {
    border-top: 1px solid RGBA(var(--thm-black), 0.1);
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-black);
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
}

.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
    background-color: var(--thm-primary);
    color: #fff;
}

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

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

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

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

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

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

.stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-black);
    cursor: pointer;
}

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

.mobile-nav__buttons a:hover {
    color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--thm-primary);
    cursor: pointer;
    transition: 500ms;
    margin-right: 20px;
}

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

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

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



/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;
    z-index: 999;
    visibility: hidden;
}

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

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--thm-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.mobile-nav__content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

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

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--thm-text-dark);
    cursor: pointer;
}

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

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-nav__content .main-menu__list li a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 46px;
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--thm-secondary);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-primary);
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

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

.mobile-nav__top .main-menu__login a {
    color: var(--thm-text-dark);
}

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

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--thm-primary);
    transition: 500ms;
}

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

.mobile-nav__social a:hover {
    color: #ffffff;
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--thm-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

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

.mobile-nav__contact li a {
    color: #ffffff;
    transition: 500ms;
}

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

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--thm-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}


/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.main-slider {
    overflow: hidden;
    position: relative;
}

.main-slider .swiper-slide {
    position: relative;
    background-color: var(--thm-black);
}

.main-slider .swiper-slide .container {
    position: relative;
    z-index: 30;
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
    transition: transform 7000ms ease;
    z-index: 1;
}

.main-slider .image-layer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(var(--thm-black-rgb), .7);
    z-index: 2;
}

.main-slider .container {
    padding-top: 216px;
    padding-bottom: 255px;
}

.main-slider__content {
    position: relative;
    display: block;
    text-align: center;
    min-height: 360px;
}

.main-slider h2 {
    margin: 0;
    margin-bottom: 20px;
    color: var(--thm-base);
    font-weight: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(120px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    font-size: 80px;
    line-height: 88px;
    z-index: 2;
}

.main-slider .main-slider__sub-title {
    position: relative;
    display: block;
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 400;
    margin: 0;
    margin-bottom: 34px;
    line-height: 30px;
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
    z-index: 2;
}

/* .main-slider .main-slider__sub-title:before {
    position: absolute;
    top: 7px;
    left: -13px;
    bottom: 8px;
    content: "";
    width: 3px;
    background-color: var(--thm-primary);
} */

.main-slider__btn {
    background-color: transparent;
    color: var(--thm-base);
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
    z-index: 2;
}

.main-slider .swiper-slide-active .main-slider__btn {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider .swiper-slide-active .main-slider__sub-title {
    visibility: visible;
    opacity: .7;
    transform: translateY(0) translateX(0);
}

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

.main-slider .swiper-slide-active h2 {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider__nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    left: 50px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}


.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 50px;
    height: 50px;
    font-size: 11px;
    color: var(--thm-black);
    background-color: var(--thm-base);
    opacity: 1;
    margin: 0;
    text-align: center;
    border-radius: 50%;
    font-weight: 900;
    transition: all 500ms ease;
}


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

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

.main-slider__nav .swiper-button-prev {
    margin-bottom: 0px;
}

.main-slider__nav .swiper-button-prev i {
    position: relative;
    display: inline-block;
    transform: rotate(180deg);
}

.main-slider__nav .swiper-button-prev .icon-right-arrow-angle,
.main-slider__nav .swiper-button-next .icon-right-arrow-angle {
    font-weight: bold;
}

#main-slider-pagination {
    z-index: 100;
    bottom: 59px;
    left: 50%;
    width: 100%;
    max-width: 1170px;
    -webkit-transform: translate(-50%, calc(-50% + 95px));
    transform: translate(-50%, calc(0% + 0px));
    text-align: center;
}

#main-slider-pagination .swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--thm-base);
    opacity: .20;
    margin: 0px 15.5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
    border: 2px solid transparent;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 2.5px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: transparent;
    border: 2px solid var(--thm-base);
}

.main-slider__date-time {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    z-index: 100;
}

.main-slider__date-time p {
    position: relative;
    display: block;
    font-size: 14px;
    color: var(--thm-base);
    transform: rotate(-90deg);
    margin: 0;
}

.main-slider__date-time p span {
    margin-left: 20px;
}

.main-slider__social {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    display: flex;
    z-index: 100;
    align-items: center;
    flex-direction: column;
}

.main-slider__social a {
    font-size: 15px;
    color: var(--thm-base);
    display: flex;
    align-items: center;
    transition: all 500ms ease
}

.main-slider__social a:hover {
    color: var(--thm-primary);
}

.main-slider__social a+a {
    margin-top: 25px;
}



/*--------------------------------------------------------------
# Welcome One
--------------------------------------------------------------*/
.welcome-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.welcome-one__outer-img {
    position: absolute;
    top: 0;
    right: 0;
}

.welcome-one__outer-img img {
    filter: grayscale(100%);
}

.welcome-one__outer-img-overly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--thm-primary-rgb), .90);
}

.welcome-one-shape-1 {
    position: absolute;
    top: 170px;
    left: 0;
    -webkit-animation-name: shapeMover;
    animation-name: shapeMover;
    -webkit-animation-duration: 9s;
    animation-duration: 9s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}



.welcome-one-shape-2 {
    position: absolute;
    bottom: 207px;
    left: 150px;
}

.welcome-one-shape-2 img {
    -webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}

.welcome-one__left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.welcome-one__left .section-title {
    margin-bottom: 39px;
}

.welcome-one__text-1 {
    color: var(--thm-black);
    margin: 0;
    padding-bottom: 34px;
}

.welcome-one__text-2 {
    margin: 0;
}

.welcome-one__points-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 51px;
}

.welcome-one__points li {
    display: flex;
    align-items: center;
}

.welcome-one__points li .icon {
    height: 16px;
    width: 16px;
    font-size: 9px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-one__points li .text {
    margin-left: 10px;
}

.welcome-one__points li .text p {
    color: var(--thm-black);
    margin: 0;
}

.welcome-one__right {
    position: relative;
    display: block;
}

.welcome-one__img-box {
    position: relative;
    display: block;
}

.welcome-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

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

.welcome-one__img:hover:before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.welcome-one__img img {
    width: 100%;
}

.welcome-one__completed {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--thm-base);
    padding: 35px 60px 30px;
}

.welcome-one__completed:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    width: 4px;
}

.welcome-one__completed h3 {
    font-size: 36px;
    color: var(--thm-black);
    font-weight: 400;
    font-family: var(--thm-font) !important;
    line-height: 36px !important;
}

.welcome-one__completed p {
    font-size: 16px;
    color: var(--thm-primary);
    font-weight: 400;
    margin: 0;
}


/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

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

.services-one__single {
    position: relative;
    max-width: 390px;
    width: 100%;
    float: left;
    border: 2px solid var(--thm-extra);
    padding: 60px 60px 47px;
    background-color: var(--thm-base);
    transition: all 500ms ease;
    min-height: 522px;
}

.services-one__single:hover {
    background-color: var(--thm-base);
    box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, .10);
    z-index: 2;
}

.services-one__single:nth-child(2) {
    border-left: 0;
}

.services-one__single:nth-child(3) {
    border-left: 0;
}

.services-one__single:nth-child(4) {
    border-top: 0;
}

.services-one__single:nth-child(5) {
    border-left: 0;
    border-top: 0;
}

.services-one__icon span {
    font-size: 65px;
    color: var(--thm-black);
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__icon span {
    color: var(--thm-primary);
}

.services-one__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
    margin-top: 30px;
    margin-bottom: 14px;
}

.services-one__title {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__title {
    color: var(--thm-primary);
}

.services-one__text {
    margin: 0;
    font-weight: 300;
}


/*--------------------------------------------------------------
# Discover World
--------------------------------------------------------------*/
.discover-world {
    position: relative;
    display: block;
}

.discover-world__container {
    position: relative;
    display: block;
    max-width: 1440px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.discover-world__inner {
    position: relative;
    display: block;
    padding: 110px 0 120px;
    z-index: 1;
}

.discover-world-shape-1 {
    position: absolute;
    top: -183px;
    right: 225px;
    -webkit-animation-name: squareMover;
    animation-name: squareMover;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-perspective: 100px;
    perspective: 100px;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.discover-world-shape-2 {
    position: absolute;
    right: -95px;
    top: -90px;
    -webkit-animation-name: shapeMover;
    animation-name: shapeMover;
    -webkit-animation-duration: 9s;
    animation-duration: 9s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    z-index: -1;
}

.discover-world-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.discover-world-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(6,31,66,.70);
    z-index: -1;
}

.discover-world__title {
    font-size: 60px;
    color: var(--thm-base);
    font-weight: 500;
    line-height: 73px;
    margin-bottom: 45px;
    text-align: center;
}

.discover-world__running {
    position: absolute;
    bottom: -190px;
    right: 120px;
    background-color: var(--thm-primary);
    padding: 50px 72px 44px 60px;
}

.discover-world__running span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--thm-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.discover-world__running:hover span {
    transform: rotateY(360deg);
}

.discover-world__running h3 {
    font-size: 30px;
    color: var(--thm-base);
    font-weight: 400;
    line-height: 32px;
    margin-top: 20px;
}

/*--------------------------------------------------------------
# We Shape
--------------------------------------------------------------*/
.we-shape {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    margin-top: -120px;
}

.we-shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.03;
}

.we-shape__top {
    position: relative;
    display: block;
    padding: 232px 0 100px;
    border-bottom: 1px solid rgba(var(--thm-base-rgb), .10);
    margin-bottom: 93px;
}

.we-shape__top-title {
    position: relative;
    display: block;
}

.we-shape__top-title h2 {
    font-size: 60px;
    color: var(--thm-base);
    font-weight: 500;
    line-height: 7px;
    margin-bottom: 46px;
}

.we-shape__top-title h3 {
    font-size: 30px;
    color: var(--thm-base);
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 46px;
}

.we-shape__top-btn {
    background-color: transparent;
    color: var(--thm-base);
}

.we-shape__bottom {
    position: relative;
    display: block;
    padding: 0 0 65px;
}

.we-shape__single {
    position: relative;
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.we-shape__icon {
    position: relative;
    display: block;
    top: 6px;
}

.we-shape__icon span {
    font-size: 65px;
    color: var(--thm-primary);
    position: relative;
    display: inline-block;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.we-shape__single:hover .we-shape__icon span {
    transform: scale(1.2);
    color: var(--thm-base);
}

.we-shape__content {
    margin-left: 30px;
}

.we-shape__content h4 {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 12px;
}

.we-shape__content p {
    font-size: 16px;
    color: var(--thm-base);
    opacity: .7;
    margin: 0;
    line-height: 30px;
}


/* faq start */

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 0;
    background-color: var(--thm-base);  
    border: 1px solid #e0e0e0;
}

.faq-one-accrodion .accrodion.active {
    border: 1px solid var(--thm-extra);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
}

.faq-one-accrodion .accrodion:before {
    position: absolute;
    bottom: -1px;
    left: -1px;
    right: -1px;
    height: 10px;
    content: "";
    background-color: var(--thm-primary);
    transform: scaleX(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.faq-one-accrodion .accrodion.active:before {
    transform: scaleX(1);
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 16px 40px 16px 26px;
    padding-right: 27px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border-bottom: 1px solid transparent;
}

.faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: var(--thm-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
    background-color: var(--thm-base);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--thm-black);
}

.faq-one-accrodion .accrodion-title h4::before {
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 17px;
    color: var(--thm-black);
    ;
    position: absolute;
    top: 50%;
    right: 0;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f107";
    color: var(--thm-primary);
    ;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 0px 40px 40px;
}

.faq-one-accrodion .accrodion.active .accrodion-content {
    background-color: var(--thm-base);
}

.faq-one-accrodion .accrodion-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}
/* faq end */


/*--------------------------------------------------------------
# Grow And Experience
--------------------------------------------------------------*/
.grow-and-experience-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.grow-and-experience-two__left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.grow-and-experience-two__left .section-title {
    margin-bottom: 28px;
}

.grow-and-experience-two__text {
    margin: 0;
    font-weight: 300;
    margin-bottom: 30px;
}

.grow-and-experience-two__list {
    position: relative;
    display: block;
    margin-bottom: 39px;
}

.grow-and-experience-two__list li {
    position: relative;
    display: flex;
    align-items: center;
}

.grow-and-experience-two__list li .icon {
    height: 16px;
    width: 16px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
}

.grow-and-experience-two__list li .text {
    margin-left: 10px;
}

.grow-and-experience-two__list li .text p {
    margin: 0;
    color: var(--thm-black);
}

.grow-and-experience-two__btn {
    border: 1px solid var(--thm-black);
    background-color: transparent;
}

.grow-and-experience-two__btn:after {
    background-color: var(--thm-black);
}

.grow-and-experience-two__right {
    position: relative;
    display: block;
    margin-left: -26px;
}

.grow-and-experience-two__images {
    position: relative;
    display: block;
    overflow: hidden;
}

.grow-and-experience-two__images li {
    position: relative;
    display: block;
    float: left;
}

.grow-and-experience-two__images li+li {
    margin-left: 12px;
}



/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.cta-one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f6f6f6;
    padding: 92px 0;
    padding-left: 100px;
}

.cta-one__inner:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10000000px;
    content: "";
    background-color: #f6f6f6;
    left: 0;
    z-index: -1;
}

.cta-one__inner:after {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    left: 0;
    width: 20px;
}

.cta-one__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
}

.cta-one__btn {
    border: 1px solid var(--thm-black);
    background-color: transparent;
}

.cta-one__btn:after {
    background-color: var(--thm-black);
}
.cta-one span{
    color: var(--thm-primary);
    font-weight: 600;
}


/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
}

.site-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: grayscale(100%);
    z-index: -1;
}

.site-footer-bg-overly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--thm-black-rgb), .9);
    z-index: -1;
}

.site-footer__top {
    position: relative;
    display: block;
    margin-bottom: 91px;
}

.site-footer__call-and-social {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.site-footer__call {
    margin-right: 40px;
}

.site-footer__call p {
    font-size: 24px;
    color: #9e9e9e;
    margin: 0;
    font-weight: 300;
}

.site-footer__call p a {
    color: var(--thm-base);
    font-weight: 400;
    transition: all 500ms ease;
}

.site-footer__call p a:hover {
    color: var(--thm-primary);
}

.site-footer__social {
    display: flex;
    align-items: center;
}

.site-footer__social a {
    position: relative;
    height: 40px;
    width: 40px;
    font-size: 14px;
    border: 1px solid #404040;
    color: #9e9e9e;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.site-footer__social a:hover {
    color: var(--thm-primary);
    border: 1px solid transparent;
}

.site-footer__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-base);
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.site-footer__social a:hover:before {
    transform: scaleX(1.0);
}

.site-footer__social a+a {
    margin-left: 10px;
}
.site-footer__top-logo img{
    width: 250px;
    padding: 30px;
}

.footer-widget__title {
    font-size: 22px;
    color: var(--thm-base);
    line-height: 32px;
    margin-bottom: 30px;
}

.footer-widget__contact-text {
    font-size: 16px;
    color: #9e9e9e;
    line-height: 26px;
    margin: 0;
}

.footer-widget__contact-phone-and-email {
    font-size: 16px;
    font-weight: 500;
    line-height: 34px;
}

.footer-widget__contact-email {
    color: var(--thm-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__contact-email:hover {
    color: var(--thm-primary);
}

.footer-widget__contact-phone {
    color: var(--thm-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__contact-phone:hover {
    color: var(--thm-primary);
}

.footer-widget__links {
    position: relative;
    display: block;
    margin-right: 38px;
}

.footer-widget__links-list {
    position: relative;
    display: block;
    float: left;
}

.footer-widget__links-list li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #9e9e9e;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
    color: var(--thm-base);
}

.footer-widget__links-list li a:before {
    position: absolute;
    top: 11px;
    bottom: 11px;
    left: -10px;
    content: "";
    width: 3px;
    background-color: var(--thm-primary);
    transition: transform 500ms ease;
    transform: scale(0);
}

.footer-widget__links-list li a:hover:before {
    transform: scale(1);
}

.footer-widget__links-list-two {
    float: right;
}

.footer-widget__newsletter-form {
    position: relative;
    display: block;
    margin-top: -17px;
}

.footer-widget__newsletter-input-box {
    position: relative;
    display: block;
}

.footer-widget__newsletter-input-box:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    content: "";
    height: 3px;
    background-color: rgba(var(--thm-base-rgb), .20);
    border-radius: 0;
}

.footer-widget__newsletter-input-box input[type="email"] {
    font-size: 16px;
    color: #9e9e9e;
    font-weight: 400;
    height: 70px;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding-right: 60px;
    outline: none;
}

.footer-widget__newsletter-btn {
    position: absolute;
    top: 50%;
    right: 0;
    height: 70px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: transparent;
    border: 0;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 500ms ease;
    padding: 0;
}

.footer-widget__newsletter-bottom {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.footer-widget__newsletter-bottom-icon {
    height: 18px;
    width: 18px;
    border: 1px solid rgba(var(--thm-base-rgb), .20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-widget__newsletter-bottom-icon i {
    font-size: 8px;
    color: #9e9e9e;
}

.footer-widget__newsletter-bottom-text {
    margin-left: 10px;
}

.footer-widget__newsletter-bottom-text p {
    font-size: 16px;
    margin: 0;
    color: #9e9e9e;
    font-weight: 400;
}

.site-footer__copy-right {
    position: relative;
    display: block;
    padding: 60px 0 52px;
}

.site-footer__copy-right-inner {
    position: relative;
    display: block;
}

.site-footer__copy-right-text {
    font-size: 16px;
    color: #9e9e9e;
    margin: 0;
}

.site-footer__copy-right-text a {
    color: #9e9e9e;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__copy-right-text a:hover {
    color: var(--thm-base);
}

.bro-btn{
    background-image: linear-gradient(to right top, #12d0f2, #00c4f9, #00b8fe, #00aaff, #1f9aff);
 border-radius: 1px;
 padding: 12px 38px;
 border: transparent;
 color: #fff;
 font-weight: 500;
 box-shadow: 0 6px 30px -10px #4a74c9;
}

.bro-btn-2{
  
 border-radius: 1px;
 border: 1px solid #12d0f2;
 padding: 12px 38px;
 color: #12d0f2;
 font-weight: 500;
}



/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 226px 0 127px;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: rgba(var(--thm-black-rgb), .70);
}

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

.page-header__inner h2 {
    font-size: 50px;
    color: var(--thm-base);
    line-height: 52px;
    font-weight: 400;
    margin-top: 9px;
}

.thm-breadcrumb {
    padding-top: 5px;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li+li {
    margin-left: 5px;
}

.thm-breadcrumb li a {
    color: var(--thm-base);
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover {
    color: var(--thm-primary);
}

.thm-breadcrumb li:hover a {
    color: var(--thm-primary);
}



/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.contact-page__left {
    position: relative;
    display: block;
}

.contact-page__left .section-title {
    margin-bottom: 28px;
}

.contact-page__text {
    font-weight: 300;
    margin: 0;
}

.contact-page__points {
    position: relative;
    display: block;
    padding-top: 35px;
    padding-bottom: 41px;
}

.contact-page__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-page__points li .icon {
    height: 16px;
    width: 16px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
}

.contact-page__points li .text {
    margin-left: 10px;
}

.contact-page__points li .text p {
    font-size: 16px;
    margin: 0;
}

.contact-page__social {
    display: flex;
    align-items: center;
}

.contact-page__social a {
    position: relative;
    height: 40px;
    width: 40px;
    font-size: 14px;
    border: 1px solid var(--thm-extra);
    color: var(--thm-black);
    background-color: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.contact-page__social a:hover {
    color: var(--thm-base);
    border: 1px solid transparent;
}

.contact-page__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.contact-page__social a:hover:before {
    transform: scaleX(1.0);
}

.contact-page__social a+a {
    margin-left: 10px;
}

/*--------------------------------------------------------------
# Information
--------------------------------------------------------------*/
.information {
    position: relative;
    display: block;
}

.information .row {
    --bs-gutter-x: 0px;
}

.information__single {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--thm-extra);
    padding-top: 77px;
    padding-bottom: 77px;
    min-height: 228px;
}

.information__icon {
    position: relative;
    font-size: 32px;
    color: var(--thm-primary);
    display: flex;
    align-items: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.information__single:hover .information__icon {
    transform: scale(1.2);
    color: var(--thm-black);
}

.information__text {
    margin-left: 30px;
}

.information__text p {
    font-size: 20px;
    font-weight: 300;
    margin: 0;
    line-height: 35px;
}

.information__text h4 {
    font-size: 20px;
    font-weight: 300;
    color: var(--thm-gray);
    line-height: 35px;
}

.information__number-1 {
    transition: all 500ms ease;
}

.information__single:hover .information__number-1 {
    color: var(--thm-primary);
}

.information__number-2 {
    transition: all 500ms ease;
}

.information__single:hover .information__number-2 {
    color: var(--thm-primary);
}

.information__mail-1 {
    transition: all 500ms ease;
}

.information__single:hover .information__mail-1 {
    color: var(--thm-primary);
}

.information__mail-2 {
    transition: all 500ms ease;
}

.information__single:hover .information__mail-2 {
    color: var(--thm-primary);
}

.information__single-1 {
    border-left: 0;
    border-bottom: 1px solid var(--thm-extra);;
}

.information__single-2 {
    border-left: 0;
    border-bottom: 1px solid var(--thm-extra);;
    padding-left: 60px;
}

.information__single-3 {
    border-left: 0;
    border-bottom: 1px solid var(--thm-extra);;
    border-right: 0;
    padding-left: 45px;
}

/*--------------------------------------------------------------
# Contact Page Google Map
--------------------------------------------------------------*/
.contact-page-google-map {
    position: relative;
    display: block;
}

.contact-page-google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 560px;
    width: 100%;
}



/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-one__title,
.comment-form__title {
    margin: 0;
    color: var(--thm-black);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 53px;
}

.comment-one__single {
    display: -webkit-box;
    display: flex;
    border-bottom: 1px solid var(--thm-extra);
    padding-bottom: 60px;
    margin-bottom: 58px;
}

.comment-one__content {
    position: relative;
    margin-left: 45px;
}

.comment-one__content h3 {
    margin: 0;
    font-size: 20px;
    color: var(--thm-black);
    font-weight: 400;
    margin-bottom: 25px;
}

.comment-one__content p {
    font-size: 16px;
    margin: 0;
}

.comment-one__btn {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 500;
    background-color: transparent;
    display: inline-block;
    padding: 2px 30px;
    border: 1px solid var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-one__btn:after {
    background-color: var(--thm-black);
}

.comment-one__image img {
    border-radius: 50%;
}

.comment-form .comment-form__title {
    margin-top: -5px;
}

.comment-one__form .row {
    --bs-gutter-x: 20px; 
}

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

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    height: 68px;
    width: 100%;
    border: none;
    background: #f6f6f6;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
    border-radius: 0px;
    outline: none;
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 400;
    display: block;
}

.comment-form__input-box textarea {
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 400;
    height: 195px;
    width: 100%;
    background: #f6f6f6;
    padding: 20px 30px 30px;
    border: none;
    border-radius: 0px;
    outline: none;
    margin-bottom: 10px;
}

/* svg-style start */

svg#freepik_stories-wallet:not(.animated) .animable {
    opacity: 0;
}

svg#freepik_stories-wallet.animated #freepik--Plant--inject-64 {
    animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
    animation-delay: 0s;
}

svg#freepik_stories-wallet.animated #freepik--credit-card--inject-64 {
    animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
    animation-delay: 0s;
}

svg#freepik_stories-wallet.animated #freepik--Wallet--inject-64 {
    animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) zoomIn;
    animation-delay: 0s;
}

svg#freepik_stories-wallet.animated #freepik--Money--inject-64 {
    animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
    animation-delay: 0s;
}

svg#freepik_stories-wallet.animated #freepik--Floor--inject-64 {
    animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) lightSpeedLeft;
    animation-delay: 0s;
}

svg#freepik_stories-wallet.animated #freepik--Character--inject-64 {
    animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideUp;
    animation-delay: 0s;
}

svg#freepik_stories-wallet.animated #freepik--speech-bubble--inject-64 {
    animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideRight;
    animation-delay: 0s;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lightSpeedLeft {
    from {
        transform: translate3d(-50%, 0, 0) skewX(20deg);
        opacity: 0;
    }

    60% {
        transform: skewX(-10deg);
        opacity: 1;
    }

    80% {
        transform: skewX(2deg);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: inherit;
    }
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* svg-style end */



/*--------------------------------------------------------------
# Three Boxes
--------------------------------------------------------------*/
.three-boxes {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.three-boxes__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.three-boxes__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1
}

.three-boxes__img:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 10px;
    background-color: rgba(var(--thm-black-rgb), 0.8);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30%);
    content: "";
    z-index: 1;
}

.three-boxes__single:hover .three-boxes__img:before {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.three-boxes__img img {
    width: 100%;
    transition: transform 500ms ease;
    transform: scale(1);
}

.three-boxes__single:hover .three-boxes__img img {
    transform: scale(1.05);
}

.three-boxes__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
    z-index: 2;
}

.three-boxes__content h3 {
    font-size: 30px;
    color: var(--thm-base);
    font-weight: 500;
    line-height: 36px;
}
.three-boxes p{
    padding-top: 12px;
    color: #fff;
    line-height: normal;
}


/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
}

.brand-one__inner {
    position: relative;
    display: block;
    padding: 50px 0 99px;
}

.brand-one .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.brand-one .swiper-slide img {
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 0.3;
    max-width: 100%;
}

.brand-one .swiper-slide img:hover {
    opacity: 1;
}


/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
    position: relative;
    display: block;
    padding: 0 0 90px;
}

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

.team-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.team-one__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .30);
    width: 0%;
    transform: translateY(100%);
    transition: all 500ms ease;
    z-index: 1;
}

.team-one__single:hover .team-one__img:before {
    transform: translateY(0);
    width: 100%;
}

.team-one__img img {
    width: 100%;
    transform: scale(1);
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__img img {
    transform: scale(1.05);
}

.team-one__social {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 0;
    bottom: 0;
    background-color: var(--thm-base);
    padding: 40px 12px;
    transform: scaleY(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    transform-origin: bottom center;
    z-index: 3;
}

.team-one__single:hover .team-one__social {
    transform: scaleY(1.0);
}

.team-one__social a {
    font-size: 15px;
    color: var(--thm-black);
    position: relative;
    transform: rotate(-90deg);
    display: flex;
    align-items: center;
    transition: all 500ms ease;
}

.team-one__social a:hover {
    color: var(--thm-primary);
}

.team-one__social a+a {
    margin-top: 20px;
}

.team-one__content {
    position: relative;
    display: block;
    text-align: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    padding: 24px 0 24px;
}

.team-one__content:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--thm-primary);
    content: "";
    width: 0%;
    opacity: 0;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__content:before {
    width: 100%;
    opacity: 1;
}

.team-one__name {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.team-one__title {
    font-size: 14px;
    margin: 0;
    line-height: 24px;
}



/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.service-details {
    position: relative;
    display: block;
    padding: 30px 0 120px;
}

.service-details__sidebar {
    position: relative;
    display: block;
}

.service-details__sidebar-service {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 48px 30px 23px;
}

.service-details__sidebar-title {
    font-size: 20px;
    font-weight: 400;
    padding-left: 20px;
    margin-bottom: 18px;
}

.service-details__sidebar-service-list {
    margin: 0;
}

.service-details__sidebar-service-list li+li {
    margin-top: 2px;
}

.service-details__sidebar-service-list li a {
    color: var(--thm-gray);
    font-size: 18px;
    font-weight: 400;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 12px 20px;
}

.service-details__sidebar-service-list li a:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
    color: var(--thm-black);
}

.service-details__sidebar-service-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--thm-black);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.service-details__sidebar-service-list li a span.icon-right-arrow-angle {
    font-weight: bold;
}

.service-details__sidebar-service-list li a:hover span {
    color: var(--thm-primary);
}

.service-details__need-help {
    position: relative;
    display: block;
    padding: 60px 60px 49px;
    margin-top: 30px;
    text-align: center;
    z-index: 1;
}

.service-details__need-help-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    z-index: -1;
}

.service-details__need-help-bg-overly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--thm-primary-rgb), .90);
    z-index: -1;
}

.service-details__need-help-icon {
    height: 85px;
    width: 85px;
    background-color: var(--thm-black);
    color: var(--thm-base);
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    transition: all 500ms ease;
}

.service-details__need-help-icon:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

.service-details__need-help-title {
    font-size: 34px;
    color: var(--thm-base);
    font-weight: 400;
    line-height: 46px;
    font-family: var(--thm-reey-font);
}

.service-details__need-help-contact {
    position: relative;
    display: block;
    margin-top: 27px;
}

.service-details__need-help-contact p {
    font-size: 16px;
    color: var(--thm-base);
    margin: 0;
    line-height: 18px;
}

.service-details__need-help-contact a {
    font-size: 24px;
    color: var(--thm-base);
}

.service-details__right {
    position: relative;
    display: block;
}

.service-details__img {
    position: relative;
    display: block;
}

.service-details__img img {
    width: 100%;
}

.service-details__content {
    position: relative;
    display: block;
    margin-top: 22px;
}

.service-details__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: -10px;
}

.service-details__text {
    font-weight: 300;
    margin: 0;
}

.service-details__benefits {
   
    margin-top: 51px;
    margin-bottom: 60px;
}


.service-details__benefits-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 26px;
    margin-top: -8px;

    background: #fff;
    padding: 22px 30px;
    color: #061F42;
    border-radius: 0px;
    border-left: 5px solid var(--thm-primary);
    box-shadow: 0px 1px 30px 1px #e5eaf5;
    
}

.service-details__benefits-text {
    font-size: 18px;
    margin: 0;
}


.service-details__faq .faq-one-accrodion .accrodion {
    background-color: #f6f6f6;
}

.list-service{
    margin: 14px 0;
 
}
.list-service li{
    margin: 1em;
    font-size: 16px;
    line-height: 26px;
   
}
.list-service li:before {
    content: "\25BA \0020";
    display: inline-block;
    width: .75em;
    height: .75em;
  color: var(--thm-primary);
    margin: 0 17px 0 -17px;
  }
  .list-service ol li::before{
      content: none;
  }
  .list-service ol li{
      list-style: circle;
      margin: .25em;
  }


  /* get-to-know__points start */
  
.get-to-know__points {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    margin-top: 40px;
}

.get-to-know__points li {
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0, .07);
    padding: 25px 25px 19px;
    
}

.get-to-know__points li+li {
    margin-left: 25px;
}

.get-to-know__points li .icon {
    height: 16px;
    width: 16px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
}

.get-to-know__points li .text {
    margin-left: 10px;
}

.get-to-know__points li .text p {
    font-size: 14px;
    font-weight: 600;
    color: var(--thm-text-dark);
    margin: 0;
    line-height: normal;
}

/* get-to-know__points end  */



/*--------------------------------------------------------------
# The Only
--------------------------------------------------------------*/
.the-only {
    position: relative;
    display: block;
    padding: 110px 0 110px;
    background-color: var(--thm-black);
}

.the-only-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.03;
}

.the-only__knowledge {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 44px 50px 28px;
}

.the-only__knowledge h3 {
    font-size: 24px;
    color: var(--thm-base);
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 25px;
}

.the-only__knowledge a {
    font-size: 14px;
    color: var(--thm-base);
    display: inline-block;
    font-weight: 500;
}

.the-only__scale-your-business {
    position: relative;
    display: block;
    margin-top: 63px;
    margin-left: 35px;
    margin-right: -14px;
}

.the-only__scale-your-business p {
    font-size: 24px;
    margin: 0;
    line-height: 40px;
    color: var(--thm-base);
}

.the-only__text-box {
    position: relative;
    display: block;
    margin-top: 50px;
    margin-left: 33px;
    margin-right: -30px;
}

.the-only__text-box p {
    color: #9e9e9e;
    font-weight: 300;
    margin: 0;
}

.the-only__points-box {
    position: relative;
    display: block;
    margin-top: 50px;
    margin-left: 32px;
}

.the-only__points {
    position: relative;
    display: block;
}

.the-only__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.the-only__points li .icon {
    height: 16px;
    width: 16px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
}

.the-only__points li .text {
    margin-left: 20px;
}

.the-only__points li .text p {
    color: var(--thm-base);
    margin: 0;
}



/*--------------------------------------------------------------
# Discover World Two
--------------------------------------------------------------*/
.discover-world-two {
    position: relative;
    display: block;
    padding: 70px 0 60px;
}
.discover-world-two span {
    font-weight: 100;
}

.discover-world-two-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.discover-world-two-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .70);
    z-index: -1;
}

.accu-img img{
    width: 280px;
}

.job-apply-btn {
    padding: 6px 30px 6px !important;
}
.border-bottom-dark {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.title-xs {
    font-size: 16px;
    line-height: 20px;
}
/* media query start */
@media (max-width: 767px){
.main-menu-wrapper__logo img{
    width: 184px;
}
.grow-and-experience-two{
    padding: 120px 0 60px;
}
.grow-and-experience-3{
    padding: 0px 0 60px;
}
.we-shape__top{
    padding: 222px 0 0px;
}
.section-title__tagline{
    font-size: 14px;
}
}
@media (min-width: 767px) and (max-width: 991px){
    .main-slider__content{
        min-height: 390px;
    }
}
/* media query end */

.brochure-button-container {
    display: none;
}