﻿/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: 'Roboto', sans-serif;
    --thm-reey-font: 'Poppins', sans-serif;    
    --thm-gray: #726f84;
    --thm-gray-rgb: 114, 111, 132;
    --thm-primary: #ff0000;
    --thm-primary-rgb: 255, 0, 0;
    --thm-black: #000000;
    --thm-black-rgb: 0, 0, 0;
    --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: 15px;
    line-height: 26px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

p {
    text-align: justify;  
   
    line-height: 26px;
    margin: 0 0 15px;
    text-transform: none;
    font-weight: 400;

}

::-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: 1430px;
    }
}

/* 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: var(--thm-base);
    color: var(--thm-primary);
}



.section-title {
    margin-top: -12px;
    margin-bottom: 50px;
}

.section-title__title {
    margin: 0;
    font-weight: 700;
    color: var(--thm-black);
    /*font-size: 30px;*/
  /*  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: 22px;*/
    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: var(--thm-black);
    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/loader.png);
    -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: 60px 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 60px;
    /*background: transparent;
    background: #0000004d;*/
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); /* Siyahın opacity'si yukarıdan aşağıya düşüyor */

    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 91;
    transition: all 500ms ease;
}

.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: 20px 30px;
    padding-left: 0;
    /*border-right: 1px solid rgba(255, 255, 255, .15);*/
}





.main-menu-wrapper__main-menu {
    position: relative;
    display: flex;
    padding-left: 40px;
}


.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: 20px;*/
}

.boxed-wrapper .main-menu-wrapper__search-box {
    margin-right: 0;
}

.main-menu-wrapper__search {
    font-size: 24px;
    color: var(--thm-base);
    padding: 20px 60px 20px;
    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;
}

.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-primary);
}





.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: 35px;
    padding-bottom: 35px;
    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,
.stricky-header .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);
}




.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--thm-primary);
    color: var(--thm-primary);
    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,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color: var(--thm-base);
}

.main-menu .main-menu__list>li.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: 13rem;
    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: 0;
    left: 0;
    background-color: var(--thm-black);
    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);
}

/*caret için eklenenler*/

    /* Caret simgesini stilize et */
    .main-menu .main-menu__list > li > a .fas,
    .stricky-header .main-menu__list > li > a .fas {
        font-size: 12px;
        color: var(--thm-base); /* Caret rengi */
        margin-left: 5px;
        transition: transform 300ms ease; /* Caret dönüşüm animasyonu */
    }

    /* Dropdown menüsünün hover olması durumunda caret yönünü değiştirin */
    .main-menu .main-menu__list > li:hover > a .fas,
    .stricky-header .main-menu__list > li:hover > a .fas {
        transform: rotate(180deg); /* Careti döndür */
    }

    /* Varsayılan olarak caret simgeleri görünür durumda olacak */
    .main-menu .main-menu__list > li.dropdown > a .fas,
    .stricky-header .main-menu__list > li.dropdown > a .fas {
        display: inline-block;
    }

/*caret bitti*/

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important
    }
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-black);
    cursor: pointer;
}

.mobile-nav__buttons a+a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
    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;
}

/*--------------------------------------------------------------
# Lang Popup
--------------------------------------------------------------*/
.lang-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;
}

.lang-popup.active {
    transform: translateY(0%);
}

.lang-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.75;
    cursor: pointer;
}

.lang-popup__content {
    /* width: 100%; */
    max-width: 560px;
}

.lang-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: var(--thm-base);
    border-radius: 0px;
    overflow: hidden;
}



    .lang-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: lightslategray;
        margin: 5px;
    }

.lang-popup__content .thm-btn:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

.lang-popup__content .thm-btn i {
    margin: 0;
}

.lang-popup__content .thm-btn img {
    width:30px;
    padding-right: 5px;
}

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.main-slider {
    overflow: hidden;
    position: relative;
    min-height: 66vh;
}

