/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: 'Jost', sans-serif;
    --thm-reey-font: 'reeyregular';
    --thm-gray: #726f84;
    --thm-gray-rgb: 114, 111, 132;
    --thm-primary: #3c72fc;
    --thm-primary-rgb: 60, 114, 252;
    --thm-black: #0f0d1d;
    --thm-black-rgb: 15, 13, 29;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-light: #f2f4f8;
    --thm-light-rgb: 242, 244, 248;
    --thm-letter-space-big: 0.1em;
    --thm-letter-space-small: -0.02em;
}

.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: 500;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}


.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* boxed style */

body.boxed-wrapper {
    background-color: var(--thm-light);
    ;
}

.boxed-wrapper .page-wrapper {
    max-width: 1410px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--thm-base);
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

.boxed-wrapper .page-wrapper__dark {
    background-color: #1c1e22;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::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;
    border: none;
    outline: none !important;
    background-color: var(--thm-primary);
    color: var(--thm-base);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 50px;
    transition: 500ms;
    letter-spacing: 0.1em;
}

.thm-btn:hover {
    background: #ebf1ff;
    color: var(--thm-primary);
}



.section-title {
    margin-top: -12px;
    margin-bottom: 50px;
}

.section-title__title {
    margin: 0;
    font-weight: 900;
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: var(--thm-letter-space-small);
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 18px;
    align-items: center;
    line-height: 30px;
}

.bootstrap-select .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: var(--thm-base);
}

.preloader {
    position: fixed;
    background-color: #191f26;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
} 

.preloader__image {
    background-image: url(../images/preloader.gif);
    -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;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 400px auto;
    width: 100%;
    height: 100%;
}

/* 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;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.scroll-to-top i {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: var(--thm-black);
}

.scroll-to-top:hover i {
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    padding: 0 40px;
    background: transparent;
    position: absolute;
    left: 0px;
    top: 30px;
    width: 100%;
    z-index: 91;
    transition: all 500ms ease;
}
section.top-menu {
    background-color: #013b57;
    padding: 5px 0;
    position: fixed;
    top: 0px;
    z-index: 99;
    width: 100%;
}
.top-header {
    float: right;
}
.boxed-wrapper .main-header {
    padding-right: 0;
}

.main-header:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    content: "";
    background-color: rgba(var(--thm-base-rgb), .15);
}

.main-menu {
    position: relative;
    z-index: 91;
}

.main-menu-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-wrapper__left {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-wrapper__logo {
    position: relative;
    float: left;
    padding: 5px 15px;
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, .15);
}





.main-menu-wrapper__main-menu {
    position: relative;
    display: flex;
    padding-left: 86px; 
} 


.main-menu-wrapper__right {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.main-menu-wrapper__social-box {
    position: relative;
    display: block;
    float: left;
}

.main-menu-wrapper__social {
    display: flex;
    align-items: center;
    padding: 19px 0;
}

.main-menu-wrapper__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    font-size: 17px;
    transition: all 500ms ease;
}

.main-menu-wrapper__social a+a {
    margin-left: 25px;
}

.main-menu-wrapper__social a:hover {
    color: var(--thm-primary);
}

.main-menu-wrapper__search-box {
    position: relative;
    display: block;
    float: left;
    margin-left: 60px;
    margin-right: 60px;
}

.boxed-wrapper .main-menu-wrapper__search-box {
    margin-right: 0;
}

.main-menu-wrapper__search {
    font-size: 24px;
    color: var(--thm-base);
    padding: 45.5px 60px 45.5px;
    display: inline-block;
    transition: all 500ms ease;
    border-left: 1px solid rgba(255, 255, 255, .15);
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.main-menu-wrapper__search:hover {
    color: var(--thm-primary);
}

.main-menu-wrapper__phone-contact {
    position: relative;
    display: block;
    float: left;
	border-left: 1px solid rgba(255, 255, 255, .15);
    padding-left: 15px;
}

.boxed-wrapper .main-menu-wrapper__phone-contact {
    display: none;
}



.main-menu-wrapper__phone-contact>p {
    font-size: 16px;
    color: var(--thm-base);
    margin: 0;
    line-height: 20px;
    opacity: .7;
}

.main-menu-wrapper__phone-contact>a {
    font-size: 16px;
    color: var(--thm-base);
    font-weight: 600;
    transition: all 500ms ease;
}

.main-menu-wrapper__phone-contact>a:hover {
    color: var(--thm-gray);
}





.stricky-header {
    padding: 0 60px;
    background-color: var(--thm-black);
}


.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: 40.5px;
    padding-bottom: 40.5px;
    position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 35px;
}

.main-menu .main-menu__list>li>a {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: var(--thm-base);
    text-transform: uppercase;
    position: relative;
    transition: all 500ms ease;
    letter-spacing: var(--thm-letter-space-big);
}
.stricky-header .main-menu__list>li>a {
    color: var(--thm-primary);
}
.stricky-header .main-menu__list>.main-menu-wrapper__phone-contact>p,a{
	color: var(--thm-primary);
}
.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
    content: '';
    width: 10px;
    height: 2px;
    background-color: var(--thm-base);
    position: absolute;
    bottom: 0px;
    left: 0;
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: right center;
    z-index: -1;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
    color: var(--thm-base);
}

.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, 1);
    transform-origin: left center;
}




.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 235px;
    background-color: var(--thm-base);
    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: 14px;
    line-height: 30px;
    color: var(--thm-black);
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--thm-letter-space-big);
}

.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: var(--thm-base);
}

.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: 48px;
    left: 0;
    background-color: var(--thm-base);
    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);
	border-bottom: 1px solid #bbb;
}
@media only screen and (max-width: 1199px) {
	.stricky-header {
		padding-left: 0px;
		padding-right: 0px;
	}
}

.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 {
    cursor: pointer;
    transition: 500ms;
    margin-right: 20px;
    display: flex;
}

.main-menu .mobile-nav__toggler-bar {
    width: 30px;
    height: 2px;
    background-color: var(--thm-base);
    display: block;
    transform: scale(1);
    transform-origin: right center;
    transition: transform 500ms ease;
}

.main-menu-three .mobile-nav__toggler-bar {
    background: var(--thm-black);
}

.main-menu .mobile-nav__toggler:hover .mobile-nav__toggler-bar {
    transform: scale(1) !important;
}

.main-menu .mobile-nav__toggler-bar:nth-child(1) {
    transform: scaleX(.55);
    margin-bottom: 4px;
}

.main-menu .mobile-nav__toggler-bar:nth-child(2) {
    transform: scaleX(.75);
    margin-bottom: 4px;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-base);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}


/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
    position: relative;
    display: block;
}

.main-header-three:before {
    display: none;
}



.main-menu-wrapper-three {
    position: relative;
    display: block;
}

.main-menu-wrapper__logo-3 {
    position: relative;
    float: left;
    padding: 40.5px 0;
}





.main-menu-wrapper-three__main-menu {
    position: relative;
    display: block;
    float: right;
}

.main-menu-wrapper-three__main-menu-inner {
    position: relative;
    display: block;
    float: left;
    padding-right: 60px;
}

.main-menu-wrapper-three__social-box {
    position: relative;
    display: block;
    float: right;
}

.main-menu-wrapper-three__social-box:before {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 0;
    content: "";
    width: 1px;
    background-color: #e6e9ef;
}

.main-menu-wrapper-three__social {
    display: flex;
    align-items: center;
    padding-top: 49px;
    padding-left: 60px;
    padding-bottom: 49px;
}

.main-menu-wrapper-three__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-gray);
    font-size: 17px;
    transition: all 500ms ease;
}

.main-menu-wrapper-three__social a:hover {
    color: var(--thm-primary);
}

.main-menu-wrapper-three__social a+a {
    margin-left: 25px;
}

.main-menu-three .main-menu__list>li>a,
.stricky-header.main-menu-three .main-menu__list>li>a {
    color: var(--thm-gray);
    font-weight: 500;
}

.main-menu-three .main-menu__list>li.current>a,
.main-menu-three .main-menu__list>li:hover>a,
.stricky-header.main-menu-three .main-menu__list>li.current>a,
.stricky-header.main-menu-three .main-menu__list>li:hover>a {
    color: var(--thm-black);
}


.main-menu-three .main-menu__list>li.current>a::before {
    background-color: var(--thm-black);
}

.main-menu-three .main-menu__list>li:hover>a::before {
    background-color: var(--thm-black);
}





.stricky-header.main-menu-three {
    background-color: var(--thm-base);
}

.stricky-header .main-menu-wrapper-three {
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
}





.stricky-header.main-menu-three--dark,
.main-header-three--dark {
    background-color: var(--thm-black);
}


.main-header-three--dark .main-menu-three .main-menu__list>li>a,
.stricky-header.main-menu-three--dark .main-menu__list>li>a {
    color: #8f8da0;
}


.main-menu-three--dark .main-menu-wrapper-three__social a {
    color: #8f8da0;
}

.main-menu-three--dark .main-menu-wrapper-three__social a:hover {
    color: var(--thm-base);
}

.main-menu-three--dark .main-menu__list>li.current>a,
.main-menu-three--dark .main-menu__list>li:hover>a,
.stricky-header.main-menu-three--dark .main-menu__list>li.current>a,
.stricky-header.main-menu-three--dark .main-menu__list>li:hover>a {
    color: var(--thm-base);
}

.main-menu-three--dark .main-menu__list>li:hover>a::before,
.main-menu-three--dark .main-menu__list>li.current>a::before {
    background-color: var(--thm-base);
}


.main-menu-three--dark .main-menu-wrapper-three__social-box::before {
    background-color: rgba(255, 255, 255, .1);
}

.main-menu-three--dark .mobile-nav__toggler-bar {
    background-color: var(--thm-base);
}

.main-menu-three--dark .main-menu__list>li+li,
.stricky-header.main-menu-three--dark .main-menu__list>li+li {
    margin-left: 40px;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@-webkit-keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: center center;
    }

    50% {
        transform: translateY(50px) translateX(100px) rotate(45deg);
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        transform-origin: center center;
    }
}

@keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: center center;
    }

    50% {
        transform: translateY(50px) translateX(100px) rotate(45deg);
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        transform-origin: center center;
    }
}

@-webkit-keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@-webkit-keyframes banner3Shake {
    0% {
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes banner3Shake {
    0% {
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@-webkit-keyframes squareMover {

    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }

    20%,
    60% {
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%,
    80% {
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes squareMover {

    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }

    20%,
    60% {
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%,
    80% {
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@-webkit-keyframes treeMove {

    0%,
    100% {
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        transform: rotate(10deg) translateX(30px);
    }
}

@keyframes treeMove {

    0%,
    100% {
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        transform: rotate(10deg) translateX(30px);
    }
}


/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: zoom-fade;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}

@keyframes zoom-fade {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}


@-webkit-keyframes service_hexagon_2 {
    0% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(360deg)
    }
}


@keyframes service_hexagon_2 {
    0% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(360deg)
    }
}

@keyframes service_hexagon_2 {
    0% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(360deg)
    }
}

/*--------------------------------------------------------------
# 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: var(--thm-base);
    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-primary);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-primary);
    border: none;
    outline: none;
    color: var(--thm-base);
    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: var(--thm-base);
    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: var(--thm-base);
}

.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: var(--thm-base);
    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: var(--thm-base);
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 991;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.75;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: var(--thm-base);
    border-radius: 0px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: var(--thm-base);
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__content .thm-btn {
    padding: 0;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-primary);
}

.search-popup__content .thm-btn:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

.search-popup__content .thm-btn i {
    margin: 0;
}


/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.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;
    background-color: var(--thm-black);
   /* background-blend-mode: luminosity;*/
    opacity: 0.7;
    background-position: center center;
}

.main-slider-three .image-layer {
    background-blend-mode: unset;
    opacity: 1;
}



[class*=main-slider-shape-] {
    position: absolute;
    width: 889px;
    z-index: 2;
    top: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(200px);
    display: none;
}

@media (min-width: 1025px) {
    [class*=main-slider-shape-] {
        display: block;
    }
}


.main-slider-shape-1 {
    background-image: url(../images/shapes/main-slider-shape-1.png);
    z-index: 10;
    mix-blend-mode: overlay;
}

.main-slider-shape-2 {
    background-image: url(../images/shapes/main-slider-shape-2.png);
    z-index: 9;
    transform: translateX(400px);
    mix-blend-mode: overlay;
}

.main-slider-shape-3 {
    background-image: url(../images/shapes/main-slider-shape-3.png);
    z-index: 8;
    transform: translateX(600px);
    mix-blend-mode: overlay;
}

.main-slider-shape-4 {
    background-image: url(../images/shapes/main-slider-shape-4.png);
    z-index: 7;
    transform: translateX(600px);
    transform: right top;
    mix-blend-mode: soft-light;
}

.main-slider-shape-5 {
    background-image: url(../images/shapes/main-slider-shape-5.png);
    z-index: 6;
    transform: translateX(400px);
    transform: right top;
    mix-blend-mode: overlay;
}

.main-slider .swiper-slide-active .main-slider-shape-1 {
    opacity: 1;
    transform: translate(0);
    transition: all 1500ms ease;
    transition-delay: 200ms;
}

.main-slider .swiper-slide-active .main-slider-shape-2 {
    opacity: 1;
    transform: translate(0);
    transition: all 1200ms ease;
    transition-delay: 400ms;
}

.main-slider .swiper-slide-active .main-slider-shape-3 {
    opacity: 1;
    transform: translate(0);
    transition: all 1300ms ease;
    transition-delay: 600ms;
}

.main-slider .swiper-slide-active .main-slider-shape-4 {
    opacity: 1;
    transform: translate(0);
    transition: all 1100ms ease;
    transition-delay: 800ms;
}

.main-slider .swiper-slide-active .main-slider-shape-5 {
    opacity: 1;
    transform: translate(0);
    transition: all 900ms ease;
    transition-delay: 900ms;
    opacity: .4;
}

.main-slider .container {
    padding-top: 200px;
    padding-bottom: 70px;
}

.main-slider__content {
    position: relative;
    display: block;
}

.main-slider p {
    font-size: 14px;
    position: relative;
    font-weight: 600;
    color: var(--thm-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: rgba(var(--thm-black-rgb), .10);
    display: inline-block;
    padding: 8px 30px;
    margin: 0;
    opacity: 0;
    transform: translateY(-120px);
    transition-delay: 0;
    transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider h2 {
    margin: 0;
    margin-bottom: 30px;
    color: var(--thm-base);
    font-weight: 500;
    letter-spacing: var(--thm-letter-space-small);
    opacity: 0;
    visibility: hidden;
    transform: translateY(120px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    font-size: 55px;
    line-height: 65px;
    text-transform: uppercase;
    padding-top: 32px;
}

.main-slider .thm-btn {
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
}

.main-slider .thm-btn:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

.main-slider .swiper-slide-active .image-layer {
    transform: scale(1.15);
}

.main-slider .swiper-slide-active .thm-btn,
.main-slider .swiper-slide-active p,
.main-slider .swiper-slide-active h2,
.main-slider .swiper-slide-active p {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider__nav {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30px;
    width: 30px;
    z-index: 100;
    font-size: 20px;
    color: var(--thm-base);
    opacity: 1;
    margin: 0;
    transition: all 500ms ease;
}


.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: var(--thm-base);
}

.main-slider__nav .swiper-button-prev:hover .main-slider__next-text {
    color: var(--thm-base);
}

.main-slider__nav .swiper-button-next:hover .main-slider__prev-text {
    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 {
    margin-bottom: 0px;
    display: flex;
    flex-direction: row-reverse;
}

.main-slider__nav .swiper-button-prev .icon-left-arrow {
    position: relative;
    transform: rotate(180deg);
    transition: all 500ms ease;
}

.main-slider__nav .swiper-button-prev span {
    margin-left: 10px;
}

.main-slider__nav .swiper-button-next span {
    margin-right: 10px;
}

.main-slider__nav .swiper-button-prev i,
.main-slider__nav .swiper-button-next i {
    transition: all 500ms ease;
    right: 0;
    position: relative;
}

.main-slider__nav .swiper-button-prev:hover i {
    right: 5px;
}

.main-slider__nav .swiper-button-next:hover i {
    right: -5px;
}

.main-slider__next-text {
    font-size: 12px;
    color: var(--thm-base);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: var(--thm-letter-space-big);
    transition: all 500ms ease;
}

.main-slider__prev-text {
    font-size: 12px;
    color: var(--thm-base);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: var(--thm-letter-space-big);
    transition: all 500ms ease;
}

@media(min-width: 992px) {

    .main-slider--one-page h2 {
        font-size: 80px;
    }
}

.main-slider--one-page h2 {
    margin-bottom: 0;
}

.main-slider--one-page p {
    background-color: rgba(var(--thm-base-rgb), .1);
}

.main-slider--one-page .image-layer {
    opacity: 0.5;
}


.main-slider--one-page .text {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 400;
    margin-bottom: 50px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(120px);
    transition-delay: 0;
    transition: transform 2000ms ease, opacity 2000ms ease;
}


@media(min-width: 768px) {
    .main-slider--one-page .text {
        font-size: 24px;
    }
}

@media(min-width: 992px) {
    .main-slider--one-page .text {
        font-size: 26px;
    }
}

.main-slider--one-page .swiper-slide-active .text {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider--one-page .container {
    padding-top: 215px;
    padding-bottom: 215px;
}


.main-slider--one-page .main-slider__content {
    padding-left: 0;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
    display: block;
    z-index: 3;
}

.main-slider-two .container {
    padding-top: 322px;
    padding-bottom: 240px;
}

.main-slider-two-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 972px;
    width: 825px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-100%);
}

.main-slider .swiper-slide-active .main-slider-two-shape-1 {
    opacity: 0.9;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 200ms;
}

.main-slider-two-shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 513px;
    width: 586px;
    z-index: 2;
    opacity: 0;
    transform: translateX(900px);
    background-image: url(../images/shapes/main-slider--two-shape-2.png)
}

.main-slider .swiper-slide-active .main-slider-two-shape-2 {
    opacity: 0.9;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 1800ms;
}

.main-slider-two p {
    display: block;
    background-color: transparent;
    padding: 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    transform: translateY(120px);
}

.main-slider-two h2 {
    font-size: 110px;
    line-height: 100px;
    margin-bottom: 26px;
    transform: translateY(-120px);
}

.main-slider-two .thm-btn {
    margin-top: 52px;
}

.main-slider-two__single-text {
    color: var(--thm-primary);
    font-family: var(--thm-reey-font);
}



.main-slider-two .image-layer-overlay {
    background: rgba(var(--thm-black-rgb), .5);
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/



.main-slider-three .image-layer {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}




.main-slider-three .container {
    padding-top: 188px;
    padding-bottom: 200px;
}

.main-slider-three p {
    font-weight: 700;
    color: var(--thm-black);
    display: block;
    background-color: transparent;
    padding: 0;
    letter-spacing: var(--thm-letter-space-big);
}

.main-slider-three h2 {
    margin: 0;
    margin-bottom: 51px;
    color: var(--thm-black);
    font-weight: 800;
    font-size: 68px;
    line-height: 68px;
    padding-top: 19px;
}



.main-slider-three__nav .swiper-button-next,
.main-slider-three__nav .swiper-button-prev {
    color: var(--thm-black);
}

.main-slider-three__nav .main-slider__next-text {
    color: var(--thm-black);
}

.main-slider-three__nav .main-slider__prev-text {
    color: var(--thm-black);
}


/*--------------------------------------------------------------
# Real World
--------------------------------------------------------------*/
.real-world {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    padding: 120px 0 90px;
}

.real-world-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 610px;
    height: 595px;
    opacity: 0.08;
}

.real-world .section-title {
    position: relative;
    display: block;
    z-index: 2;
}

.real-world .section-title__title {
    color: var(--thm-base);
}

.real-world .section-title__tagline {
    color: #8f8da0;
}

.real-world__single {
    position: relative;
    display: block;
    background-color: #06050c;
    padding: 54px 60px 75px;
    margin-bottom: 30px;
    transition: background 500ms ease;
}

.real-world__single:hover {
    background-color: var(--thm-primary);
}

.real-world__title {
    font-size: 24px;
    color: var(--thm-base);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 29px;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.real-world__title a {
    color: inherit;
    transition: all 500ms ease;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 87% / 0px 2px no-repeat;
}

.real-world__title a:hover {
    background-size: 100% 2px;
    color: var(--thm-base);
}

.real-world__btn {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: #8f8da0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: all 500ms ease;
}

.real-world__single:hover .real-world__btn {
    color: var(--thm-base);
}

.real-world__btn:hover {
    color: var(--thm-base);
}

.real-world__btn:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    height: 2px;
    width: 10px;
    background-color: currentColor;
    transition: width 500ms ease;
}

.real-world__btn:hover::before {
    width: 100%;
}

.real-world__icon-box {
    position: absolute;
    bottom: 52px;
    right: 60px;
}

.real-world__icon-box span {
    font-size: 65px;
    color: var(--thm-primary);
    line-height: 65px;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 500ms ease, color 500ms ease;
    display: block;
}

.real-world__single:hover .real-world__icon-box span {
    transform: scale(.85);
    color: var(--thm-base);
}


/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    padding: 128px 0 119px;
}

.brand-one__title {
    color: var(--thm-base);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 1170px;
    text-align: center;
    margin: 0 auto;
    margin-top: -3px;
    letter-spacing: 0.1em;
}

.brand-one__title:before {
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 0;
    content: "";
    height: 1px;
    background-color: rgba(255, 255, 255, .10);
    max-width: 495px;
    width: 100%;
    transform: translateY(-50%);
}

.brand-one__title:after {
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 0;
    content: "";
    height: 1px;
    background-color: rgba(255, 255, 255, .10);
    max-width: 495px;
    width: 100%;
    transform: translateY(-50%);
}

.brand-one .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-one .swiper-slide img {
    transition: 500ms;
    opacity: 0.15;
    max-width: 100%;
}

.brand-one .swiper-slide img:hover {
    opacity: 0.5;
}

/*--------------------------------------------------------------
# Welcome One
--------------------------------------------------------------*/
.welcome-one {
    position: relative;
	display: block;
	padding: 60px 0 120px;
}

.welcome-one__left {
    position: relative;
    display: block;
    margin-right: 60px;
}

.welcome-one__img-box {
    position: relative;
    display: block;
} 

.welcome-one__img-1 {
    background-color: var(--thm-black);
}

.welcome-one__img-1>img {
    width: 100%;
    /*mix-blend-mode: luminosity;*/
}

.welcome-one__img-2 {
    background-color: var(--thm-black);
    border-top: 20px solid var(--thm-base);
    border-left: 20px solid var(--thm-base);
    position: absolute;
    bottom: -60px;
    right: -20px;
}

.welcome-one__img-2>img {
    /*mix-blend-mode: luminosity;*/
}



.welcome-one__video-btn {
    height: 125px;
    width: 125px;
    background-color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-base);
    font-size: 20px;
    position: absolute;
    top: 40px;
    left: -40px;
    transition: all 500ms ease;
}

