/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: 'Inter', sans-serif;
    --thm-reey-font: 'reeyregular';
    --thm-base: #1fbff7;
    --thm-base-rgb: 77, 95, 227;
    --thm-primary: #ffd45f;
    --thm-primary-rgb: 255, 212, 95;
    --thm-gray: #757783;
    --thm-gray-rgb: 117, 119, 131;
    --thm-black: #a25ec3;
    --thm-black-rgb: 28, 30, 39;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: var(--thm-font);
    color: var(--thm-gray);
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-black);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-base);
    font-weight: 700;
    margin: 0;
}


.noSelect {
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}


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;
}


.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}


.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}
.section-gapping {
    padding: 120px 0px;
}


@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--thm-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--thm-black);
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
    background: var(--thm-primary);
    color: #fff;
    cursor: pointer;
}

::-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: #21bff4;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 25px 12px;
    border-radius: 40px;
    transition: all 0.3s linear;
    overflow: hidden;
    letter-spacing: 0.1em;
    z-index: 1;
}

.thm-btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--thm-black);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.thm-btn:hover:after {
    opacity: 1;
    transform: scaleY(1.0);
}

.thm-btn:hover {
    color: #ffffff;
}

.section-title {
    position: relative;
    display: block;
    margin-bottom: 10px;
    padding-bottom: 20px;
}
.section-title__tagline {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 10px;
}

.section-title__title {
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: capitalize;
    color: #21bff4;
}

.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: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/***
=============================================
    Scroll To Top
=============================================
***/
.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--thm-base);
    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: #ffffff;
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: var(--thm-black);
}

.scroll-to-top:hover i {
    color: #fff;
}


/***
=============================================
    Main Header One
=============================================
***/

.main-header {
    position: relative;
    display: block;
}

.main-header--one {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-header-one__bottom {
    position: relative;
    display: block;
    background: transparent;
}

.main-header-one__bottom-inner {
    position: relative;
    z-index: 10;
}

.main-header-one__bottom-inner .main-menu {
    position: relative;
    display: block;
}


.main-menu {
    position: relative;
    z-index: 91;
}

.main-menu__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-direction: row;
    flex-wrap: wrap;
}

.main-menu__inner .left {
    display: flex;
    align-items: center;
}

.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;
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    position: relative;
    padding-top: 22px;
    padding-bottom: 21px;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 50px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    position: relative;
    color:#ffffff;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    transition: all 500ms ease;
    font-family: var(--thm-manrope-font);
}

.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);
    text-shadow: 0 0 1px currentColor;
}

.main-menu .main-menu__list>li.dropdown a,
.stricky-header .main-menu__list>li.dropdown a {
    padding-right: 0px;
}

.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: right center;
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 500ms ease;
    z-index: 99;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.main-header-two__bottom .main-menu .main-menu__list li ul {
    margin-top: 13px;
}

.stricky-header .main-menu__list li ul {
    margin-top: 0px;
}

.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 #f7f7f7;
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
    position: relative;
    display: block;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
    font-family: var(--thm-manrope-font);
}

.main-menu .main-menu__list li ul>li:last-child>a,
.stricky-header .main-menu__list li ul li ul>li:last-child>a {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
    background-color: var(--thm-base);
    color: #fff;
}


.main-menu .main-menu__list li ul li>ul,
.stricky-header .main-menu__list li ul li>ul {
    top: 0;
    left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul,
.stricky-header .main-menu__list li ul li>ul ul {
    display: none;
}

.main-header-one__bottom .right {
    position: relative;
    display: block;
}

.main-menu__right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__right-login-register {
    position: relative;
    display: block;
    margin-right: 26px;
}

.main-menu__right-login-register ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-menu__right-login-register ul li {
    position: relative;
    float: left;
    margin-left: 11px;
    padding-right: 12px;
}

.main-menu__right-login-register ul li::before {
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 0;
    background: #e2e4eb;
    width: 1px;
    transform: rotate(20deg);
    content: "";
}

.main-menu__right-login-register ul li:first-child {
    margin-left: 0;
}

.main-menu__right-login-register ul li:last-child {
    padding-right: 0;
}

.main-menu__right-login-register ul li:last-child:before {
    display: none;
}

.main-menu__right-login-register ul li a {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-menu__right-login-register ul li a:hover {
    color: var(--thm-base);
}


.main-menu__right-cart-search {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.main-menu__right-cart-search::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    width: 1px;
    content: "";
}

.main-menu__right-cart-box {
    position: relative;
    display: block;
}

.main-menu__right-cart-box a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-menu__right-cart-box a:hover {
    color: var(--thm-base);
}

.main-menu__right-cart-box a span::before {
    font-size: 25px;
    line-height: 35px;
}

.main-menu__right-search-box {
    position: relative;
    display: block;
    margin-left: 29px;
}

.main-menu__right-search-box .thm-btn {
    font-size: 12px;
    padding: 5px 30px 2px;
}

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.stricky-header.main-menu {
    padding: 0 0px;
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px
}

.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@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;
    }
}