.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: 296px;
    padding-bottom: 178px; */
    min-height: 750px;
}

.main-slider__content {
    position: relative;
    display: block;
    padding-top: 250px;
}

.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: 700;
    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: 75px;
    line-height: 105px;
    /* 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: 700;
    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;*/
    padding: 40px 30px 40px;
    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: 70px 0;
}

.brand-one__title {
    color: var(--thm-base);
    /* text-transform: uppercase; */
    font-size: 20px;
    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.7;
    max-width: 100%;
}

.brand-one .swiper-slide img:hover {
    opacity: 1;
}

/*--------------------------------------------------------------
# Welcome One
--------------------------------------------------------------*/
.welcome-one {
    position: relative;
    display: block;
    padding: 120px 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: 700;
    /* text-transform: uppercase; */
    line-height: 60px;
    margin-bottom: 37px;
    margin-top: -12px;
    letter-spacing: var(--thm-letter-space-small);
}

.welcome-one__text {
    margin: 0;
    padding-bottom: 37px;
}

.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;
}

.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: 25px 60px 15px;
    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: 700;
    /* text-transform: uppercase; */
    line-height: 30px;
    margin-bottom: 11px;
    margin-top: -6px;
    letter-spacing: var(--thm-letter-space-small);
}

.two-boxes__text {
   /* font-size: 16px;
    margin: 0;*/
}

/*--------------------------------------------------------------
# Cases One
--------------------------------------------------------------*/
.cases-one {
    position: relative;
    display: block;
    background-color: var(--thm-light);
 
    padding: 3px 0;
   /* margin-top: -60px;*/
}

.fullscreen {
    width: 100%;
    /* height: 100vh; */
    /* object-fit: cover; */
    /* max-width: 100%; */
    /* max-height: 100vh; */
    margin-bottom: -10px;
}

.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%;
   /* mix-blend-mode: luminosity;*/
    transform: scale(1);
    opacity: .7;
    transition: all 500ms ease;
}

.cases-one__single:hover .cases-one__img>img {
    transform: scale(1.05);
    opacity: 1;
}

.cases-one__content {
    padding: 15px 25px 15px;
    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);
    opacity:0.8;
    z-index: -1;
    transform: translateY(100%);
    transition: all 500ms ease;
}

.cases-one__single:hover .cases-one__content:before {
    transform: translateY(1%);
}



.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: 700;
    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: 30px;
    color: var(--thm-base);
    font-weight: 700;
    /* text-transform: uppercase; */
    line-height: 34px;
    letter-spacing: var(--thm-letter-space-small);
}

.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: 700;
    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: 700;
    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: 700;
    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: 700;
}

.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: 120px 0 120px;
}







.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: 64px;
    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 {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, .07);
    padding: 40px 50px 57px;
}

.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 {
    position: absolute;
    left: 50px;
    bottom: -38px;
    overflow: hidden;
    border-radius: 50%;
}

.testimonials-one__client-img>img {
    width: 77px;
    border-radius: 50%;
    -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: var(--thm-black);
    text-align: center;
}

.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: 40px 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;
   /* background-color: #06050c;*/
    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: 700;
    line-height: 50px;
    margin-bottom: 4px;
    margin-top: 25px;
    font-family: var(--thm-font) !important;
    letter-spacing: var(--thm-letter-space-small);
}

.counter-one__text {
    /*font-size: 15px;
    font-weight: 700;*/
    color: var(--thm-base);
    /* text-transform: uppercase; */
    margin: 0;
    letter-spacing: var(--thm-letter-space-big);
    text-align:center;
}

.counter-one__single .odometer-formatting-mark {
    display: none;
}

/*--------------------------------------------------------------
# Financial Advice
--------------------------------------------------------------*/
.financial-advice {
    position: relative;
    display: block;
    padding: 0 0 104px;
    margin-top: -95px;
}