.welcome-one__video-btn:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

.welcome-one__video-btn-icon .ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 125px;
    height: 125px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.welcome-one__video-btn-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.welcome-one__video-btn-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.welcome-one__video-btn-icon .ripple:before,
.welcome-one__video-btn-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 125px;
    height: 125px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(15, 13, 29, 0);
    }

    100% {
        box-shadow: 0 0 0 40px rgba(15, 13, 29, 0);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(15, 13, 29, 0);
    }

    100% {
        box-shadow: 0 0 0 40px rgba(15, 13, 29, 0);
    }
}



.welcome-one__right {
    position: relative;
    display: block;
}

.welcome-one__title {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 60px;
    margin-bottom: 37px;
    margin-top: -12px;
    letter-spacing: var(--thm-letter-space-small);
}

.welcome-one__text {
	margin: 0;
	font-size: 17px;
	line-height: 24px;
	text-align: justify; 
	font-weight: normal;
	color: #383838;
	font-family: 'Jost';  
}

.welcome-one__text-two {
    font-size: 26px;
    color: var(--thm-primary);
    font-weight: 400;
    line-height: 45px
}

.welcome-one__progress {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 31px;
}



.welcome-one__progress-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 13px;
    letter-spacing: var(--thm-letter-space-small);
}

.welcome-one__progress .bar {
    position: relative;
    width: 100%;
    height: 20px;
    background: var(--thm-light);
    ;
    border-radius: 30px;
    margin-bottom: 3px;
}

.welcome-one__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 20px;
    border-radius: 30px;
    background: var(--thm-primary);
    transition: all 1500ms ease;
}

.welcome-one__progress .count-text {
    position: absolute;
    right: 0px;
    bottom: -28px;
    color: var(--thm-gray);
    line-height: 26px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transition: all 500ms ease;
}

.welcome-one__progress .bar-inner.counted .count-text {
    opacity: 1;
}

.welcome-one__call {
    display: flex;
    align-items: center;
    padding-top: 35px;
}

.welcome-one__call-icon {
    height: 68px;
    width: 68px;
    background-color: #ebf1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--thm-primary);
    transition: all 500ms ease;
}

.welcome-one__call:hover .welcome-one__call-icon {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}



.welcome-one__call-text {
    margin-left: 30px;
}

.welcome-one__call-text p {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.welcome-one__call-text a {
    font-size: 18px;
    color: var(--thm-black);
    transition: all 500ms ease;
}

.welcome-one__call-text a:hover {
    color: var(--thm-primary);
}

.welcome-one__big-text {
    font-size: 120px;
    color: var(--thm-light);
    ;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 300;
    cursor: vertical-text;
    position: absolute;
    top: 358px;
    right: -473px;
    transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Two Boxes
--------------------------------------------------------------*/
.two-boxes {
    position: relative;
    display: block;
    z-index: 2;
    counter-reset: twoBoxesCount;
	margin-bottom: -60px;
}

.two-boxes .row {
    --bs-gutter-x: 0px;
}

.two-boxes__single {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.10);
    padding: 60px 60px 52px;
    counter-increment: twoBoxesCount;
}

.two-boxes__single-content {
    position: relative;
    display: block;
    padding-left: 68px;
}

.two-boxes__count {
    height: 68px;
    width: 68px;
    background-color: #ebf1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 6px;
    left: 0;
    transition: all 500ms ease;
    color: var(--thm-primary);
}

.two-boxes__single:hover .two-boxes__count {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}

.two-boxes__count span {
    font-size: 24px;
    color: currentColor;
    font-weight: 600;
}

.two-boxes__count span::before {
    content: counters(twoBoxesCount, ".", decimal-leading-zero);

}

.two-boxes__content { 
    margin-left: 30px;
}

.two-boxes__title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 30px;
    margin-bottom: 11px;
    margin-top: -6px;
    letter-spacing: var(--thm-letter-space-small);
}

.two-boxes__text {
    font-size: 17px;
line-height: 24px;
text-align: justify;
font-weight: normal;
color: #383838;
font-family: 'Jost';
}

.two-boxes_link{
	font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
	margin: 12px 0 0;
}
.two-boxes_link a{
	transition: all 500ms ease;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 87% / 0px 2px no-repeat;
}
.two-boxes_link a:hover { 
    color: var(--thm-primary);
    background-size: 100% 2px;
}
.grey-bg {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    padding: 50px 0 50px;
    margin-top: -60px;
}
/*--------------------------------------------------------------
# Cases One
--------------------------------------------------------------*/
.cases-one {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    padding: 100px 0;
    margin-top: -60px;
}


.cases-one--one-page {
    margin-top: 0;
    padding-top: 120px;
    background-color: transparent;
}


.cases-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.cases-one__img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.cases-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-black);
}

.cases-one__img>img {
    width: 100%;
    transform: scale(1);
    opacity: .7;
    transition: all 500ms ease;
    /*mix-blend-mode: luminosity;*/
}

.cases-one__single:hover .cases-one__img>img {
    transform: scale(1.05);
    opacity: 1;
}

.cases-one__content {
    padding: 35px 20px 35px;
    background-color: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 40px;
    z-index: 1;
}

.cases-one__content:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; 
    content: "";
    background-color: var(--thm-primary);
    z-index: -1;
    transform: translateY(100%);
    transition: all 500ms ease;
}

.cases-one__single:hover .cases-one__content:before {
    transform: translateY(0);
}



.cases-one__icon span {
    font-size: 65px;
    color: var(--thm-base);
    line-height: 65px;
    display: block;
    transform: scale(1);
    transform-origin: left center;
    transition: transform 500ms ease;
}

.cases-one__single:hover .cases-one__icon span {
    transform: scale(.85);
}

.cases-one__tagline {
    font-size: 14px;
    color: var(--thm-base);
    font-weight: 800;
    margin: 0;
    line-height: 24px;
    text-transform: uppercase;
    padding-top: 14px;
    padding-bottom: 17px;
    letter-spacing: var(--thm-letter-space-big);
}

.cases-one__tilte {
    font-size: 22px;
    color: var(--thm-base);
    font-weight: 500;
    text-transform: uppercase;
    line-height: 25px;
    letter-spacing: var(--thm-letter-space-small);
}
.cases-one__icon {
    padding-bottom: 15px;
}

.cases-one__tilte a {
    color: var(--thm-base);
    transition: all 500ms ease;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 87% / 0px 2px no-repeat;
}

.cases-one__tilte a:hover {
    color: var(--thm-base);
    background-size: 100% 2px;
}

/*--------------------------------------------------------------
# Our Mission
--------------------------------------------------------------*/
.our-mission {
    position: relative;
    display: block;
    padding: 109px 0 120px;
    background-color: var(--thm-black);
}

.our-mission-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    opacity: 0.5;
}


.our-mission-bg.jarallax div div {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.our-mission__inner {
    position: relative;
    display: block;
    text-align: center;
}

.our-mission__title {
    font-size: 60px;
    color: var(--thm-base);
    font-weight: 900;
    line-height: 70px;
    text-transform: uppercase;
    margin-bottom: 46px;
    letter-spacing: var(--thm-letter-space-small);
}



/*--------------------------------------------------------------
# Faq One
--------------------------------------------------------------*/
.faq-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}





.faq-one-accrodion {
    position: relative;
    display: block;
    counter-reset: count;
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border: 1px solid transparent;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active {
    border: 1px solid #e6e9ef;
    background-color: var(--thm-base);
    box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, .05);
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 22px 0px 22px;
    padding-top: 23.5px;
    padding-bottom: 23.5px;
    padding-left: 40px;
    padding-right: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    background-color: var(--thm-light);
    ;
}

.faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 28px;
    color: var(--thm-black);
    text-transform: uppercase;
    position: relative;
    letter-spacing: var(--thm-letter-space-small);
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion-title h4 span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
}

.faq-one-accrodion .accrodion-title h4 span:before {
    counter-increment: count;
    content: ""counter(count);
}

.faq-one-accrodion .accrodion+.accrodion {
    margin-top: 10px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
    background-color: transparent;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--thm-black);
}

.faq-one-accrodion .accrodion-title h4::before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: var(--thm-primary);
    ;
    position: absolute;
    top: 50%;
    right: 0;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f068";
    color: var(--thm-black);
    ;
    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 28px;
    border-bottom: 0px solid #e5e5e5;
}



.faq-one-accrodion .accrodion.last-chiled.active .accrodion-content {
    border-bottom: 0px solid transparent;
}

.faq-one-accrodion .accrodion-content p {
    margin: 0;
    font-size: 16px;
}

.faq-one__right {
    position: relative;
    display: block;
}

.faq-one__img {
    position: relative;
    display: block;
    background-color: var(--thm-black);
}

.faq-one__img>img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.faq-one__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 42px;
}

.faq-one__list-box {
    position: relative;
    display: block;
}



.faq-one__list li {
    display: flex;
    align-items: center;
}

.faq-one__list li+li {
    margin-top: 6px;
}



.faq-one__list li .icon span {
    font-size: 20px;
    color: var(--thm-primary);
    display: block;
    transform: scale(1);
    transform-origin: right center;
    transition: transform 500ms ease;
}

.faq-one__list li:hover .icon span {
    transform: scale(.75);
}

.faq-one__list li .text {
    margin-left: 20px;
}

.faq-one__list li .text p {
    margin: 0;
    font-weight: 400;
    ;
}

.faq-one__experience-box {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    text-align: center;
    max-width: 200px;
    width: 100%;
    padding: 28px 0 38px;
}

.faq-one__experience-box h2 {
    font-size: 60px;
    color: var(--thm-base);
    line-height: 70px;
    font-weight: 900;
}

.faq-one__experience-box p {
    margin: 0;
    color: var(--thm-base);
    line-height: 25px;
}

/*--------------------------------------------------------------
# Testimonials One
--------------------------------------------------------------*/
.testimonials-one {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    padding: 100px 0 70px;
}

.pt8{
	padding-top: 8rem;
}


.testimonials-one__left .section-title__tagline {
    letter-spacing: 0;
}


.testimonials-one__carousel.owl-carousel .owl-stage-outer {
    padding-bottom: 40px;
}

.testimonials-one__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 75%; 
    left: -405px;  
}

.testimonials-one__carousel.owl-theme .owl-nav .owl-next {
    height: 65px;
    width: 65px;
    background: var(--thm-base);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 23px; 
    text-align: center;
    transition: all 500ms ease;
}

.testimonials-one__carousel.owl-theme .owl-nav .owl-prev {
    height: 65px;
    width: 65px;
    background: var(--thm-base);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 23px;
    text-align: center;
    transform: rotate(180deg);
    transition: all 500ms ease;
}

.testimonials-one__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonials-one__carousel.owl-theme .owl-nav .owl-prev:hover {
    color: var(--thm-base);
    background-color: var(--thm-primary);
}

.testimonials-one__carousel.owl-theme .owl-nav button:focus {
    outline: none;
}

.testimonials-one__single {
   /* background-color: var(--thm-base);
    box-shadow: 0px 0px 60px 0px rgb(0 0 0 / 7%);
    padding: 10px;*/
	width: 100%;
}

.testimonials-one__text {
    margin: 0;
}

.testimonials-one__client-info {
    position: relative;
    display: block;
    padding-top: 22px;
}

.testimonials-one__client-name {
    font-size: 16px;
    color: var(--thm-primary);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: var(--thm-letter-space-small);
}

.testimonials-one__client-title {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 22px;
    letter-spacing: var(--thm-letter-space-big);

}

.testimonials-one__client-img {
    left: 50px;
    overflow: hidden;
}

.testimonials-one__client-img>img {
    /*width: 77px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);*/
}

.testimonials-one__quote {
    position: absolute;
    bottom: 60px;
    right: 50px;
    background-image: url(../images/testimonial/testimonials-1-iocn.png);
    background-repeat: no-repeat;
    width: 99px;
    height: 55px;
}


/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counters-one {
    position: relative;
    display: block;
	background-color: #1b1c57;
    /*background-color: var(--thm-black);*/
	
}

.counters-one-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover; 
    opacity: 0.02;
}

.counters-one__box {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    padding: 50px 0;
}

.counter-one__single {
    position: relative;
    display: inline-block;
    max-width: 284px;
    width: 100%;
    text-align: center;
}

.counter-one__single:before {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 9px;
    content: "";
    width: 1px;
    background-color: rgb(255, 255, 255, .1);
}

.counter-one__single:first-child:before {
    display: none;
}

.counter-one__icon {
    position: relative;
    display: flex;
    height: 110px;
    width: 110px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.counter-one__icon span {
    font-size: 65px;
    color: var(--thm-primary);
    line-height: 65px;
    display: block;
    transform: scale(1);
    transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__icon span {
    transform: scale(.85);
}

.counter-one__single h3 {
    font-size: 40px;
    color: var(--thm-base);
    font-weight: 900;
    line-height: 50px;
    margin-bottom: 4px;
    margin-top: 25px;
    font-family: var(--thm-font) !important;
    letter-spacing: var(--thm-letter-space-small);
}

.plus-sign{
	font-size: 25px;
    color: var(--thm-base);
    font-weight: 900;
    line-height: 50px;
    font-family: var(--thm-font) !important;
    letter-spacing: var(--thm-letter-space-small);
	margin-left:10px;
	position:relative;
	top:15px; 
}

.counter-one__text {
    font-size: 12px;
    font-weight: 700;
    color: var(--thm-base);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: var(--thm-letter-space-big);
}

.counter-one__single .odometer-formatting-mark {
    display: none;
}

/*--------------------------------------------------------------
# Financial Advice
--------------------------------------------------------------*/
.financial-advice {
    position: relative;
    display: block;
    padding: 0 0 60px;
    margin-top: -95px;
}

.financial-advice__box {
    position: relative;
    display: block;
}

.financial-advice__box .tab-btns {
    position: relative;
    z-index: 1;
    margin: 0;
    display: flex;
	justify-content: center;
}

.financial-advice__box .tab-btns .tab-btn {
    position: relative;
    float: left;
    max-width: 390px;
    width: 100%;
    text-align: center;
}

.financial-advice__box .tab-btns .tab-btn span {
    position: relative;
    display: block;
    background-color: rgb(242, 244, 248);
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 5%);
    margin: 0;
    padding: 40.5px 0px;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 500ms ease;
    cursor: pointer;
    letter-spacing: var(--thm-letter-space-small);
}

.financial-advice__box .tab-btns .tab-btn.active-btn span,
.financial-advice__box .tab-btns .tab-btn:hover span {
    color: var(--thm-primary);
    background-color: var(--thm-base);
    box-shadow: 0px 10px 30px 0px rgb(0, 0, 0, .05);
}

.financial-advice__box .tabs-content {
    position: relative;
    display: block;
    padding: 0;
}

.financial-advice__box .tabs-content .tab {
    position: relative;
    padding: 0px;
    display: none;
}

.financial-advice__box .tabs-content .tab.active-tab {
    display: block;
}

.financial-advice__content {
    position: relative;
    display: block;
    padding-top: 100px;
}

.financial-advice__single-1 {
    position: relative;
    display: block;
	padding-right: 30px;
}

.financial-advice__list-box {
    position: relative;
    display: block;
    margin-top: -5px;
}

.financial-advice__list-box li {
    position: relative;
    display: block;
    padding-left: 80px;
}

.financial-advice__list-box li+li {
    margin-top: 10px;
}

.financial-advice__icon {
    height: 60px;
    width: 60px;
    display: flex; 
    align-items: baseline; 
    justify-content: end;
    position: absolute;
    top: 5px;
    left: 0;
    transition: all 500ms ease;
    color: var(--thm-primary);
}

.fa-eye {
    font-size: 30px;
    transform: scale(1);
    display: block;
    transition: transform 500ms ease;
}

.fa-style {
    font-size: 30px;
    transform: scale(1);
    display: block;
    transition: transform 500ms ease;
}

.financial-advice__list-box li:hover .financial-advice__icon {
    /*background-color: var(--thm-primary);
    color: var(--thm-base);*/
	color:#03a79c;
}

.financial-advice__icon span {
    font-size: 32px;
    transform: scale(1);
    display: block;
    transition: transform 500ms ease;
}

.financial-advice__list-box li:hover .financial-advice__icon span {
    transform: scale(.85);
}



.finalcial-advice__list-box-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.finalcial-advice__list-box-text {
    font-size: 16px;
    margin: 0;
}

.financial-advice__single-2 {
    position: relative;
    display: block;
    padding-left: 90px;
    margin-right: -8px;
    margin-top: -9px;
}

.financial-advice__single-2:before {
    position: absolute;
    top: 11px;
    bottom: 4px;
    left: 30px;
    content: "";
    background-color: #e6e9ef;
    width: 1px;
}

.financial-advice_-desc {
    font-size: 16px;
    margin: 0;
}

.financial-advice__list-box-2 {
    padding-top: 35px;
}

.financial-advice__list-box-2 li {
    position: relative;
    font-size: 16px;
    padding-left: 25px;
}
.about-text {
    font-size: 17px;
	line-height: 24px;
	text-align: justify;
	font-weight: normal;
	color: #383838;
	font-family: 'Jost';
}


.financial-advice__list-box-2 li:before {
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 10px;
    content: "";
    background-color: var(--thm-primary);
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.financial-advice__list-box-2 li:hover:before {
    left: 7px;
    width: 13px;
}

.financial-advice__single-3 {
    position: relative;
    display: block;
    margin-left: 30px;
}

.financial-advice__img {
    background-color: var(--thm-black);
}

.financial-advice__img>img {
    width: 100%;
    mix-blend-mode: luminosity;
}


/*--------------------------------------------------------------
#Google Map
--------------------------------------------------------------*/
.google-map {
    position: relative;
    display: block;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 555px;
    width: 100%;
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.news-one__page {
    padding-bottom: 120px;
}

.blog-single .news-one__more .thm-btn:hover,
.news-one__page .thm-btn:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

.blog-single .news-one__more {
    margin-top: 30px;
}



.news-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    z-index: 2;
}

.news-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-black);
}

.news-one__img>img {
    width: 100%;
    transform: scale(1);
    transition: all 500ms ease;
    mix-blend-mode: luminosity;
}

.news-one__single:hover .news-one__img>img {
    transform: scale(1.05);
}

.news-one__img>a {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--thm-black-rgb), 0.9);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--thm-base);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30%);
}

.news-one__img>a>span {
    position: relative;
    display: block;
    margin-top: -100px;
}

.news-one__img>a>span::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: var(--thm-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.news-one__img>a>span::after {
    content: '';
    transition: all 500ms ease;
    width: 2px;
    height: 20px;
    background-color: var(--thm-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news-one__img>a:hover>span::before,
.news-one__img>a:hover>span::after {
    background-color: var(--thm-primary);
}

.news-one__single:hover .news-one__img>a {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.news-one__content {
    position: relative;
    background-color: var(--thm-base);
    display: block;
    margin-top: -100px;
    margin-left: 40px;
    padding: 30px 36px 37px;
    transition: all 500ms ease;
}

.news-one__single:hover .news-one__content {
    background-color: var(--thm-base);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
}

.news-one__meta {
    display: flex;
    align-items: center;
    margin: 0;
    margin-bottom: 11px;
}

.news-one__meta li {
    font-size: 12px;
    color: var(--thm-gray);
    font-weight: 600;
    text-transform: uppercase;
}

.news-one__meta li+li {
    margin-left: 12px;
}



.news-one__meta li a {
    color: var(--thm-gray);
    transition: all 500ms ease;
    letter-spacing: var(--thm-letter-space-big);
}

.news-one__meta li a:hover {
    color: var(--thm-primary);
}

.news-one__meta li a i {
    color: var(--thm-primary);
}

.news-one__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: var(--thm-letter-space-small);
    text-transform: uppercase;
    margin-bottom: 11px;
}

.news-one__title>a {
    color: var(--thm-black);
    transition: all 500ms ease;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 87% / 0px 2px no-repeat;
}

.news-one__title>a:hover {
    color: var(--thm-primary);
    background-size: 100% 2px;
}

.news-one__text {
    font-size: 16px;
    margin: 0;
    padding-bottom: 14px;
}

.news-one__btn {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--thm-black);
    transition: all 500ms ease;
    letter-spacing: var(--thm-letter-space-big);
}

.news-one__btn:hover {
    color: var(--thm-primary);
}

.news-one__btn:before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 10px;
    content: "";
    background-color: currentColor;
    transition: width 500ms ease;
}

.news-one__btn:hover::before {
    width: 100%;
}

.news-one__date-box {
    position: absolute;
    top: -34px;
    left: 0;
    background-color: var(--thm-primary);
    padding: 0 20px;
}

.news-one__date-box>p {
    font-size: 12px;
    color: var(--thm-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--thm-letter-space-big);
    margin: 0;
}

/*--------------------------------------------------------------
# Cta One
--------------------------------------------------------------*/
.cta-one {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    padding: 60px 0;
} 

.cta-one-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: center center;
    background-size: cover;
    background-color: #05aa9b;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.cta-one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.cta-one__title {
    font-size: 40px;
    color: var(--thm-base);
    line-height: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: var(--thm-letter-space-small);
}