@media (max-width: 1199px) {

    .stricky-header {
        display: none !important
    }
}

@media (min-width: 1200px) {

    .mobile-nav__buttons {
        display: none;
    }
}

@media (min-width: 1200px) {

    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

/*----------------------------------------
# Main Header Two
-----------------------------------------*/

.stricky-header--style2 .main-menu__inner .left {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}



.stricky-header--style2 .search-box {
    display: none;
}

/*----------------------------------------
# Main Header Three
-----------------------------------------*/
.main-header--three {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.stricky-header--style3 .main-menu__inner .left {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.stricky-header--style3 .main-header-three__bottom_right {
    display: none;
}


.main-header-three__top {
    position: relative;
    display: block;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
}

.main-header-three__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-direction: row;
    flex-wrap: wrap;
}


.main-header-three__top-left {
    position: relative;
    display: block;
    width: 100%;
}

.main-header-three__top-left ul {
    position: relative;
    display: flex;
}

.main-header-three__top-left ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.3333333333%;
    padding-left: 60px;
    border-left: 1px solid #ececec;
    padding: 20px 0px 15px;
}

.main-header-three__top-left ul li:last-child {
    border-right: 1px solid #ececec;
}


.main-header-three__top-left ul li .icon {
    position: relative;
    display: inline-block;
    padding-right: 10px;
}

.main-header-three__top-left ul li .icon span::before {
    color: var(--thm-base);
    font-size: 20px;
    font-weight: 700;
}

.main-header-three__top-left ul li .text {
    position: relative;
    display: block;
}

.main-header-three__top-left ul li .text p {
    color: #1b1d21;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin: 0;
    font-family: var(--thm-manrope-font);
}

.main-header-three__top-left ul li .text p a {
    color: #60626d;
    font-weight: 400;
    transition: all 500ms ease;
}

.main-header-three__top-left ul li .text p a:hover {
    color: var(--thm-base);
}

.main-header-three__top-left ul li .text p span {
    color: #60626d;
    font-weight: 400;
}

.main-header-three__top-right {
    position: absolute;
    top: 0;
    right: -305px;
}

.main-header-three__top-right .search-box-two {
    position: relative;
    display: block;
    width: 275px;
}

.main-header-three__top-right .search-box-two form {
    position: relative;
    display: block;
}

.main-header-three__top-right .search-box-two form .form-group input[type="search"] {
    color: #1b1d21;
    font-size: 18px;
    height: 67px;
    width: 100%;
    font-weight: 700;
    padding-left: 0px;
    padding-right: 30px;
    background: #ffffff;
    border-radius: 0px;
    outline: none;
    border: none;
    font-family: var(--thm-manrope-font);
}

.main-header-three__top-right .search-box-two form .form-group button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 0;
    outline: none;
    border: none;
    background: transparent;
}

.main-header-three__top-right .search-box-two form .form-group button i::before {
    font-size: 15px;
    color: #1b1d21;
    font-weight: 700;
}

.main-header-three__bottom {
    position: relative;
    display: block;
    background: #ffffff;
}

.main-header-three__bottom-inner {
    position: relative;
    display: block;
    border-right: 1px solid #ececec;
    z-index: 10;
}

.main-header-three__bottom-inner .main-menu {
    position: relative;
    display: block;
}

.main-header-three__bottom-inner .main-menu .left {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-three__bottom-inner .main-menu .left .main-menu__list {
    margin-left: 100px;
}

.logo-box3 {
    position: relative;
    display: block;
    float: left;
    width: 360px;
    text-align: center;
    padding-top: 33px;
    padding-bottom: 2px;
    z-index: 1;
}

.logo-box3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: -30px;
    right: 0;
    background: var(--thm-base);
    z-index: -1;
}