.financial-advice__box {
    position: relative;
    display: block;
}

.financial-advice__box .tab-btns {
    position: relative;
    display: block;
    z-index: 1;
    margin: 0;
}

.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: 700;
    /* 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;
}

.financial-advice__list-box {
    position: relative;
    display: block;
    margin-top: -5px;
}

.financial-advice__list-box li {
    position: relative;
    display: block;
    padding-left: 90px;
}

.financial-advice__list-box li+li {
    margin-top: 43px;
}

.financial-advice__icon {
    height: 60px;
    width: 60px;
    background-color: #ebf1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 5px;
    left: 0;
    transition: all 500ms ease;
    color: var(--thm-primary);
}

.financial-advice__list-box li:hover .financial-advice__icon {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}

.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;
}



.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: 70px 0 70px;
}

.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.3);
    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: -20px;
    margin-left: 20px;
    padding: 30px 36px 37px;
    transition: all 500ms ease;
    border-top: 10px solid var(--thm-primary);
}

.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: 21px;
    font-weight: 700;
   /* line-height: 24px;*/
    letter-spacing: var(--thm-letter-space-small);
    /* text-transform: uppercase; */
    margin-bottom: 11px;
    height: 4.5em; /* Yükseklik: 3 satırlık alan (satır başına yaklaşık 1.5em) */
    overflow: hidden; /* Taşan metni gizler */
    text-overflow: ellipsis; /* '...' ekler */
    display: block;
    white-space: normal; /* Normal satır başı davranışı */
    line-height: 1.5em; /* Satır yüksekliği */
}

.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;
   /* line-height: 22px;*/

    height: 4.5em; /* Yükseklik: 3 satırlık alan (satır başına yaklaşık 1.5em) */
    overflow: hidden; /* Taşan metni gizler */
    text-overflow: ellipsis; /* '...' ekler */
    display: block;
    white-space: normal; /* Normal satır başı davranışı */
    line-height: 1.5em; /* Satır yüksekliği */
}




.news-one__btn {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    /* text-transform: uppercase; */
    color: var(--thm-black);
    transition: all 500ms ease;
    letter-spacing: var(--thm-letter-space-big);
    margin-top:10px;
}

.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;
   
    /*border-top:10px solid var(--thm-primary);*/
}

.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: 10px 0;
}

.cta-one-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: center center;
    background-size: cover;
    background-color: var(--thm-primary);
    
    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: 26px;
    color: var(--thm-base);
   /* line-height: 50px;
    font-weight: 700;*/
    /* text-transform: uppercase; */
    letter-spacing: var(--thm-letter-space-small);
    text-align:center;
}



.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: 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: 105px 0 2px;
}

.footer-widget__about {
    position: relative;
    display: block;
    margin-top: -10px;
    margin-right: 70px;
}

.footer-widget__about-logo {
    position: relative;
    display: block;
    /*margin-bottom: 35px;*/
}





.footer-widget__text {
    font-size: 16px;
    color: #8f8da0;
    margin: 0;
}

.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: center;
}

.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: normal;
        text-align: left;
    }

.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: 700;
    line-height: 28px;
    /* text-transform: uppercase; */
    color: var(--thm-base);
    margin-bottom: 20px;
    letter-spacing: var(--thm-letter-space-small);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    padding-bottom: 20px;
    margin-top: 24px;
}

.footer-widget__explore-list {
    position: relative;
    display: block;
    float: left;
    margin-right: 60px;
}

.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: 30px 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;
    border-top: 1px solid rgba(255, 255, 255, .10);
}
    .site-footer__social span {
        color: var(--thm-primary);
        margin-right:15px;
    }
        .site-footer__social a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--thm-primary);
        font-size: 30px;
        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>a>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 20px 42px;
    text-align:center;
    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: 700;
    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: 700;
    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: 65px;
    width: 65px;
    background-color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-base);
    font-size: 25px;
    position: absolute;
    top: 20px;
    right: -50px;
    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: 65px;
    height: 65px;
    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: 65px;
    height: 65px;
    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-btn2 {
    height: 65px;
    width: 65px;
    background-color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-base);
    font-size: 25px;
    position: absolute;
    top: 120px;
    right: -50px;
    transition: all 500ms ease;
}

    .video-two__video-btn2:hover {
        background-color: var(--thm-base);
        color: var(--thm-primary);
    }