.cta-one__btn {
    background-color: var(--thm-base);
    color: var(--thm-black);
}

.cta-one__btn:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
	background-color: #013b57;
    /*background-color: var(--thm-black);*/
}

.site-footer-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 700px;
    height: 504px;
    background-repeat: no-repeat;
    opacity: 0.08;
}

.site-footer__top {
    position: relative;
    display: block;
    padding: 56px 0 40px;
}

.footer-widget__about {
    position: relative;
    display: block;
    margin-top: -10px;
    margin-right: 70px;
}

.footer-widget__about-logo {
    position: relative;
    display: flex;
    margin-bottom: 20px;
}





.footer-widget__text {
    font-size: 16px;
    color: #8f8da0;
    margin: 0;
	line-height: 24px;
}

.footer-widget__contact-list {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, .10);
    margin-top: 18px;
    padding-top: 20px;
}

.footer-widget__contact-list li {
    position: relative;
    display: flex;
    align-items: baseline;
}

.footer-widget__contact-list li+li {
    margin-top: 2px;
}



.footer-widget__contact-list li .icon i {
    font-size: 14px;
    color: var(--thm-primary);
}

.footer-widget__contact-list li .text {
    margin-left: 20px;
}

.footer-widget__contact-list li .text p {
    margin: 0;
    font-size: 16px;
    color: #8f8da0;
	line-height: 24px;
}

.footer-widget__contact-list li .text p a {
    font-size: 16px;
    color: #8f8da0;
    font-weight: 500;
    transition: all 500ms ease;
}

.footer-widget__contact-list li .text p a:hover {
    color: var(--thm-base);
}



.footer-widget__title {
    font-size: 18px;
    font-weight: 800;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--thm-base);
    margin-bottom: 32px;
    letter-spacing: var(--thm-letter-space-small);
}

.footer-widget__explore-list {
    position: relative;
    display: block;
    float: left;
    margin-right: 25px;
}

.footer-widget__explore-list li+li {
    margin-top: 4px;
}

.footer-widget__explore-list li a {
    font-size: 16px;
    color: #8f8da0;
    transition: all 500ms ease;
}

.footer-widget__explore-list li a:hover {
    color: var(--thm-base);
}

.footer-widget__explore-list-two {
    margin-right: 0;
}







.footer-widget__title-news {
    margin-bottom: 42px;
}

.footer-widget__newsletter-form {
    position: relative;
    display: block;
    background-color: #06050c;
    padding: 30px 40px 40px;
}

.footer-widget__newsletter-text {
    font-size: 16px;
    color: #8f8da0;
    margin: 0;
}

.footer-widget__newsletter-input-box {
    position: relative;
    display: block;
    margin-top: 18px;
}

.footer-widget__newsletter-input-box input[type="email"] {
    height: 65px;
    width: 100%;
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 500;
    padding-left: 30px;
    padding-right: 120px;
    outline: none;
    border: none;
}

.footer-widget__newsletter-btn {
    font-size: 12px;
    color: var(--thm-base);
    font-weight: 700;
    background-color: var(--thm-primary);
    display: inline-block;
    border: none;
    outline: none;
    padding: 5px 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    text-transform: uppercase;
    transition: all 500ms ease;
    letter-spacing: 0.1em;
}

.footer-widget__newsletter-btn:hover {
    background-color: var(--thm-black);
}

.footer-widget__newsletter-input-box button:focus {
    outline: none;
}

.site-footer-bottom {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 10px 0;
}

.site-footer-bottom__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.site-footer-bottom__left p {
    font-size: 16px;
    color: #8f8da0;
    margin: 0;
}

.site-footer-bottom__left a {
    color: #8f8da0;
    transition: all 500ms ease;
}

.site-footer-bottom__left a:hover {
    color: var(--thm-base);
}

.site-footer__social {
    display: flex;
    align-items: center;
}

.site-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #8f8da0;
    font-size: 17px;
    transition: all 500ms ease;
}

.site-footer__social a+a {
    margin-left: 25px;
}

.site-footer__social a:hover {
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Industries
--------------------------------------------------------------*/
.industries {
    position: relative;
    display: block;
    padding: 120px 0 78px;
}

.industries .section-title {
    margin-bottom: 0;
}

.industries__top-text-box {
    position: relative;
    display: block;
    margin-top: -11px;
}

.industries__top-text {
    font-size: 16px;
    margin: 0;
}

.industries__content-box {
    position: relative;
    display: block;
    padding-top: 48px;
}

.industries__content-box--service-page {
    padding-top: 0;
}

.industries__single {
    position: relative;
    display: inline-block;
    max-width: 284px;
    width: 100%;
    text-align: center;
    padding: 0 35px;
    margin-bottom: 30px;
}

.industries__single:before {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 12px;
    content: "";
    width: 1px;
    background-color: #e6e9ef;
}

.industries__single:first-child:before {
    display: none;
}

.industries__icon {
    position: relative;
    height: 112px;
    width: 112px;
    margin: 0 auto;
    color: var(--thm-primary);
    font-size: 65px;
    border-radius: 50%;
    background-color: var(--thm-base);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    z-index: 1;
}

.industries__single:hover .industries__icon {
    color: var(--thm-base);
}

.industries__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-black);
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.industries__single:hover .industries__icon:before {
    transform: scale(1);
}



.industries__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    text-transform: uppercase;
    margin-top: 26px;
    margin-bottom: 15px;
    letter-spacing: var(--thm-letter-space-small);
}

.industries__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 87% / 0px 2px no-repeat;
    transition: all 500ms ease;
}

.industries__title a:hover {
    color: var(--thm-black);
    background-size: 100% 2px;
}

.industries__text {
    font-size: 16px;
    margin: 0;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.services-one:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--thm-light);
    ;
    height: 425px;
    z-index: -1;
}



.services-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.services-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-black);
}

.services-one__img>img {
    width: 100%;
    mix-blend-mode: luminosity;
    transition: all 500ms ease;
    transform: scale(1);
}

.services-one__single:hover .services-one__img>img {
    transform: scale(1.05);
}

.services-one__content {
    position: relative;
    display: block;
    padding: 42px 50px 50px;
    background-color: var(--thm-base);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
}


.services-one__title {
    font-size: 24px;
    color: var(--thm-black);
    font-weight: 800;
    line-height: 34px;
    letter-spacing: var(--thm-letter-space-small);
    text-transform: uppercase;
}

.services-one__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 87% / 0px 2px no-repeat;
}

.services-one__title a:hover {
    color: var(--thm-primary);
    background-size: 100% 2px;
}

.services-one__text {
    font-size: 16px;
    margin: 0;
    padding-top: 21px;
    padding-bottom: 14px;
}

.services-one__btn {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--thm-black);
    text-transform: uppercase;
    transition: all 500ms ease;
    letter-spacing: var(--thm-letter-space-big);
}

.services-one__btn:hover {
    color: var(--thm-primary);
}

.services-one__btn:before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 10px;
    content: "";
    background-color: currentColor;
    transition: width 500ms ease;
}

.services-one__btn:hover::before {
    width: 100%;
}

/*--------------------------------------------------------------
# Largest Business
--------------------------------------------------------------*/
.largest-business {
    position: relative;
    display: block;
    z-index: 3;
}



.largest-business__layer-outer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.largest-business__layer-outer-left {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    background-color: var(--thm-primary);
    height: 100%;
    background-repeat: no-repeat;
}

.largest-business__layer-outer-right {
    position: relative;
    display: block;
    float: right;
    width: 50%;
    background-repeat: no-repeat;
    height: 100%;
    background-size: cover;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
}

.largest-business__left {
    position: relative;
    display: block;
    z-index: 1;
    padding-top: 108px;
    padding-bottom: 110px;
    margin-right: 88px;
}

.largest-business__title {
    font-size: 50px;
    color: var(--thm-base);
    font-weight: 900;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: var(--thm-letter-space-small);
}



.largest-business__list-box li {
    position: relative;
    display: block;
    padding-left: 90px;
}

.largest-business__list-box li+li {
    margin-top: 49px;
}

.largest-business__icon {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 7px;
    left: 0;
    z-index: 1;
}

.largest-business__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(255, 255, 255, .10);
}

.largest-business__icon span {
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: var(--thm-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.largest-business__list-box li:hover .largest-business__icon span {
    transform: rotate(360deg);
}



.largest-business__list-box-title {
    font-size: 20px;
    color: var(--thm-base);
    line-height: 30px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.largest-business__list-box-text {
    font-size: 16px;
    color: #c3d4ff;
    margin: 0;
    line-height: 32px;
}

/*--------------------------------------------------------------
# Video Two
--------------------------------------------------------------*/
.video-two {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 2;
}



.video-two__img-box {
    position: relative;
    display: block;
    background-color: var(--thm-black);
}

.video-two__img-box>img {
    width: 100%;
    mix-blend-mode: luminosity;
}



.video-two__video-btn {
    height: 116px;
    width: 122px;
    background-color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-base);
    font-size: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 500ms ease;
}

.video-two__video-btn:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

.video-two__video-btn-icon .ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 122px;
    height: 116px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.video-two__video-btn-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-two__video-btn-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.video-two__video-btn-icon .ripple:before,
.video-two__video-btn-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 122px;
    height: 116px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}







/*--------------------------------------------------------------
# Listen
--------------------------------------------------------------*/
.listen {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    ;
    padding: 240px 0 120px;
    margin-top: -120px;
    z-index: 1;
}

.listen__left {
    position: relative;
    display: block;
    margin-right: 44px;
}

.listen__title {
    font-size: 50px;
    font-weight: 900;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-top: -12px;
}

.listen__text {
    font-size: 16px;
    margin: 0;
    padding-bottom: 49px;
}

.listen__progress {
    display: flex;
    align-items: center;
    line-height: 0;
}

.listen__progress-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

@media (min-width: 768px) {
    .listen__progress-wrap {
        /*grid-template-columns: repeat(2, 249px);*/
    }
}

.listen__progress-box {
    position: relative;
    display: inline-block;
}

.listen__progress-box canvas {
    transform: rotate(90deg);
}

.listen__progress-box span {
    position: absolute;
    top: 25%;
    left: 28%;
    display: block;
    transform: translateY(-50%) translateX(-50%);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: var(--thm-black);
}

.listen__progress h3 {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: var(--thm-black);
    width: 120px;
    margin-left: 20px;
    text-transform: uppercase;
    letter-spacing: var(--thm-letter-space-small);
}

.listen__right {
    position: relative;
    display: block;
}



.listen__right-faq .faq-one-accrodion .accrodion-title {
    background-color: var(--thm-base);
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
    position: relative;
    display: block;
    padding: 60px 0 90px; 
}

.team-one__container {
    position: relative;
    display: block;
    max-width: 1780px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.team-one .row {
    --bs-gutter-x: 60px;
}



.team-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-one__img {
    position: relative;
    display: block;
    z-index: 2;
    overflow: hidden;
}

.team-one__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-primary-rgb), .90);
    transform: translateY(100%);
    transition: all 500ms ease;
    z-index: 1;
}

.team-one__single:hover .team-one__img:before {
    transform: translateY(0);
}

.team-one__img {
   /* background-color: var(--thm-black);*/
}

.team-one__img>img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.team-one__hover-content {
    position: absolute;
    top: 40px;
    left: 35px;
    transform: translateX(-160%);
    transition: all 900ms ease;
    opacity: 0;
    z-index: 2;
}

.team-one__single:hover .team-one__hover-content {
    transform: translateX(0%);
    opacity: 1;
}

.team-one__name {
    font-size: 24px;
    color: var(--thm-base);
    line-height: 34px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: var(--thm-letter-space-small);
}

.team-one__title {
    font-size: 12px;
    color: var(--thm-base);
    line-height: 22px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: var(--thm-letter-space-big);
    opacity: .7;
}

.team-one__bottom {
    position: absolute;
    bottom: 50px;
    left: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    right: 50px;
    z-index: 2;
    transform: translateY(215%);
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__bottom {
    transform: translateY(0%);
}



.team-one__btn {
    font-size: 12px;
    color: var(--thm-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    transition: all 500ms ease;
	cursor: pointer;
}

.team-one__btn:hover {
    color: var(--thm-base);
}

.team-one__btn:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 2px;
    content: "";
    transition: width 500ms ease;
    background-color: currentColor;
}
 
.team-one__btn:hover:before {
    width: 100%;
}

.team-one__social {
    display: flex;
    align-items: center;
}

.team-one__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    font-size: 17px;
    transform: scale(1);
    transition: transform 500ms ease;
}

.team-one__social a+a {
    margin-left: 15px;
}

.success-msg{
	font-size:15px;
	color:#f69f03;
	margin-top:25px;
}
h4.subtitle {
    font-weight: 400;
}

.team-one__social a:hover {
    color: var(--thm-base);
    transform: scale(.85);
}


.msg-error {
    color: #ff0000;
    display: block;
    margin-bottom: 5px;
}
.g-recaptcha.error {
  border: solid 2px #c64848;
  padding: .2em;
  width: 19em;
}

/*--------------------------------------------------------------
# Testimonials Two
--------------------------------------------------------------*/
.testimonial-two {
    position: relative;
    display: block;
}

.testimonial-two__slider {
    position: relative;
    display: block;
    border-bottom: 4px solid var(--thm-primary);
    padding-bottom: 118px;
}

.testimonial-two__slider .slider-pager {
    position: relative;
    display: block
}





.testimonial-two__thumb-box li+li {
    margin-top: 10px;
}

.testimonial-two__thumb-box li a {
    position: relative;
    display: block
}

.testimonial-two__img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 500ms ease;
    cursor: pointer;
}

.testimonial-two__img-holder:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(var(--thm-base-rgb), .3);
    content: "";
    z-index: 1;
    transition: all 500ms ease;
}

.testimonial-two__thumb-box .swiper-slide-thumb-active .testimonial-two__img-holder:before {
    background-color: rgba(var(--thm-base-rgb), .0);
}

.testimonial-two__img-holder {
    width: 92px;
    height: 92px;
    border-radius: 50%;
}

.testimonial-two__img-holder img {
    width: 92px;
    border-radius: 50%;
    transition: all 0.5s ease-in-out 0.6s;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.testimonials-two__main-content {
    position: relative;
    display: block;
}

.testimonial-two__slider .bx-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
}

.testimonial-two__slider .bx-wrapper .bx-viewport {
    box-shadow: none;
    border: 0px solid;
    left: 0px;
    background: transparent;
    transform: translatez(0);
}


.testimonial-two__conent-box {
    position: relative;
    display: block;
    margin-top: -11px;
}

.testimonial-two__text {
    font-size: 34px;
    color: var(--thm-black);
    font-weight: 400;
    line-height: 54px;
    margin: 0;
}

.testimonial-two__client-details {
    position: relative;
    display: block;
    padding-top: 37px;
}

.testimonial-two__client-name {
    font-size: 18px;
    color: var(--thm-primary);
    text-transform: uppercase;
    line-height: 28px;
    margin-bottom: 6px;
    font-weight: 800;
    letter-spacing: var(--thm-letter-space-small);
}

.testimonial-two__clinet-title {
    font-size: 12px;
    color: var(--thm-gray);
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    display: block;
    letter-spacing: var(--thm-letter-space-big);
}

.testimonial-two__nav {
    position: absolute;
    bottom: 0;
    right: 0;
}



.testimonial-two__nav-list #testimonials-one__carousel__swiper-button-next,
.testimonial-two__nav-list #testimonials-one__carousel__swiper-button-prev {
    height: 60px;
    width: 60px;
    display: inline-block;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}

.testimonial-two__nav-list [class*=swiper-button-] i {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thm-light);
    border-radius: 50%;
    color: var(--thm-black);
    transition: all 500ms ease;
    position: static;
}

.testimonial-two__nav-list [class*=swiper-button-] i:hover {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}

.testimonial-two__nav-list [class*=swiper-button-]::after {
    display: none;
}

.testimonial-two__nav-list [class*=swiper-button-] .icon-right-arrow1.icon-prev {
    position: relative;
    display: block;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
}


#testimonials-one__thumb {
    width: 92px;
    height: 300px;
}

.testimonials-one--page {
    padding: 120px;
    padding-bottom: 160px;
}

.testimonials-one--page .row {
    --bs-gutter-y: 70px;
}



/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/


.news-two:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 367px;
    content: "";
    background-color: var(--thm-black);
    z-index: -1;
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: -367px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.02;
    z-index: -1;
}

/*--------------------------------------------------------------
# Two Section
--------------------------------------------------------------*/
.two-section {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.two-section__left {
    position: relative;
    display: block;
    margin-right: 60px;
}

.two-section__img-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 78px;
}



.two-section__img-box-single+.two-section__img-box-single {
    margin-left: 10px;
}

.two-section-img {
    position: relative;
    display: block;
    background-color: var(--thm-black);
}

.two-section-img>img {
    max-width: 300px;
    width: 100%;
    mix-blend-mode: luminosity;
}

.two-section__points {
    position: absolute;
    display: flex;
    align-items: center;
    background-color: var(--thm-base);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 30px;
    padding-right: 35px;
    bottom: -30px;
    left: 10px;
}



.two-section__points .icon span {
    color: var(--thm-primary);
    font-size: 20px;
}

.two-section__points .text {
    margin-left: 15px;
}

.two-section__points .text p {
    font-size: 14px;
    color: var(--thm-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--thm-letter-space-small);
    margin: 0;
}

.two-section__left-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 60px;
    text-transform: uppercase;
    letter-spacing: var(--thm-letter-space-small);
}

.two-section__middle-content {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 46px;
    padding-bottom: 44px;
}



.two-section__middle-content-icon span {
    font-size: 65px;
    color: var(--thm-primary);
}

.two-section__middle-content-icon h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: var(--thm-letter-space-small);
    padding-top: 18px;
}

.two-section__middle-content-text-box {
    margin-left: 55px;
}

.two-section__middle-content-text {
    font-size: 16px;
    margin: 0;
}

.two-section__bottom-text-box {
    font-size: 16px;
    margin: 0;
}

.two-section__right {
    position: relative;
    display: block;
    margin-left: -10px;
}

.contact-expert {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    ;
    padding: 72px 80px 80px;
}

.contact-expert__top-title {
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 34px;
}

.contact-expert__title {
    font-size: 30px;
    font-weight: 900;
    line-height: 35px;
    text-transform: uppercase;
    margin-bottom: 13px;
}





.contact-expert__input {
    position: relative;
    display: block;
}

.contact-expert__input input[type="email"],
.contact-expert__input input[type="text"],
.contact-expert__input textarea {
    width: 100%;
    height: 70px;
    padding-left: 30px;
    padding-right: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--thm-gray);
    border: none;
    outline: none;
    display: block;
    margin-bottom: 10px;
    background-color: var(--thm-base);
    box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, .05);
}

.contact-expert__input textarea {
    height: 140px;
    padding-top: 16px;
    padding-bottom: 20px;
}

.contact-expert__icon {
    position: absolute;
    top: 50%;
    right: 30px;
    bottom: 0;
    transform: translateY(-50%);
}

.contact-expert__icon i {
    font-size: 14px;
    color: var(--thm-gray);
}

.contact-expert__icon-comment {
    top: 54px;
}

.contact-expert__btn {
    font-size: 14px;
    color: var(--thm-base);
    background-color: var(--thm-primary);
    border: none;
    outline: none;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 86px;
    letter-spacing: 0.1em;
    transition: all 500ms ease;
    width: 100%;
}

.contact-expert__btn:hover {
    background-color: var(--thm-black);
}

/*--------------------------------------------------------------
# CTA Two
--------------------------------------------------------------*/
.cta-two {
    position: relative;
    display: block;
    border-top: 1px solid #e6e9ef;
    padding: 108px 0 120px;
}

.cta-two-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.cta-two-bg-overly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .90);
}

.cta-two__inner {
    position: relative;
    display: block;
    text-align: center;
}

.cta-two__title {
    font-size: 50px;
    color: var(--thm-primary);
    font-weight: 900;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: var(--thm-letter-space-small);
}

.cta-two__text {
    font-size: 24px;
    margin: 0;
}

.cta-two__icon-box {
    position: relative;
    display: block;
    padding-top: 35px;
}

.cta-two__icon-box li {
    position: relative;
    display: inline-block;
}

.cta-two__icon-box li+li {
    margin-left: 5px;
}

.cta-two__icon-box li a {
    height: 77px;
    width: 77px;
    background-color: var(--thm-black);
    font-size: 35px;
    color: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 500ms ease;
}

.cta-two__icon-box li a:hover {
    background-color: var(--thm-primary);
}





/*--------------------------------------------------------------
# Feature
--------------------------------------------------------------*/
.feature {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    background-color: var(--thm-black);
}

.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.02;
}

.feature__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.feature__content {
    display: block;
    position: relative;
    background-color: var(--thm-base);
    padding: 45px 48px 50px;
    z-index: 1;
}

.feature__content:before {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    height: 10px;
    background-color: var(--thm-primary);
    content: "";
    transition: all 500ms ease;
    z-index: -1;
}

.feature__single:hover .feature__content:before {
    height: 100%;
}

.feature__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 25px;
    transition: all 500ms ease;
    letter-spacing: var(--thm-letter-space-small);
}

.feature__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 87% / 0px 2px no-repeat;
    transition: background 500ms ease;
}

.feature__title a:hover {
    color: var(--thm-base);
    background-size: 100% 2px;
}

.feature__single:hover .feature__title {
    color: var(--thm-base);
}

.feature__text {
    font-size: 16px;
    margin: 0;
    line-height: 32px;
    padding-bottom: 14px;
    transition: all 500ms ease;
}

.feature__single:hover .feature__text {
    color: var(--thm-base);
}