.logo-box3 a {
    position: relative;
    display: inline-block;
}

.logo-box3 img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.main-header-three__bottom_right {
    position: absolute;
    top: 0;
    right: -305px;
    padding: 19px 0 20px;
}

.main-menu__right .btn-box {
    position: relative;
    display: inline-block;
}

.main-menu__right .btn-box .thm-btn {
    background: #f7f7f7;
    color: #1b1d21;
    width: 275px;
    text-align: center;
}

.main-menu__right .btn-box .thm-btn::after {
    background: var(--thm-base);
}

.main-menu__right .btn-box .thm-btn:hover {
    color: #ffffff;
}

/*----------------------------------------
# Main Header Four
-----------------------------------------*/

.stricky-header--style4 .main-menu__inner .left {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.stricky-header--style4 .main-header-four__bottom_right {
    display: none;
}

.main-header-four__top {
    position: relative;
    display: block;
}

.main-header-four__top .auto-container {
    max-width: 1410px;
}

.main-header-four__top-inner {
    border-right: 1px solid #ececec;
}

.main-header-four__top-left {
    width: 90%;
}

.main-header-four__top-left ul li {
    justify-content: left;
    padding-left: 60px;
}

.main-header-four__top-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    top: 0;
    right: 0;
    width: 10%;
    float: right;
}

.main-header-four__top-right .search-box-two {
    width: auto;
}

.main-header-four__top-right .search-box-two span {
    position: relative;
    float: left;
    color: #2e2e36;
    font-size: 18px;
    font-weight: 700;
    padding-right: 10px;
}

.main-header-four__top-right .search-box-two .main-menu__search {
    position: relative;
    float: left;
    color: var(--thm-base);
    font-size: 15px;
    line-height: 32px;
}


.main-header-four__bottom {
    position: relative;
    display: block;
}

.main-header-four__bottom .auto-container {
    max-width: 1410px;
}

.main-header-four__bottom-inner {
    border-right: 0px solid;
}

.logo-box3--style2 {
    width: 320px;
}

.main-header-four__bottom_right {
    position: relative;
    top: 0;
    right: 0;
}

.main-header-four__bottom_right .main-menu__right .btn-box .thm-btn {
    padding: 14px 0px 15px;
    width: 240px;
    text-align: center;
}

/*--------------------------------------------------------------
# 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: #1c1e27;
    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: #fff;
    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 ul {
    padding-left: 10px;
}

.mobile-nav__content .main-menu__list li a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: #ffffff;
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    height: 46px;
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a:hover {
    color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a button {
    width: 28px;
    height: 28px;
    background-color: var(--thm-base);
    border: none;
    outline: none;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    border-radius: 0px;
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    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-base);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: #ffffff;
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--thm-text-dark);
    font-size: 14px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 0.07em;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-base);
}

.mobile-nav__contact li>i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--thm-base);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/***
=============================================
    Main Header One
=============================================
***/
.main-header--one {
    position: relative;
    display: block;
}

.main-header--one__top {
    position: relative;
    display: block;
    background: #ffffff;
    border-bottom: 1px solid #e0e2e9;
    padding: 25px 0px 26px;
}

.main-header--one__top-inner {
    position: relative;
    display: block;
}

.main-header--one__top-left {
    position: relative;
    display: block;
    float: left;
}

.main-header--one__top-logo {
    position: relative;
    display: inline-block;
}
.main-header--one__top-logo img {
    max-width: 130px;
    height: 100%;
    width: 100%;
}


.main-header--one__top-right {
    position: relative;
    display: flex;
    float: right;
    align-items: center;
}

.main-header--one__top-social-link {
    position: relative;
    display: block;
    padding-right: 15px;
}

.main-header--one__top-social-link li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.main-header--one__top-social-link li:last-child {
    margin-right: 0;
}

.main-header--one__top-social-link li a {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #f1f2f6;
    color: #717580;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one__top-social-link li a:hover {
    color: #ffffff;
}

.main-header--one__top-social-link li a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 50%;
    z-index: -1;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    background: var(--thm-base);
}

.main-header--one__top-social-link li a:hover:before {
    transform: scaleX(1.0);
}

.main-header--one__top-social-link li a i::before {
    font-size: 15px;
    line-height: 35px;
}

.main-header--one__top-contact-info {
    position: relative;
    display: block;
}