/*--------------------------------------------------------------
# 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: 700;
    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: 50%;
    left: 50%;
    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: 120px 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: 43px;
    left: 50px;
    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: 50px;
    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;
}

.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;
}

.team-one__social a:hover {
    color: var(--thm-base);
    transform: scale(.85);
}

/*--------------------------------------------------------------
# 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: 700;
    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: 700;
    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: 700;
    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: 700;
    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: 20px;
    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: 16px;
    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>a>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;
    padding:5px;
   /* margin-bottom: 30px;
    width:298px;*/
}

.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 33px;
    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(90%);
}

.cases-two__icon-box-details {
    position: relative;
    display: block;
    /*float: left;*/
    text-align:center
}



.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: 700;
    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: 700;
    line-height: 34px;
    /* text-transform: uppercase; */
    letter-spacing: var(--thm-letter-space-small);
    text-align:center;
}

.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);
    font-size:26px;
}

.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: 700;
    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 0px;
}



.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: 30px;
    margin-bottom:30px;
   /* padding-top: 30px;*/
}

.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: 700;
    /* 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: 99px;
    margin-top: 49px;
    padding-bottom: 42px;
}

.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: 18px;
    font-weight: 700;
    /* text-transform: uppercase; */
    margin-bottom: 24px;
}

.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: 118px 0 119px;
    border-top: 1px solid #e6e9ef;
}

.brand-three .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-three .swiper-slide img {
    transition: 500ms;
    opacity: 0.3;
    max-width: 100%;
}

.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(../images/backgrounds/page-header-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;
}

.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: 700;
    /* 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-1.png);
    z-index: 10;
    mix-blend-mode: overlay;
}

.page-header-shape-2 {
    background-image: url(../images/shapes/page-header-bg-1-2.png);
    z-index: 9;
    mix-blend-mode: overlay;
    opacity: 0.4;
}

.page-header-shape-3 {
    background-image: url(../images/shapes/page-header-bg-1-3.png);
    z-index: 8;
    mix-blend-mode: overlay;
    opacity: 0.4;
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.services-details {
    position: relative;
    display: block;
    padding: 10px 0;
}

.services-details__left {
    position: relative;
    display: block;
}

.services-details__img {
    position: relative;
    display: block;
    background-color: var(--thm-black);
}

.services-details__img>img {
    width: 100%;
    /*mix-blend-mode: luminosity;*/
}

.services-details__top-content {
    margin-top: 42px;
    margin-bottom: 53px;
}
    .services-details__top-content > h4 {
        margin-bottom: 11px;
    }
.services-details__top-title {
    font-size: 36px;
    font-weight: 700;
    /* 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: 700;
    /* text-transform: uppercase; */
    line-height: 34px;
    margin-bottom: 20px;
}

.services-details__planning-text {
    font-size: 16px;
    margin: 0;
}

.services-details__planning-list {
    padding-top: 18px;
    padding-bottom: 18px;
}

.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: 700;
    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;
    background-color: var(--thm-light);
    ;
    padding: 43px 30px 34px;
}

.services-detials__categories {
    font-size: 20px;
    font-weight: 700;
    /* text-transform: uppercase; */
    line-height: 30px;
    margin-bottom: 7px;
    padding-left: 20px;
}

.services-details__services-list {
    position: relative;
    display: block;
}

.services-details__services-list li {
    position: relative;
    display: block;
}