.feature__btn {
    position: relative;
    font-size: 12px;
    font-weight: 700;
    color: var(--thm-black);
    display: inline-block;
    text-transform: uppercase;
    transition: all 500ms ease;
    letter-spacing: var(--thm-letter-space-big);
}

.feature__btn:hover {
    color: var(--thm-black);
}

.feature__single:hover .feature__btn {
    color: var(--thm-base);
}

.feature__btn:before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 10px;
    content: "";
    background-color: currentColor;
    transition: all 500ms ease;
}

.feature__btn:hover::before {
    width: 100%;
}


.feature__img {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-black);
}

.feature__img>img {
    width: 100%;
    mix-blend-mode: luminosity;
    transition: all 500ms ease;
    transform: scale(1);
}

.feature__single:hover .feature__img>img {
    transform: scale(1.05);
}

.feature-bottom {
    position: relative;
    display: block;
    max-width: 760px;
    margin: 30px auto 0;
}

.feature-bottom__contact {
    position: relative;
    display: flex;
    align-items: center;
}

.feature-bottom__call {
    position: relative;
    display: block;
    background-color: var(--thm-black);
}

.feature-bottom__call>img {
    width: 67px;
    mix-blend-mode: luminosity;
}

.feature-bottom__icon {
    height: 62px;
    width: 62px;
    background-color: var(--thm-primary);
    color: var(--thm-base);
    font-size: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: -49px;
    transform: translateY(-50%);
}



.feature-bottom__content-box {
    margin-left: 85px;
}

.feature-bottom__tagline {
    font-size: 14px;
    color: #8f8da0;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.feature-bottom-desc {
    font-size: 22px;
    color: var(--thm-base);
    line-height: 32px;
    font-weight: 400;
}

/*--------------------------------------------------------------
# Cases Two
--------------------------------------------------------------*/
.cases-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}



.cases-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.casees-two__img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.cases-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-black);
}



.cases-two__img>img {
    width: 100%;
    mix-blend-mode: luminosity;
    transform: scale(1);
    transition: all 500ms ease;
    opacity: 0.7;
}

.cases-two__single:hover .cases-two__img>img {
    transform: scale(1.05);
}

.cases-two__content {
    position: absolute;
    display: block;
    padding: 40px 50px 40px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.cases-two__content:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--thm-primary);
    z-index: -1;
    top: 0;
    transform: translateY(100%);
    transition: all 500ms ease;
}

.cases-two__single:hover .cases-two__content:before {
    transform: translateY(0%);
}

.cases-two__icon-box-details {
    position: relative;
    display: block;
    float: left;
}



.cases-two__icon span {
    font-size: 65px;
    color: var(--thm-base);
    display: block;
    transform: scale(1);
    transform-origin: left center;
    transition: transform 500ms ease;
}

.cases-two__single:hover .cases-two__icon span {
    transform: scale(.85);
}

.cases-two__tagline {
    font-size: 14px;
    font-weight: 800;
    color: var(--thm-base);
    text-transform: uppercase;
    margin: 0;
    padding-top: 9px;
    padding-bottom: 12px;
    letter-spacing: 0.1em;
}

.cases-two__tilte {
    font-size: 30px;
    color: var(--thm-base);
    font-weight: 900;
    line-height: 34px;
    text-transform: uppercase;
    letter-spacing: var(--thm-letter-space-small);
}

.cases-two__tilte a {
    color: inherit;
    transition: all 500ms ease;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 87% / 0px 2px no-repeat;
}

.cases-two__tilte a:hover {
    color: inherit;
    background-size: 100% 2px;
}

.cases-two__tilte a {
    color: var(--thm-base);
}

.cases-two__tilte a:hover {
    color: var(--thm-base);
    transition: all 500ms ease;
}

.cases-two__text-box {
    position: relative;
    display: block;
    float: right;
    max-width: 215px;
    top: 95px;
}

.cases-two__text-bottom {
    font-size: 16px;
    margin: 0;
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    ;
    padding: 120px 0 92px;
}

.services-two__top-left {
    position: relative;
    display: block;
}



.services-two__top-right {
    position: relative;
    display: block;
    margin-left: 70px;
    margin-top: -10px;
}

.services-two__top-right-text {
    font-size: 16px;
    margin: 0;
}

.services-two__single {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 4%);
    margin-bottom: 60px;
    padding: 50px 50px 62px;
}



.services-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--thm-primary);
    transform: scale(1);
    transition: all 200ms linear;
}

.services-two__single:hover .services-two__icon span {
    transform: scale(.85);
}

.services-two__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 34px;
    text-transform: uppercase;
    margin-bottom: 28px;
    margin-top: 14px;
    letter-spacing: var(--thm-letter-space-small);
}

.services-two__title a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 87% / 0px 2px no-repeat;
    color: var(--thm-black);
}

.services-two__title a:hover {
    background-size: 100% 2px;
    color: var(--thm-primary);
    transition: all 500ms ease;
}

.services-two__text {
    font-size: 16px;
    margin: 0;
}

.services-two__arrow {
    height: 65px;
    width: 65px;
    position: absolute;
    bottom: -32px;
    left: 50px;
    border-radius: 50%;
    background-color: var(--thm-base);
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 4%);
    color: var(--thm-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 500ms ease;
}



.services-two__single:hover .services-two__arrow {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Financial
--------------------------------------------------------------*/
.financial {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}



.financial__left {
    position: relative;
    display: block;
}

.financial__left-img-box {
    position: relative;
    display: block;
}

.financial__left-img {
    position: relative;
    display: block;
    background-color: var(--thm-black);
}

.financial__left-img>img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.financial__left-note-box {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    text-align: center;
    padding: 40px 66px 39px;
    margin-top: 30px;
}

.financial__left-note-title {
    font-size: 30px;
    color: var(--thm-base);
    font-weight: 700;
    line-height: 43px;
    letter-spacing: var(--thm-letter-space-small);
    text-transform: uppercase;
}

.financial__right {
    position: relative;
    display: block;
    margin-left: 72px;
    margin-top: -10px;
}



.financial__right-text {
    font-weight: 400;
    margin: 0;
}

.financial__right__list {
    position: relative;
    display: block;
    border-top: 1px solid #e6e9ef;
    margin-top: 54px;
    padding-top: 50px;
}

.financial__right__list li {
    position: relative;
    display: block;
    color: var(--thm-black);
    padding-left: 40px;
}

.financial__right__list li:before {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    width: 10px;
    content: "";
    background-color: var(--thm-primary);
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.financial__right__list li:hover::before {
    left: 10px;
    width: 18px;
}

.financial__right__list li+li {
    margin-top: 9px;
}

/*--------------------------------------------------------------
# Reasons
--------------------------------------------------------------*/
.reasons {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.reasons .container {
    position: relative;
    display: block;
}

.reasons-bg {
    position: absolute;
    top: -120px;
    left: -10000000px;
    right: 0;
    bottom: -120px;
    background-color: var(--thm-light);
    ;
}

.reasons__left {
    position: relative;
    display: block;
    margin-right: 55px;
    margin-top: -12px;
}

.reasons__title {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 60px;
    margin-bottom: 48px;
    letter-spacing: var(--thm-letter-space-small);
}

.reasons__list-box {
    position: relative;
    display: block;
}

.reasons__list-box li {
    position: relative;
    display: block;
        padding-left: 80px;
    margin-top: 30px;
    padding-bottom: 27px;
    padding-top: 12px;
}

.reasons__list-box li:before {
    position: absolute;
    bottom: 0;
   /* left: 100px;*/
    right: 0;
    content: "";
    height: 1px;
    background-color: rgba(var(--thm-black-rgb), .1);
}

.reasons__list-box li:after { 
    position: absolute;
    top: 58px;
    bottom: -50px;
    left: 29px;
    width: 1px;
    content: "";
    background-color: var(--thm-primary);
}

@media(max-width: 768px) {
    .reasons__list-box li:after {
        display: none;
    }
}

.reasons__list-box li:last-child:after {
    display: none;
}

.reasons__list-box li:first-child {
    margin-top: 0;
}

.reasons__list-box li:last-child {
    padding-bottom: 0px;
}

.reasons__list-box li:last-child:before {
    display: none;
}

.reasons__icon {
    height: 58px;
    width: 58px;
    background-color: var(--thm-primary);
    border-radius: 50%;
    color: var(--thm-base);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 500ms ease;
}

.reasons__list-box li:hover .reasons__icon {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

.reasons__icon span {
    display: block;
    transform: scale(1);
    transition: transform 500ms ease;
}

.reasons__list-box li:hover .reasons__icon span {
    transform: scale(.85);
}



.reasons__content-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-top: 12px;
}

.reasons__content-text {
    font-size: 16px;
    margin: 0;
}

.reasons__img-box {
    position: relative;
    display: block;
}

.reasons__img {
    position: relative;
    display: block;
    margin-right: -375px;
    background-color: var(--thm-black);
}

.reasons__img>img {
    width: 100%;
    mix-blend-mode: luminosity;
}

/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-three {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    padding: 65px 0;
    border-top: 1px solid #e6e9ef;
}

.brand-three .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-three .swiper-slide img {
    transition: 500ms;
    max-width: 100%;
    /*opacity: 0.3;*/
}

.brand-three .swiper-slide img:hover {
    opacity: 0.7;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 244px 0 139px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: var(--thm-black);
}

.page-header__bg {
    background-image: url(/assets/images/about-bg.jpg);
    background-size: cover;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}.about-page-header-bg {
    background-image: url(/assets/images/about-us-banner.jpg); 
    background-size: cover;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.industries-page-header-bg {
    background-image: url(/assets/images/pharma-slide1.jpg);
    background-size: cover;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.service1-page-header-bg {
    background-image: url(/assets/images/service-banner.jpg);
    background-size: cover;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.service2-page-header-bg {
    background-image: url(/assets/images/service2.jpg);
    background-size: cover;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.process-eqp-page-header-bg {
    background-image: url(/assets/images/process-equipment-banner.png);
    background-size: cover;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.client-page-header-bg {
    background-image: url(/assets/images/client-banner.png);
    background-size: cover;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.contact-page-header-bg {
    background-image: url(/assets/images/contact-us-banner.jpg);
    background-size: cover;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.event-page-header-bg {
    background-image: url(/assets/images/events-banner.png); 
    background-size: cover; 
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    z-index: 3;
}

.thm-breadcrumb {
    padding-top: 3px;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 500ms ease;
    letter-spacing: var(--thm-letter-space-big);
}

.thm-breadcrumb li+li {
    margin-left: 8px;
}

.thm-breadcrumb li a {
    color: var(--thm-base);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
    color: var(--thm-primary);
}



.page-header__inner h2 {
    font-size: 50px;
    color: var(--thm-base);
    line-height: 52px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: var(--thm-letter-space-small);
}

/*Services Page*/


.services-page:before {
    display: none;
}

[class*=page-header-shape-] {
    position: absolute;
    width: 697px;
    height: 100%;
    background-repeat: no-repeat;
    right: 0;
    bottom: 0;
}

.page-header-shape-1 {
    background-image: url(../images/shapes/page-header-bg-1.png);
    z-index: 10;
    mix-blend-mode: overlay;
}

.page-header-shape-2 {
    background-image: url(../images/shapes/page-header-bg-2.png);
    z-index: 9;
    mix-blend-mode: overlay;
    opacity: 0.4;
}

.page-header-shape-3 {
    background-image: url(../images/shapes/page-header-bg-3.png);
    z-index: 8;
    mix-blend-mode: overlay;
    opacity: 0.4;
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.services-details {
    position: relative;
    display: block;
    padding: 100px 0 0px;
}

.services-details__left {
    position: relative;
    display: block;
}

.services-details__img {
    position: relative;
    display: block;
	width: 90%;
    margin: 0 auto;
}

.services-details__img>img {
    /*mix-blend-mode: luminosity;*/
	width: 100%;
}

.services-details__top-content {
    margin-top: 0px; 
    margin-bottom: 53px;
}

.services-details__top-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 46px;
    margin-bottom: 18px;
    letter-spacing: var(--thm-letter-space-small);
} 

.services-details__top-text {
    font-size: 16px;
    margin: 0;
}

.services-details__planning {
    position: relative;
    display: flex;
}

.services-details__planning-img {
    background-color: var(--thm-black);
}

.services-details__planning-img>img {
    width: 354px;
    mix-blend-mode: luminosity;
}

.services-details__planning-content {
    margin-left: 45px;
    margin-top: -8px;
}

.services-details__planning-title {
    font-size: 24px;
    letter-spacing: var(--thm-letter-space-small);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 34px;
    margin-bottom: 20px;
}

.services-details__planning-text {
    font-size: 16px;
    margin: 0;
}

.services-details__planning-list {
    padding-top: 33px;
}

.services-details__planning-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.services-details__planning-list li+li {
    margin-top: 7px;
}

.services-details__planning-list li .icon {
    position: relative;
    top: 3px;
}

.services-details__planning-list li .icon span {
    color: var(--thm-primary);
    font-size: 20px;
    display: block;
    transform: scale(1);
    transition: transform 500ms ease;
}

.services-details__planning-list li:hover .icon span {
    transform: scale(.75);
}

.services-details__planning-list li .text {
    margin-left: 15px;
}

.services-details__planning-list li .text p {
    margin: 0;
    color: var(--thm-black);
}

.services-details__bottom-text {
    font-size: 16px;
    margin: 0;
    line-height: 32px;
    padding-top: 50px;
}

.services-details__bottom-box {
    position: relative;
    margin-top: 47px;
}

.services-details__bottom-box-single {
    position: relative;
    display: flex;
}

.services-details__bottom-box-single+.services-details__bottom-box-single {
    margin-top: 47px;
}

.services-details__bottom-box-icon span {
    font-size: 65px;
    color: var(--thm-primary);
    display: block;
    transform: scale(1);
    transition: transform 500ms ease;
}

.services-details__bottom-box-single:hover .services-details__bottom-box-icon span {
    transform: scale(.85);
}

.services-details__bottom-box-content {
    margin-left: 30px;
    margin-top: -5px;
}

.services-details__bottom-box-title {
    font-size: 18px;
    letter-spacing: var(--thm-letter-space-small);
    font-weight: 800;
    line-height: 28px;
    text-transform: uppercase;
    margin-bottom: 34px;
}

.services-details__bottom-box-text {
    font-size: 16px;
    margin: 0;
    line-height: 32px;
}



.services-details__sidebar {
    position: relative;
    display: block;
}

.services-details__services-list-box {
    position: relative;
    display: block;
    padding: 43px 30px 34px;
}

.services-detials__categories {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 30px;
    margin-bottom: 7px;
    padding: 20px;
	 background-color: var(--thm-light);
}
.services-details__services-list li:hover{
	background-color: var(--thm-light);
}

.services-details__services-list {
    position: relative;
    display: block;
}

.services-details__services-list li {
    position: relative;
    display: block;
	border-bottom: 1px solid #00608d;
    padding: 5px 0;
}

.services-details__services-list li+li {
    margin-top: 5px;
}

.services-details__services-list li a {
    position: relative;
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    display: block;
    padding: 4.5px 20px 0 0;
    transition: all 500ms ease;
}

.services-details__services-list li:hover a {
    background-color: var(--thm-base);
    color: var(--thm-black);
}

.services-details__services-list li span {
    position: relative;
    left: 88%;
    bottom: 25px;
    display: flex;
    align-items: center;
    transition: all 500ms ease;
    font-size: 20px;
    transform: scale(0); 
}

.services-details__services-list li.active span,
.services-details__services-list li:hover span {
    color: var(--thm-primary);
    transform: scale(1);
}

.services-details__help-box {
    position: relative;
    display: block;
    padding: 43px 50px 41px;
    margin-top: 30px;
    background-color: var(--thm-primary);
}

.services-details__help-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    background-color: var(--thm-primary);
    background-blend-mode: luminosity;
    opacity: 0.1;
}


.services-details__help-box-title {
    font-size: 20px;
    color: var(--thm-base);
    text-transform: uppercase;
    line-height: 30px;
    font-weight: 800;
    margin-bottom: 33px;
    z-index: 10;
    position: relative;
}

.services-details__help-box-text {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #c3d4ff;
    position: relative;
    z-index: 10;
    line-height: 32px;
    margin-bottom: 31px;
}

.services-details__phone {
    color: var(--thm-base);
    font-size: 24px;
    font-weight: 400;
    display: block;
    position: relative;
    transition: all 500ms ease;
    z-index: 10;
}

.services-details__phone:hover {
    color: var(--thm-black);
}

/*Cases Page*/
.cases-page {
    margin-top: 0;
    padding-top: 120px;
}

/*--------------------------------------------------------------
# Cases Details
--------------------------------------------------------------*/
.cases-details {
    position: relative;
    display: block;
    padding-top: 120px;
}

.cases-details__img {
    position: relative;
    display: block;
    margin-bottom: 50px;
    background-color: var(--thm-black);
}

.cases-details__img>img {
    width: 100%;
    mix-blend-mode: luminosity;
}


.cases-details__icon span {
    font-size: 65px;
    color: var(--thm-primary);
}

.cases-details__title {
    font-size: 36px;
    font-weight: 800;
    line-height: 46px;
    text-transform: uppercase;
    margin-top: 13px;
    margin-bottom: 20px;
    letter-spacing: var(--thm-letter-space-small);
}

.cases-details__text-1 {
    font-size: 16px;
    margin: 0;
    line-height: 32px;
    padding-bottom: 30px;
}

.cases-details__text-2 {
    font-size: 16px;
    margin: 0;
    line-height: 32px;
}



.cases-details__right-list {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    ;
    padding: 43px 50px 39px;
}

.cases-details__right-list li+li {
    margin-top: 26px
}

.cases-details__right-list li p {
    font-weight: 700;
    margin: 0;
    color: var(--thm-black);
    text-transform: uppercase;
    line-height: 28px;
    letter-spacing: var(--thm-letter-space-small);
}

.cases-details__right-list li span {
    font-weight: 400;
}


.cases-details__pagination-box {
    position: relative;
    display: block;
    text-align: center;
    border-top: 1px solid #e6e9ef;
    border-bottom: 1px solid #e6e9ef;
    padding: 48px 0;
    margin-top: 109px;
}



.cases-details__pagination li {
    display: inline-block;
}

.cases-details__pagination li.next {
    float: left;
    position: relative;
}

.cases-details__pagination li a {
    font-size: 12px;
    color: var(--thm-black);
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: all 500ms ease;
    letter-spacing: var(--thm-letter-space-big);
}

.cases-details__pagination li a:hover {
    color: var(--thm-primary);
}

.cases-details__pagination li.next i {
    position: relative;
    transform: rotate(180deg);
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
}

.cases-details__pagination li.previous {
    position: relative;
    float: right;
}

.cases-details__pagination li.previous i {
    margin-left: 10px;
    font-size: 20px;
}

/*More Cases*/
.more-cases {
    margin-top: 0;
    padding-top: 120px;
    background-color: var(--thm-base);
}

/*--------------------------------------------------------------
# Blog Single
--------------------------------------------------------------*/
.blog-single {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.blog-single__left {
    position: relative;
    display: block;
}

.blog-single__content {
    position: relative;
    display: block;
}

.blog-single__content-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.blog-single__content-img {
    position: relative;
    display: block;
    background-color: var(--thm-black);
}

.blog-single__content-img>img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.blog-single__date-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--thm-primary);
    padding: 0 20px;
}

.blog-single__date-box p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: var(--thm-letter-space-big);
    color: var(--thm-base);
}

.blog-single__content-box {
    position: relative;
    display: block;
    margin-top: 20px;
}

.blog-single__meta {
    display: flex;
    align-items: center;
    margin: 0;
}

.blog-single__meta li {
    font-size: 12px;
    color: var(--thm-gray);
    font-weight: 600;
    letter-spacing: var(--thm-letter-space-big);
    text-transform: uppercase;
}

.blog-single__meta li+li {
    margin-left: 12px;
}

.blog-single__meta li a {
    color: var(--thm-gray);
    transition: all 500ms ease;
}

.blog-single__meta li a:hover {
    color: var(--thm-primary);
}

.blog-single__meta li a i {
    color: var(--thm-primary);
}

.blog-single__title {
    font-size: 34px;
    font-weight: 700;
    line-height: 46px;
    text-transform: uppercase;
    margin-top: 9px;
    margin-bottom: 20px;
    letter-spacing: var(--thm-letter-space-small);
}

.blog-single__title a {
    color: var(--thm-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 87% / 0px 2px no-repeat;
    transition: all 500ms ease;
}

.blog-single__title a:hover {
    background-size: 100% 2px;
    color: var(--thm-primary);
}

.blog-single__text {
    font-size: 16px;
    margin: 0;
    line-height: 32px;
    padding-bottom: 15px;
}

.blog-single__btn {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--thm-black);
    transition: all 500ms ease;
}

.blog-single__btn:before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 10px;
    content: "";
    background-color: currentColor;
    transition: all 500ms ease;
}

.blog-single__btn:hover:before {
    width: 100%;
}

.blog-single__video-btn {
    position: absolute;
    height: 100px;
    width: 100px;
    background-color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color: var(--thm-base);
    font-size: 20px;
    transition: all 500ms ease;
}

.blog-single__video-btn:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

.blog-single__bottom-box {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    ;
    padding: 50px 60px 50px;
}

.blog-single__bottom-box-icon {
    margin-bottom: 19px;
}

.blog-single__bottom-box-icon>img {
    width: 59px;
}

.blog-single__bottom-box-text {
    margin: 0;
}

.blog-single__delivering-services {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    ;
    padding: 60px 60px 50px;
    margin-top: 30px;
}



.blog-single__delivering-services-icon>img {
    width: 37px;
}

.blog-single__delivering-services-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
    text-transform: uppercase;
    margin-top: 30px;
}

.blog-single__delivering-services-title a {
    color: var(--thm-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 87% / 0px 2px no-repeat;
    transition: all 500ms ease;
}

.blog-single__delivering-services-title a:hover {
    background-size: 100% 2px;
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    margin: 0;
    font-size: 20px;
    margin-bottom: 23px;
    font-weight: 800;
    letter-spacing: var(--thm-letter-space-small);
    text-transform: uppercase;
}

.sidebar__search {
    position: relative;
    display: block;
}

.sidebar__search-form {
    position: relative;
}

.sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--thm-primary);
    color: var(--thm-base);
    font-size: 18px;
    font-weight: 500;
    padding-left: 50px;
    height: 84px;
    border-radius: 0px;
    width: 100%;
    padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form ::placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--thm-base);
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--thm-base);
}

.sidebar__search-form button[type="submit"] {
    background-color: transparent;
    color: var(--thm-base);
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 25px;
    bottom: 0;
    width: 60px;
    outline: none;
    border: none;
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 45px 30px 20px;
    background-color: var(--thm-light);
    ;
}

.sidebar__post .sidebar__title {
    padding-left: 20px;
    margin-bottom: 3px;
}

.sidebar__post-list {
    margin: 0;
}

.sidebar__post-list li {
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 14px;
    padding-bottom: 15px;
    background-color: transparent;
    transition: all 500ms ease;
}

.sidebar__post-list li:hover {
    background-color: var(--thm-base);
}

.sidebar__post-list li+li {
    margin-top: 9px;
}

.sidebar__post-image {
    background-color: var(--thm-black);
    margin-right: 20px;
}

.sidebar__post-image>img {
    width: 70px;
    border-radius: 0px;
    mix-blend-mode: luminosity;
}

.sidebar__post-content h3 {
    color: var(--thm-black);
    font-size: 18px;
    margin: 0;
    line-height: 28px;
    font-weight: 400;
}

.sidebar__post-content .sidebar__post-content_meta {
    color: var(--thm-gray);
    font-size: 12px;
    display: block;
    font-weight: 600;
    letter-spacing: var(--thm-letter-space-big);
    text-transform: uppercase;
}

.sidebar__post-content .sidebar__post-content_meta i {
    margin-right: 5px;
    color: var(--thm-primary);
}

.sidebar__post-content h3 {
    text-transform: unset;
}

.sidebar__post-content h3 a {
    font-size: 16px;
    color: var(--thm-black);
    transition: all 500ms ease;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: var(--thm-letter-space-small);
}

.sidebar__post-content h3 a:hover {
    color: var(--thm-primary);
}

.sidebar__category {
    position: relative;
    display: block;
    background: var(--thm-light);
    ;
    padding: 46px 30px 34px;
}

.sidebar__category .sidebar__title {
    padding-left: 20px;
    margin-bottom: 9px;
}

.sidebar__category-list {
    margin: 0;
}

.sidebar__category-list li+li {
    margin-top: 3px;
}

.sidebar__category-list li a {
    color: var(--thm-gray);
    font-size: 16px;
    position: relative;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 5px 20px;
    border-radius: 0px;
}

.sidebar__category-list li a:hover {
    background-color: var(--thm-base);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
    color: var(--thm-black);
}

.sidebar__category-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 500ms ease;
    color: var(--thm-primary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    opacity: 0;
}

.sidebar__category-list li a:hover span {
    opacity: 1;
}

.sidebar__tags {
    position: relative;
    display: block;
    background: var(--thm-light);
    ;
    padding: 47px 45px 50px;
}

.sidebar__tags-list {
    margin-top: -10px;
}

.sidebar__tags-list a {
    font-size: 12px;
    color: var(--thm-gray);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: var(--thm-base);
    display: inline-block;
    letter-spacing: var(--thm-letter-space-big);
    padding: 5px 20px;
    margin-left: 5px;
}

.sidebar__tags-list a+a {
    margin-left: 5px;
    margin-top: 10px;
}

.sidebar__tags-list a:hover {
    color: var(--thm-base);
    background: var(--thm-primary);
}

.sidebar__comments {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    ;
    padding: 47px 50px 43px;
}

.sidebar__comments-list {
    position: relative;
    display: block;
}

.sidebar__comments-list li {
    position: relative;
    display: block;
    padding-left: 65px;
}

.sidebar__comments-list li+li {
    margin-top: 23px;
}

.sidebar__comments-icon {
    height: 45px;
    width: 45px;
    background-color: var(--thm-black);
    border-radius: 50%;
    font-size: 15px;
    color: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
}

.sidebar__comments-icon:hover {
    background-color: var(--thm-primary);
}





.sidebar__comments-text-box p {
    font-size: 16px;
    margin: 0;
    line-height: 26px;
}

.sidebar__comments-text-box h5 {
    font-size: 16px;
    color: var(--thm-black);
    line-height: 26px;
}

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.news-details__left {
    position: relative;
    display: block;
}

.news-details__img {
    position: relative;
    display: block;
    background-color: var(--thm-black);
}

.news-details__img>img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.news-details__date-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--thm-primary);
    padding: 0px 20px;
    z-index: 1;
}