.main-header--one__top-contact-info-list {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-header--one__top-contact-info-list-item {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    border-right: 1px solid #e0e2e9;
    margin-left: 40px;
    padding-right: 40px;
}

.main-header--one__top-contact-info-list-item:last-child {
    border-right: 0;
    padding-right: 0;
}

.main-header--one__top-contact-info-list-item .icon {
    position: relative;
    display: block;
    color: var(--thm-base);
}

.main-header--one__top-contact-info-list-item .icon span::before {
    font-size: 30px;
    line-height: 40px;
}

.main-header--one__top-contact-info-list-item .text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.main-header--one__top-contact-info-list-item .text h6 {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.main-header--one__top-contact-info-list-item .text p {
    font-size: 16px;
    line-height: 25px;
    margin: 0;
}

.main-header--one__top-contact-info-list-item .text p a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--one__top-contact-info-list-item .text p a:hover {
    color: var(--thm-base);
}

/***
=============================================
    Main Header Two
=============================================
***/
.main-header--two {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-header--two__top {
    position: relative;
    display: block;
    padding: 6px 0px 2px;
    background: #1c1e27;
}

.main-header--two__top-left {
    position: relative;
    display: block;
    float: left;
}

.main-header--two__top-contact-info {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header--two__top-contact-info-single {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.main-header--two__top-contact-info-single:first-child {
    padding-left: 0;
}

.main-header--two__top-contact-info .icon {
    position: relative;
    display: block;
    color: #ffffff;
}

.main-header--two__top-contact-info .icon span::before {
    font-size: 18px;
    line-height: 35px;
}

.main-header--two__top-contact-info .text {
    position: relative;
    display: block;
    padding-left: 10px;
}

.main-header--two__top-contact-info .text p {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

.main-header--two__top-contact-info .text p a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--two__top-contact-info .text p a:hover {
    color: var(--thm-base);
}

.main-header--two__top-right {
    position: relative;
    display: flex;
    align-items: center;
    float: right;
}

.main-header--two__top-right-login-register {
    position: relative;
    display: block;
    margin-right: 40px;
}

.main-header--two__top-right-login-register ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-header--two__top-right-login-register ul li {
    position: relative;
    float: left;
    padding-left: 12px;
    margin-left: 11px;
}

.main-header--two__top-right-login-register ul li::before {
    position: absolute;
    top: 10px;
    left: 0;
    bottom: 11px;
    background: #ffffff;
    width: 1px;
    transform: rotate(25deg);
    content: "";
}

.main-header--two__top-right-login-register ul li:first-child:before {
    display: none;
}

.main-header--two__top-right-login-register ul li a {
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--two__top-right-login-register ul li a:hover {
    color: var(--thm-base);
}

.main-header--two__top-right-social-link {
    position: relative;
    display: block;
    padding-left: 40px;
}

.main-header--two__top-right-social-link::before {
    position: absolute;
    top: 3px;
    left: 0;
    bottom: 5px;
    background: #33353d;
    width: 1px;
    content: "";
}

.main-header--two__top-right-social-link ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-header--two__top-right-social-link ul li {
    position: relative;
    float: left;
    margin-right: 20px;
}

.main-header--two__top-right-social-link ul li:last-child {
    margin-right: 0;
}

.main-header--two__top-right-social-link ul li a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--two__top-right-social-link ul li a:hover {
    color: var(--thm-base);
}

.main-header--two__top-right-social-link ul li a i::before {
    font-size: 12px;
}

.main-header-two__bottom {
    position: relative;
    display: block;
    background: transparent;
    padding: 12px 0px 13px;
}

.main-header-two__bottom::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #ffffff;
    opacity: 0.10;
    content: "";
}

.main-header-two__bottom::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #ffffff;
    opacity: 0.10;
    content: "";
}

.main-header-two__bottom-inner {
    position: relative;
    display: block;
    z-index: 10;
}

.main-header-two__bottom-inner .main-menu {
    position: relative;
    display: block;
}

.main-header-two__bottom-inner .main-menu .left {
    position: relative;
    display: block;
}

.main-header--two .main-menu .main-menu__list>li>a {
    color: #ffffff;
}

.main-header--two .main-menu .main-menu__list>li.current>a,
.main-header--two .main-menu .main-menu__list>li:hover>a,
.stricky-header--two .main-menu__list>li.current>a,
.stricky-header-two .main-menu__list>li:hover>a {
    color: #fff;
    text-shadow: 0 0 1px currentColor;
}

.main-header--two .main-menu__right-cart-box a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header--two .main-menu__right-cart-box a:hover {
    color: var(--thm-base);
}

.stricky-header--two {
    background: #1c1e27;
}

.stricky-header--two .main-menu__list>li>a {
    color: #ffffff;
}

.stricky-header--two .main-menu__right-cart-box a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.stricky-header--two .main-menu__right-cart-box a:hover {
    color: var(--thm-base);
}


/***
=============================================
    Banner Slider
=============================================
***/
.main-slider-one {
    position: relative;
    display: block;
    z-index: 1;
    background-image: url("../../images/backgrounds/main-slider-v1-img.png");
    background-size: cover;
    height: 100vh;
}
.main-slider__content-title.First-word {
    font-size: 95px;
    color: #ffffff;
    font-weight: bold;
    opacity: 0.3!important;
    margin-bottom: 0px;
    line-height: 100%;
}
.main-slider__content-title {
    color: #ffffff;
    font-size: 40px;
    line-height: 55px;
    font-weight: 300;
}
.main-slider__content-text {
    position: relative;
    font-size: 18px;
    line-height: 25px;
    z-index: 2;
    color: #ffffff;
}
.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    transform: scale(1);
    transition: transform 5000ms ease;
    z-index: 1;
}
.main-slider .swiper-slide {
    position: relative;
    height: 100vh;
}
.main-slider .swiper-slide .container:before, .main-slider .swiper-slide .container:after, .main-slider-one:before {
    content: "";
    background-image: url("../../images/backgrounds/Profile-01.svg");
    position: absolute;
    width: 100%;
    height: 90px;
    background-repeat: no-repeat;
    max-width: 90px;
    top: 17%;
    bottom: auto;
    left: 0;
    right: -17%;
    margin: auto auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float1 4s ease-in-out infinite;
}
.main-slider .swiper-slide .container:after {
    background-image: url("../../images/backgrounds/Serch-01.svg");
    right: 4%;
    bottom: 32%;
    top: 0;
    /* transform: rotate(-27deg); */
    max-width: 95px;
    height: 101px;
}
.main-slider-one:before {
    background-image: url("../../images/backgrounds/Chat-01.svg");
    right: -4%;
    bottom: 20%;
    top: auto;
    z-index: 999;
    max-width: 130px;
    height: 100px;
}
.main-slider__content-btn .thm-btn {
    box-shadow: rgb(164 98 189) 0px 3px 57px -12px;
    background: #a462bd;
}

.main-slider .swiper-slide .container {
    position: relative;
    z-index: 30;
    height: 100%;
    display: flex;
    align-items: center;
}
@keyframes float1 {

    0%,
    100% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-10px);
    }
  }
.main-slider__content-title {
    margin-bottom: 15px;
}
.main-slider__content-btn {
    position: relative;
    display: block;
    margin-top: 25px;
}
.nav-bar {
    position: absolute;
    width: 100%;
    top: 36px;
}

.main-slider .main-slider__content {
    position: relative;
    display: block;
    z-index: 1;
    padding-top: 90px;
}
.main-slider .swiper-slide .container {
    position: relative;
    z-index: 30;
    height: 100%;
    display: flex;
    align-items: center;
}

/***
=============================================
    About One
=============================================
***/
.about-single-content .icon2 {
    height: 60px;
    width: 60px;
    background: #a360c0;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-one__left img {
    width: 100%;
    max-width: 500px;
}
.icon2 i {
    color: #ffffff;
    font-size: 26px;
}
.edu-about-content .about-list  h3 {
    line-height: 1;
    font-size: 18px;
    margin-bottom: 5px;
    color: #212529;
}
.about-single-content {
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: flex-start;
}
.about-single-content .content {
    padding-left: 20px;
}
.edu-about-content .about-list  p {
    line-height: 30px;
    font-size: 16px;
}
.about-list .items {
    margin-bottom: 15px;
}

/***
=============================================
    Footer Section
=============================================
***/
.footer-one {
    background-image: url(../../images/backgrounds/main-slider-v1-img.png);
    background-repeat: no-repeat;
    background-size: cover;
        position: relative;
}

.footer-one__top {
    padding: 60px 0px 40px;
    border-bottom: 1px solid #303138;
}
.footer-one__bottom-text {
    position: relative;
    display: block;
    padding: 15px 0px 15px;
}
.footer-one__bottom-text p {
    color: #aeb2c2;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    margin: 0;
}
.footer-links a {
    font-size: 16px;
    line-height: 25px;
}
.footer-links i {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    font-size: 16px!important;
}
.footer-links div {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 9px;
}
.footer-widget__links li {
    position: relative;
    display: block;
    margin-bottom: 5px;
}
.footer-widget__links li a {
    color: #aeb2c2;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
       color: #fff;
}
.footer-widget__column.footer-widget__contact li{
    color: #fff;
}
.footer-widget__title {
    color: #ffffff;
    font-size: 18px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.footer-widget__title:before {
    content: "";
    position: absolute;
    width: 100%;
    background: #ffffff;
    height: 2px;
    bottom: 0;
}
.footer-one__bg {
    display: block;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    background-color: var(--thm-black);
    mix-blend-mode: luminosity;
    opacity: 0.15;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-position: center center;
}
.footer-widget__links li a:hover {
    color: var(--thm-base);
}
.footer-one .container {
    position: relative;
    z-index: 10;
}
/***
=============================================
    About Two
=============================================
***/
.about-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

.about-two__single-img {
    position: relative;
    display: block;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.about-two__single-img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 0%;
    transform: translate(-50%, -50%);
    opacity: 0;
    border-radius: 8px;
}

.about-two__single-img:hover:before {
    -webkit-animation: circle .95s;
    animation: circle .95s
}

.about-two__single-img img {
    width: 100%;
    transition: all 500ms ease;
}

.about-two__single-img:hover img {
    transform: scale(1.05);
}

.about-two__bottom-content {
    position: relative;
    display: block;
    margin-top: 20px;
}

.about-two__title-box {
    position: relative;
    display: block;
}

.about-two__text-box {
    position: relative;
    display: block;
}

.about-two__text-box-text {
    margin: 0;
}

.about-two__text-box-btn {
    position: relative;
    display: block;
    margin-top: 38px;
}

/***
=============================================
    Sidebar
=============================================
***/

@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 23px;
    margin: 0;
}

.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-base);
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    padding-left: 40px;
    height: 85px;
    border-radius: 8px;
    width: 100%;
    padding-right: 100px;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: #ffffff;
    opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: #ffffff;
    opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: #ffffff;
    opacity: 1;
}