.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;
    background-color: var(--thm-light);
    ;
    padding: 4.5px 20px;
    transition: all 500ms ease;
}

.services-details__services-list li.active a,
.services-details__services-list li:hover a {
    background-color: var(--thm-base);
    color: var(--thm-black);
}

.services-details__services-list li span {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    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: 700;
    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: 700;
    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: 700;
    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: 700;
    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: 700;
    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: 700;
    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"],
    .comment-form__input-box select {
        height: 70px;
        width: 100%;
        border: none;
        background: var(--thm-light);
       
        padding-left: 30px;
        padding-right: 60px;
        margin-bottom: 13px;
        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;
}

.comment-form__btn:hover {
    background: var(--thm-black);
    color: var(--thm-base);
}

/*--------------------------------------------------------------
## Message Box
--------------------------------------------------------------*/
.message-box {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}





.message-box__left .section-title__title {
   /* font-size: 48px;
    line-height: 58px;*/
}

.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: var(--thm-primary);
    font-size: 35px;
    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: 45px 50px 40px;
    margin-bottom: 30px;
    transition: all 500ms ease;
}

.locations__single:hover {
    background-color: var(--thm-primary);
}

.locations__title {
    font-size: 20px;
    font-weight: 700;
    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: 15px;
    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: 700;
    line-height: 60px;*/
    /* text-transform: uppercase; */
    /*margin-top: -12px;
    letter-spacing: var(--thm-letter-space-small);*/
    /*font-size: 30px;
    font-weight: 600;*/
    /* line-height: 60px; */
    /* text-transform: uppercase; */
    /* margin-top: -12px; */
    /*letter-spacing: var(--thm-letter-space-small);*/

    position: relative;
    display: flex;
    align-items: center;
    margin: 20px 0;
    /* margin-top: 40px; */
}

.about__icon-box {
    position: relative;
    display: flex;
    align-items: center;
    margin: 30px 0;
}



.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: 700;
    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: 700;
}

.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: 700;
    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: 700;
}


.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: 700;
    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: 700;
    /* 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: 700;
    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: 700;
    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: 700;
    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;
}

.mt-70{
    margin-top: 70px;
}
.mb-70{
    margin-bottom: 70px;
}

.pt-50{
    padding-top: 50px;
}
.pb-50{
    padding-bottom: 50px;
}

.border-b{
    border-bottom: 1px solid #ccc;
}
.cat-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    /* border-bottom: 1px solid #e6e9ef; */
    /* padding: 30px 0 30px;
    margin-top: 55px; */
}
.error {
    background-color: red;
    /* position: absolute; */
    padding: 5px;
    font-size: 14px;
    color: white;
    position: relative; 
}

    .error::after {
        content: "";
        position: absolute;
        bottom: 100%; /* Okun konumunu kutunun üstüne yerleştirir */
        left: 50%;
        transform: translateX(-50%); /* Ortalamak için */
        width: 0;
        height: 0;
        border-left: 5px solid transparent; /* Okun sağ kenarı */
        border-right: 5px solid transparent; /* Okun sol kenarı */
        border-bottom: 5px solid red; /* Okun rengi */
    }

/* Whatsapp button */

.trwpwhatsappballon {
    font-size: 14px;
    border-radius: 12px;
    border: 1px solid #fff;
    max-width: 250px;
}

.trwpwhatsapptitle {
    background-color: #22c15e;
    color: white;
    padding: 14px;
    border-radius: 12px 12px 0px 0px;
    text-align: center;
    line-height: normal;
}

.trwpwhatsappmessage {
    padding: 16px 12px;
    background-color: white;
}

.trwpwhatsappinput {
    background-color: white;
    border-radius: 0px 0px 12px 12px;
}

    .trwpwhatsappinput input {
        width: 230px;
        /* border-radius: 10px; */
        /* margin: 1px 1px 0px 2px; */
        margin: 3px 7px;
        padding: 2px 9px;
        /*font-family: "Raleway", Arial, sans-serif;*/
        font-weight: 300;
        font-size: 13px;
        background-color: #efefef;
        border: 1px solid #d4d4d4;
    }