.news-details__date-box p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--thm-base);
    margin: 0;
    letter-spacing: 0.1em;
}

.news-details__content {
    position: relative;
    display: block;
    margin-top: 19px;
}

.news-details__meta {
    display: flex;
    align-items: center;
    margin: 0;
}

.news-details__meta li {
    font-size: 12px;
    color: var(--thm-gray);
    font-weight: 600;
    text-transform: uppercase;
}

.news-details__meta li+li {
    margin-left: 12px;
}

.news-details__meta li a {
    color: var(--thm-gray);
    transition: all 500ms ease;
}

.news-details__meta li a i {
    color: var(--thm-primary);
}

.news-details__title {
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 7px;
}

.news-details__text-one {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding-bottom: 33px;
    line-height: 32px;
}

.news-details__text-two {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding-bottom: 33px;
    line-height: 32px;
}

.news-details__text-three {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 32px;
}

.news-details__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #e6e9ef;
    padding: 30px 0 30px;
    margin-top: 55px;
}

.news-details__bottom p {
    margin: 0;
}



.news-details__tags span {
    color: var(--thm-black);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}

.news-details__tags a {
    color: var(--thm-base);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--thm-primary);
    display: inline-block;
    padding: 5px 20px;
    letter-spacing: 0.1em;
    transition: all 500ms ease;
}

.news-details__tags a:hover {
    background-color: var(--thm-black);
}

.news-details__tags a+a {
    margin-left: 5px;
}

.news-details__social-list {
    display: flex;
    align-items: center;
}

.news-details__social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-gray);
    font-size: 18px;
    transition: all 500ms ease;
}

.news-details__social-list a+a {
    margin-left: 30px;
}

.news-details__social-list a:hover {
    color: var(--thm-primary);
}

/* author */

.author-one {
    background-color: var(--thm-light);
    ;
    padding: 60px 60px 60px;
    display: flex;
    margin-bottom: 54px;
}

.author-one__image {
    width: 172px;
    background-color: var(--thm-black);
}

.author-one__image img {
    width: 172px;
    mix-blend-mode: luminosity;
}

.author-one__content {
    margin-left: 40px;
    margin-top: -8px;
}

.author-one__content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 18px;
    letter-spacing: var(--thm-letter-space-small);
}

.author-one__content p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    margin-top: 13px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-one__title,
.comment-form__title {
    margin: 0;
    color: var(--thm-black);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 51px;
    text-transform: uppercase;
    letter-spacing: var(--thm-letter-space-small);
}

.comment-one__single {
    display: flex;
    border-bottom: 1px solid #e6e9ef;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.comment-one__content {
    position: relative;
    margin-left: 45px;
}

.comment-one__content h3 {
    margin: 0;
    font-size: 20px;
    color: var(--thm-black);
    font-weight: 800;
    margin-bottom: 36px;
    text-transform: uppercase;
    letter-spacing: var(--thm-letter-space-small);
}

.comment-one__content p {
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    line-height: 30px;
}

.comment-one__btn {
    font-size: 12px;
    color: var(--thm-base);
    line-height: 40px;
    padding: 2px 20px;
    font-weight: 700;
    letter-spacing: var(--thm-letter-space-big);
    position: absolute;
    top: 0;
    right: 0;
}

.comment-one__btn:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
    overflow: hidden;
}

.comment-one__image img {
    border-radius: 50%;
    mix-blend-mode: luminosity;
}

.comment-form .comment-form__title {
    margin-top: -6px;
}



.comment-form__input-box {
    position: relative;
    display: block;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    height: 70px;
    width: 100%;
    border: none;
    background: var(--thm-light);
    ;
    padding-left: 30px;
    padding-right: 60px;
    margin-bottom: 30px;
    border-radius: 0px;
    outline: none;
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 500;
    display: block;
}

.comment-form__icon {
    position: absolute;
    top: 50%;
    right: 30px;
    bottom: 0;
    transform: translateY(-50%);
}

.comment-form__icon i {
    font-size: 14px;
    color: var(--thm-gray);
}

.contact-expert__icon-comment {
    top: 20px;
    transform: inherit;
}

.comment-form__input-box textarea {
    font-size: 14px;
    color: var(--thm-gray);
    height: 140px;
    width: 100%;
    background: var(--thm-light);
    padding: 20px 30px 30px;
    border: none;
    border-radius: 0px;
    outline: none;
    margin-bottom: 20px;
    font-weight: 500;
	display: block;
}

.comment-form__btn:hover {
    background: var(--thm-black);
    color: var(--thm-base);
}

/*--------------------------------------------------------------
## Message Box
--------------------------------------------------------------*/
.message-box {
    position: relative;
    display: block;
    padding: 75px 0 50px; 
}





.message-box__left .section-title__title {
	font-size: 40px;
    line-height: 30px;
}

.message-box__left .section-title__tagline {
    letter-spacing: 0;
}

.message-box__social {
    display: flex;
    align-items: center;
}

.message-box__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #8f8da0;
    font-size: 17px;
    transition: all 500ms ease;
}

.message-box__social a+a {
    margin-left: 25px;
}

.message-box__social a:hover {
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
## Locations
--------------------------------------------------------------*/
.locations {
    position: relative;
    display: block;
    padding-bottom: 90px;
}



.locations .section-title__tagline {
    letter-spacing: 0;
}

.location__inner {
    position: relative;
    display: block;
    border-top: 1px solid #e6e9ef;
    padding-top: 120px;
}

.locations .row {
    --bs-gutter-x: 17px;
}

.locations__single {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    padding: 40px 30px 40px;
    margin-bottom: 30px;
    transition: all 500ms ease;
	min-height: 300px;
}

.locations__single:hover {
    background-color: var(--thm-primary);
}

.locations__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 33px;
    letter-spacing: var(--thm-letter-space-small);
    transition: all 500ms ease;
}

.locations__single:hover .locations__title {
    color: var(--thm-base);
}

.locations__text {
    font-size: 16px;
    margin: 0;
    line-height: 30px;
    transition: all 500ms ease;
}

.locations__single:hover .locations__text {
    color: var(--thm-base);
}

.locations__mail-phone-box {
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    line-height: 30px;
}

.locations__mail {
    color: var(--thm-gray);
    display: block;
    transition: all 500ms ease;
}

.locations__single:hover .locations__mail {
    color: var(--thm-base);
}

.locations__mail:hover {
    color: var(--thm-black);
}

.locations__phone {
    color: var(--thm-gray);
    display: block;
    transition: all 500ms ease;
}

.locations__single:hover .locations__phone {
    color: var(--thm-base);
}

.locations__phone:hover {
    color: var(--thm-black);
}

/*--------------------------------------------------------------
## About
--------------------------------------------------------------*/
.about {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.about__img-box {
    position: relative;
    display: block;
}

.about-img {
    position: relative;
    display: block;
    background-color: var(--thm-black);
}

.about-img>img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.about__right {
    position: relative;
    display: block;
    margin-left: 68px;
}

.about__title {
    font-size: 50px;
    font-weight: 900;
    line-height: 60px;
    text-transform: uppercase;
    margin-top: -12px;
    letter-spacing: var(--thm-letter-space-small);
}

.about__icon-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 35px;
}



.about__icon span {
    font-size: 65px;
    color: var(--thm-primary);
}

.about__icon-text {
    margin-left: 30px;
}

.about__icon-text p {
    font-weight: 600;
    color: var(--thm-black);
    margin: 0;
}

.about__right-text {
    font-weight: 400;
    margin: 0;
    padding-bottom: 49px;
}

.about__phone-contact {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.about__phone-contact-icon {
    height: 68px;
    width: 68px;
    background-color: #ebf1ff;
    font-size: 35px;
    color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.about__phone-contact:hover .about__phone-contact-icon {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}


.about__phone-contact-text {
    margin-left: 30px;
}

.about__phone-contact-text p {
    font-size: 20px;
    margin: 0;
    font-weight: 400;
}

.about__phone-contact-text a {
    color: var(--thm-black);
}

/*Counter Page*/


.counter-page .counters-one__box {
    padding-bottom: 107px;
}

/*Team Page*/


.team-page .row {
    --bs-gutter-x: 30px;
}

/*FAQS Page*/
.faqs-page {
    background-color: var(--thm-light);
    ;
    padding: 120px 0 120px;
}

.faqs-page .faq-one-accrodion .accrodion-title {
    background-color: var(--thm-base);
}

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
    position: relative;
    display: block;
    padding: 67px 0 120px;
}

.error-page__inner {
    position: relative;
    display: block;
    text-align: center;
}

.error-page__title {
    font-size: 350px;
    font-weight: 400;
    line-height: 352px;
    color: var(--thm-primary);
}

.error-page__tagline {
    font-size: 40px;
    font-weight: 900;
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: var(--thm-letter-space-small);
    margin-bottom: 42px;
}

.error-page__text {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.error-page__form {
    position: relative;
    display: block;
    max-width: 550px;
    width: 100%;
    margin: 29px auto 30px;
}

.error-page__form-input {
    position: relative;
    display: block;
}



.error-page__form input[type="search"] {
    height: 84px;
    max-width: 550px;
    width: 100%;
    border: none;
    outline: none;
    background-color: var(--thm-light);
    ;
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    padding-left: 50px;
    padding-right: 75px;
}

.error-page__form button[type="submit"] {
    background-color: transparent;
    color: var(--thm-black);
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 35px;
    bottom: 0;
    width: 50px;
    outline: none;
    border: none;
}



.error-page__btn:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

/* update 23-09-2021 */

/* shop one */

.shop-one {
    padding-top: 120px;
    padding-bottom: 120px;
}

.shop-one .row {
    --bs-gutter-y: 30px;
}

.shop-one__sorter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.shop-one__product-count {
    font-size: 18px;
    margin: 0;
    color: var(--thm-gray);
    font-weight: 500;
}

.shop-one__product-sorter {
    border: none;
    outline: none;
    border: none;
    outline: none;
    display: block;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 340px;
    height: 70px;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--thm-gray);
    background-color: var(--thm-light);
    background-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1024" height="1024" viewBox="0 0 1024 1024"><path fill="rgb(34, 36, 41)" d="M540.1 776.847l472.32-473.63c15.466-15.518 15.44-40.642-0.080-56.134-15.518-15.48-40.656-15.44-56.134 0.080l-444.208 445.438-444.206-445.454c-15.48-15.518-40.602-15.558-56.122-0.080-7.78 7.766-11.67 17.94-11.67 28.114 0 10.148 3.864 20.282 11.59 28.034l472.308 473.632c7.436 7.474 17.556 11.668 28.1 11.668s20.652-4.206 28.102-11.668z"></path></svg>');
    background-repeat: no-repeat;
    background-position: right 30px top 50%;
    background-size: .65em auto;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .shop-one__product-sorter {
        margin-top: 0;
    }
}

.shop-one__image {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.shop-one__image img {
    width: 100%;
    opacity: 1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.shop-one__item:hover .shop-one__image img {
    opacity: 0.7;
}

.shop-one__sale {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: var(--thm-black);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    padding: 7px 14px;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: .1em;
}

.shop-one__cart {
    background-color: var(--thm-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    padding: 4.5px 15px;
}

.shop-one__cart:hover {
    background-color: var(--thm-black);
    color: #fff;
}

.shop-one__item:hover .shop-one__cart {
    opacity: 1;
    visibility: visible;
}

.shop-one__title {
    margin: 0;
    color: var(--thm-black);
    font-size: 20px;
    letter-spacing: -0.02em;
    margin-bottom: 7px;
    text-transform: uppercase;
    font-weight: 800;
}

.shop-one__title a {
    color: inherit;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.shop-one__title a:hover {
    color: var(--thm-primary);
}

.shop-one__price {
    font-size: 16px;
    color: var(--thm-gray);
    margin: 0;
    line-height: 1;
    margin-bottom: 15px;
}

.shop-one__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.shop-one__rating i {
    font-size: 14px;
    color: #ffc617;
}

.shop-one__rating i+i {
    margin-left: 7px;
}

.shop-one__sidebar {
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .shop-one__sidebar {
        margin-bottom: 0;
    }
}

.shop-one__sidebar__price .noUi-horizontal {
    height: 4px;
    background-color: var(--thm-light);
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.shop-one__sidebar__price .noUi-handle {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background-color: var(--thm-primary);
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.shop-one__sidebar__price .noUi-horizontal .noUi-handle {
    right: -8px;
}

.shop-one__sidebar__price .noUi-handle::before,
.shop-one__sidebar__price .noUi-handle::after {
    display: none;
}

.shop-one__sidebar__price .noUi-connect {
    background-color: var(--thm-primary);
}

.shop-one__sidebar__price .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
    margin-top: 20px;
}

.shop-one__sidebar__price .form-group p {
    margin: 0;
    font-size: 14px;
    color: var(--thm-gray);
}

.shop-one__sidebar__price .form-group .left>span {
    margin-left: 5px;
    margin-right: 5px;
}

.shop-one__sidebar__price .form-group .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.shop-one__sidebar__price .thm-btn {
    padding: 3px 20px;
    font-size: 12px;
}

.shop-one__sidebar__price .thm-btn:hover {
    background-color: var(--thm-black);
    color: #fff;
}

.shop-one__sidebar__item:not(.shop-one__sidebar__search) {
    border: 1px solid #e6e9ef;
    padding: 30px;
}

.shop-one__sidebar__item+.shop-one__sidebar__item {
    margin-top: 30px;
}

.shop-one__sidebar__item__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--thm-black);
    margin: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.shop-one__sidebar__category {
    padding-bottom: 20px !important;
}

.shop-one__sidebar__category__list {
    margin: 0;
    margin-top: -10px;
}

.shop-one__sidebar__category__list li {
    position: relative;
}

.shop-one__sidebar__category__list li+li {
    margin-top: 10px;
}

.shop-one__sidebar__category__list li::after {
    content: '\e915';
    font-family: "icomoon";
    color: var(--thm-gray);
    position: absolute;
    top: 2px;
    right: 0;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
}

.shop-one__sidebar__category__list li:hover::after {
    color: var(--thm-primary);
    opacity: 1;
    visibility: visible;
}

.shop-one__sidebar__category__list li a {
    font-size: 16px;
    color: var(--thm-gray);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.shop-one__sidebar__category__list li:hover a {
    color: var(--thm-black);
    text-shadow: 0 0 1px currentColor;
}

.shop-one__sidebar__search {
    background-color: var(--thm-primary);
    padding-left: 30px;
    padding-right: 30px;
}

.shop-one__sidebar__search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.shop-one__sidebar__search ::-webkit-input-placeholder {
    opacity: 1;
    color: #ffffff;
}

.shop-one__sidebar__search :-ms-input-placeholder {
    opacity: 1;
    color: #ffffff;
}

.shop-one__sidebar__search ::-ms-input-placeholder {
    opacity: 1;
    color: #ffffff;
}

.shop-one__sidebar__search ::placeholder {
    opacity: 1;
    color: #ffffff;
}

.shop-one__sidebar__search input[type=text],
.shop-one__sidebar__search input[type=search] {
    width: 100%;
    height: 71px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.shop-one__sidebar__search button[type=submit] {
    padding: 0;
    border: none;
    outline: none;
    color: var(--thm-black);
    font-size: 20px;
    background-color: transparent;
    color: #fff;
}




/* product details */
.product-details {
    padding-top: 120px;
    padding-bottom: 60px;
}

.product-details__image {
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .product-details__image {
        margin-bottom: 0;
    }
}

.product-details__image img {
    max-width: 100%;
}

@media (min-width: 992px) {
    .product-details__content__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        margin-top: -10px;
    }
}

.product-details__content__name {
    margin: 0;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 800;
}


.product-details__content__price {
    font-size: 16px;
    color: var(--thm-primary);
    font-weight: 700;
    position: relative;
}

@media (min-width: 992px) {
    .product-details__content__price {
        font-size: 20px;
        top: -2px;
        margin-left: 20px;
    }
}

.product-details__content__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 992px) {
    .product-details__content__rating {
        margin-top: 10px;
    }
}

.product-details__content__rating__star i {
    font-size: 16px;
    color: #ffc617;
}

@media (min-width: 992px) {
    .product-details__content__rating__star i {
        font-size: 18px;
    }
}

.product-details__content__rating__star i+i {
    margin-left: 3px;
}

@media (min-width: 992px) {
    .product-details__content__rating__star i+i {
        margin-left: 2px;
    }
}

.product-details__content__rating__count {
    margin-left: 10px;
    font-size: 18px;
    color: var(--thm-gray);
}

.product-details__content__text {
    border-top: 1px solid #e6e9ef;
    padding-top: 20px;
    margin-top: 20px;
}

.product-details__content__text p {
    margin: 0;
    font-size: 16px;
    line-height: 32px;
    color: var(--thm-gray);
}

.product-details__content__text p+p {
    margin-top: 20px;
}

.product-details__content__quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.product-details__content__quantity__text {
    font-size: 18px;
    font-weight: bold;
    color: var(--thm-black);
    line-height: 1;
    margin-right: 20px;
    text-transform: uppercase;
}

.product-details__content__quantity .quantity-box {
    width: 97px;
    height: 60px;
    border: 1px solid #e6e9ef;
    position: relative;
    overflow: hidden;
}

.product-details__content__quantity .quantity-box input[type=number] {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    padding-right: 30px;
    text-align: center;
}

.product-details__content__quantity .quantity-box .sub {
    padding: 0;
    border: none;
    outline: none;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 8px;
    width: 30px;
    border-left: 1px solid #e6e9ef;
    height: 30px;
    background-color: transparent;
}

.product-details__content__quantity .quantity-box .add {
    padding: 0;
    border: none;
    outline: none;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 8px;
    width: 30px;
    border-left: 1px solid #e6e9ef;
    border-top: 1px solid #e6e9ef;
    background-color: transparent;
    height: 30px;
}

@media (min-width: 992px) {
    .product-details__content__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 30px;
    }
}

.product-details__content__buttons .thm-btn {
    margin-bottom: 20px;
}

.product-details__content__buttons .cart-btn {
    background-color: var(--thm-black);
    color: #fff;
}

.product-details__content__buttons .cart-btn:hover {
    color: #fff;
    background-color: var(--thm-primary);
}

@media (min-width: 992px) {
    .product-details__content__buttons .wishlist-btn {
        margin-left: 20px;
    }
}

.product-details__content__buttons .wishlist-btn:hover {
    background-color: var(--thm-black);
    color: #fff;
}

.product-details__content__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .product-details__content__social {
        margin-top: 20px;
    }
}

.product-details__content__social__text {
    color: var(--thm-black);
    font-weight: bold;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .product-details__content__social__text {
        font-size: 18px;
    }
}

.product-details__content__social a {
    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;
    font-size: 20px;
    color: var(--thm-gray);
    border-radius: 50%;
}

.product-details__content__social a:first-of-type {
    margin-left: 30px;
}

.product-details__content__social a+a {
    margin-left: 10px;
}

@media(min-width: 992px) {
    .product-details__content__social a+a {
        margin-left: 30px;
    }
}

.product-content__title {
    margin: 0;
    font-size: 30px;
    color: var(--thm-black);
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 30px;
}


.product-content .product-content__title {
    margin-bottom: 50px;
}

.product-content p {
    margin: 0;
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 32px;
}

.product-content p+p {
    margin-top: 20px;
}

.product-review {
    padding-top: 60px;
    padding-bottom: 0px;
}

.product-review .product-content__title {
    margin-bottom: 50px;
}

.product-review__item {
    border-bottom: 1px solid #e6e9ef;
    padding-bottom: 40px;
    margin-bottom: 50px;
    position: relative;
}

@media (min-width: 992px) {
    .product-review__item {
        padding-bottom: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.product-review__item__image {
    margin-bottom: 20px;
    background-color: var(--thm-black);
    border-radius: 50%;
    width: 166px;
    height: 166px;
}

@media (min-width: 992px) {
    .product-review__item__image {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-bottom: 0;
        margin-right: 35px;
    }
}

.product-review__item__image img {
    border-radius: 50%;
    mix-blend-mode: luminosity;
}

@media(min-width: 992px) {
    .product-review__item__top {
        display: flex;
        align-items: baseline;
    }
}

.product-review__item__title {
    font-size: 20px;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--thm-black);
}

.product-review__item__text {
    margin: 0;
    font-size: 16px;
    line-height: 32px;
    color: var(--thm-gray);
    margin-top: 20px;
}

.product-review__item__meta {
    font-size: 16px;
    font-weight: 500;
    color: var(--thm-primary);
    text-transform: uppercase;
}

@media(min-width: 992px) {
    .product-review__item__meta {
        margin-left: 20px;
    }
}

.product-review__item__meta span {
    margin-left: 10px;
    margin-right: 10px;
}

.product-review__item__star {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .product-review__item__star {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
    }
}

.product-review__item__star i {
    font-size: 16px;
    color: #ffc617;
}

@media (min-width: 992px) {
    .product-review__item__star i {
        font-size: 18px;
    }
}

.product-review__item__star i+i {
    margin-left: 3px;
}

@media (min-width: 992px) {
    .product-review__item__star i+i {
        margin-left: 7px;
    }
}

.product-form {
    padding-bottom: 120px;
}

.product-form__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: var(--thm-gray);
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .product-form__rating {
        font-size: 18px;
    }
}

.product-form__rating i {
    color: #ffc617;
    font-size: 16px;
    position: relative;
    top: -2px;
}

@media (min-width: 992px) {
    .product-form__rating i {
        font-size: 18px;
    }
}

.product-form__rating i:first-of-type {
    margin-left: 10px;
}

@media (min-width: 992px) {
    .product-form__rating i:first-of-type {
        margin-left: 20px;
    }
}

.product-form__rating i+i {
    margin-left: 3px;
}

@media (min-width: 992px) {
    .product-form__rating i+i {
        margin-left: 7px;
    }
}

.product-form .comment-form__input-box textarea {
    display: block;
    margin-bottom: 30px;
}

/* proceed to checkout */
.proceed-to-checkout {
    padding-top: 60px;
    padding-bottom: 120px;
}

@media (min-width: 768px) {
    .proceed-to-checkout__cupon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.proceed-to-checkout__cupon input[type=text] {
    border: none;
    outline: none;
    width: 100%;
    max-width: 375px;
    height: 70px;
    background-color: var(--thm-light);
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .proceed-to-checkout__cupon input[type=text] {
        margin-bottom: 0;
        margin-right: 20px;
    }
}

.proceed-to-checkout__cupon .thm-btn:hover {
    background-color: var(--thm-black);
    color: #fff;
}

.proceed-to-checkout__list {
    margin: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .proceed-to-checkout__list {
        margin-top: 0;
    }
}

.proceed-to-checkout__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--thm-gray);
    font-weight: 500;
    font-size: 18px;
}

.proceed-to-checkout__list li+li {
    margin-top: 5px;
}

@media (min-width: 992px) {
    .proceed-to-checkout__list li+li {
        margin-top: 15px;
    }
}

.proceed-to-checkout__list li:last-of-type {
    color: var(--thm-primary);
}

.proceed-to-checkout__list li i {
    font-style: normal;
}

.proceed-to-checkout__list li span {
    color: var(--thm-black);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}


@media (min-width: 576px) {
    .proceed-to-checkout__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media(min-width: 992px) {

    .proceed-to-checkout__list,
    .proceed-to-checkout__buttons {
        padding-left: 10px;
    }
}

.proceed-to-checkout__checkout-btn {
    background-color: var(--thm-black);
    color: #fff;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .proceed-to-checkout__checkout-btn {
        margin-bottom: 0;
    }
}


.proceed-to-checkout__buttons .thm-btn:hover {
    background-color: var(--thm-black);
    color: #fff;
}

.proceed-to-checkout__buttons .proceed-to-checkout__checkout-btn:hover {
    background-color: var(--thm-primary);
    color: #fff;
}

/* cart table */
.cart-table {
    padding-top: 90px;
}

@media (min-width: 992px) {
    .cart-table {
        padding-top: 105px;
    }
}

.cart-table table {
    width: 100%;
}

.cart-table tr {
    border-bottom: 1px solid #e6e9ef;
}

.cart-table th {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--thm-black);
    font-family: var(--thm-font-2);
    padding-bottom: 25px;
}

.cart-table th:last-of-type {
    text-align: right;
}

.cart-table td {
    padding-top: 30px;
    padding-bottom: 30px;
}

.cart-table__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-table__item__title {
    margin: 0;
    font-size: 20px;
    color: var(--thm-black);
    font-weight: 700;
    margin-left: 30px;
    text-transform: uppercase;
}

.cart-table .quantity-box {
    width: 97px;
    height: 60px;
    border: 1px solid #e6e9ef;
    position: relative;
    overflow: hidden;
}

.cart-table .quantity-box input[type=number] {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    padding-right: 30px;
    text-align: center;
}

.cart-table .quantity-box .sub {
    padding: 0;
    border: none;
    outline: none;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 8px;
    width: 30px;
    border-left: 1px solid #e6e9ef;
    background-color: transparent;
    height: 30px;
}

.cart-table .quantity-box .add {
    padding: 0;
    border: none;
    outline: none;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 8px;
    width: 30px;
    border-left: 1px solid #e6e9ef;
    border-top: 1px solid #e6e9ef;
    height: 30px;
    background-color: transparent;
}

.cart-table__close {
    width: 16px;
    height: 16px;
    position: relative;
    display: block;
    margin-left: auto;
}

.cart-table__close::after,
.cart-table__close::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--thm-black);
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cart-table__close::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media (max-width: 991px) {
    .cart-table .cart-table__item img {
        width: 60px;
    }

    .cart-table table {
        border: 0;
    }

    .cart-table table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .cart-table table tr {
        display: block;
    }

    .cart-table table td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: right;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: 1px solid #e6e9ef;
    }

    .cart-table table td::before {
        /*
            * aria-label has no advantage, it won't be read inside a table
            content: attr(aria-label);
            */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        font-size: 20px;
        text-transform: uppercase;
        color: var(--thm-black);
    }

    .cart-table table td:last-child {
        border-bottom: 0;
    }
}