.sidebar__search-form ::placeholder {
    color: #ffffff;
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: #ffffff;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: #ffffff;
}

.sidebar__search-form button[type="submit"] {
    background-color: transparent;
    color: #ffffff;
    font-size: 16px;
    position: absolute;
    top: 0;
    right: 18px;
    bottom: 0;
    width: 80px;
    outline: none;
    border: none;
    padding: 0;
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 35px 40px 32px;
    background-color: #f1f2f6;
    border-radius: 8px;
}

.sidebar__post .sidebar__title {
    margin-bottom: 10px;
}

.sidebar__post-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
}

.sidebar__post-list li {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.sidebar__post-list li:last-child {
    margin-bottom: 0;
}

.sidebar__post-image {
    position: absolute;
    top: 10px;
    left: 0;
}

.sidebar__post-content {
    position: relative;
    display: block;
    padding-left: 90px;
}

.sidebar__post-content ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.sidebar__post-content ul li {
    position: relative;
    display: block;
}

.sidebar__post-content ul li p {
    margin: 0;
}

.sidebar__post-content ul li p a {
    color: var(--thm-gray);
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
}

.sidebar__post-content ul li p a i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    padding-right: 5px;
    top: 1px;
}

.sidebar__post-content ul li h3 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
}

.sidebar__post-content ul li h3 a {
    color: var(--thm-black);
    transition: all 500ms ease
}