.trwpwhatsappbutton {
    background-color: #22c15e;
    border-radius: 20px;
    padding: 8px 15px;
    cursor: pointer;
    color: #fff;
    /*max-width: 220px;*/
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.trwpwhatsappall {
    position: fixed;
    z-index: 9999999999999999999;
    bottom: 27px;
    right: 105px;
    /*font-family: "Raleway", Arial, sans-serif;*/
    font-weight: 300;
    font-size: 14px;
}

.trwpwhatsappsendbutton {
    color: #22c15e;
    cursor: pointer;
    border: none;
}

    .trwpwhatsappsendbutton i {
        margin-top: 133px;
        margin-right: 0px;
        float: right;
        position: absolute;
        z-index: 999999999999;
        right: 23px;
        top: 11px;
        bottom: 81px;
        font-size: 18px !important;
    }

/* button {
    border: none;
}

button i {
    float: right;
    position: absolute;
    z-index: 999999999999;
    right: 23px;
    top: 11px;
    bottom: 81px;
    font-size: 18px !important;
}*/

.kapat {
    position: absolute;
    right: 8px;
    top: 11px;
    /* font-size: 13px; */
    border: 1px solid #fff;
    /* border-radius: 99px; */
    padding: 0px 5px 0px 5px;
    color: white;
    /* font-size: 10px; */
    margin: 5px;
    cursor: pointer;
    /* padding: 0; */
}

/*language menu*/
.language-menu {
    position: relative;
    display: inline-block;
}

    .language-menu .dropdown-toggle {
        background-color: #f8f9fa;
        padding: 10px 20px;
        font-size: 16px;
        text-decoration: none;
        color: #333;
        border-radius: 4px;
        cursor: pointer;
    }

        .language-menu .dropdown-toggle i {
            margin-left: 5px;
        }

    .language-menu .dropdown-menu {
        display: none;
        position: absolute;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        min-width: 200px;
        padding: 10px;
        border-radius: 4px;
        z-index: 1000;
        grid-template-columns: repeat(2, 1fr); /* İki sütun oluştur */
        grid-gap: 10px;
    }

    .language-menu:hover .dropdown-menu {
        display: grid; /* Grid yapısını aktif ediyoruz */
    }

    .language-menu .dropdown-menu li {
        list-style: none;
    }

        .language-menu .dropdown-menu li a {
            display: block;
            padding: 8px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            border-radius: 4px;
        }

            .language-menu .dropdown-menu li a:hover {
                background-color: #f0f0f0;
            }

            .language-menu .dropdown-menu li a:focus {
                outline: none;
                background-color: #f0f0f0;
            }

/*language menu*/


/*swiper main-slider-pagination*/
main-slider-pagination

#main-slider-pagination {
    transform: translateY(50%) !important;
}

.swiper-pagination-bullet {
    width: 30px !important;
    height: 4px !important;
    border-radius: 4px !important;
    transition: all 0.3s;
    background: #ffffff;
}

.swiper-pagination-bullet-active {
    width: 40px !important;
    background: #ffffff;
}




/*swiper main-slider-pagination*/


/*accordion*/

.accordion.accordion-flush .accordion-item {
    background-color: var(--thm-light); /* Gri arka plan için */
}

.accordion.accordion-flush .accordion-header {
    background-color: var(--thm-light); /* Gri başlık arka planı */
}

.accordion.accordion-flush .accordion-body {
    background-color: var(--thm-light); /* Gri içerik arka planı */
}