.comment-one__form select {
    border: none;
    outline: none;
    border: none;
    outline: none;
    display: block;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 70px;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--thm-gray);
    background-color: var(--thm-light);
    background-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1024" height="1024" viewBox="0 0 1024 1024"><path fill="rgb(34, 36, 41)" d="M540.1 776.847l472.32-473.63c15.466-15.518 15.44-40.642-0.080-56.134-15.518-15.48-40.656-15.44-56.134 0.080l-444.208 445.438-444.206-445.454c-15.48-15.518-40.602-15.558-56.122-0.080-7.78 7.766-11.67 17.94-11.67 28.114 0 10.148 3.864 20.282 11.59 28.034l472.308 473.632c7.436 7.474 17.556 11.668 28.1 11.668s20.652-4.206 28.102-11.668z"></path></svg>');
    background-repeat: no-repeat;
    background-position: right 30px top 50%;
    background-size: .65em auto;
    margin-bottom: 20px;
}

/* checkout page */
.checkout-page {
    padding-top: 120px;
    padding-bottom: 120px;
}

.checkout-page .comment-one__form .row {
    margin-left: -10px;
    margin-right: -10px;
}

.checkout-page .comment-one__form [class*=col-] {
    padding-left: 10px;
    padding-right: 10px;
}

.checkout-page .comment-one__form .form-group {
    margin-bottom: 20px;
}

.checkout-page__returning {
    margin: 0;
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 1.5em;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .checkout-page__returning {
        line-height: 1;
    }
}