.sidebar__post-content ul li h3 a:hover {
    color: var(--thm-base);
}
debar__category {
    position: relative;
    display: block;
    background: #f1f2f6;
    padding: 36px 40px 30px;
    border-radius: 8px;
}

.sidebar__category .sidebar__title {
    margin-bottom: 12px;
}

.sidebar__category-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
}

.sidebar__category-list li+li {
    margin-top: 8px;
}

.sidebar__category-list li a {
    position: relative;
    display: block;
    color: var(--thm-gray);
    font-size: 16px;
    background: none;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__category-list li a:hover {
    color: var(--thm-base);
}

.sidebar__category-list li a i::before {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    font-size: 15px;
    color: var(--thm-base);
    font-weight: 700;
}

.sidebar__tags {
    position: relative;
    display: block;
    background: #f1f2f6;
    padding: 35px 40px 30px;
    border-radius: 8px;
}

.sidebar__tags .sidebar__title {
    margin-bottom: 20px;
}

.sidebar__tags-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
}

.sidebar__tags-list li {
    position: relative;
    float: left;
    margin-bottom: 10px;
    padding: 0px 5px 0px;
}

.sidebar__tags-list li a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--thm-base);
    border-radius: 8px;
    padding: 4px 20px 1px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
    background: var(--thm-black);
}