/* Accordion header (açıldığında ve kapalıyken) */
.accordion-button {
    background-color: var(--thm-light) !important; /* Gri arka plan */
    color: #000 !important; /* Siyah metin */
    border: none !important; /* Varsayılan sınırları kaldır */
}

    /* Accordion header (açıldığında hover efekti için) */
    .accordion-button:not(.collapsed) {
        background-color: var(--thm-light) !important; /* Açıldığında gri kalsın */
        color: #000 !important; /* Siyah metin */
        box-shadow: none !important; /* Varsayılan gölgeleri kaldır */
    }

/* Accordion body (içerik alanı) */
.accordion-body {
    background-color: var(--thm-light) !important; /* Gri içerik arka planı */
}

/* Accordion button focus ve active durumu için border ve box-shadow kaldırma */
.accordion-button:focus {
    box-shadow: none !important; /* Focus (odaklanma) sırasında mavi gölgeyi kaldır */
    border-color: transparent !important; /* Border'ı kaldır */
}

/* Accordion button active durumu için border ve box-shadow kaldırma */
.accordion-button:not(.collapsed) {
    box-shadow: none !important; /* Açıldığında mavi gölgeyi kaldır */
    border-color: transparent !important; /* Açıldığında border'ı kaldır */
}

.accordion-button {
    /*font-size: 1.25rem;  Yazı boyutunu büyüt */
    padding: 1rem; /* Düğmenin etrafındaki boşluğu arttır */
    font-weight: bold; /* Yazıyı kalın yap */
}

    .accordion-button:not(.collapsed) {
        background-color: #f8f9fa; /* Aktif başlık için farklı bir arka plan rengi */
    }

/*accordion*/


.locations__img {
    position: absolute;
    top: 52px;
    left: 14px;
    width: 25px;
   /*width:200px;*/
}

.financial__right-content p{
    margin:0;
}

/*form mesajı*/

.text-danger {
    display: none; /* Hata yokken görünmez */
    position: relative;
    background-color: #f8d7da; /* Kırmızı arka plan */
    color: #721c24; /* Koyu kırmızı yazı rengi */
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

    /* Ok için */
    .text-danger::before {
        content: "";
        position: absolute;
        top: -10px;
        left: 10px;
        border-width: 0 10px 10px 10px;
        border-style: solid;
        border-color: transparent transparent #f8d7da transparent;
    }

/* Hata olduğunda göster */
.field-validation-error {
    display: block !important; /* Hata mesajı varsa görünür hale getirin */
}

/* Küçük ekranlarda daha dar alanlarda mesajın görünümü */
@media (max-width: 768px) {
    .text-danger {
        font-size: 12px;
    }
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f4f4f4;    
    text-align: center;
    padding: 10px;
    display: none;
    z-index: 1000;
}

    .cookie-banner a {
        color: #0d6efd;
    }

    .cookie-banner button {
        background-color: #0d6efd;
        border: none;
        color: #fff;
        padding: 5px 10px;
        margin-left: 10px;
        cursor: pointer;
    }

    /*video tam ekran*/
.fullscreen {
    width: 100%;
    height: 100vh;
    object-fit: cover; /* Videonun orantılı şekilde sığması için */
    max-width: 100%; /* Genişliğin %100'ü geçmemesi için */
    max-height: 100vh; /* Yüksekliğin %100'ü geçmemesi için */
    margin-bottom: -10px;
}

.icon-buttons button {
    margin-left: 10px;
}




.icon-buttons i {
    margin-right: 5px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}


/*thumb swiper*/
.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

    .mySwiper .swiper-wrapper {
        display: flex;
        justify-content: center;
    }

    .mySwiper .swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.6;
    }

    .mySwiper .swiper-slide-thumb-active {
        opacity: 1;
    }

    .mySwiper .swiper-slide img {
        display: block;
          width: 100%;
        height: 100%;
        object-fit: cover;
    }


   /* magnific boyutunu büyütüyoruz*/
.mfp-wrap.mfp-ozel .mfp-content {
    height: 800px;
    max-height: 90vh;
    width: 1200px;
    max-width: 90vw;
}