.checkout-page__returning a {
    color: var(--thm-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.checkout-page__returning a:hover {
    color: var(--thm-black);
}

.checkout__title {
    margin: 0;
    color: var(--thm-black);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.checkout__checkbox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.checkout__checkbox input[type=checkbox] {
    position: absolute;
    left: -999999px;
    visibility: hidden;
}

.checkout__checkbox label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.checkout__checkbox label::after {
    content: '';
    width: 19px;
    height: 19px;
    background-color: var(--thm-light);
    border-radius: 50%;
    margin-left: 20px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--thm-base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.checkout__checkbox input[type=checkbox]:checked+label::after {
    background-color: var(--thm-primary);
    content: '\f00c';
}

.checkout-page .comment-one__form .field-checkbox {
    position: relative;
}

.checkout-page .comment-one__form .field-checkbox input[type=checkbox] {
    position: absolute;
    left: -999999px;
    visibility: hidden;
}

.checkout-page .comment-one__form .field-checkbox label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: var(--thm-gray);
    cursor: pointer;
}

.checkout-page .comment-one__form .field-checkbox label::before {
    content: '';
    width: 19px;
    height: 19px;
    background-color: var(--thm-light);
    border-radius: 50%;
    margin-right: 10px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--thm-base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.checkout-page .comment-one__form .field-checkbox input[type=checkbox]:checked+label::before {
    background-color: var(--thm-primary);
    content: '\f00c';
}

.checkout-page .comment-one__form textarea {
    height: 150px;
}

.checkout-page .comment-one__form {
    margin-bottom: 60px;
}

.checkout__table {
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .checkout__table {
        margin-bottom: 0;
    }
}

.checkout__table thead th {
    color: var(--thm-black);
    font-size: 20px !important;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.checkout__table th:last-child,
.checkout__table td:last-child {
    text-align: right;
}

.checkout__table thead {
    border-top: 1px solid #e6e9ef;
    border-bottom: 1px solid #e6e9ef;
}

.checkout__table thead th,
.checkout__table tbody td {
    padding: 0;
    /* border-top: 1px solid #e6e9ef; */
    border: 0;
    font-size: 16px;
}

.checkout__table thead th {
    padding-top: 30px;
    padding-bottom: 23px;
}

.checkout__table tbody {
    border-bottom: 1px solid #e6e9ef;
}

.checkout__table tbody td {
    padding-top: 10px;
    padding-bottom: 10px;
    color: var(--thm-gray);
}

.checkout__payment {
    background-color: var(--thm-light);
    padding: 30px;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .checkout__payment {
        padding: 50px;
        padding-bottom: 25px;
    }
}

.checkout__payment__item+.checkout__payment__item {
    margin-top: 35px;
}

.checkout__payment__title {
    margin: 0;
    font-size: 20px;
    letter-spacing: -.02em;
    color: var(--thm-black);
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 20px;
    cursor: pointer;
}

.checkout__payment__title::before {
    content: '';
    width: 19px;
    height: 19px;
    background-color: #fff;
    border: 2px solid #e6e9ef;
    border-radius: 50%;
    margin-right: 10px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--thm-base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 15px;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid #e6e9ef;
}

.checkout__payment__title img {
    margin-left: 15px;
}

.checkout__payment__item--active .checkout__payment__title::before {
    background-color: var(--thm-primary);
    border-color: var(--thm-primary);
    content: '\f00c';
}

.checkout__payment__content {
    font-size: 16px;
    line-height: 30px;
    color: #686a6f;
}

.checkout-page__btn:hover {
    background-color: var(--thm-black);
    color: #fff;
}

/* main menu three update */

.main-header-three .main-menu .main-menu__list>li+li,
.main-menu-three.stricky-header .main-menu__list>li+li {
    margin-left: 50px;
} 
.justify-center{
	justify-content: center;
}
.mb30{
	margin-bottom: 30px;
}
.stricky-header .main-menu-wrapper__phone-contact>p {
    color: var(--thm-primary);
}

.stricky-header .main-menu-wrapper__phone-contact>a{
	color: var(--thm-primary);
}
.stricky-header .main-menu-wrapper__phone-contact>a:hover{
	color: var(--thm-gray);
}

.g-image{
	position: relative;
	margin-top: 30px;
}
.align-items-stretch {
    align-items: stretch !important;
}
  
.gallary {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    padding: 180px 0 90px;
    margin-top: -60px;
}


/* ----------------------------------------------------------------
	Owl Carousel CSS
-----------------------------------------------------------------*

.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in { z-index: 0; }

.owl-carousel .owl-animated-out { z-index: 1; }

.owl-carousel .fadeOut  {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% { opacity: 1; }
	100% { opacity: 0; }
}

@keyframes fadeOut {
	0% { opacity: 1; }
	100% { opacity: 0; }
}

.owl-height {
	-webkit-transition:height 500ms ease-in-out;
	-o-transition:height 500ms ease-in-out;
	transition:height 500ms ease-in-out
}

/*.owl-carousel {
	display:none;
	-webkit-tap-highlight-color:transparent;
	position:relative;
	z-index:1;
	width: 100%;
	touch-action: manipulation;
}*

.owl-carousel .owl-stage {
	position:relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage::after {
	content:".";
	display:block;
	clear:both;
	visibility:hidden;
	line-height:0;
	height:0
}

.owl-carousel .owl-stage-outer {
	position:relative;
	overflow:hidden;
	-webkit-transform:translate3d(0,0,0);
}

.owl-carousel.owl-loaded { display:block }

.owl-carousel.owl-loading {
	display:block;
	min-height: 100px;
	background: no-repeat center center;
}

.owl-carousel .owl-refresh .owl-item { display:none }

.owl-carousel .owl-item {
	position: relative;
	min-height: 350px;
	float: left;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

/*.owl-carousel .owl-item img {
	display:block;
	width:100%;
	-webkit-transform-style:preserve-3d;
}*

.slider-element .owl-carousel .owl-item img { -webkit-transform-style: preserve-3d; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled { display: none; }

/*.owl-nav .owl-prev,
.owl-nav .owl-next,
.owl-dot,
.owl-dots button {
	cursor: pointer;
	cursor: hand;
	padding: 0;
	border: 0;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}*

.owl-carousel.owl-loaded { display: block; }

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden { opacity: 0; }

.mega-menu-content .owl-carousel.owl-hidden { opacity: 1; }

.owl-carousel.owl-refresh .owl-item { display: none; }

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl { direction: rtl; }

.owl-carousel.owl-rtl .owl-item { float: right; }

.no-js .owl-carousel { display: block; }

.owl-carousel .owl-item .owl-lazy {
	opacity:0;
	-webkit-transition:opacity 400ms ease;
	-o-transition:opacity 400ms ease;
	transition:opacity 400ms ease
}

.owl-carousel .owl-item img {
	transform-style:preserve-3d ;
}

.owl-carousel .owl-video-wrapper {
	position:relative;
	height:100%;
	background:#111
} 

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 64px;
	width: 64px;
	left: 50%;
	top: 50%;
	margin-left: -32px;
	margin-top: -32px;
	background: url("images/icons/play.png") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transition: scale 100ms ease;
	-o-transition: scale 100ms ease;
	transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transition:scale(1.3,1.3);
	-o-transition:scale(1.3,1.3);
	transition:scale(1.3,1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn { display:none }

.owl-carousel .owl-video-tn {
	opacity:0;
	height:100%;
	background-position:center center;
	background-repeat:no-repeat;
	-webkit-background-size:contain;
	-moz-background-size:contain;
	-o-background-size:contain;
	background-size:contain;
	-webkit-transition:opacity 400ms ease;
	-o-transition:opacity 400ms ease;
	transition:opacity 400ms ease
}

.owl-carousel .owl-video-frame {
	position:relative;
	z-index:1;
	height: 100%;
	width: 100%;
}


/* Owl Carousel - Controls
-----------------------------------------------------------------*/

/*.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
	line-height: 1;
}*/

/* Owl Carousel - Controls - Arrows
-----------------------------------------------------------------*/

/*.owl-carousel .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	margin-top: -18px;
	left: -36px;
	zoom: 1;
	width: 36px;
	height: 36px;
	line-height: 32px;
	border: 1px solid rgba(0,0,0,0.2);
	color: #666;
	background-color: #FFF;
	font-size: 18px;
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}*

.owl-carousel.with-carousel-dots .owl-nav [class*=owl-] { margin-top: -38px; }

.slider-element .owl-nav [class*=owl-],
.owl-carousel-full .owl-nav [class*=owl-] {
	margin-top: -30px;
	left: 0 !important;
	height: 60px;
	line-height: 60px;
	border: none;
	color: #EEE;
	background-color: rgba(0,0,0,0.4);
	font-size: 28px;
	border-radius: 0 3px 3px 0;
}

/*.owl-carousel-full .with-carousel-dots .owl-nav [class*=owl-] { margin-top: -50px; }*

.owl-carousel .owl-nav .owl-next {
	left: auto;
	right: -36px;
}

.slider-element .owl-nav .owl-next,
.owl-carousel-full  .owl-nav .owl-next {
	left: auto !important;
	right: 0 !important;
	border-radius: 3px 0 0 3px;
}

.owl-carousel:hover .owl-nav [class*=owl-] {
	opacity: 1;
	left: -18px;
}

.owl-carousel:hover .owl-nav .owl-next {
	left: auto;
	right: -18px;
}

/*.owl-carousel .owl-nav [class*=owl-]:hover {
	background-color: #f9a11d !important;
	color: #FFF !important;
	text-decoration: none;
}*

.owl-carousel .owl-nav .disabled { display: none !important; }


/* Owl Carousel - Controls - Dots
-----------------------------------------------------------------*/

/*.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	width: 8px;
	height: 8px;
	margin: 30px 4px 0 4px;
	opacity: 0.5;
	border-radius: 50%;
	background-color: #f9a11d;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}*

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block !important;
}

.owl-carousel .owl-dots .owl-dot.active,
.owl-carousel .owl-dots .owl-dot:hover { opacity: 1; }


/* Owl Carousel - Controls - Dots - Positions
-----------------------------------------------------------------*
.owl-carousel[class*=owl-nav-pos-],
.owl-carousel[class*=owl-dots-pos-]
.owl-carousel[class*=owl-img-pos-] {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.owl-carousel.owl-nav-pos-1 .owl-nav,
.owl-carousel.owl-dots-pos-1 .owl-dots,
.owl-carousel.owl-content-pos-1 .owl-stage-outer {
	order: 1;
}

.owl-carousel.owl-nav-pos-2 .owl-nav,
.owl-carousel.owl-dots-pos-2 .owl-dots,
.owl-carousel.owl-content-pos-2 .owl-stage-outer {
	order: 2;
	margin: 20px 0;
}

.owl-carousel.owl-nav-pos-3 .owl-nav,
.owl-carousel.owl-dots-pos-3 .owl-dots,
.owl-carousel.owl-content-pos-3 .owl-stage-outer {
	order: 3;
}

.owl-carousel.owl-dots-pos-2 .owl-dots .owl-dot,
.owl-carousel.owl-dots-pos-3 .owl-dots .owl-dot {
	margin-top: 0;
}

.owl-carousel.owl-nav-pos-left .owl-nav,
.owl-carousel.owl-nav-pos-right .owl-nav,
.owl-carousel.owl-dots-pos-left .owl-dots,
.owl-carousel.owl-dots-pos-right .owl-dots {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
}

.owl-carousel.owl-dots-pos-left .owl-dots,
.owl-carousel.owl-nav-pos-left .owl-nav {
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.owl-carousel.owl-dots-pos-right .owl-dots,
.owl-carousel.owl-nav-pos-right .owl-nav {
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.owl-carousel.with-carousel-dots.owl-dots-pos-top .owl-nav [class*=owl-] { margin-top: 0; }

/* Owl Carousel - Controls - Dots - Sizes
-----------------------------------------------------------------*/
/*.owl-carousel {
	--owl-nav-sizes: 36px;
	--owl-dots-gutters: 4px;
	--owl-dots-sizes: 8px;
	--owl-nav-bg: var(--themecolor, #f9a11d);
	--owl-nav-margin: calc(var(--owl-nav-sizes) / -2);
	--owl-nav-with-dots: calc( var(--owl-nav-margin) - calc( calc( 30px + var(--owl-dots-sizes) ) / 2 ) );
}*

.owl-carousel.owl-dots-size-sm {
	--owl-dots-sizes: 4px;
	--owl-dots-gutters: 2px;
}

.owl-carousel.owl-dots-size-lg {
	--owl-dots-sizes: 12px;
	--owl-dots-gutters: 5px;
}

.owl-carousel.owl-dots-size-xl {
	--owl-dots-sizes: 16px;
	--owl-dots-gutters: 6px;
}

/*.owl-carousel .owl-dots .owl-dot {
	width: var(--owl-dots-sizes);
	height: var(--owl-dots-sizes);
	background-color: var(--owl-nav-bg);
	margin-left: var(--owl-dots-gutters);
	margin-right: var(--owl-dots-gutters);
	transition: all .3s;
}*

.owl-carousel.owl-nav-hover-fixed[class*=owl-nav-pos-] .owl-nav .disabled {
	display: inline-block !important;
	pointer-events: none;
	opacity: .4 !important;
}

/* Owl Carousel - Controls - Dots - Border
-----------------------------------------------------------------*
.owl-carousel.owl-dots-border .owl-dots .owl-dot:not(.active) {
	opacity: 1;
	background-color: transparent;
	border: 1px solid var(--owl-nav-bg);
}

.owl-carousel.owl-dots-border .owl-dots .owl-dot.active {
	border-color: transparent;
}

/* Owl Carousel - Controls - Dots - square
-----------------------------------------------------------------*
.owl-carousel.owl-dots-square .owl-dots .owl-dot {
	border-radius: 0;
	--owl-dots-sizes: 10px;
}

/* Owl Carousel - Controls - Dots - square
-----------------------------------------------------------------*
.owl-carousel.owl-dots-rounded .owl-dots .owl-dot {
	--owl-dots-sizes: 10px;
	border-radius: 2px;
}

/* Owl Carousel - Controls - Dots - Dashed
-----------------------------------------------------------------*
.owl-carousel.owl-dots-dashed .owl-dots .owl-dot {
	--owl-dots-sizes: 16px;
	opacity: .4;
	height: 4px;
	border-radius: 4px;
}

.owl-carousel.owl-dots-dashed .owl-dots .owl-dot.active {
	--owl-dots-sizes: 32px;
	opacity: 1;
}

/* Owl Carousel - Controls - Dots - Numbers
-----------------------------------------------------------------*
.owl-carousel.owl-dots-number .owl-dots {
	--owl-dots-sizes: 28px;
	counter-reset: dots;
	--owl-nav-bg: #FFF;
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot {
	position: relative;
	width: auto;
	opacity: .3;
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot.active {
	opacity: 1;
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot:before {
	display: inline-block;
	counter-increment: dots;
	content: counter(dots, decimal-leading-zero);
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot span {
	position: relative;
	display: inline-block;
	width: 0px;
	height: 2px;
	background-color: #666;
	top: -5px;
	margin-left: 5px;
	transition: width .4s ease-in-out;
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot.active span {
	 width: 30px;
}

/* Owl Carousel - Controls - Arrows - Sizes
-----------------------------------------------------------------*/

/*.owl-carousel .owl-nav [class*=owl-] {
	left: calc(-1 * var(--owl-nav-sizes));
	width: var(--owl-nav-sizes);
	height: var(--owl-nav-sizes);
	line-height: calc(calc(-1 * var(--owl-nav-sizes)) - 4px);
	font-size: calc(var(--owl-nav-sizes) / 2);
	margin-top: var(--owl-nav-margin);
}

.owl-carousel.with-carousel-dots .owl-nav [class*=owl-] {
	margin-top: var(--owl-nav-with-dots);
}*

.owl-carousel .owl-nav .owl-next {
	left: auto;
	right: calc(-1 * var(--owl-nav-sizes));
}

.slider-element .owl-nav .owl-next,
.owl-carousel-full  .owl-nav .owl-next {
	left: auto !important;
	right: 0 !important;
}

.owl-carousel.owl-nav-hover-fixed .owl-nav [class*=owl-],
.owl-carousel:hover .owl-nav [class*=owl-] {
	opacity: 1;
	left: calc(calc(-1 * var(--owl-nav-sizes)) / 2);
}

.owl-carousel.owl-nav-hover-fixed .owl-nav .owl-next,
.owl-carousel:hover .owl-nav .owl-next {
	left: auto;
	right: calc(calc(-1 * var(--owl-nav-sizes)) / 2);
}

/*.owl-carousel .owl-nav [class*=owl-]:hover {
	background-color: var(--owl-nav-bg) !important;
}*

.slider-element .owl-nav [class*=owl-],
.owl-carousel-full .owl-nav [class*=owl-] {
	margin-top: -30px;
	height: calc(var(--owl-nav-sizes) * 1.6666666667);
	line-height: calc(var(--owl-nav-sizes) * 1.6666666667);
	font-size: calc(calc(var(--owl-nav-sizes) * 1.6666666667) / 2);
}

.owl-carousel-full .with-carousel-dots .owl-nav [class*=owl-] {
	margin-top: calc( calc(calc(var(--owl-nav-sizes) * 1.6666666667) / -2)) - calc( calc( 30px + var(--owl-dots-sizes) ) / 2 );
}

.owl-carousel.owl-nav-hover-fixed[class*=owl-nav-pos-] .owl-nav [class*=owl-] {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	margin: 0;
}

.owl-carousel.owl-nav-hover-fixed[class*=owl-nav-pos-] .owl-nav .owl-prev {
	margin-right: 5px;
}

.owl-carousel.owl-nav-hover-fixed[class*=owl-nav-pos-] .owl-nav .owl-next {
	margin-left: 5px;
}

.owl-carousel.owl-nav-text .owl-nav [class*=owl-] {
	width: auto;
	height: auto;
	line-height: 1.5;
	font-size: 0.925rem;
	border-radius: 3px;
	padding: 4px 8px;
}

.owl-carousel.owl-nav-text .owl-nav [class*=owl-] i {
	position: relative;
	top: 1px;
} 				
.gtco-testimonials .card {
	box-shadow: 2px 3px 10px 0px #999;
	margin: 0 20px;
	padding: 0 10px;
	border: 0;
} 
	             	 
/*span.odometer-value:before{
	content: "\f067";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 40px;
	color: var(--thm-base);
	position: absolute;
	top: 50%;
	right: 0;
	height: 35px;
	width: 35px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(-50%);
	transition: all 500ms ease;
}*/
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
 
 
 .owl-carousel .owl-item {
     transition: all 0.3s ease-in-out
 }

 .owl-carousel .owl-item .card {
     padding: 5px;
     position: relative
 }

 .owl-carousel .owl-stage-outer {
     overflow-y: auto !important;
     padding-bottom: 40px
 }
.owl-carousel .owl-item img {
     object-fit: cover;
     border-radius: 0px
 }
 
 .owl-carousel .owl-item .card .name {
     position: absolute;
     bottom: -20px;
     left: 33%;
     color: #101c81;
     font-size: 1.1rem;
     font-weight: 600;
     background-color: aquamarine;
     padding: 0.3rem 0.4rem;
     border-radius: 5px;
     box-shadow: 2px 3px 15px #3c405a
 }
.owl-carousel .owl-item .card {
     opacity: 0.2;
     transform: scale3d(0.8, 0.8, 0.8);
     transition: all 0.3s ease-in-out
 }

 .owl-carousel .owl-item.active.center .card {
     opacity: 1;
     transform: scale3d(1, 1, 1)
 }

 .owl-carousel .owl-dots {
     display: inline-block;
     width: 100%;
     text-align: center
 }

 .owl-theme .owl-dots .owl-dot span {
     height: 20px;
     background: #2a6ba3 !important;
     border-radius: 2px !important;
     opacity: 0.8
 }
 .owl-theme .owl-dots .owl-dot.active span,
 .owl-theme .owl-dots .owl-dot:hover span {
     height: 13px;
     width: 13px;
     opacity: 1;
     transform: translateY(2px);
     background: #83b8e7 !important
 }

 @media(min-width: 480.6px) and (max-width: 575.5px) {
     .owl-carousel .owl-item .card .name {
         left: 24%
     }
 }

 @media(max-width: 360px) {
     .owl-carousel .owl-item .card .name {
         left: 30%
     }
 } 
 
 .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: contents;
}

.modal1 {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0; 
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content1 {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}
/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
  text-align: center;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext { 
	color: #f2f2f2;
    font-size: 15px;
    padding: 15px 0;
	top: 0;
	float: left;
}

img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.column {
  float: left;
  width: 25%;
}

.m-img{
	overflow: hidden;
	max-height: 610px;
}
.f-title{
	text-align: center;
    color: #8f8da0;
}

.img-pl{
	padding-left: 20px;
}
 
 /*20/7/2022
.m-title {
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 40px;
    margin-bottom: 15px;
    letter-spacing: var(--thm-letter-space-small);
}
.img-h{
	width: 75px;
	height: 75px;
}


.main-timeline{ font-family: 'Libre Franklin', sans-serif; }
.main-timeline:after{
    content: '';
    display: block;
    clear: both;
}
.main-timeline .timeline{
    width: calc(50% + 60px);
    padding: 20px 0 0 60px;
    margin: 0 5px 15px 0;
    float: right;
}
.main-timeline .timeline-content{
    color: #fff;
    background: #f94419;
    text-align: center;
    padding: 20px 20px 20px 80px;
    display: block;
    position: relative;
}
.main-timeline .timeline-content:hover{ text-decoration: none; }
.main-timeline .timeline-content:before{
    content: "";
    background: linear-gradient(to top left, transparent 50%, #952000 52%);
    width: 60px;
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.main-timeline .timeline-icon{
    font-size: 35px;
    line-height: 54px;
    width: 60px;
    height: 60px;
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: 80px;
    top: 50%;
}
.main-timeline .timeline-year{
    background: #ff6134;
    font-size: 35px;
    font-weight: 600;
    line-height: 75px;
    width: 120px;
    height: 100%;
    position: absolute;
    top: -20px;
    left: -60px;
}
.main-timeline .title{
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 7px 0;
}
.main-timeline .description{
    font-size: 20px;
    letter-spacing: 1px;
    margin: 0;
}
.main-timeline .timeline:nth-child(even){
    padding: 20px 60px 0 0;
    float: left;
}
.main-timeline .timeline:nth-child(even) .timeline-content{ padding: 20px 80px 20px 20px; }
.main-timeline .timeline:nth-child(even) .timeline-content:before{
    transform: rotateY(180deg);
    left: auto;
    right: 0;
}
.main-timeline .timeline:nth-child(even) .timeline-year{
    right: -60px;
    left: auto;
}
.main-timeline .timeline:nth-child(even) .timeline-icon{
    left: auto;
    right: 80px; 
}

.timeline .dark-blue{ background: #00122a; }
.timeline-content.dark-blue:before{
	background: linear-gradient(to top left, transparent 50%, #00070f 52%);
}

.timeline-year.dark-blue {
    background: #032149;
    font-size: 35px;
    font-weight: 600;
    line-height: 110px;
    width: 120px;
    height: 100%;
    position: absolute;
    top: -20px;
    left: -60px;
}
.timeline .c2{ background: #00334b; }
.timeline-content.c2:before{
	background: linear-gradient(to top left, transparent 50%, #002130 52%);
}

.timeline-year.c2 {
    background: #064969;
    font-size: 35px;
    font-weight: 600;
    line-height: 75px;
    width: 120px;
    height: 100%;
    position: absolute;
    top: -20px;
    left: -60px;
}
.timeline .c3{ background: #034e71; }

.timeline-content.c3:before{
	content: "";
    background: linear-gradient(to top left, transparent 50%, #042331 52%);
    width: 60px;
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.timeline-year.c3 {
    background: #185e7f;
    font-size: 35px;
    font-weight: 600;
    line-height: 75px;
    width: 120px;
    height: 100%;
    position: absolute;
    top: -20px;
    left: -60px;
}
.timeline .blue{ background: #00608d; }
.timeline .blue:before{
    background:linear-gradient(to top left, transparent 50%, #034064 52%);
}
.timeline-year.blue { 
    background: #00557c;
}
.timeline .blue2{ background:#05608b; }

.timeline-content.blue2:before{
	content: "";
    background: linear-gradient(to top left, transparent 50%, #034064 52%);
    width: 60px;
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.timeline-year.blue2 {
    background: #047ab1;
    font-size: 35px;
    font-weight: 600;
    line-height: 75px;
    width: 120px;
    height: 100%;
    position: absolute;
    top: -20px;
    left: -60px;
}


.timeline .last-c{ background:#288ab9; }

.timeline-content.last-c:before{
	content: "";
    background: linear-gradient(to top left, transparent 50%, #0b648d 52%);
    width: 60px;
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.timeline-year.last-c {
    background: #1378a7;
    font-size: 35px;
    font-weight: 600;
    line-height: 108px;
    width: 120px;
    height: 100%;
    position: absolute;
    top: -20px;
    left: -60px;
}
.timeline .last20{ background: #00608d; }
.timeline .last20:before{
    background:linear-gradient(to top left, transparent 50%, #034064 52%);
}
.timeline-year.last20 { 
    background: #00557c;
}

.main-timeline .timeline:nth-child(4n+4) .timeline-year{ background: #FE3559; }
@media screen and (max-width:990px){
    .main-timeline .timeline{ width: calc(50% + 120px); }
}
@media screen and (max-width:767px){
    .main-timeline .timeline{ width: 100%; }
}
@media screen and (max-width:576px){
	.main-timeline .description {
		font-size: 18px;
		line-height: 22px; 
	}
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even){
        text-align: center;
        padding: 42px 20px 0 0;
        margin: 0 0 30px;
    }
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(even) .timeline-content{
        padding: 80px 20px 20px;
    }
    .main-timeline .timeline-content:before,
    .main-timeline .timeline:nth-child(even) .timeline-content:before{
        width: 60px;
        transform: rotate(90deg);
        bottom: auto;
        top: 20px;
        left: -20px;
    }
    .main-timeline .timeline-year,
    .main-timeline .timeline:nth-child(even) .timeline-year{
        line-height: 100px;
        width: 100%;
        height: 100px;
        left: auto;
        right: -20px;
        top: -42px;
    }
    .main-timeline .timeline-icon,
    .main-timeline .timeline:nth-child(even) .timeline-icon{
        transform: translateX(-50%) translateY(0);
        top: 75px;
        left: 50%;
        right: auto;
    }
    .main-timeline .title{ font-size: 20px; }
}
/*20/7/2022


/*.timeline .dark-blue{ background: #00334b; }

.timeline-content.dark-blue:before{
	content: "";
    background: linear-gradient(to top left, transparent 50%, #042331 52%);
    width: 60px;
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.timeline-year.dark-blue {
    background: #034e71;
    font-size: 35px;
    font-weight: 600;
    line-height: 110px;
    width: 120px;
    height: 100%;
    position: absolute;
    top: -20px;
    left: -60px;
}*/


/*.main-timeline .timeline:nth-child(4n+2) .timeline-content:before{
    background: linear-gradient(to top left, transparent 50%, #012E95 52%);
}
.main-timeline .timeline .blue .timeline-year{ background: #1a7099; }
.main-timeline .timeline:nth-child(4n+3) .timeline-content{ background: #22a009; }
.main-timeline .timeline:nth-child(4n+3) .timeline-content:before{
    background: linear-gradient(to top left, transparent 50%, #123a0a 52%);
}
.main-timeline .timeline:nth-child(4n+3) .timeline-year{ background: #28b50c; }
.main-timeline .timeline:nth-child(4n+4) .timeline-content{ background: #F61945; }
.main-timeline .timeline:nth-child(4n+4) .timeline-content:before{
    background: linear-gradient(to top left, transparent 50%, #95001D 52%);
}*/





.mt-60{
	margin-top: -60px;
}

.year-section{
	background: var(--thm-light);
    padding-bottom: 150px;
    padding-top: 80px;
}
}
.mb20{
	margin-bottom: 20px;
}
.pd-data{
	padding: 85px 0;
}
.about-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 60px;
    text-transform: uppercase;
    margin-top: -12px;
    letter-spacing: var(--thm-letter-space-small);
    text-align: center;
    margin-bottom: 25px;
}
.team-data{
	display: none;
}

.c-data {
  padding: 0 18px;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}
.collapsible {
  cursor: pointer;
}
.c-body{
	padding: 30px;
	background-color: var(--thm-primary);
	color: var(--thm-base);
}
.mb20 {
    margin-bottom: 20px;
}
.c-name {
    font-size: 24px;
    margin-bottom: 10px;
	color: var(--thm-base);
}
.position {
    font-size: 18px;
    margin-bottom: 20px;
	color: var(--thm-base);
}
.t-contact {
    color: var(--thm-base);
}
.team-ul {
    margin-bottom: 15px;
}
.vission-icon{
	height: 60px;
    width: 60px;
    display: flex;
    align-items: baseline;
    justify-content: end;
    position: absolute;
    top: 5px;
    left: 0;
    transition: all 500ms ease;
    color: var(--thm-primary);
}
.vission-icon span{  
    font-size: 22px;
    transform: scale(1);
    display: block;
    transition: transform 500ms ease;
}
.grey{
	color: var(--thm-gray);
}
.web-link {
    font-size: 14px !important;
    font-style: italic;
}
.box_s {
    box-shadow: 0 0 6px 2px #d5d5d5;
}

.trans-r {
    transform: rotate(90deg);
} 

.panel-heading {
  padding: 0;
	border:0;
}
.panel-title>a, .panel-title>a:active{
	display:block;
	padding:15px;
  color:#555;
  font-size:16px;
  font-weight:bold;
	text-transform:uppercase;
	letter-spacing:1px;
  word-spacing:3px;
	text-decoration:none;
}
.down-arrow  {
   font-family: 'Font Awesome 5 Free';
   /*content: "\f078";*/
   float: right;
   transition: all 0.5s;
}
li.active .down-arrow:before {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
} 
#text , #text2 , #text3{
display:none;
}
#toggle , #toggle2 , #toggle3{
	user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    border: none;
    padding: 8px;
    font-size: 20px;
    background: #00608d;
    color: white;
    box-sizing: border-box;
	margin-top: 20px;
}
#toggle:focus{
	outline: none; 
}
.services-mb { 
    margin-bottom: 100px;
}

.bx-shadow::before{
	    box-shadow: 14px 0 12px -20px #888 inset;
    content: " ";
    height: 100%;
    position: absolute;
    top: 0;
    right: 420px;
    width: 20px;
    padding-right: 30px;
}
.bx-right{
	padding-right: 50px;
}
.services-details__services-list li a:hover{
	background-color: var(--thm-light); 
}
.service-title{
	font-size: 35px; 
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase;
}