/***
=============================================
    Contact Details One
=============================================
***/
.contact-details-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
}

.contact-details-one__single {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.1);
    padding: 24px 30px 24px;
    margin-bottom: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-details-one__single:hover {
    border: 1px solid var(--thm-base);
}

.contact-details-one__single-icon {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 65px;
    background: #f1f2f6;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
}

.contact-details-one__single-icon::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 50%;
    z-index: -1;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    background: var(--thm-base);
}

.contact-details-one__single:hover .contact-details-one__single-icon::before {
    transform: scaleX(1.0);
}

.contact-details-one__single-icon span::before {
    color: var(--thm-base);
    font-size: 30px;
    line-height: 65px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-details-one__single:hover .contact-details-one__single-icon span::before {
    color: #ffffff;
}

.contact-details-one__single-text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.contact-details-one__single-text h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.contact-details-one__single-text h4 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-details-one__single-text h4 a:hover {
    color: var(--thm-base);
}

.contact-details-one__single-text p {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}


/***
=============================================
    Contact Page
=============================================
***/
.contact-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 120px;
}

.contact-page__left {
    position: relative;
    display: block;
}

.contact-page__left .section-title {
    margin: 0;
}

.contact-page__right {
    position: relative;
    display: block;
}

/***
=============================================
    Google Map
=============================================
***/
.contact-page-google-map {
    position: relative;
    display: block;
    z-index: 3;
}

.contact-page-google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 580px;
    width: 100%;
}

/*--------------------------------------------------------------
# Get Insurance
--------------------------------------------------------------*/
.get-insurance-five {
    position: relative;
    background-position: top right;
    background-repeat: no-repeat;
    padding: 120px 0;
}
.get-insurance-five__tabs li {
    transition: all 500ms ease;
    position: relative;
    background-color: #ffffff;
    border-radius: 0 40px 0 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--insur-gray);
    padding: 23px 40px;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
}
.get-insurance-five__tabs li:hover, .get-insurance-five__tabs li.active-btn {
    color: #ffffff;
}
.get-insurance-five__tabs li::after {
    position: absolute;
    content: "";
    background-color: #a360c0;
    width: calc(100% + 150px);
    height: 0%;
    left: 50%;
    top: 50%;
    border-radius: 25px;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all 500ms ease;
}
.get-insurance-five__tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.get-insurance-five__tabs li:hover::after, .get-insurance-five__tabs li.active-btn::after {
    height: calc(100% + 250px);
}
.get-insurance-five__content {
    position: relative;
    background-color: #ffffff;
    border-radius: 0 20px 40px 0;
    padding: 50px;
}
.get-insurance-five__content__image img {
    max-width: 100%;
    height: auto;
    border-radius: 0 20px 20px 0;
}
.get-insurance-five .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    transform: translateY(0px);
}
.get-insurance-five .tabs-content .tab {
    position: relative;
    display: none;
    transform: translateY(35px);
    transition: all 500ms ease;
    z-index: 10;
}

  /* contact section */
  #contactForm{
    background-color: #fff;
}
.form-control{
    background-color: #DFDFDF;
}
.registration-one{
    position: relative;
    display: block;
    padding: 122px 0px 102px;
    /* background: #995cbabf; */
    /* background: linear-gradient(45deg, #4c4574c9, #07b0edab);   */
    background-image: url(../../images/backgrounds/contact-bg-2.png);
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}
.registration-one .shape1{
    position: absolute;
    top: -129px;
    z-index: -1;
    left: 195px;
}
.registration-one .shape2{
    position: absolute;
    top: -326px;
    z-index: -1;
    left: -328px;
}
.registration-one__bg {
    position: unset;
}
li {
    font-size: 16px;
    line-height: 22px;
}
.get-insurance-five__content p {
    margin: 0px;
    margin-top: 10px;
    line-height: 24px;
}