.CSBox{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 28px 22px;
    position: relative;
    z-index: 1;
	min-height: 250px;
}
.CSBox:before,
.CSBox:after{
    content: '';
    height: 50%;
    width: 50%;
    border: 5px solid #4CC317;
    border-right: none;
    border-bottom: none;
    border-radius: 0px 0 0 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.CSBox:after{
    transform: rotate(180deg);
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}
.CSBox .cs-icon{
    color: #fff !important;
    background-color: #4CC317; 
    font-size: 36px;
    text-align: center;
    line-height: 65px;
    font-weight: 600;
    height: 70px;
    width: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    position: relative;
}
.CSBox .cs-icon:before,
.CSBox .cs-icon:after{
    content: '';
    border: 3px solid transparent;
    border-right-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    bottom: 10px;
    top: 10px;
    right: 10px;
}
.CSBox .cs-icon:after{
    border-color: transparent;
    border-bottom-color: #fff;
    transform: rotate(18deg);
}
.CSBox .title{
    color: #444;
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    text-transform: uppercase;
    margin: 0 0 5px;
}
.CSBox .description{
    color: #555;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}
.CSBox.light-blue:before,
.CSBox.light-blue:after{
    border-color: #288ab9;
}
.CSBox.light-blue .cs-icon{ background-color: #288ab9; }
.CSBox.blue:before,
.CSBox.blue:after{
    border-color: #00608d; 
}
.CSBox.blue .cs-icon{ background-color: #00608d; }
.CSBox.orange:before,
.CSBox.orange:after{
    border-color: #FF8201;
}
.CSBox.orange .cs-icon{ background-color: #FF8201; }
.CSBox.orange .title{ color: #FF8201; }
@media only screen and (max-width: 990px){
    .CSBox{ margin: 0 0 30px; }
}
.service-pd {
    padding: 50px 0;
}
.pb50 {
    padding-bottom: 50px;
}
.title-mb{
	margin-bottom: 30px;
}


.serviceBox{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 0 15px; 
    position: relative;
    z-index: 1;
	margin: 0 25px; 
}
.serviceBox:before{
    content: '';
    background: linear-gradient(#f5f5f5,transparent);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    clip-path: polygon(50% 20%, 100% 0, 100% 70%, 50% 100%, 0 70%, 0 0);
}
.serviceBox .service-icon{
    color: #fff;
    background: linear-gradient(#0776ab,#000c11);
    font-size: 40px;
    line-height: 135px; 
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    box-shadow: inset 0 15px 15px rgba(0,0,0,0.4);
    clip-path: polygon(50% 20%, 100% 0, 100% 70%, 50% 100%, 0 70%, 0 0);
}
.serviceBox .title{
    color: #00608d;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0 0 10px;
    text-transform: inherit;
    letter-spacing: 1px;
} 
.serviceBox .description{
    color: #9f9f9f;
    font-size: 15px;
    line-height: 23px;
}
.box-icon{
	width: 60px;
    vertical-align: baseline;
}
.pb0{
	padding-bottom: 0px;
}
 
blockquote {
    padding: 10px 20px;
    font-weight: 600;
    border-left: 5px solid #00608d;
}
.text-right {
    text-align: right;
}
.about-intro-text .ts-title-1 {
    font-size: 16px;
    padding: 24px 24px;
    border-radius: 10px;
    line-height: 28px;
    background: #fff;
    box-shadow: 0px 2px 20px 0px rgb(0 0 0 / 8%);
    font-weight: 400;
    margin-bottom: 20px;
    width: 400px;
    text-align: left;
}

.about-data {
    padding: 85px 0 35px;
}

.fa-content{
	padding-top: 70px;
}

.p-data {
    font-size: 17px;
	line-height: 24px;
	text-align: justify;
	font-weight: normal;
	color: #383838;
	font-family: 'Jost';
}
.myImages{
	text-align: center;
}
.contact{
	padding: 50px 0 25px;
}

.address-details{
	background-color: var(--thm-primary);
    color: #fff;
    position: relative;
    display: block;
    padding: 40px 30px 40px;
    margin-bottom: 30px;
    transition: all 500ms ease;
    min-height: 300px;
}
.address-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 33px;
    letter-spacing: var(--thm-letter-space-small);
    transition: all 500ms ease;
    color: var(--thm-base);
}
.address2 {
    position: relative;
    display: block;
    background-color: var(--thm-light);
    padding: 40px 30px 40px;
    margin-bottom: 30px;
    transition: all 500ms ease;
    min-height: 300px;
}
btn:focus{
	outline: none;
}
.p-arrow{
	left: 80%;
    bottom: 55px;
}
.t-contact:hover{
	color: var(--thm-base) !important; 
}
#message-error, #name-error, #email-error {
    display: none !important;
}
.related-post-content{ 
    padding: 35px 20px 35px;
    background-color: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0px; 
    z-index: 1;
}


.cases-one__single:hover .related-post-content:before {
    transform: translateY(0);
} 

.related-post-content:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background-color: var(--thm-primary);
    z-index: -1;
    transform: translateY(100%);
    transition: all 500ms ease;
}

.cases-one__single:hover .next-page {
    transform: translateY(0);
} 
.next-page {
    position: relative;
    bottom: 40px;
    display: flex;
    align-items: center;
    transition: all 500ms ease;
    font-size: 20px;
    transform: scale(0);
    color: var(--thm-base);
    left: 85%;
}


.multi-item-carousel {
  .carousel-inner {
    > .item {
      transition: 500ms ease-in-out left;
    }
    .active {
      &.left {
        left: -33%;
      }
      &.right {
        left: 33%;
      }
    }
    .next {
      left: 33%;
    }
    .prev {
      left: -33%;
    }
    @media all and (transform-3d), (-webkit-transform-3d) {
      > .item {
        // use your favourite prefixer here
        transition: 500ms ease-in-out left;
        transition: 500ms ease-in-out all;
        backface-visibility: visible;
        transform: none !important;
      }
    } 
  }
  .carouse-control {
    &.left,
    &.right {
      background-image: none;
    }
  }
}

.ang-right {
    list-style: none;
}

.right-arr {
    font-size: 27px;
    color: #288ab9;
}

.doc-list-data{
	font-size: 17px;
	display: flex;
}

.list-data {
    margin-left: 5px;
	text-align: justify;
}

.eventBox{
    color: #333;
    background: #fbf3f0;
    font-family: 'Cabin', sans-serif;
    text-align: center;
    padding: 0 0 50px;
    margin: 0 0 50px 15px;
    border-radius: 0 70px 0 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    position: relative;
    transition: all 0.3s;
}
.eventBox:before,
.eventBox:after{
    content: "";
    background: linear-gradient(to right, #02aeff,#00608d);
    width: 100%;
    position: absolute;
    left: 0;
    /*height: 5%;
    bottom: 10px;*/
}
.eventBox:after{
    height: 50px;
    top: 95%;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 100%, 0% 50%);
}
.eventBox .event-icon{
    color: #fff;
    background: linear-gradient(to right, #02aeff,#00608d);
    font-size: 45px;
    line-height: 45px;
    padding: 15px 0;
    margin: 0 0 20px -15px;
    border-radius: 0 70px;
}
.eventBox:hover .event-icon{ transform: rotateY(360deg); } 
.eventBox .title{
    color: #f83600;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.eventBox .description{
    font-size: 15px;
    text-align: center;
    line-height: 25px;
    margin: 0 15px;
}
.eventBox.purple:before,
.eventBox.purple:after,
.eventBox.purple .event-icon{
    background: linear-gradient(to right,#004cb2,#00122a); 
}
.eventBox.purple .title{ color: #800fff; }
.eventBox.blue:before,
.eventBox.blue:after,
.eventBox.blue .event-icon{
    background: linear-gradient(to right, #0575e6, #021b79);
}
.eventBox.blue .title{ color: #021b79; }
.eventBox.pink:before,
.eventBox.pink:after,
.eventBox.pink .event-icon{
    background: linear-gradient(to right, #ff6b06, #ff016b);
}
.eventBox.pink .title{ color: #ff016b; }
@media only screen and (max-width:990px){
    .eventBox{ margin: 0 0 80px 15px; }
}

.service-ul li:before {
	background-color: #00608d;
	color: #fff !important;
	font-size: 30px;
	text-align: center;
	line-height: 50px;
	font-weight: 600;
	height: 50px;
	width: 55px;
	margin: 0 18px 25px 0px;
	border-radius: 68%;
	position: absolute;
}


.process-main {
    width: 100%;
    display: flex;
	justify-content: center;
}
.col-3 {
  width: 25%;
  position: relative;
}

.process-main .steps-line:not(:first-child):before{
    content: "";
    display: block;
    position: relative;
    width: 100%;
    height: 0px;
    top: 31px;
    left: calc(-48% + 20px);
    right: 0;
    background: #02608b;
    border: 1px #02608b solid;
    -o-transition: .4s;
    -ms-transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s;
    transition: .4s;
}
.process-step-cont {
    font-family: sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: space-between;
}
.process-step {
    height: 58px;
    width: 58px;
    background-color: var(--thm-primary);
    border-radius: 50%;
    color: var(--thm-base);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
    left: 0;
    transition: all 500ms ease;
}
.process-label {
    color: var(--thm-black);
    font-weight: 600;
    width: 100%;
    margin-top: 16px;
    line-height: 20px;
    font-size: 14px;
    text-align: center;
	    text-transform: initial;
}
.process-dots {
    width: 10px; 
    height: 10px;
    border-radius: 50%;
    background-color: #ebebeb;
    cursor: pointer;
}
.process-dot-cont {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    width: 60%; 
    padding-top: 5px;
}

@media screen and (max-width: 640px) {
  .process-main {
    flex-wrap: wrap;
  }
  .col-3 {
    width: 50%;
  }
  .process-main .steps-line:nth-of-type(3):not(:first-child):before {
    top: -19.5px;
    left: calc(-50% + 145px);
    transform: rotate(150deg);
  }
}
.pb30 {
    padding-bottom: 30px;
}
.doc-data {
    background-color: var(--thm-light);
    position: relative;
    display: block;
    padding: 30px 15px;
    transition: all 500ms ease;
    text-align: center;
}
.doc-data:hover {
    background-color: var(--thm-primary);
}
.doc-data:hover .doc-data-text{
    color: var(--thm-base);
}
.doc-data-text {
    font-size: 19px;
    margin: 0;
    line-height: 20px;
    transition: all 500ms ease;
} 
.bg-pd {
    padding: 50px 0;
}
.bg-grey {
    background-color: #f5f5f5;
}
.process-wrap {
    padding: 0;
}
section.client-section {
    padding: 60px 0;
}
img.client-img {
    display: block;
    position: relative;
    margin: 0 auto;
}
.img-bg {
   /* border: 1px solid #f5f5f5;*/
    padding: 20px; 
    box-shadow: 0px 0px 3px 0px #d5d5d5;
    min-height: 120px;
    justify-content: center;
}
.w-80{
	width:95%;
}
section.client-sec {
    padding: 0 0 60px;
}
.last-client-sec{
	padding: 0 0 60px;
}
.process-details {
    position: relative;
    display: block;
    padding: 0px;
}
.testimonials-client {
    position: relative !important;
    display: block !important;
    background-color: var(--thm-base) !important; 
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 7%) !important;
    padding: 40px 50px 57px !important;
	margin-top: 35px;
    
} 
.owl-data{
	width: 370px !important;
    margin-right: 30px !important;
}
.text-upper{
	text-transform: uppercase;
}



.main-timeline{
    overflow: hidden;
    position: relative;
}
.main-timeline .timeline{
    position: relative;
    margin-top: -79px;
}
.main-timeline .timeline:first-child{ margin-top: 0; }
.main-timeline .timeline:before,
.main-timeline .timeline:after{
    content: "";
    display: block;
    width: 100%;
    clear: both;
}
.main-timeline .timeline:before{
    content: "";
    width: 100%;
    height: 80%;
    box-shadow: -8px 0 5px -5px rgba(0, 0, 0, 0.5) inset;
    position: absolute;
    top: 20;
    right: 0;
    z-index: 2;
}
.main-timeline .timeline-icon{
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 25px solid transparent;
    border-top-color: #00122a;
    border-right-color: #00122a;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    transform: rotate(45deg);
}
.main-timeline .year{
    display: block;
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    margin: auto;
    font-size: 30px;
    font-weight: bold;
    color: #00122a;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: rotate(-45deg);
}
.main-timeline .timeline-content{
    width: 35%;
    float: right;
    background: #00122a;
    padding: 30px 20px;
    margin: 50px 0;
    z-index: 1;
    position: relative;
}
.main-timeline .timeline-content:before{
    content: "";
    width: 20%;
    height: 15px;
    background: #00122a;
    position: absolute;
    top: 50%;
    left: -20%;
    z-index: -1;
    transform: translateY(-50%);
}
.main-timeline .title{
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 10px 0;
}
.main-timeline .description{
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    margin: 0;
}
.main-timeline .timeline:nth-child(2n):before{ box-shadow: 8px 0 5px -5px rgba(0, 0, 0, 0.5) inset; }
.main-timeline .timeline:nth-child(2n) .timeline-icon{ transform: rotate(-135deg); }
.main-timeline .timeline:nth-child(2n) .year{ transform: rotate(135deg); }
.main-timeline .timeline:nth-child(2n) .timeline-content{ float: left; }
.main-timeline .timeline:nth-child(2n) .timeline-content:before{
    left: auto;
    right: -20%;
}
.main-timeline .timeline:nth-child(2n) .timeline-icon{
    border-top-color: #00334b;
    border-right-color: #00334b;
}
.main-timeline .timeline:nth-child(2n) .year{ color: #00334b; }
.main-timeline .timeline:nth-child(2n) .timeline-content,
.main-timeline .timeline:nth-child(2n) .timeline-content:before{ background: #00334b; }
.main-timeline .timeline:nth-child(3n) .timeline-icon{
    border-top-color: #034e71;
    border-right-color: #034e71;
}
.main-timeline .timeline:nth-child(3n) .year{ color: #034e71; }
.main-timeline .timeline:nth-child(3n) .timeline-content,
.main-timeline .timeline:nth-child(3n) .timeline-content:before{ background: #034e71; }
.main-timeline .timeline:nth-child(4n) .timeline-icon{
    border-top-color: #00608d;
    border-right-color: #00608d;
}
.main-timeline .timeline:nth-child(4n) .year{ color: #00608d; }
.main-timeline .timeline:nth-child(4n) .timeline-content,
.main-timeline .timeline:nth-child(4n) .timeline-content:before{ background: #00608d; }

.main-timeline .timeline:nth-child(5n) .timeline-icon{
    border-top-color: #096f9f;
    border-right-color: #096f9f;
}
.main-timeline .timeline:nth-child(5n) .year{ color: #096f9f; }
.main-timeline .timeline:nth-child(5n) .timeline-content,
.main-timeline .timeline:nth-child(5n) .timeline-content:before{ background: #096f9f; }



.main-timeline .timeline:nth-child(6n) .timeline-icon{
    border-top-color: #1788bc;
    border-right-color: #1788bc;
}
.main-timeline .timeline:nth-child(6n) .year{ color: #1788bc; } 
.main-timeline .timeline:nth-child(6n) .timeline-content,
.main-timeline .timeline:nth-child(6n) .timeline-content:before{ background: #1788bc; }

@media only screen and (max-width: 1199px){
    .main-timeline .timeline{ margin-top: -103px; }
    .main-timeline .timeline-content:before{ left: -18%; }
    .main-timeline .timeline:nth-child(2n) .timeline-content:before{ right: -18%; }
}
@media only screen and (max-width: 990px){
    .main-timeline .timeline{ margin-top: -127px; }
    .main-timeline .timeline-content:before{ left: -2%; }
    .main-timeline .timeline:nth-child(2n) .timeline-content:before{ right: -2%; }
}
@media only screen and (max-width: 767px){
    .main-timeline .timeline{
        margin-top: 0;
        overflow: hidden;
    }
    .main-timeline .timeline:before,
    .main-timeline .timeline:nth-child(2n):before{
        box-shadow: none;
    }
    .main-timeline .timeline-icon,
    .main-timeline .timeline:nth-child(2n) .timeline-icon{
        margin-top: -30px;
        margin-bottom: 20px;
        position: relative;
        transform: rotate(135deg);
    }
    .main-timeline .year,
    .main-timeline .timeline:nth-child(2n) .year{ transform: rotate(-135deg); }
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(2n) .timeline-content{
        width: 100%;
        float: none;
        border-radius: 0 0 20px 20px; 
        text-align: center;
        padding: 25px 20px;
        margin: 0 auto;
    }
    .main-timeline .timeline-content:before,
    .main-timeline .timeline:nth-child(2n) .timeline-content:before{
        width: 15px;
        height: 25px;
        position: absolute;
        top: -22px;
        left: 50%;
        z-index: -1;
        transform: translate(-50%,0);
    }
}
.main-timeline .tm2 {
    position: relative;
    margin-top: -10px !important;
}
.main-timeline .tm3 {
    position: relative;
    margin-top: 1px !important;
}
.main-timeline .tm4 {
    position: relative;
    margin-top: 3px !important;
}
.main-timeline .tm5 {
    position: relative;
    margin-top: -21px !important;
}
img.img-h {
    height: 80px;
}
div#google_translate_element{
	padding-left: 12px;
}

.goog-te-gadget {
	line-height: 0;
	font-size: 7px; 
	color: #fff; 
}
.dis-none{
	display:none;
}

.goog-te-gadget {
	font-family: 'Jost' !important;
	font-size: 12px !important;
	color: #fff !important;
	white-space: nowrap;
}
.goog-te-combo {
	margin: 4px 0;
	font-size: 12px !important;
	font-family: 'Jost' !important;
	text-transform: uppercase;
	padding: 5px;
	background-color: #00608d;
	color: #fff;
	border: 1px solid #fff;
}
.client-pdf-section{
	padding: 50px 0;
	background-color: #02608b;
	
}
.align-center {
    align-items: center;
}

.pl10{
	padding-left: 10px;
}
.section-pd {
    position: relative;
    display: block;
    padding: 50px 0;
}
.mb10 {
    margin-bottom: 10px;
}
.float-right{
	float: right;
}
.pb90 {
    padding-bottom: 90px;
}
img.event-img-align {
    display: flex;
    margin: 0 auto;
	max-width: 640px;
}
.newsletter-input-box{
	position: relative;
    display: block;
    margin-top: 18px;
}
.newsletter-input-box input{
	height: 65px;
    width: 100%;
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 500;
    padding-left: 30px;
    padding-right: 120px;
    outline: none;
    border: none;
}
form.newsletter-form {
    position: relative;
    display: block;
    background-color: #06050c;
    padding: 30px 40px 40px;
	height: 255px;
}
.newsletter-btn {
    font-size: 12px;
    color: var(--thm-base);
    font-weight: 700;
    background-color: var(--thm-primary);
    display: inline-block;
    border: none;
    outline: none;
    padding: 5px 20px;
    position: absolute;
    top: 115px;
    transform: translateY(-50%);
    right: 55px;
    text-transform: uppercase;
    transition: all 500ms ease; 
    letter-spacing: 0.1em; 
}
.subscribe-success-msg {
    font-size: 15px;
    color: #fff;
    margin-top: 30px;
}
.subscribe-success-msg h1{
	color: #fff;
}
.hide{
	display: none;
}


/*** 
=============================================
    Gallery style1 Area Css
=============================================
***/
.gallery-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.single-galley-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
}

.single-galley-style1 .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-black);
}

.single-galley-style1 .img-holder img {
    width: 100%;
    transform: scale(1.0);
}

.single-galley-style1:hover .img-holder img {
    transform: scale(1.1) rotate(0deg);
    opacity: 0.60;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.single-galley-style1 .overlay-content {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(-90deg) translateX(-100%);
    -ms-transform: perspective(400px) rotateY(-90deg) translateX(-100%);
    transform: perspective(400px) rotateY(-90deg) translateX(-100%);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: 2;
}

.single-galley-style1:hover .overlay-content {
    opacity: 1.0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0%);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0%);
    transform: perspective(400px) rotateY(0deg) translateX(-0%);
    transition: all 700ms ease;
}

.single-galley-style1 .overlay-content .zoom-button {
    position: relative;
    display: block;
}

.single-galley-style1 .overlay-content .zoom-button a {
    position: relative;
    display: inline-block;
    background-color: var(--thm-base);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 30px;
    line-height: 120px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-galley-style1 .overlay-content .zoom-button a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 50%;
    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);
    background-color: var(--thm-black);
    z-index: -1;
}

.single-galley-style1 .overlay-content .zoom-button a:hover::before {
    transform: scaleX(1.0);
}

.single-galley-style1 .overlay-content .zoom-button a:hover {
    color: #ffffff;
}

.card.event-img-bg {
    padding: 15px;
    box-shadow: 0px 0px 3px 0px #d5d5d5;
    min-height: 400px;
    justify-content: center;
}
.mt15 {
    margin-top: 15px; 
}
.event-title {
    color: var(--thm-primary);
}
.goog-logo-link, .goog-logo-link:link, .goog-logo-link:visited, .goog-logo-link:hover, .goog-logo-link:active {
    color: #999 !important;
}





.gallery-wrapper {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  grid-gap: 1em;
}
.gallery-wrapper .image-wrapper a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #333;
  transition: all 200ms ease-in-out;
  /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);*/
}
/*.gallery-wrapper .image-wrapper a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}*/
.gallery-wrapper .image-wrapper a img {
  width: 100%;
}

.gallery-lightboxes .image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0ms ease-in-out;
      z-index: 9999;
}
.gallery-lightboxes .image-lightbox:target {
  opacity: 1;
  visibility: visible;
}
.gallery-lightboxes .image-lightbox:target .image-lightbox-wrapper {
  opacity: 1;
  transform: scale(1, 1) translateY(0);
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper {
  transform: scale(0.95, 0.95) translateY(-30px);
  transition: opacity 500ms ease-in-out, transform 500ms ease-in-out;
  opacity: 0;
  margin: 1em auto;
  max-width: 75%;
  padding: 0.5em;
  display: inline-block;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  position: relative;
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .close {
  width: 1.5em;
  height: 1.5em;
  background: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 0 0 2px white inset, 0 0 5px rgba(0, 0, 0, 0.5);
  position: absolute;
  right: -1em;
  top: -1em;
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .close:before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #fff;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -5px;
  transform: rotate(-45deg);
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .close:after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #fff;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -5px;
  transform: rotate(45deg);
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .arrow-left {
  position: absolute;
  top: 0;
  right: 50%;
  bottom: 0;
  left: 0;
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .arrow-left:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-right: 0;
  border-radius: 4px 0 0 0;
  position: absolute;
  top: 50%;
  right: 100%;
  cursor: pointer;
  transform: rotate(-45deg) translateY(-50%);
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .arrow-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .arrow-right:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 4px 0 0;
  position: absolute;
  top: 50%;
  left: 100%;
  cursor: pointer;
  transform: rotate(45deg) translateY(-50%);
}
.gallery-lightboxes .image-lightbox .image-lightbox-wrapper img {
  margin: 0 auto;
  max-height: 70vh;
}
@media screen and (min-width: 991px){
	.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .close {
	  width: 0;
	  height: 0;
	  background: none;
	  border-radius: 0%;
	  right: -7.5em;
	  top: -1em;
	  font-size: 3.5em;
	}
	.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .close:before {
		width: 20px;
	}
	.gallery-lightboxes .image-lightbox .image-lightbox-wrapper .close:after {
		width: 20px;
	}
}


section.event-details-section {
    padding: 60px 0 30px;
}
.event-title{
	font-size: 17px;
}
.event-details{
    font-size: 18px;
    font-weight: 400;
}

@media screen and (min-width: 991px) {
  #gallery {
    padding: 0px 0px 50px;
  }
}

.img-wrapper {
  position: relative;
  margin-top: 15px;
  max-height: 230px;
  overflow: hidden;
}
.img-wrapper img {
  width: 100%;
  margin-bottom: 0px;
}

.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
}
.img-overlay i {
  color: #fff;
  font-size: 1.5em;
  cursor: pointer;
}

#overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5%;
}
@media screen and (min-width: 768px) {
  #overlay img {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  #overlay img {
    width: 46%;
  }
}

#nextButton {
  color: #fff;
  font-size: 1.5em;
  transition: opacity 0.8s;
}
#nextButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #nextButton {
    font-size: 1.5em;
  }
}

#prevButton {
  color: #fff;
  font-size: 1.5em;
  transition: opacity 0.8s;
}
#prevButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #prevButton {
    font-size: 1.5em;
  }
}

#exitButton {
  color: #fff;
  font-size: 1.5em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}
#exitButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #exitButton {
    font-size: 1.5em;
  }
}