/* Fetures section css */

.features-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 30px;
}
.features-box {
    max-width: 350px;
    width: 100%;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    background-color: #ffffff;
    padding: 15px 15px;
    background-image: url(../../images/feauters/features-bg-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center; /* Start at top */
    border-radius: 15px;
    height: 215px;
    transition: background-position 0.5s ease-in-out; /* Smooth transition */
}

h3.features-box__title {
    font-size: 22px;
    color: #ffffff;
    padding-bottom: 15px;
}

.features-box:hover {
    background-image: url("../../images/feauters/features-bg-2.png");
    background-size: cover;
    background-position: bottom center; /* Move to bottom on hover */
}
.features-box:hover .features-box__text {
    color: #ffffff;
}


/* terms-condition page */

.sub-banner{
    background-image: url("../../images/backgrounds/main-slider-v1-img.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.sub-banner h1 {
    color: #ffffff;
    text-align: center;
    padding: 120px 0px 25px;
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: capitalize;
}
.terms_wrapper h2, .privacy_wrapper h2 {
    color: rgb(33, 37, 41);
    font-size: 27px;
    padding: 15px 0px;
}
.terms_wrapper h3, .terms_wrapper h4, .privacy_wrapper h3, .privacy_wrapper h4{
    color: rgb(33, 37, 41);
}
table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}
th {
    background-color: #1fbff7;
    color: white;
    font-weight: bold;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
tr:hover {
    background-color: #f1f1f1;
}
@media screen and (max-width: 600px) {
    table {
        font-size: 14px;
    }
    th, td {
        padding: 8px;
    }
}


/* Add custom CSS for sticky header  */

body.sticky-header .main-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background-color: #042834;
/* Adjust background color as needed */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

/* Ensure content doesn't hide behind fixed header */
body.sticky-header {
padding-top: 80px;
/* Adjust based on your header height */
}


/* Blog page css */
.blog-slider {
	overflow:hidden;
}
 .blog-posts.section-gapping {
            padding: 40px 0; /* Adjust vertical padding for section */
        }
        .blog-slider .swiper-slide .card,  .side-bar {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 15px; /* Add margin around each card */
            padding: 20px; /* Add internal padding to card */
            transition: transform 0.3s ease;
        }
        .blog-slider .swiper-slide .card:hover {
            transform: translateY(-5px); /* Subtle hover effect */
        }
        .blog-slider .swiper-slide .post-img img {
            width: 100%;
            height: 318px;
            border-radius: 8px 8px 0 0; /* Rounded top corners */
            object-fit: cover;
        }
        .blog-slider .swiper-slide .Blog-body {
            padding: 15px 0; /* Padding for content inside card */
        }
        .blog-slider .swiper-slide .Blog-body h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        .blog-slider .swiper-slide .Blog-body p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 15px;
        }
        .blog-slider .swiper-slide .read-more a {
            padding: 8px 16px;
            background: #007bff;
            color: #fff;
            border-radius: 4px;
            text-decoration: none;
        }
        .blog-slider .swiper-slide .read-more a:hover {
            background: #0056b3;
        }
       .swiper-button-prev, .swiper-button-next {
	background: rgb(0, 123, 255);
	border-radius: 9px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
}
        .swiper-pagination-bullet {
            background: #007bff;
        }
.blog-button > div{
	position:unset;
	
}
.blog-button {
	display: flex;
	align-content: center;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	top: 51%;
	right: 0;
	bottom: auto;
	left: 0;
	margin: 0 auto;
}
   .blog-button > div:after{
   color:#ffffff;
   font-size:22px;
   }     
.media img, .blog-detail .media img {
    max-width: 85px;
    width: 100%;
    height: 85px;
    object-fit: cover;
}
   .post-item h4 {
	font-size: 16px;
}     
.post-item {
	display: flex;
	align-items: start;
	margin-bottom: 20px;
}
.blog-detail img{
	width:100%;
	height:100%;
}
.blog-detail h3{
	font-size: 22px;
  color: #a360c0;
}
.blog-detail h2{
		font-size: 25px;
}
.Mobile-view{
	display:none;
}

        
      