/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigation
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/


@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pathway+Extreme:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&amp;display=swap');







/*== Default Css ==*/

:root {
    --thm-font: "Onest", sans-serif;
    --thm-font-2: "Pathway Extreme", sans-serif;
    --thm-primary-color: #e60004;
    --thm-primary-color-rgb: 4, 191, 97;

    --thm-body-font-color: #545956;
    --thm-body-font-size: 16px;
    --thm-body-line-height: 26px;
    --thm-body-font-weight: 400;

    --thm-heading-font-color: #122729;
    --thm-white: #ffffff;
    --thm-black: #122729;
    --thm-black-bg: #000;
    --thm-gray-bg: #f0f7f3;
    --thm-border-color: #e2e9e6;
    --thm-border-radius: 4px;
}



body {
    font-family: var(--thm-font);
    color: var(--thm-body-font-color);
    font-size: var(--thm-body-font-size);
    line-height: var(--thm-body-line-height);
    font-weight: var(--thm-body-font-weight);
}

.body-bg-1 {
    background-color: #ffffff;
}

p {
    font-family: var(--thm-font);
    color: #000;
    font-size: var(--thm-body-font-size);
    line-height: var(--thm-body-line-height);
    font-weight: var(--thm-body-font-weight);
    margin: 0;
}

a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}


@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

section {
    position: relative;
    display: block;
    z-index: 1;
}





body.locked {
    overflow: hidden;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-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-heading-font-color);
    font-family: var(--thm-font-2);
    font-weight: 700;
    margin: 0;
}



dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.fancybox-slide .fancybox-image-wrap {
    border-radius: 10px;
    overflow: hidden;
}



.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol,
li {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}

/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
    border-color: #43c3ea;
    outline: none;
}

#contact-form input[type="text"].error {
    border-color: red;
}

#contact-form input[type="email"].error {
    border-color: red;
}

#contact-form select.error {
    border-color: red;
}

#contact-form textarea.error {
    border-color: red;
}

#contact-form label.error {
    display: none !important;
}













.rating-box-style1 {
    position: relative;
    display: block;
}

.rating-box-style1 ul {
    position: relative;
    display: flex;
}

.rating-box-style1 ul li {
    position: relative;
    display: block;
    line-height: 0;
}

.rating-box-style1 ul li+li {
    padding-left: 5px;
}

.rating-box-style1 ul li span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 16px;
    cursor: pointer;
}


/** Thm Social Link **/
.thm-social-link {
    position: relative;
    display: block;
    padding-top: 30px;
}

.thm-social-link ul {
    position: relative;
    display: block;
}

.thm-social-link ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.thm-social-link ul li:last-child {
    margin-right: 0;
}

.thm-social-link ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--thm-black);
    border-radius: 5px;
    color: var(--thm-white);
    font-size: 18px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.thm-social-link ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(var(--thm-primary-color-rgb), 1);
    border-radius: 5px;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.thm-social-link ul li:hover a:before {
    opacity: 1;
    transform: scale(1);
}

.thm-social-link ul li:hover a {
    color: #ffffff;
}



/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
    position: fixed;
    top: 0;
    left: 0%;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    cursor: url(../images/icon/cross-out.png), pointer;
    z-index: 99999999;

    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: left right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.95;
    visibility: visible;
    right: 100%;
    background: var(--thm-black);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left center;
}


.xs-sidebar-widget {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    max-width: 460px;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;

    transition-timing-function: ease-out;
    transition: 0.5s;

    visibility: hidden;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    transition-timing-function: ease-in;
    transition: 0.5s;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 900ms ease 500ms;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    z-index: 0;
    background-color: #000000;
}

.sidebar-textwidget {
    padding: 50px 45px;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--thm-black);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}

.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
    position: relative;
    display: inline-block;
}

.xs-sidebar-group .content-inner h3 {
    color: var(--thm-black);
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--thm-font);
    margin-bottom: 22px;
}

.xs-sidebar-group .content-inner h3 span {
    color: var(--thm-base);
    font-size: 25px;
    font-weight: 900;
}

.xs-sidebar-group .content-inner .content-box {
    position: relative;
    display: block;
    padding-top: 33px;
    padding-bottom: 47px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
    position: relative;
    display: block;
}

.xs-sidebar-group .content-inner .content-box p {
    color: var(--thm-black);
}

.xs-sidebar-group .content-inner .sidebar-contact-info {
    position: relative;
    display: block;
}

.xs-sidebar-group .content-inner .sidebar-contact-info h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 27px;
}

.sidebar-contact-info ul {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.sidebar-contact-info ul li:last-child {
    margin-bottom: 0;
}

.sidebar-contact-info ul li .inner {
    position: relative;
    display: block;
    padding-left: 0;
}



/***
.sidebar-contact-info ul li .inner .icon {
    position: absolute;
    top: 0px;
    left: 0;
}
.sidebar-contact-info ul li .inner .icon span {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 27px;
    line-height: 27px;
    font-weight: 500;
}
.sidebar-contact-info ul li .inner .icon span.map-marker {
    color: var(--thm-base);
    position: relative;
    top: 8px;
    font-size: 32px;
}
**/


.sidebar-contact-info ul li .inner .text {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li .inner .text p {
    color: var(--thm-black);
    line-height: 24px;
}

.sidebar-contact-info ul li .inner .text p a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-contact-info ul li .inner .text p a:hover {
    color: var(--thm-base);
    text-shadow: -0.45px -0.45px 0 var(--thm-base), 0.45px 0.45px var(--thm-base);
}

.xs-sidebar-group .content-inner .side-content-newsletter-box {
    position: relative;
    display: block;
    padding-top: 49px;
}

.xs-sidebar-group .content-inner .side-content-newsletter-box h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 24px;
}

.side-content-newsletter-box .form-group input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    background-color: rgb(248, 248, 248);
    border: 1px solid #e3dfdf;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 6px;
    font-family: var(--thm-font);
}

.side-content-newsletter-box .form-group button {
    margin-top: 30px;
}





/*== Review Css ======*/
.review-box {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 15px;
}

.review-box ul {
    display: block;
    overflow: hidden;
}

.review-box ul li {
    display: inline-block;
    float: left;
    margin-right: 5px;
    cursor: pointer;
}

.review-box ul li:last-child {
    margin-right: 0px;
}

.review-box ul li i {
    color: #fbaf02;
    font-size: 15px;
}


/*== Section Title Css ======*/
.sec-title {
    position: relative;
    display: block;
    padding-bottom: 49px;
}

.sec-title.withtext {
    padding-bottom: 52px;
}

.sec-title .sub-title {
    position: relative;
    display: block;
    margin-bottom: 15px;
    padding-left: 9px;
}

.sec-title .sub-title h4 {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    background-color: var(--thm-black-bg);
    padding: 3px 15px 3px;
    z-index: 1;
}

.sec-title .sub-title h4::before {
    content: "";
    position: absolute;
    top: 0;
    left: -9px;
    bottom: 0;
    width: 4px;
    border-radius: 4px;
    background-color: var(--thm-black-bg);
}

.sec-title h2 {
    font-size: 48px;
    line-height: 1.2em;
    text-transform: none;
}

.sec-title .text {
    position: relative;
    display: block;
    padding-top: 13px;
}




/*== Btn One Css ======*/
.btn-box {
    position: relative;
    display: block;
}

.btn-one {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    padding-top: 10px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 10px;
    background-color: transparent;
    color: var(--thm-white);
    font-size: 14px;
    line-height: 40px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 2;
}

.btn-one:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    transform: scaleX(1);
    transition-duration: 800ms;
    background-color: var(--thm-primary-color);
    z-index: -1;
}

.btn-one:hover:after {
    transform: scaleX(0);
    transition-duration: 1500ms;
}

.btn-one:before {
    position: absolute;
    top: 0px;
    left: -10px;
    bottom: 0;
    right: 100%;
    content: "";
    background: var(--thm-black);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    border-radius: 0%;
    transition-duration: 800ms;
    z-index: 1;
}

.btn-one:hover:before {
    right: 0px;
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.btn-one .txt {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 1;
}

.btn-one:hover,
.btn-one:focus {
    color: #ffffff;
    -webkit-box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
    -moz-box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
    box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
}

.btn-one i {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    margin-right: 10px;
    top: 0px;
    z-index: 1;
}





/*== Btn Two Css ======*/
.btn-two {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-base);
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--thm-font-3);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.btn-two span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 18px;
    margin-left: 10px;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.btn-two:hover span {
    color: #ffffff;
}

.btn-two span:after {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    z-index: -1;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.btn-two:hover span:after {
    opacity: 1.0;
    transform: scale(1.0);
}

.btn-two:hover {
    color: var(--thm-base);
    letter-spacing: normal;
}


/*== Section Btn Css ======*/
.section-btn {
    position: relative;
    display: block;
    text-align: center;
    line-height: 0;
    margin-top: 40px;
    z-index: 1;
}

.section-btn::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #000;
    z-index: -1;
}

.section-btn-inner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 21px;
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    padding: 7px 25px 7px;
    z-index: 1;
}

.section-btn-inner p {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.section-btn-inner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-white);
    background-repeat: repeat;
    z-index: -1;
}

.section-btn-inner p a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 26px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    text-transform: uppercase;
    margin-left: 8px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.section-btn-inner p a i {
    font-size: 14px;
    margin-right: 6px;
}

.section-btn-inner p a:hover {
    color: var(--thm-primary-color);
}








/*== Owl Dot Style One Css ======*/
.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 60px !important;
    display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #aca3a3;
    border: 0px solid #aca3a3;
    margin: 0px 10px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {
    width: 50px;
    border-radius: 4px;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border-radius: 4px;
    background-color: var(--thm-primary-color);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: left right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left right;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
    display: none;
}



/*== Owl Dot Style Two Css ======*/
.owl-carousel.owl-dot-style2 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 30px !important;
    display: block;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 5px solid #ffffff;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 1px solid var(--thm-base);
    border-radius: 50%;
    transform: scale(0);
    transition: all 500ms ease;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active {
    border: 5px solid #1a1c23;
    background-color: var(--thm-base);
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active:before {
    transform: scale(1);
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot span {
    display: none;
}






/*== Owl Nav Style One Css ======*/
.owl-nav-style-one.owl-theme .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
}

.owl-nav-style-one.owl-theme .owl-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 130px;
    margin: 0;
    z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    border-radius: var(--thm-border-radius);
    margin: 0 5px;
    padding: 0;
    transition: all 700ms ease 3s;
    z-index: 1;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {
    border: 1px solid var(--thm-primary-color);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    background-color: var(--thm-primary-color);
    border-radius: 4px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(0);
    transform: perspective(400px) rotateX(0deg) scale(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    z-index: -1;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover::before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    position: relative;
    display: block;
    color: #97a69e;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
    transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
    transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
    color: var(--thm-white);
}



/*== Scrool To Top Css ======*/
.scroll-to-top {
    position: fixed;
    right: 30px;
    bottom: 50px;
    transform: rotate(180deg);
    z-index: 99999999999;
}

.scroll-to-top .visible {
    visibility: visible !important;
    opacity: 1 !important;
}

.scroll-to-top .scroll-top-inner {
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top .scroll-top-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.scroll-to-top .scroll-bar {
    width: 50px;
    height: 4px;
    margin-right: 10px;
    position: relative;
    display: none;
}

.scroll-to-top .scroll-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--thm-primary-color);
    opacity: 1;
}

.scroll-to-top .scroll-bar .bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: var(--thm-secondary-color);
}

.scroll-to-top .scroll-bar-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: var(--thm-black-bg);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #9cada4;
    font-size: 18px;
    cursor: pointer;
    transition: all 500ms ease;
}

.scroll-to-top .scroll-bar-text:hover {
    transform: scale(1);
}

.scroll-to-top.bg2 .scroll-bar-text {
    background: #0a3e56;
}






.scroll-to-top--style2 {
    position: relative;
    top: 0px;
    right: 0;
    bottom: 0;
    transform: rotate(0deg);
}

.scroll-to-top--style2 .scroll-bar {
    display: none;
}

.scroll-to-top--style2 .scroll-bar-text {
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    font-family: var(--thm-font-2);
    transition: all 500ms ease;
    width: auto;
    height: auto;
    background: transparent;
}

.scroll-to-top--style2 .scroll-bar-text p {
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
}

.scroll-to-top--style2 .scroll-bar-text:hover p {
    color: var(--thm-primary-color);
}

.scroll-to-top--style2 .scroll-bar-text span {
    position: relative;
    top: 0;
    display: inline-block;
    padding-left: 10px;
    color: var(--thm-primary-color);
    font-size: 16px;
}




/*== Styled Pagination Css ======*/
.styled-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

.styled-pagination.pdtop60 {
    padding-top: 60px;
}

.styled-pagination.pdtop30 {
    padding-top: 30px;
}

.styled-pagination li {
    position: relative;
    display: block;
    float: left;
}

.styled-pagination li+li {
    margin-left: 10px;
}

.styled-pagination li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid var(--thm-border-color);
    color: #97a69e;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    text-align: center;
    text-transform: uppercase;
    transition: all 500ms ease;
    z-index: 1;
}

.styled-pagination li a span:before {
    position: relative;
    top: 0px;
    color: var(--thm-black);
    font-size: 18px;
    transition: all 500ms ease;
}

.styled-pagination li:hover a span::before,
.styled-pagination li.active a span::before {
    color: var(--thm-white);
}

.styled-pagination li.prev {
    transform: rotate(180deg);
}

.styled-pagination li.prev a span:before {
    position: relative;
    display: inline-block;
}

.styled-pagination li.next a span:before {
    position: relative;
    display: inline-block;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
    color: #ffffff;
    border-color: var(--thm-primary-color);
    background: var(--thm-primary-color);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
    width: 50px;
    height: 50px;
    background-color: var(--thm-gray-bg);
    border-color: var(--thm-gray-bg);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
    color: #ffffff;
    background-color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}





/*== checked Css Css ======*/
.checked-box1 {
    position: relative;
    display: block;
    min-height: 26px;
}

.checked-box1 input[type="checkbox"] {
    display: none;
}

.checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    color: var(--thm-body-font-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #e3e4ea;
    cursor: pointer;
    border-radius: 4px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box1 label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    content: "";
    width: 8px;
    height: 8px;
    background: var(--thm-primary-color);
    border-radius: 50%;
    margin: 2px auto 0px;
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box1 input[type="checkbox"]:checked+label span {
    border-color: #e3e4ea;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
    transform: scale(1.0);
}



/*== checked Css Css ======*/
.checked-box2 {
    position: relative;
    display: block;
    min-height: 28px;
}

.checked-box2 input[type="checkbox"] {
    display: none;
}

.checked-box2 label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    color: var(--thm-body-font-color);
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--thm-font);
}

.checked-box2 input[type="checkbox"]+label span {
    position: absolute;
    top: 6px;
    left: 0;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    cursor: pointer;
    border-radius: 5px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box2 label span:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box2 input[type="checkbox"]:checked+label span {
    border-color: var(--thm-primary-color);
}

.checked-box2 input[type="checkbox"]:checked+label span:before {
    transform: scale(1.0);
}



/*== Star Rating Style1 Css ======*/
.star-rating-style1 {
    position: relative;
    display: inline-flex;
    justify-content: flex-start;
    direction: rtl;
}

.star-rating-style1 input[type="radio"] {
    display: none;
}

.star-rating-style1 label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: var(--thm-primary-color);
    font-size: 24px;
    padding: 0 1px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.star-rating-style1 input[type="radio"]:checked~label {
    color: var(--thm-white);
}

.star-rating-style1 label:hover,
.star-rating-style1 label:hover~label {
    color: var(--thm-white);
}



/*== Accordion Box Css ======*/
.accordion-box {
    position: relative;
    display: block;
}

.accordion-box .block {
    position: relative;
    display: block;
    margin-bottom: 20px;
    transition: all 500ms ease;
}

.accordion-box .block:last-child {
    margin-bottom: 0px;
}

.accordion-box .block .acc-btn {
    position: relative;
    display: block;
    cursor: pointer;
    background: #ffffff;
    padding-top: 9px;
    padding-left: 55px;
    padding-bottom: 9px;
    padding-right: 20px;
    border: 1px solid #d4d4d4;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
    background: #ffffff;
    border-bottom: 1px solid transparent;
}

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-size: 19px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--thm-font);
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h3 {
    color: var(--thm-base);
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 20px;
    height: 20px;
    color: var(--thm-black);
    font-size: 18px;
    text-align: left;
    line-height: 20px;
    cursor: pointer;
    transform: translateY(-50%) rotate(0deg);
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
    color: var(--thm-base);
    transform: translateY(-50%) rotate(0deg);
}

.accordion-box .block .acc-btn .icon-outer i:before {
    font-weight: 700;
}

.accordion-box .block .acc-btn.active .icon-outer i:before {
    content: "\e90b";
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding-top: 1px;
    padding-left: 55px;
    padding-bottom: 21px;
    padding-right: 20px;
    border: 1px solid #d4d4d4;
    border-top: 1px solid transparent;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .acc-content p {
    margin: 0;
}




/*== Accordion Box Style 1 Css ======*/
.accordion-box-style1 {
    position: relative;
    display: block;
}

.accordion-box-style1 .accordion {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.accordion-box-style1 .accordion:last-child {
    margin-bottom: 0;
}

.accordion-box-style1 .accordion .accord-btn {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--thm-white);
    padding-top: 21px;
    padding-left: 30px;
    padding-bottom: 21px;
    padding-right: 75px;
    border-radius: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.accordion-box-style1 .accordion .accord-btn:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 70px;
    background-color: var(--thm-gray-bg);
    border-radius: 5px;
    z-index: -1;
}

.accordion-box-style1 .accordion .accord-btn h4 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
}

.accordion-box-style1 .accordion .accord-btn h4 span {
    color: #aca7a7;
}

.accordion-box-style1 .accordion .accord-btn.active {
    background-color: var(--thm-black-bg);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


.accordion-box-style1 .accordion .accord-btn.active h4 {
    color: var(--thm-primary-color);
}

.accordion-box-style1 .accordion .accord-btn.active h4 span {
    color: var(--thm-primary-color);
}



.accordion-box-style1 .accordion .accord-btn::after {
    font-family: 'icomoon' !important;
    position: absolute;
    content: "\e969";
    top: 50%;
    right: 10px;
    margin-top: 0px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-black);
    font-size: 20px;
    transform: translateY(-50%);
    transition: all 500ms ease 0s;
}

.accordion-box-style1 .accordion .accord-btn.active {
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.accordion-box-style1 .accordion .accord-btn.active:after {
    color: #ffffff;
    content: "\e968";
    border-color: var(--thm-primary-color);
    background-color: var(--thm-primary-color);
}


.accordion-box-style1 .accordion .accord-content {
    position: relative;
    background-color: var(--thm-black-bg);
    padding-top: 14px;
    padding-left: 30px;
    padding-bottom: 22px;
    padding-right: 30px;
    display: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 2;
}

.accordion-box-style1 .accordion .accord-content.collapsed {
    display: block;
}

.accordion-box-style1 .accordion .accord-content p {
    color: #a1aab4;
    line-height: 26px;
    margin: 0;
}





/*== Accordion Box Style 2 Css ======*/
.accordion-box-style2 {
    position: relative;
    display: block;
    padding-top: 33px;
}

.accordion-box-style2 .accordion {
    position: relative;
    display: block;
    background: transparent;
}

.accordion-box-style2 li+li {
    margin-top: 20px;
}

.accordion-box-style2 .accordion:last-child {
    margin-bottom: 0;
}

.accordion-box-style2 .accordion .accord-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid var(--thm-border-color);
    padding: 16px 30px 17px;
    transition: all 500ms ease 0s;
    z-index: 1;
}

.accordion-box-style2 .accordion .accord-btn:hover,
.accordion-box-style2 .accordion .accord-btn.active {
    border: 1px solid var(--thm-primary-color);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.accordion-box-style2 .accordion .accord-btn h4 {
    font-size: 19px;
    line-height: 29px;
    transition: all 500ms ease;
}

.accordion-box-style2 .accordion .accord-btn:hover h4,
.accordion-box-style2 .accordion .accord-btn.active h4 {
    color: var(--thm-white);
}

.accordion-box-style2 .accordion .accord-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: var(--thm-primary-color);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.accordion-box-style2 .accordion .accord-btn:hover:before,
.accordion-box-style2 .accordion .accord-btn.active:before {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.accordion-box-style2 .accordion .accord-btn .icon-box {
    position: relative;
    display: block;
    line-height: 0;
}

.accordion-box-style2 .accordion .accord-btn .icon-box span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f0ebf5;
    color: var(--thm-black);
    font-size: 15px;
    line-height: 15px;
    font-weight: 900;
    transition: all 500ms ease;
}

.accordion-box-style2 .accordion .accord-btn:hover .icon-box span,
.accordion-box-style2 .accordion .accord-btn.active .icon-box span {
    background-color: var(--thm-white);
    color: var(--thm-black);
    transform: rotate(90deg);
}




.accordion-box-style2 .accordion .accord-content {
    position: relative;
    display: none;
    border: 1px solid var(--thm-border-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 33px 30px 33px;
}

.accordion-box-style2 .accordion .accord-content.collapsed {
    display: block;
}

.accordion-box-style2 .accordion .accord-btn.active {
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.accordion-box-style2 .accordion .accord-content p {
    margin: 0;
}






/*== Search Popup Css ======*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 300px;
    padding-left: 20px;
    padding-right: 20px;
    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;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    z-index: 9999;
}

.search-popup.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.search-popup__overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    height: 300px;
    background-color: var(--thm-primary-color);
    opacity: 1.0;
    cursor: pointer;
}

.search-popup__close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background-color: var(--thm-black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 24px;
}



.search-popup__content {
    width: 100%;
    max-width: 560px;
    background-color: #000000;
    padding: 10px;
    z-index: 10;
}

.search-popup__content form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    background-color: #fff;
    color: var(--thm-black);
    font-size: 16px;
    border: none;
    outline: none;
    padding-left: 30px;
    padding-right: 80px;
}

.search-popup__content .thm-btn {
    position: absolute;
    top: 0;
    right: 0px;
    padding: 0;
    width: 60px;
    height: 70px;
    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;
    border-radius: 0;
    background-color: var(--thm-black);
    border: 0;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.search-popup__content .thm-btn i {
    background-color: transparent;
    margin-left: 0;
}

.search-popup__content .thm-btn:hover {
    color: #ffffff;
    background-color: var(--thm-primary-color);
}

/* Preloader */
.handle-preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    z-index: 9999999;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin: 0 auto 45px auto;
    animation: spinner 1s infinite linear;
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    position: relative;
    display: inline-block;
    font-family: var(--thm-font-3);
    font-weight: 700;
    letter-spacing: 15px;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 0.5s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 0.7s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    animation-delay: 0.8s;
}

.handle-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    border-top-color: rgba(255, 255, 255, 0.7);
}

/* AnimaciĆĀ³n del preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.loader-wrap .layer-one {
    position: absolute;
    left: 0%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-two {
    position: absolute;
    left: 33.3333%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-three {
    position: absolute;
    left: 66.6666%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--thm-black);
}

@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 40px;
        letter-spacing: 10px;
    }
}




@-webkit-keyframes pulse10 {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ee212b;
        box-shadow: 0 0 0 0 #ee212b;
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    }
}

@keyframes pulse10 {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ee212b;
        box-shadow: 0 0 0 0 #ee212b;
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    }
}




/*================================
    Courses Style1 Css
================================*/
.courses-style1 {
    background-color: var(--thm-gray-bg);
    padding: 120px 0px 120px;
}

.courses-style1__content {
    position: relative;
    display: block;
    margin-right: 30px;
}

.courses-style1__content .sec-title {
    padding-bottom: 33px;
}

.courses-style1__tab-btn {
    position: relative;
    display: block;
}

.courses-style1__tab-btn ul {
    position: relative;
    display: block;
}

.courses-style1__tab-btn ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid #d6ddda;
    padding-bottom: 13px;
    margin-bottom: 13px;
}

.courses-style1__tab-btn ul li::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 21px;
    width: 4px;
    height: 36px;
    opacity: 0;
    border-radius: 4px;
    transform: translateY(10px);
    background-color: var(--thm-primary-color);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.courses-style1__tab-btn ul li:hover::before,
.courses-style1__tab-btn ul li.active-btn-item::before {
    opacity: 1;
    transform: translateY(0px);
}

.courses-style1__tab-btn ul li:last-child {
    border-bottom: 0px solid transparent;
    margin-bottom: 0px;
}

.courses-style1__tab-btn ul li h4 {
    color: #97a69e;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.courses-style1__tab-btn ul li:hover h4,
.courses-style1__tab-btn ul li.active-btn-item h4 {
    color: var(--thm-black);
}

.courses-style1__content .text-box {
    position: relative;
    display: block;
    padding-top: 24px;
}

.courses-style1__content .text-box p {
    margin: 0;
}

.courses-style1__content .btn-box {
    position: relative;
    display: block;
    margin-top: 9px;
}

.courses-style1__content .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.courses-style1__content .btn-box a:hover {
    color: var(--thm-primary-color);
}

.courses-style1__content .btn-box a i {
    font-size: 16px;
    margin-right: 4px;
}

.courses-style1__tab .tabs-content-box {
    position: relative;
    display: block;
}

.courses-style1__tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.courses-style1__tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.courses-style1__tab .tab-content-box-item .courses-style1-tab-content-box-item {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.courses-style1__tab .tab-content-box-item.tab-content-box-item-active .courses-style1-tab-content-box-item {
    opacity: 1.0;
    transform: translateY(0px);
}

.courses-style1__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: var(--thm-border-radius);
    border-top-right-radius: var(--thm-border-radius);
    z-index: 1;
}

.courses-style1__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.courses-style1__img img {
    width: 100%;
}

.courses-style1__img-overlay-title {
    position: absolute;
    left: 39px;
    bottom: 31px;
    z-index: 3;
}

.courses-style1__img-overlay-title h3 {
    color: var(--thm-white);
    font-size: 30px;
    line-height: 40px;
}

.courses-style1__img-overlay-title h3 a {
    color: var(--thm-white);
}

.courses-style1__img-overlay-title h3 a:hover {
    color: var(--thm-primary-color);
}

.courses-style1__img .price-box {
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 4px 0px 0px 0px;
    background-color: var(--thm-white);
    padding: 5px 25px 6px;
    width: 200px;
    z-index: 3;
}

.courses-style1__img .price-box h3 {
    font-size: 30px;
    line-height: 40px;
}

.courses-style1__img .price-box h3 sup {
    font-size: 18px;
    line-height: 20px;
    top: -6px;
    margin-right: 5px;
}

.courses-style1__img .price-box h3 sub {
    font-size: 14px;
    line-height: 20px;
    bottom: 1px;
    margin-left: 5px;
}



.courses-style1-img-outer {
    position: relative;
    display: flex;
    padding-right: 200px;
}

.courses-style1-img-outer__left {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
    border-bottom-left-radius: var(--thm-border-radius);
    padding: 25px 40px 25px;
    width: 100%;
}

.courses-style1-img-outer__left ul {
    position: relative;
    display: flex;
    align-items: center;
}

.courses-style1-img-outer__left ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.courses-style1-img-outer__left ul li+li {
    margin-left: 130px;
}

.courses-style1-img-outer__left ul li::before {
    content: "";
    position: absolute;
    top: -34px;
    right: -75px;
    bottom: 0;
    width: 5px;
    height: 120px;
    background-color: var(--thm-gray-bg);
    transform: rotate(25deg);
}

.courses-style1-img-outer__left ul li:last-child::before {
    display: none;
}

.courses-style1-img-outer__left ul li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--thm-gray-bg);
}

.courses-style1-img-outer__left ul li .icon i {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 25px;
}

.courses-style1-img-outer__left ul li .text {
    position: relative;
    display: block;
    padding-left: 15px;
}

.courses-style1-img-outer__left ul li .text p {
    margin: 0;
}

.courses-style1-img-outer__left ul li .text p span {
    color: var(--thm-black);
}

.courses-style1-img-outer__right {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--thm-black-bg);
    border-bottom-right-radius: var(--thm-border-radius);
    padding: 26px 25px 26px;
    width: 200px;
}

.courses-style1-img-outer__right .btn-box {
    position: relative;
    display: flex;
    align-items: center;
}

.courses-style1-img-outer__right .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--thm-white);
    color: var(--thm-black);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.courses-style1-img-outer__right .btn-box a:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
}

.courses-style1-img-outer__right .btn-box h6 {
    color: var(--thm-white);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    padding-left: 15px;
    flex: 1;
}



/*================================
    Courses Style2 Css
================================*/
.courses-style2 {
    background-color: var(--thm-gray-bg);
    padding: 120px 0px 120px;
}

.single-courses-style2 {
    position: relative;
    display: block;
    background-color: var(--thm-gray-bg);
    border: 1px solid var(--thm-border-color);
    border-radius: var(--thm-border-radius);
    padding: 19px 19px 19px;
}

.single-courses-style2__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.single-courses-style2__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #20354b;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-courses-style2:hover .single-courses-style2__img::before {
    opacity: 0.3;
}

.single-courses-style2__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-courses-style2:hover .single-courses-style2__img img {
    transform: scale(1.05) rotate(0deg);
}

.single-courses-style2__overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(32, 53, 75, 0.95);
    padding: 15px 20px 52px;
    padding-right: 0;
    transform: translateY(70px);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 3;
}

.single-courses-style2:hover .single-courses-style2__overlay {
    background-color: transparent;
    transform: translateY(0px);
}

.single-courses-style2__overlay .title {
    position: relative;
    display: block;
    padding-bottom: 11px;
}

.single-courses-style2__overlay .title h3 {
    font-size: 20px;
    line-height: 30px;
}

.single-courses-style2__overlay .title h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-courses-style2__overlay .title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-courses-style2__overlay .text {
    position: relative;
    display: block;
}

.single-courses-style2__overlay .text p {
    color: #a5adb5;
}



.single-courses-style2__content {
    position: relative;
    display: block;
    margin-top: 10px;
}

.single-courses-style2__content-price {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
    padding: 5px 20px 5px;
    padding-right: 5px;
}

.single-courses-style2__content-price .left {
    position: relative;
    display: block;
}

.single-courses-style2__content-price .left h4 {
    font-size: 18px;
    line-height: 28px;
}

.single-courses-style2__content-price .left h4 span {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
}

.single-courses-style2__content-price .right {
    position: relative;
    display: block;
}

.single-courses-style2__content-price .right .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.single-courses-style2__content-price .right .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--thm-gray-bg);
    border-radius: var(--thm-border-radius);
    padding: 8px 20px 8px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-courses-style2__content-price .right .btn-box a i {
    margin-right: 6px;
}

.single-courses-style2__content-price .right .btn-box a:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
}



.single-courses-style2__content-classes {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
    margin-top: 10px;
}

.single-courses-style2__content-classes li {
    position: relative;
    display: block;
    line-height: 50px;
    border-bottom: 1px solid var(--thm-border-color);
}

.single-courses-style2__content-classes li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.single-courses-style2__content-classes-inner {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.single-courses-style2__content-classes-inner .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 24px;
}

.single-courses-style2__content-classes-inner .icon i {
    position: relative;
    top: 2px;
}

.single-courses-style2__content-classes-inner .text {
    position: relative;
    display: block;
    padding-left: 10px;
    flex: 1;
}

.single-courses-style2__content-classes-inner .text p {
    margin: 0;
}

.single-courses-style2__content-classes-inner .text p span {
    color: var(--thm-black);
}



.courses-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: -120px;
    right: 0;
}

.courses-style2-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    color: #a39b99;
}

.courses-style2-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
    color: var(--thm-white);
}


.courses-style2 .section-btn {
    margin-top: 60px;
}

.courses-style2 .section-btn-inner-bg {
    background-color: var(--thm-gray-bg);
}



/*===============================
    Process Style1 Css
===============================*/
.process-style1 {
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
}

.single-process-style1 {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.single-process-style1 .number-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 130px;
    height: 120px;
    margin: 0 auto;
}

.single-process-style1 .number-box .count {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--thm-primary-color);
    border-radius: var(--thm-border-radius);
    margin: 0 auto;
    transform: rotate(45deg);
}

.single-process-style1 .number-box .count--1 {
    margin-top: 80px;
}

.single-process-style1 .number-box .count h4 {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    transform: rotate(-45deg);
}

.single-process-style1 .number-box .count-shape1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.single-process-style1 .content-box {
    position: relative;
    display: block;
    padding: 23px 0px 22px;
}

.single-process-style1 .content-box h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 11px;
}

.single-process-style1 .content-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-process-style1 .content-box h3 a:hover {
    color: var(--thm-primary-color);
}

.single-process-style1 .content-box p {
    margin: 0;
}

.single-process-style1 .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    font-size: 45px;
    line-height: 45px;
    margin: 0 auto; -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-process-style1:hover .icon-box { -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease; background:#f66552;}

.single-process-style1 .icon-box .icon-enrollment .path1:before {
    color: var(--thm-primary-color);
}

.single-process-style1 .icon-box .icon-enrollment .path2:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-box .icon-enrollment .path3:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-box .icon-enrollment .path4:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-box .icon-enrollment .path5:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-box .icon-enrollment .path6:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-box .icon-enrollment .path7:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-box .icon-enrollment .path8:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-box .icon-enrollment .path9:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-meeting .path1:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-meeting .path2:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-meeting .path3:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-meeting .path4:before {
    color: var(--thm-primary-color);
}

.single-process-style1 .icon-driving .path1:before {
    color: var(--thm-primary-color);
}

.single-process-style1 .icon-driving .path2:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-driving .path3:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-driving .path4:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-driving-license .path1:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-driving-license .path2:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-driving-license .path3:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-driving-license .path4:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-driving-license .path5:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-driving-license .path6:before {
    color: var(--thm-black);
}

.single-process-style1 .icon-driving-license .path7:before {
    color: var(--thm-primary-color);
}

.single-process-style1 .icon-driving-license .path8:before {
    color: var(--thm-primary-color);
}

.single-process-style1 .icon-driving-license .path9:before {
    color: var(--thm-primary-color);
}

.single-process-style1 .icon-driving-license .path10:before {
    color: var(--thm-primary-color);
}

.single-process-style1 .icon-driving-license .path11:before {
    color: var(--thm-primary-color);
}

.single-process-style1 .icon-driving-license .path12:before {
    color: var(--thm-primary-color);
}


.process-style1 .section-btn {
    margin-top: 0;
}



/*** 
====================================
        Why Choose Style1
====================================
***/
.why-choose-style1 {
    background-color: var(--thm-white);
}

.why-choose-style1::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background-color: var(--thm-gray-bg);
    z-index: -1;
}

.why-choose-style1__inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-black-bg);
    border-radius: var(--thm-border-radius);
}

.why-choose-style1__content {
    position: relative;
    display: block;
    margin-right: -30px;
    border-right: 1px solid #2f5154;
}

.why-choose-style1__content ul {
    position: relative;
    display: block;
}

.why-choose-style1__content ul li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2f5154;
}

.why-choose-style1__content ul li:last-child {
    border-bottom: 0px solid transparent;
}

.why-choose-style1__content ul li .title-box {
    position: relative;
    display: block;
    max-width: 260px;
    width: 100%;
    padding: 40px 40px 32px;
    padding-right: 50px;
    border-right: 1px solid #2f5154;
}

.why-choose-style1__content ul li .title-box::before {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    width: 25px;
    height: 25px;
    opacity: 1;
    transform: translateY(0px);
    background-color: #264649;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.why-choose-style1__content ul li:hover .title-box::before {
    opacity: 0;
    transform: translateY(10px);
}

.why-choose-style1__content ul li .title-box .btn-box {
    position: absolute;
    top: -1px;
    right: -1px;
    opacity: 0;
    transform: translateY(10px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.why-choose-style1__content ul li .title-box .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--thm-primary-color);
    border-bottom-left-radius: 4px;
    color: var(--thm-white);
    font-size: 20px;
    line-height: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.why-choose-style1__content ul li .title-box .btn-box a:hover {
    color: var(--thm-black);
}

.why-choose-style1__content ul li:hover .title-box .btn-box {
    opacity: 1;
    transform: translateY(0px)
}

.why-choose-style1__content ul li .title-box .icon {
    position: relative;
    display: block;
    font-size: 50px;
    line-height: 50px;
}

.why-choose-style1__content ul li .title-box .icon .icon-license .path1:before {
    color: var(--thm-primary-color);
}

.why-choose-style1__content ul li .title-box .icon .icon-license .path2:before {
    color: var(--thm-primary-color);
}

.why-choose-style1__content ul li .title-box .icon .icon-license .path3:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-license .path4:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-license .path5:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-license .path6:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-license .path7:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-license .path8:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-license .path9:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-license .path10:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-taxi-driver .path1:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-taxi-driver .path2:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-taxi-driver .path3:before {
    color: var(--thm-primary-color);
}



.why-choose-style1__content ul li .title-box .icon .icon-schedule .path1:before {
    color: var(--thm-primary-color);
}

.why-choose-style1__content ul li .title-box .icon .icon-schedule .path2:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-schedule .path3:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-schedule .path4:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-schedule .path5:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .icon .icon-schedule .path6:before {
    color: var(--thm-white);
}

.why-choose-style1__content ul li .title-box .title {
    position: relative;
    display: block;
    padding-top: 14px;
}

.why-choose-style1__content ul li .title-box .title h3 {
    font-size: 20px;
    line-height: 30px;
}

.why-choose-style1__content ul li .title-box .title h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.why-choose-style1__content ul li .title-box .title h3 a:hover {
    color: var(--thm-primary-color);
}

.why-choose-style1__content ul li .text-box {
    position: relative;
    display: block;
    padding: 0px 40px 0px;
    padding-right: 30px;
    flex: 1;
}

.why-choose-style1__content ul li .text-box p {
    color: #a5b9bb;
}

.why-choose-style1__img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.why-choose-style1__img .big-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #3d5a5c;
    font-size: 60px;
    line-height: 1.1em;
    font-family: var(--thm-font-2);
    font-weight: 800;
    text-transform: uppercase;
    padding-top: 7px;
    z-index: 3;
}

.why-choose-style1__img-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.why-choose-style1__img-box {
    position: absolute;
    left: 0;
    bottom: -20px;
    right: 0;
    max-width: 570px;
    width: 100%;
    z-index: 1;
}

.why-choose-style1__img-box .logo-box {
    position: absolute;
    top: 230px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
}

.why-choose-style1__img-box .logo-box a {
    position: relative;
    display: inline-block;
}

.why-choose-style1__img-box .logo-box a img {
    width: auto;
}

.why-choose-style1__img-box .overlay-text {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    width: 240px;
    text-align: center;
    margin: 0 auto;
    padding-top: 13px;
    z-index: 3;
}

.why-choose-style1__img-box .overlay-text h5 {
    color: var(--thm-white);
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}

.why-choose-style1__img-box .overlay-text .shape1 {
    position: absolute;
    top: 0;
    left: 20px;
}

.why-choose-style1__img-box .overlay-text .shape2 {
    position: absolute;
    right: 0;
    bottom: 0;
}



/*** 
====================================
    Choose Style2
====================================
***/
.choose-style2 {
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
}

.choose-style2 .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.choose-style2 .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}

.choose-style2__content {
    position: relative;
    display: block;
}

.choose-style2__content ul {
    position: relative;
    display: block;
}

.choose-style2__content ul li {
    position: relative;
    display: block;
}

.choose-style2__content ul li+li {
    margin-top: 42px;
}


.single-choose-style2-box {
    position: relative;
    display: block;
    text-align: right;
    padding-right: 10px;
}

.single-choose-style2-box--1 {
    text-align: left;
    padding-left: 10px;
    padding-right: 0;
}

.single-choose-style2-box .text-box {
    position: relative;
    display: block;
}

.single-choose-style2-box .text-box .icon {
    position: relative;
    display: block;
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 13px;
}

.single-choose-style2-box .text-box .icon .icon-license .path1:before {
    color: var(--thm-primary-color);
}

.single-choose-style2-box .text-box .icon .icon-license .path2:before {
    color: var(--thm-primary-color);
}

.single-choose-style2-box .text-box .icon .icon-license .path3:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-license .path4:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-license .path5:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-license .path6:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-license .path7:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-license .path8:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-license .path9:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-license .path10:before {
    color: var(--thm-black);
}



.single-choose-style2-box .text-box .icon .icon-schedule .path1:before {
    color: var(--thm-primary-color);
}

.single-choose-style2-box .text-box .icon .icon-schedule .path2:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-schedule .path3:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-schedule .path4:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-schedule .path5:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-schedule .path6:before {
    color: var(--thm-black);
}



.single-choose-style2-box .text-box .icon .icon-taxi-driver .path1:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-taxi-driver .path2:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-taxi-driver .path3:before {
    color: var(--thm-primary-color);
}



.single-choose-style2-box .text-box .icon .icon-receipt .path1:before {
    color: var(--thm-primary-color);
}

.single-choose-style2-box .text-box .icon .icon-receipt .path2:before {
    color: var(--thm-primary-color);
}

.single-choose-style2-box .text-box .icon .icon-receipt .path3:before {
    color: var(--thm-primary-color);
}

.single-choose-style2-box .text-box .icon .icon-receipt .path4:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-receipt .path5:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box .icon .icon-receipt .path6:before {
    color: var(--thm-black);
}

.single-choose-style2-box .text-box h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 11px;
}

.single-choose-style2-box .text-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-choose-style2-box .text-box h3 a:hover {
    color: var(--thm-primary-color);
}

.single-choose-style2-box .text-box p {
    margin: 0;
}

.single-choose-style2-box .round-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 65px;
    right: -45px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

.single-choose-style2-box .round-box--1 {
    left: -45px;
    right: auto;
}

.single-choose-style2-box .round-box::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    transform: scale(1);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 4;
}

.single-choose-style2-box:hover .round-box::before {
    transform: scale(2.5);
}


.single-choose-style2-box .arrow-box {
    position: relative;
    display: inline-block;
    color: #f5f0f0;
    font-size: 40px;
    margin-left: 5px;
    transform: rotate(0deg);
    margin-top: 40px;
}

.single-choose-style2-box .arrow-box.left {
    margin-left: 0px;
    margin-right: 5px;
    transform: rotate(180deg);
}

.single-choose-style2-box .arrow-box span {
    position: relative;
    display: inline-block;
    margin: 0 -5px;
}


.choose-style2__img {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    max-width: 570px;
    width: 100%;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    background-color: var(--thm-primary-color);
    z-index: 1;
}

.choose-style2__img::before {
    content: "";
    position: absolute;
    top: -510px;
    left: -180px;
    right: -180px;
    height: 570px;
    background-color: var(--thm-white);
    z-index: 2;
    border-radius: 50%;
}

.choose-style2__img::after {
    content: "";
    position: absolute;
    left: -180px;
    right: -180px;
    bottom: -510px;
    height: 570px;
    background-color: var(--thm-white);
    z-index: 2;
    border-radius: 50%;
}

.choose-style2__img .inner {
    position: relative;
    display: inline-block;
    z-index: 3;
}

.choose-style2__img .inner img {
    width: auto;
}

.choose-style2__img .big-text {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.12);
    font-size: 100px;
    font-weight: 800;
    line-height: 1.0em;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
}




/*** 
============================
    Choose Style3 Css
============================
***/
.choose-style3 {
    background-color: var(--thm-gray-bg);
    padding: 120px 0px 120px;
}

.choose-style3 .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.choose-style3 .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}

.single-choose-style3 {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    padding: 50px 35px 41px;
    overflow: hidden;
}

.single-choose-style3::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-black-bg);
    opacity: 0;
    transform: perspective(400px) scaleX(0.7);
    transform-origin: center;
    z-index: 1;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-choose-style3:hover::before {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
}

.single-choose-style3__inner {
    position: relative;
    display: block;
    z-index: 5;
}

.single-choose-style3 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
}

.single-choose-style3 .img-box .img1 {
    position: relative;
    display: block;
    line-height: 0;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-choose-style3:hover .img-box .img1 {
    opacity: 0;
    transform: translateY(20px);
}

.single-choose-style3 .img-box .img1 img {
    width: auto;
}

.single-choose-style3 .img-box .img2 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    line-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-choose-style3:hover .img-box .img2 {
    opacity: 1;
    transform: translateY(0px);
}

.single-choose-style3 .img-box .img2 img {
    width: auto;
}






.single-process-style1 .img-box {
    position:absolute;
    display: block;
    overflow: hidden;
    line-height: 0; top: 40%;
  left: 0;
  right: 0;
}

.single-process-style1 .img-box .img1 {
    position: relative;
    display: block;
    line-height: 0;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-process-style1:hover .img-box .img1 {
    opacity: 0;
    transform: translateY(20px);
}

.single-process-style1 .img-box .img1 img {
    width: auto;
}

.single-process-style1 .img-box .img2 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    line-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-process-style1:hover .img-box .img2 {
    opacity: 1;
    transform: translateY(0px);
}

.single-process-style1 .img-box .img2 img {
    width: auto;
}










.single-choose-style3 .title-box {
    position: relative;
    display: block;
    padding-top: 31px;
}

.single-choose-style3 .title-box h3 {
    font-size: 22px;
    line-height: 32px;
}

.single-choose-style3 .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-choose-style3 .title-box h3 a:hover {
    color: var(--thm-primary-color);
}

.single-choose-style3:hover .title-box h3 a {
    color: var(--thm-white);
}

.single-choose-style3 .text-box {
    position: relative;
    display: block;
    padding-top: 17px;
    z-index: 3;
}

.single-choose-style3 .text-box p {
    margin: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-choose-style3:hover .text-box p {
    color: #a5a5ac;
}



.single-choose-style3 .btn-box {
    position: relative;
    display: block;
    padding-top: 40px;
    z-index: 3;
}

.single-choose-style3 .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-choose-style3:hover .btn-box a {
    color: var(--thm-primary-color);
}

.single-choose-style3 .btn-box a i {
    margin-right: 6px;
}


.single-choose-style3 .icon-box {
    position: absolute;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    right: -35px;
    bottom: -41px;
    width: 80px;
    height: 80px;
    background-color: transparent;
    border-top-left-radius: 100%;
    color: #eeeff3;
    font-size: 60px;
}

.single-choose-style3 .icon-box span {
    position: relative;
    display: inline-block;
    transition: all 0.5s ease;
}

.single-choose-style3:hover .icon-box span {
    transform: scaleX(0) translateY(50px);
}

.single-choose-style3 .icon-box .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #ffffff;
    font-size: 36px;
    background-color: var(--thm-primary-color);
    border-top-left-radius: 100%;
    padding-right: 12px;
    padding-top: 12px;
    z-index: 3;

    opacity: 0;
    transform: perspective(400px) scaleX(0.7);
    transform-origin: right;
    transition: all 0.5s ease;
}

.single-choose-style3:hover .icon-box .overlay-icon {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
}

.single-choose-style3 .icon-box .overlay-icon span {
    transform: scale(1.0);
}

.choose-style3-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: -120px;
    right: 0;
}



/*** 
====================================
    Slogan Style1
====================================
***/
.slogan-style1 {
    overflow: hidden;
    padding: 20px 0px 0px;
}

.slogan-style1 .row {
    align-items: center;
}

.slogan-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: -1;
}

.slogan-style1__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(20, 43, 45);
    background: linear-gradient(90deg, rgba(20, 43, 45, 1) 0%, rgba(20, 43, 45, 0.7959558823529411) 41%, rgba(20, 43, 45, 0) 71%, rgba(20, 43, 45, 0) 100%);
}

.slogan-style1__content {
    position: relative;
    display: block;
}

.slogan-style1__content .sub-title {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.slogan-style1__content .sub-title h3 {
    color: var(--thm-white);
    font-size: 30px;
    line-height: 40px;
}

.slogan-style1__content .big-title {
    position: relative;
    display: block;
}

.slogan-style1__content .big-title h2 {
    color: #fff;
    -webkit-text-stroke-width: 0px;
    -webkit-text-stroke-color: var(--thm-white);
    font-size: 70px;
    line-height: 1.2em;
    font-weight: 100;
    text-transform: none;
}

.slogan-style1__content .title {
    position: relative;
    display: block;
    margin-top: 8px;
}

.slogan-style1__content .title h3 {
    color: var(--thm-white);
    font-size: 30px;
    line-height: 40px;
}

.slogan-style1__content .text {
    position: relative;
    display: block;
    padding-top:0px;
}

.slogan-style1__content .text p {
    color: var(--thm-primary-color);
}

.appointment-form-style1 {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    padding: 0px 0px 30px;
}

.appointment-form-style1 .row {
    --bs-gutter-x: 0px;
}

.appointment-form-style1 ul li {
    border-right: 1px solid var(--thm-border-color);
}

.appointment-form-style1 ul li:nth-child(2) {
    border-right: 0px solid transparent;
}

.appointment-form-style1 ul li:nth-child(4) {
    border-right: 0px solid transparent;
}

.appointment-form-style1 ul li:nth-child(5) {
    border-right: 0px solid transparent;
}

.appointment-form-style1 form {
    position: relative;
    display: block;
}

.appointment-form-style1 form .form-group {
    position: relative;
    display: block;
}

.appointment-form-style1 form .input-box {
    position: relative;
    display: block; margin: 10px;
}


.appointment-form-style1 form input[type="text"],
.appointment-form-style1 form input[type="email"] {
    position: relative;
    display: block;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border: 0px solid transparent;
    border-bottom: 1px solid var(--thm-border-color);
    background-color: var(--thm-white);
    width: 100%;
    height: 60px;
    color: var(--thm-body-font-color);
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    text-transform: capitalize;
    transition: all 500ms ease;
}

.appointment-form-style1 form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-body-font-color);
}

.appointment-form-style1 form input[type="text"]:-moz-placeholder {
    color: var(--thm-body-font-color);
}

.appointment-form-style1 form input[type="text"]::-moz-placeholder {
    color: var(--thm-body-font-color);
}

.appointment-form-style1 form input[type="text"]:-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.appointment-form-style1 form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-body-font-color);
}

.appointment-form-style1 form input[type="email"]:-moz-placeholder {
    color: var(--thm-body-font-color);
}

.appointment-form-style1 form input[type="email"]::-moz-placeholder {
    color: var(--thm-body-font-color);
}

.appointment-form-style1 form input[type="email"]:-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.appointment-form-style1 form .nice-select {
    position: relative;
    display: block;
    border-radius: 0px;
    background-color: transparent;
    border: 0px solid transparent;
    border-bottom: 1px solid var(--thm-border-color);
    width: 100%;
    height: 60px;
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 60px;
    font-family: var(--thm-font);
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease;
}

.appointment-form-style1 form .nice-select::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #97a69e;
    border-right: 2px solid #97a69e;
    right: 30px;
    margin-top: 0px;
    top: 21px;
    z-index: 10;
}

.appointment-form-style1 form .nice-select .list {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scale(1.0) translateY(30px);
    -ms-transform: scale(1.0) translateY(30px);
    transform: scale(1.0) translateY(30px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    height: 0;
    width: 100%;
    right: 0 !important;
    left: auto !important;
    z-index: 100;
}

.appointment-form-style1 form .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    height: auto;
}

.appointment-form-style1 form .nice-select .option {
    color: var(--thm-black);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.appointment-form-style1 form .nice-select .option+.option {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.appointment-form-style1 form .nice-select .option:hover,
.appointment-form-style1 form .nice-select .option.focus,
.appointment-form-style1 form .nice-select .option.selected.focus {
    color: var(--thm-white) !important;
    background-color: var(--thm-primary-color);
}

.appointment-form-style1 form .button-box {
    position: relative;
    display: block;
    line-height: 0;
    padding: 30px 30px 0px;
}

.appointment-form-style1 form .button-box .btn-one {
    display: block;
    width: 100%;
}

.appointment-form-style1 form .button-box .btn-one::before {
    background-color: var(--thm-primary-color);
}

.appointment-form-style1 form .button-box .btn-one::after {
    background-color: var(--thm-black-bg);
}



/*** 
====================================
    Slogan Style1 1 1
====================================
***/
.slogan-style1--1 {
    background-color: var(--thm-black-bg);
}

.slogan-style1--1 .slogan-style1__bg {
    opacity: 0.6;
}

.slogan-style1--1 .slogan-style1__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(20, 43, 45);
    background: linear-gradient(90deg, rgba(20, 43, 45, 1) 0%, rgba(20, 43, 45, 0.7959558823529411) 40%, rgba(20, 43, 45, 0) 100%, rgba(20, 43, 45, 0) 100%);
}

.slogan-style1__content .text p {
    color: #a5b9bb;
}




/*** 
=========================
    Project Style1      
=========================
***/
.project-style1 {
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
}

.single-project-style1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-project-style1__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.single-project-style1__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--thm-black-bg);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-project-style1:hover .single-project-style1__img::before {
    opacity: 0.9;
}

.single-project-style1__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-project-style1:hover .single-project-style1__img img {
    transform: scale(1.05) rotate(0deg);
}

.single-project-style1__img-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transform: scaleY(0);
    transition: all 400ms ease 200ms;
    z-index: 3;
}

.single-project-style1:hover .single-project-style1__img-overlay-content {
    opacity: 1;
    transform: scaleY(1.0);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.single-project-style1__img-overlay-content .category {
    position: relative;
    display: inline-block;
}

.single-project-style1__img-overlay-content .category::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #515d6c;
}

.single-project-style1__img-overlay-content .category h6 {
    color: var(--thm-primary-color);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
}

.single-project-style1__img-overlay-content .title {
    position: relative;
    display: block;
    padding-top: 12px;
}

.single-project-style1__img-overlay-content .title h3 {
    font-size: 20px;
    line-height: 30px;
}

.single-project-style1__img-overlay-content .title h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-style1__img-overlay-content .title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-project-style1__img-overlay-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateX(30px);
    transform-origin: bottom;
    transition: all 500ms ease;
    z-index: 3;
}

.single-project-style1:hover .single-project-style1__img-overlay-icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    transition-delay: 300ms;
}

.single-project-style1__img-overlay-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 60px;
    height: 60px;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-white);
    color: var(--thm-black);
    font-size: 22px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-project-style1__img-overlay-icon a:hover {
    color: var(--thm-white);
    background-color: transparent;
}

.single-project-style1__img-overlay-icon a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: var(--thm-border-radius);
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    background-color: var(--thm-primary-color);
    z-index: -1;
}

.single-project-style1__img-overlay-icon a:hover::before {
    transform: scaleX(1.0);
}


.project-style1 .section-btn {
    margin-top: 30px;
}




/*** 
=========================
    Project Style2      
=========================
***/
.project-style2 {
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
}

.project-style2 .container {
    max-width: 1800px;
}

.project-style2 .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.project-style2 .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}

.single-project-style2 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-project-style2__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
    z-index: 1;
}

.single-project-style2__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: var(--thm-black-bg);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 5%, rgba(20, 43, 45, 0.2049194677871149) 100%);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-project-style2:hover .single-project-style2__img::before {
    opacity: 1;
}

.single-project-style2__img img {
    width: 100%;
}

.single-project-style2__img-overlay-content {
    position: absolute;
    left: 0;
    bottom: 32px;
    right: 0;
    opacity: 0;
    text-align: center;
    transform: scaleY(0);
    transition: all 400ms ease 200ms;
    z-index: 3;
}

.single-project-style2:hover .single-project-style2__img-overlay-content {
    opacity: 1;
    transform: scaleY(1.0);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.single-project-style2__img-overlay-content .category {
    position: relative;
    display: inline-block;
}

.single-project-style2__img-overlay-content .category::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    right: 0;
    height: 1px;
    background-color: rgb(255, 255, 255, 0.2);
}

.single-project-style2__img-overlay-content .category h6 {
    color: var(--thm-primary-color);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
}

.single-project-style2__img-overlay-content .title {
    position: relative;
    display: block;
    padding-top: 14px;
}

.single-project-style2__img-overlay-content .title h3 {
    font-size: 26px;
    line-height: 36px;
}

.single-project-style2__img-overlay-content .title h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-style2__img-overlay-content .title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-project-style2__img-overlay-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateX(30px);
    transform-origin: bottom;
    transition: all 500ms ease;
    z-index: 3;
}

.single-project-style2:hover .single-project-style2__img-overlay-icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    transition-delay: 300ms;
}

.single-project-style2__img-overlay-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 60px;
    height: 60px;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-white);
    color: var(--thm-black);
    font-size: 22px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-project-style2__img-overlay-icon a:hover {
    color: var(--thm-white);
    background-color: transparent;
}

.single-project-style2__img-overlay-icon a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: var(--thm-border-radius);
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    background-color: var(--thm-primary-color);
    z-index: -1;
}

.single-project-style2__img-overlay-icon a:hover::before {
    transform: scaleX(1.0);
}

.project-style2 .section-btn {
    margin-top: 30px;
}



/*** 
=========================
    Project Style3      
=========================
***/
.project-style3 {
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
}

.project-style3 .container {
    max-width: 1850px;
}

.project-style3 .auto-container {
    max-width: 1200px;
}

.project-style3 .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.project-style3 .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}

.project-style3__inner {
    position: relative;
    display: block;
    margin-left: -15px;
    margin-right: -15px;
}

.project-style3__inner li {
    position: relative;
    display: block;
    float: left;
    width: 20%;
    padding: 0 15px;
}

.single-project-style3 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-project-style3__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.single-project-style3__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--thm-black-bg);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-project-style3:hover .single-project-style3__img::before {
    opacity: 0.9;
}

.single-project-style3__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-project-style3:hover .single-project-style3__img img {
    transform: scale(1.05) rotate(0deg);
}


.single-project-style3__img-overlay-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateX(30px);
    transform-origin: bottom;
    transition: all 500ms ease;
    z-index: 3;
}

.single-project-style3:hover .single-project-style3__img-overlay-icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    transition-delay: 300ms;
}

.single-project-style3__img-overlay-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 60px;
    height: 60px;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-white);
    color: var(--thm-black);
    font-size: 22px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-project-style3__img-overlay-icon a:hover {
    color: var(--thm-white);
    background-color: transparent;
}

.single-project-style3__img-overlay-icon a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: var(--thm-border-radius);
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    background-color: var(--thm-primary-color);
    z-index: -1;
}

.single-project-style3__img-overlay-icon a:hover::before {
    transform: scaleX(1.0);
}

.single-project-style3__img-overlay-box {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 25px;
    background-color: var(--thm-primary-color);
    border-top-right-radius: var(--thm-border-radius);
    padding: 17px 30px 17px;
    transform: scaleY(0);
    transition: all 400ms ease 200ms;
    z-index: 3;
}

.single-project-style3:hover .single-project-style3__img-overlay-box {
    opacity: 1;
    transform: scaleY(1.0);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.single-project-style3__img-overlay-box .category-box {
    position: relative;
    display: inline-block;
}

.single-project-style3__img-overlay-box .category-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    right: 0;
    height: 1px;
    background-color: rgb(255, 255, 255, 0.2);
}

.single-project-style3__img-overlay-box .category-box h6 {
    color: #defdee;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
}

.single-project-style3__img-overlay-box .title-box {
    position: relative;
    display: block;
    padding-top: 11px;
}

.single-project-style3__img-overlay-box .title-box h3 {
    font-size: 20px;
    line-height: 30px;
}

.single-project-style3__img-overlay-box .title-box h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-style3__img-overlay-box .title-box h3 a:hover {
    color: var(--thm-black);
}

.project-style3 .section-btn {
    margin-top: 30px;
}




/*** 
==============================
    Technology Style1 Css   
==============================
***/
.technology-style1 {
    background-color: var(--thm-gray-bg);
    padding: 120px 0px 80px;
}

.technology-style1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc((100% - 210px) / 2);
    background-color: #f0eceb;
    z-index: -1;
}

.technology-style1__top-title {
    position: absolute;
    top: 31px;
    left: 0px;
    overflow: hidden;
    width: calc((100% - 210px) / 2);
}

.technology-style1__top-title ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: fit-content;
}

.technology-style1__top-title ul li {
    position: relative;
    display: block;
    white-space: nowrap;
    float: left;
    margin-left: 50px;
    color: #e5e0df;
    font-size: 120px;
    line-height: 1.1em;
    font-weight: 800;
    font-family: var(--thm-font-2);
    text-transform: uppercase;
}




.technology-style1__bottom-title {
    position: absolute;
    left: 0px;
    bottom: 41px;
    overflow: hidden;
    width: calc((100% - 210px) / 2);
}

.technology-style1__bottom-title ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: fit-content;
}

.technology-style1__bottom-title ul li {
    position: relative;
    display: block;
    white-space: nowrap;
    float: left;
    margin-left: 40px;
    color: #e5e0df;
    font-size: 120px;
    line-height: 1.1em;
    font-weight: 800;
    font-family: var(--thm-font-2);
    text-transform: uppercase;
}


.technology-style1__bg {
    position: absolute;
    top: 205px;
    left: 0;
    bottom: 205px;
    background-color: #f0eceb;
    width: calc((100% - 210px) / 2);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    overflow: hidden;
    z-index: -1;
}





.technology-style1__content {
    position: relative;
    display: block;
    padding-left: 600px;
}

.technology-style1__content .sec-title {
    padding-bottom: 33px;
}

.technology-style1__content .text {
    position: relative;
    display: block;
}

.technology-style1__content .text p {
    margin: 0;
}

.technology-style1__content-list {
    position: relative;
    display: block;
    padding-top: 32px;
}

.technology-style1__single-list {
    position: relative;
    display: block;
    max-width: 210px;
    width: 100%;
    margin-bottom: 32px;
}

.technology-style1__single-list .icon {
    position: relative;
    display: block;
    font-size: 45px;
    line-height: 45px;
}

.technology-style1__single-list .icon .icon-check .path1:before {
    color: var(--thm-black);
}

.technology-style1__single-list .icon .icon-check .path2:before {
    color: var(--thm-primary-color);
}

.technology-style1__single-list .icon .icon-check .path3:before {
    color: var(--thm-primary-color);
}

.technology-style1__single-list .icon .icon-check .path4:before {
    color: var(--thm-primary-color);
}

.technology-style1__single-list .title {
    position: relative;
    display: block;
    padding: 17px 0px 17px;
}

.technology-style1__single-list .title h3 {
    font-size: 20px;
    line-height: 30px;
}

.technology-style1__single-list .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.technology-style1__single-list .title h3 a:hover {
    color: var(--thm-primary-color);
}

.technology-style1__single-list .border-line {
    position: relative;
    display: block;
    width: 70px;
    height: 1px;
    background-color: var(--thm-border-color);
    margin-bottom: 19px;
}

.technology-style1__single-list .text-box {
    position: relative;
    display: block;
}

.technology-style1__single-list .text-box p {
    margin: 0;
}



/*
===================================================
    Faq Style1    
===================================================
*/
.faq-style1 {
    background-color: var(--thm-gray-bg);
    padding: 120px 0px 120px;
}

.faq-style1__left-content {
    position: relative;
    display: block;
}

.faq-style1__left-content .sec-title {
    padding-bottom: 39px;
}

.faq-style1__left-content .question-box {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--thm-white);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(247, 244, 243, 1) 100%);
    border-radius: var(--thm-border-radius);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 25px 25px 25px;
}

.faq-style1__left-content .question-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: 2px;
    width: 4px;
    background-color: var(--thm-primary-color);
}

.faq-style1__left-content .question-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--thm-gray-bg);
    border-radius: var(--thm-border-radius);
    font-size: 40px;
    line-height: 40px;
}

.faq-style1__left-content .question-box .icon .icon-chat .path1:before {
    color: var(--thm-black);
}

.faq-style1__left-content .question-box .icon .icon-chat .path2:before {
    color: var(--thm-black);
}

.faq-style1__left-content .question-box .icon .icon-chat .path3:before {
    color: var(--thm-black);
}

.faq-style1__left-content .question-box .icon .icon-chat .path4:before {
    color: var(--thm-black);
}

.faq-style1__left-content .question-box .icon .icon-chat .path5:before {
    color: var(--thm-primary-color);
}

.faq-style1__left-content .question-box .title {
    position: relative;
    display: block;
    flex: 1;
    padding-left: 25px;
}

.faq-style1__left-content .question-box .title h5 {
    font-size: 16px;
    line-height: 22px;
}

.faq-style1__left-content .question-box .title p {
    margin: 0;
}

.faq-style1__left-content .question-box .title p a {
    color: var(--thm-body-font-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-style1__left-content .question-box .title p a:hover {
    color: var(--thm-primary-color);
}

.faq-style1__left-content .text-box {
    position: relative;
    display: block;
    padding-top: 44px;
}

.faq-style1__left-content .text-box p {
    margin: 0;
}

.faq-style1__left-content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 6px;
}

.faq-style1__left-content .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-style1__left-content .btn-box a i {
    margin-right: 7px;
}

.faq-style1__left-content .btn-box a:hover {
    color: var(--thm-primary-color);
}



.faq-style1__content {
    position: relative;
    display: block;
}



/*** 
==========================
    Faq Page One Css      
==========================
***/
.faq-page-one {
    background-color: var(--thm-white);
    padding: 50px 0px 60px;
}

.faq-page-one__tab {
    position: relative;
    display: block;
}

.faq-page-one__content {
    position: relative;
    display: block;
    margin-right: -70px;
}

.faq-page-one__tab-btn {
    position: relative;
    display: block;
}

.faq-page-one__content .tabs-button-box {
    position: relative;
    display: block;
}

.faq-page-one__content .tabs-button-box li {
    position: relative;
    display: block;
}

.faq-page-one__content .tabs-button-box li+li {
    margin-top: 16px;
}

.faq-page-one__content .tabs-button-box li .title {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.faq-page-one__content .tabs-button-box li .title p {
    margin: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;padding:8px 15px; font-size: 20px; border-radius:10px;
}
.tabs-content-box h4{ margin-top:20px}

.faq-page-one__content .tabs-button-box li:hover .title p,
.faq-page-one__content .tabs-button-box li.active-btn-item .title p {
    color: #fff; background:var(--thm-primary-color); 
}

.faq-page-one__content .tabs-button-box li .title .icon {
    position: relative;
    display: block;
    opacity: 0;
    color: var(--thm-body-font-color);
    font-size: 16px;
    margin-left: 5px;
    transform: translateX(-15px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.faq-page-one__content .tabs-button-box li:hover .title .icon,
.faq-page-one__content .tabs-button-box li.active-btn-item .title .icon {
    opacity: 1;
    color: var(--thm-primary-color);
    transform: translateX(0px);
}

.faq-page-one__content .question-box {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--thm-gray-bg);
    background: linear-gradient(90deg, rgba(240, 247, 243, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: var(--thm-border-radius);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 25px 25px 25px;
    margin-top: 42px;
}

.faq-page-one__content .question-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: 2px;
    width: 4px;
    background-color: var(--thm-primary-color);
}

.faq-page-one__content .question-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    font-size: 40px;
    line-height: 40px;
}

.faq-page-one__content .question-box .icon .icon-chat .path1:before {
    color: var(--thm-black);
}

.faq-page-one__content .question-box .icon .icon-chat .path2:before {
    color: var(--thm-black);
}

.faq-page-one__content .question-box .icon .icon-chat .path3:before {
    color: var(--thm-black);
}

.faq-page-one__content .question-box .icon .icon-chat .path4:before {
    color: var(--thm-black);
}

.faq-page-one__content .question-box .icon .icon-chat .path5:before {
    color: var(--thm-primary-color);
}

.faq-page-one__content .question-box .title {
    position: relative;
    display: block;
    flex: 1;
    padding-left: 20px;
}

.faq-page-one__content .question-box .title h5 {
    font-size: 16px;
    line-height: 22px;
}

.faq-page-one__content .question-box .title p {
    margin: 0;
}

.faq-page-one__content .question-box .title p a {
    color: var(--thm-body-font-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-page-one__content .question-box .title p a:hover {
    color: var(--thm-primary-color);
}






.faq-page-one__tab .tabs-content-box {
    position: relative;
    display: block;
    margin-left: 100px;
}

.faq-page-one__tab .tabs-content-box::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -40px;
    bottom: -120px;
    width: 1px;
    background-color: var(--thm-border-color);
}

.faq-page-one__tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.faq-page-one__tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.faq-page-one__tab .tab-content-box-item .faq-page-one__content-tab-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.faq-page-one__tab .tab-content-box-item.tab-content-box-item-active .faq-page-one__content-tab-item {
    opacity: 1;
    transform: translateY(0px);
}



.faq-style1__content--style2 {
    position: relative;
}

.faq-style1__content--style2 .accordion-box-style1 .accordion .accord-btn {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}

.faq-style1__content--style2 .accordion-box-style1 .accordion .accord-btn.active h4 {
    color: var(--thm-black);
}

.faq-style1__content--style2 .accordion-box-style1 .accordion .accord-btn.active::before {
    background-color: var(--thm-white);
}

.faq-style1__content--style2 .accordion-box-style1 .accordion .accord-btn h4 span {
    color: #97a69e;
}

.faq-style1__content--style2 .accordion-box-style1 .accordion .accord-btn.active h4 span {
    color: var(--thm-black);
}

.faq-style1__content--style2 .accordion-box-style1 .accordion .accord-btn::after {
    color: #97a69e;
    border-color: var(--thm-border-color);
}

.faq-style1__content--style2 .accordion-box-style1 .accordion .accord-btn.active:after {
    color: var(--thm-white);
    border-color: var(--thm-primary-color);
}









/*** 
=============================================
    Lacation Style1 Css      
=============================================
***/
.lacation-style1 {
    background-color: var(--thm-black-bg);
    padding: 120px 0 120px;
}

.lacation-style1__map {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #20354b;
    width: calc((100% - 0px) / 2);
}

.lacation-style1__map .google-map {
    position: relative;
    display: block;
    z-index: 1;
}


.lacation-style1__map-box {
    position: relative;
    display: block;
    width: 100%;
    height: 630px;
    mix-blend-mode: luminosity;
    opacity: 0.10;
}

.lacation-style1__tab {
    position: relative;
    display: flex;
    align-items: center;
}

.lacation-style1__tab .tabs-content-box {
    position: relative;
    display: block;
    max-width: 585px;
    width: 100%;
}

.lacation-style1__tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.lacation-style1__tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.lacation-style1__tab .tab-content-box-item .lacation-style1-tab-content-box-item {
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.lacation-style1__tab .tab-content-box-item.tab-content-box-item-active .lacation-style1-tab-content-box-item {
    opacity: 1.0;
    transform: translateY(0px);
}

.lacation-style1__tab .tab-content-box-item.tab-content-box-item-active .lacation-style1-tab-content-box-item .single-lacation-box.active .icon {
    color: #ffffff;
}

.lacation-style1__tab .tab-content-box-item.tab-content-box-item-active .lacation-style1-tab-content-box-item .single-lacation-box.active .icon:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.lacation-style1__tab .tab-content-box-item .lacation-style1-tab-content-box-item .single-lacation-box .overlay-content {
    position: absolute;
    left: -95px;
    bottom: 140%;
    right: 0;
    width: 240px;
    background-color: #ffffff;
    text-align: center;
    padding: 27px 10px 10px;
    border-radius: var(--thm-border-radius);
    z-index: 2;
    transform: scaleX(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.lacation-style1__tab .tab-content-box-item .lacation-style1-tab-content-box-item .single-lacation-box.style2 .overlay-content {
    bottom: -250px;
}

.lacation-style1__tab .tab-content-box-item.tab-content-box-item-active .lacation-style1-tab-content-box-item .single-lacation-box .overlay-content {
    transform: scaleX(1.0);
}

.lacation-style1__inner {
    position: relative;
    display: block;
    max-width: 440px;
    height: 350px;
}

.single-lacation-box {
    position: absolute;
    top: 0;
    left: 0;
}

.single-lacation-box.two {
    position: absolute;
    top: 140px;
    left: 60px;
}

.single-lacation-box.three {
    position: absolute;
    top: 20px;
    left: 180px;
}

.single-lacation-box.four {
    position: absolute;
    top: auto;
    left: 150px;
    bottom: 0;
}

.single-lacation-box.five {
    position: absolute;
    top: 10px;
    left: auto;
    right: 80px;
}

.single-lacation-box.six {
    position: absolute;
    top: auto;
    left: auto;
    right: 120px;
    bottom: 100px;
}

.single-lacation-box.seven {
    position: absolute;
    top: auto;
    left: auto;
    right: 0px;
    bottom: 80px;
}

.single-lacation-box .overlay-content {
    position: absolute;
    left: -95px;
    bottom: 140%;
    right: 0;
    width: 240px;
    background-color: #ffffff;
    text-align: center;
    padding: 27px 10px 10px;
    border-radius: var(--thm-border-radius);
    z-index: 2;
    transform: scaleX(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.single-lacation-box .overlay-content::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    right: 0;
    width: 25px;
    height: 15px;
    margin: 0 auto;
    border-top: 15px solid #ffffff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}

.single-lacation-box.style2 .overlay-content::before {
    bottom: auto;
    top: -15px;
    border-bottom: 15px solid #ffffff;
    border-top: none;
}

.single-lacation-box .overlay-content h4 {
    font-size: 16px;
    margin: 0 0 15px;
}

.single-lacation-box .overlay-content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding: 10px 0px 18px;
}

.single-lacation-box .overlay-content .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-lacation-box .overlay-content .btn-box a span {
    margin-right: 6px;
}

.single-lacation-box .overlay-content .phn-number {
    position: relative;
    display: block;
    background-color: var(--thm-black-bg);
    padding: 11px 0;
    border-radius: var(--thm-border-radius);
}

.single-lacation-box .overlay-content .phn-number a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-lacation-box .overlay-content .phn-number a:hover {
    color: var(--thm-primary-color);
}

.single-lacation-box .overlay-content .phn-number a span {
    color: var(--thm-primary-color);
    font-size: 18px;
    margin-right: 8px;
}

.single-lacation-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: #a1aab4;
    font-size: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    cursor: pointer;
    z-index: 1;
}

.single-lacation-box .icon:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: left right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}


.lacation-style1__tab-button {
    position: relative;
    display: block;
    padding-left: 15px;
    flex: 1;
}

.lacation-style1__tab-button .sec-title {
    padding-bottom: 21px;
}

.lacation-style1__tab-button .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.lacation-style1__tab-button .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}

.lacation-style1__tab-button .sec-title h2 {
    color: var(--thm-white);
}

.lacation-style1__tab-button .text {
    position: relative;
    display: block;
    padding-bottom: 32px;
}

.lacation-style1__tab-button .text p {
    color: #a1aab4;
}

.lacation-style1__tab-button .tab-btn-box {
    position: relative;
    display: block;
    padding-bottom: 15px;
}

.lacation-style1__tab-button .tab-btn-box ul {
    position: relative;
    display: block;
    border-top: 1px solid #3b536b;
}

.lacation-style1__tab-button .tab-btn-box ul li {
    position: relative;
    display: block;
    float: left;
    padding-top: 13px;
}

.lacation-style1__tab-button .tab-btn-box ul li+li {
    margin-left: 35px;
}

.lacation-style1__tab-button .tab-btn-box ul li::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--thm-primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: 1;
}

.lacation-style1__tab-button .tab-btn-box ul li:hover::before,
.lacation-style1__tab-button .tab-btn-box ul li.active-btn-item::before {
    transform: scaleX(1.0);
}

.lacation-style1__tab-button .tab-btn-box ul li h6 {
    color: var(--thm-white);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.lacation-style1__tab-button .tab-btn-box ul li:hover h6,
.lacation-style1__tab-button .tab-btn-box ul li.active-btn-item h6 {
    color: var(--thm-primary-color);
}



.shadow-scroll-x {
    overflow-x: auto;
    background-color: transparent;
}

.shadow-scroll-x::-webkit-scrollbar {
    height: 2px;
    background-color: transparent;
    cursor: pointer;
}

.shadow-scroll-x::-webkit-scrollbar-thumb {
    background-color: #3b536b;
    border-radius: 0px;
    cursor: pointer;
}

.shadow-scroll-x::-webkit-scrollbar-button {
    display: none;
}



.lacation-style1__tab-button .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 35px;
}

.lacation-style1__tab-button .btn-box .btn-one {
    color: var(--thm-black);
}

.lacation-style1__tab-button .btn-box .btn-one:hover {
    color: var(--thm-white);
}

.lacation-style1__tab-button .btn-box .btn-one::after {
    background-color: var(--thm-white);
}

.lacation-style1__tab-button .btn-box .btn-one::before {
    background-color: var(--thm-primary-color);
}



/*** 
=============================================
    Lacation Style1 Instyle2 Css      
=============================================
***/
.lacation-style1--style2 {
    background-color: #1a1c28;
}

.lacation-style1--style2 .lacation-style1__map .google-map {
    position: relative;
    display: block;
    background: rgb(26, 28, 40);
    background: linear-gradient(90deg, rgba(26, 28, 40, 1) 0%, rgba(26, 28, 40, 1) 10%, rgba(26, 28, 40, 0) 40%, rgba(26, 28, 40, 0) 60%, rgba(26, 28, 40, 1) 90%);
    z-index: 1;
}




/*** 
================================
    What You Learn Style1 Css     
================================
***/
.what-you-learn-style1 {
    background-color: var(--thm-gray-bg);
    padding: 120px 0 120px;
}

.what-you-learn-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    z-index: -1;
}

.what-you-learn-style1__left {
    position: relative;
    display: block;
    max-width: 500px;
    background-color: var(--thm-primary-color);
    border-radius: var(--thm-border-radius);
    padding: 65px 40px 65px;
}

.what-you-learn-style1__left .img-box {
    position: absolute;
    bottom: -65px;
    right: -60px;
    z-index: 2;
}

.what-you-learn-style1__left .img-box img {
    width: auto;
}

.what-you-learn-style1__left-inner {
    position: relative;
    display: block;
    z-index: 1;
}

.what-you-learn-style1__left-inner .logo {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    z-index: -1;
}

.what-you-learn-style1__left-inner .logo img {
    width: auto;
}

.what-you-learn-style1__left-inner .sec-title {
    padding-bottom: 32px;
}

.what-you-learn-style1__left-inner .sec-title .sub-title h4 {
    color: var(--thm-black);
    background-color: var(--thm-white);
}

.what-you-learn-style1__left-inner .sec-title .sub-title h4::before {
    background-color: var(--thm-white);
}

.what-you-learn-style1__left-inner .sec-title h2 {
    color: var(--thm-white);
    font-size: 40px;
}

.what-you-learn-style1__left-inner .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.what-you-learn-style1__left-inner .btn-box .btn-one {
    color: var(--thm-black);
}

.what-you-learn-style1__left-inner .btn-box .btn-one:hover {
    color: var(--thm-white);
}

.what-you-learn-style1__left-inner .btn-box .btn-one::before {
    background-color: var(--thm-black-bg);
}

.what-you-learn-style1__left-inner .btn-box .btn-one::after {
    background-color: var(--thm-white);
}



.what-you-learn-style1__right {
    position: relative;
    display: block;
}

.what-you-learn-style1__right .text {
    position: relative;
    display: block;
}

.what-you-learn-style1__right .text p {
    margin: 0;
}

.what-you-learn-style1__right .list-item {
    position: relative;
    display: block;
    padding-top: 31px;
}

.what-you-learn-style1__right .list-item ul {
    position: relative;
    display: block;
}

.what-you-learn-style1__right .list-item ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.what-you-learn-style1__right .list-item ul li+li {
    margin-top: 18px;
}

.what-you-learn-style1__right .list-item ul li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
}

.what-you-learn-style1__right .list-item ul li .icon img {
    width: auto;
}

.what-you-learn-style1__right .list-item ul li .text {
    position: relative;
    display: block;
    padding-left: 15px;
    flex: 1;
}

.what-you-learn-style1__right .list-item ul li .text p {
    color: var(--thm-black);
}

.what-you-learn-style1__right .download-material-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.what-you-learn-style1__right .download-material-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--thm-black-bg);
    color: var(--thm-white);
    font-size: 20px;
    line-height: 20px;
}

.what-you-learn-style1__right .download-material-box .title {
    position: relative;
    display: block;
    padding-left: 20px;
    flex: 1;
}

.what-you-learn-style1__right .download-material-box .title h3 {
    font-size: 20px;
    line-height: 24px;
}

.what-you-learn-style1__right .download-material-box .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.what-you-learn-style1__right .download-material-box .title h3 a:hover {
    color: var(--thm-primary-color);
}

.what-you-learn-style1__right .download-material-box .title p {
    margin: 11px 0 0;
    line-height: 16px;
}



/*** 
=========================
    Package Style1 Css     
=========================
***/
.package-style1 {
    background-color: var(--thm-gray-bg);
    padding: 120px 0px 120px;
}

.package-style1 .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.package-style1 .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}

.single-package-style1 {
    position: relative;
    display: block;
}

.single-package-style1 .title-box {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--thm-black);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    border-top-left-radius: var(--thm-border-radius);
    border-top-right-radius: var(--thm-border-radius);
    margin: 0px 30px 0px;
    padding: 15px 0px 15px;
}

.single-package-style1 .title-box h3 {
    font-size: 20px;
    line-height: 30px; color:#fff;
}

.single-package-style1 .img-box {
    position: relative;
    display: block;
    padding-bottom: 30px;
}

.single-package-style1 .img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 1;
}

.single-package-style1 .img-box .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #101015;
    opacity: 0.50;
    z-index: 2;
}

.single-package-style1:hover .img-box .inner {
    box-shadow: none;
}

.single-package-style1 .img-box .inner img {
    width: 100%;
}

.single-package-style1 .img-box .inner .overlay-rating-box {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--thm-white);
    transform: translateY(-50%) translateX(-50%);
    z-index: 3;
}

.single-package-style1 .img-box .inner .overlay-rating-box ul {
    position: relative;
    display: block;
    width: 45px;
    height: 40px;
}

.single-package-style1 .img-box .inner .overlay-rating-box ul li {
    position: relative;
    display: block;
}

.single-package-style1 .img-box .inner .overlay-rating-box ul li:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
}

.single-package-style1 .img-box .inner .overlay-rating-box ul li:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
}

.single-package-style1 .img-box .inner .overlay-rating-box ul li:nth-child(3) {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
}

.single-package-style1 .img-box .inner .overlay-rating-box ul li .icon {
    position: relative;
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--thm-black);
    font-size: 20px;
    line-height: 20px;
}

.single-package-style1 .img-box .inner .overlay-rating-box ul li .icon.icon--1 {
    color: var(--thm-primary-color);
    -webkit-text-stroke: 0px transparent;
}



.single-package-style1 .img-box .value-box {
    position: absolute;
    left: 85px;
    bottom: 0;
    right: 85px;
    text-align: center;
    background-color: var(--thm-primary-color);
    border: 1px solid var(--thm-primary-color);
    border-radius: var(--thm-border-radius);
    padding: 9px 0px 9px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 3;
}

.single-package-style1:hover .img-box .value-box {
    background-color: var(--thm-white);
    border-color: #eae4e4;
}

.single-package-style1 .img-box .value-box h2 {
    color: var(--thm-white);
    font-size: 30px;
    line-height: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-package-style1:hover .img-box .value-box h2 {
    color: var(--thm-black);
}

.single-package-style1 .img-box .value-box h2 sup {
    font-size: 18px;
    line-height: 28px;
    top: -6px;
    margin-right: 4px;
}

.single-package-style1 .img-box .value-box h2 sub {
    font-size: 14px;
    line-height: 24px;
    bottom: 0;
    margin-left: 4px;
}

.single-package-style1 .content-box {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    padding: 54px 25px 23px;
    margin: -30px 30px 0px;
}

.single-package-style1 .content-box .list-item {
    position: relative;
    display: block;
}

.single-package-style1 .content-box .list-item li {
    position: relative;
    display: block;
    padding-left: 25px;
}

.single-package-style1 .content-box .list-item li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background-color: var(--thm-primary-color);
    transform: rotate(135deg);
}

.single-package-style1 .content-box .list-item li+li {
    margin-top: 9px;
}

.single-package-style1 .content-box .list-item li .text {
    position: relative;
    display: block;
}

.single-package-style1 .content-box .list-item li .text p {
    margin: 0;
}

.single-package-style1 .content-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 22px;
}

.single-package-style1 .content-box .btn-box .btn-one {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--thm-black);
}

.single-package-style1 .content-box .btn-box .btn-one:hover {
    color: var(--thm-white);
}

.single-package-style1 .content-box .btn-box .btn-one::before {
    background-color: var(--thm-primary-color);
}

.single-package-style1 .content-box .btn-box .btn-one::after {
    background-color: var(--thm-gray-bg);
}

.single-package-style1 .content-box .text-box {
    position: relative;
    display: block;
    padding-top: 18px;
}

.single-package-style1 .content-box .text-box h6 {
    color: #5e5a5a;
    font-size: 14px;
    line-height: 24px;
}



.package-style1 .section-btn::before {
    background-color: #000;
}

.package-style1 .section-btn-inner-bg {
    background-color: var(--thm-gray-bg);
}

.package-style1 .section-btn-inner {
    display: inline-flex;
    align-items: center;
    border-color: #ded7d7;
}

.package-style1 .section-btn-inner .images-links-box {
    position: relative;
    display: block;
    margin-right: 10px;
}

.footer-style2__top-inner .images-links-box ul {
    position: relative;
    display: block;
}

.package-style1 .section-btn-inner .images-links-box ul li {
    position: relative;
    display: block;
    float: left;
}

.package-style1 .section-btn-inner .images-links-box ul li+li {
    margin-left: -4px;
}

.package-style1 .section-btn-inner .images-links-box ul li .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--thm-white);
}

.package-style1 .section-btn-inner .images-links-box ul li .img-box img {
    width: 100%;
}

.package-style1 .section-btn-inner .images-links-box ul li .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.package-style1 .section-btn-inner .images-links-box ul li .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--thm-white);
    background-color: var(--thm-white);
    color: var(--thm-black);
    font-size: 14px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.package-style1 .section-btn-inner .images-links-box ul li .btn-box a:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
}



/*** 
================================
    Training Car Style1 Css     
================================
***/
.training-car-style1 {
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
}

.training-car-style1 .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.training-car-style1 .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}

.single-training-car-style1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-training-car-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.single-training-car-style1 .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9472163865546218) 0%, rgba(0, 0, 0, 0.6951155462184874) 34%, rgba(0, 0, 0, 0) 70%);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-training-car-style1:hover .img-box::before {
    opacity: 0.7;
}

.single-training-car-style1 .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-training-car-style1:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
}

.single-training-car-style1 .img-box .car-type {
    position: absolute;
    left: 20px;
    bottom: 0;
    background-color: var(--thm-primary-color);
    border-top-left-radius: var(--thm-border-radius);
    border-top-right-radius: var(--thm-border-radius);
    padding: 6px 15px 5px;
    z-index: 3;
}

.single-training-car-style1 .img-box .car-type h6 {
    color: var(--thm-white);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
}

.single-training-car-style1 .title-box {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
    border-bottom-left-radius: var(--thm-border-radius);
    border-bottom-right-radius: var(--thm-border-radius);
    padding: 18px 25px 17px;
    margin: 0px 20px 0px;
}

.single-training-car-style1 .title-box h3 {
    font-size: 20px;
    line-height: 30px;
}

.single-training-car-style1 .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-training-car-style1 .title-box h3 a:hover {
    color: var(--thm-primary-color);
}

.single-training-car-style1 .title-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 0;
}

.single-training-car-style1 .title-box .btn-box a {
    position: relative;
    display: inline-block;
    color: #a5a5ac;
    font-size: 22px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-training-car-style1 .title-box .btn-box a:hover {
    color: var(--thm-primary-color);
}

.training-car-style1 .section-btn {
    margin-top: 30px;
}



/*** 
=============================================
    Video Library Style1      
=============================================
***/
.video-library-style1 {
    background-color: var(--thm-black-bg);
    padding: 120px 0px 120px;
}

.video-library-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.1;
    mix-blend-mode: luminosity;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.video-library-style1__title {
    position: relative;
    display: block;
}

.video-library-style1__title .sec-title {
    padding-bottom: 24px;
}

.video-library-style1__title .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.video-library-style1__title .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}

.video-library-style1__title .sec-title h2 {
    color: var(--thm-white);
}

.video-library-style1__title .text {
    position: relative;
    display: block;
}

.video-library-style1__title .text p {
    color: #a9a9b0;
}

.video-library-style1__title .fact-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 42px;
}

.video-library-style1__title .fact-box .counting {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 132px;
    width: 100%;
    padding-left: 20px;
    z-index: 1;
}

.video-library-style1__title .fact-box::before {
    content: "";
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    background-image: -moz-linear-gradient(0deg, rgb(240, 33, 41) 0%, rgba(240, 33, 41, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(240, 33, 41) 0%, rgba(240, 33, 41, 0) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(240, 33, 41) 0%, rgba(240, 33, 41, 0) 100%);
    z-index: -1;
}

.video-library-style1__title .fact-box.fact-box--style2::before {
    background-image: -moz-linear-gradient(0deg, rgb(4, 191, 97) 0%, rgba(4, 191, 97, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(4, 191, 97) 0%, rgba(4, 191, 97, 0) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(4, 191, 97) 0%, rgba(4, 191, 97, 0) 100%);
}



.video-library-style1__title .fact-box .counting h2 {
    color: var(--thm-white);
    font-size: 48px;
    line-height: 1.1em;
    font-weight: 700;
    font-family: var(--thm-font-2);
}

.video-library-style1__title .fact-box .counting i {
    color: var(--thm-white);
    font-size: 40px;
    line-height: 40px;
}

.video-library-style1__title .fact-box .title-box {
    position: relative;
    display: block;
    padding-left: 11px;
}

.video-library-style1__title .fact-box .title-box h3 {
    color: var(--thm-white);
    font-size: 18px;
    line-height: 28px;
}



.vertical-slider-style1__thumb-outer {
    position: relative;
    display: block;
    padding-top: 60px;
    padding-bottom: 50px;
}

.vertical-slider-style1__thumb {
    position: relative;
    display: block;
}

.vertical-slider-style1__thumb .slick-slide {
    min-height: 150px !important;
}


.vertical-slider-style1__thumb .slider-slide {
    position: relative;
    display: block;
    width: 170px;
    height: 140px;
}

.vertical-slider-style1__thumb-single {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.vertical-slider-style1__thumb-single:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--thm-black-bg);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.vertical-slider-style1__thumb .slick-slide.slick-current .vertical-slider-style1__thumb-single:before {
    opacity: 0.9;
}

.vertical-slider-style1__thumb-single::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    border: 2px solid var(--thm-white);
    border-radius: 5px;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 2;
}

.vertical-slider-style1__thumb .slick-slide.slick-current .vertical-slider-style1__thumb-single:after {
    opacity: 1;
}

.thumb-prev {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--thm-white);
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
}

.thumb-next {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--thm-white);
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
}



.video-library-style1__single {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    padding: 10px 10px 17px;
}

.video-library-style1__single .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.video-library-style1__single .img-box img {
    width: 100%;
}

.video-library-style1__single .img-box .overlay-video-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-library-style1__single .img-box .overlay-video-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-primary-color);
    color: var(--thm-white);
    font-size: 20px;
    line-height: 20px;
}

.video-library-style1__single .img-box .overlay-shear-box {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.video-library-style1__single .img-box .overlay-shear-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    color: var(--thm-black);
    font-size: 20px;
    line-height: 20px;
}

.video-library-style1__single .title-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px 0px;
}

.video-library-style1__single .title-box h3 {
    font-size: 18px;
    line-height: 28px;
}

.video-library-style1__single .title-box h3 a {
    color: var(--thm-black);
}

.video-library-style1__single .title-box .time-box {
    position: relative;
    display: block;
}



/*** 
=============================
    Statement Style1 Css     
=============================
***/
.statement-style1 {
    background-color: var(--thm-black-bg);
    padding: 120px 0px 120px;
}

.statement-style1__inner {
    position: relative;
    display: block;
}

.statement-style1__inner .sec-title {
    padding-bottom: 32px;
}

.statement-style1__inner .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.statement-style1__inner .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}

.statement-style1__inner .sec-title h2 {
    color: var(--thm-white);
}



.statement-style1__tab {
    position: relative;
    display: block;
    padding-left: 200px;
}

.statement-style1__tab-btn {
    position: absolute;
    top: 0;
    left: 0;
}

.statement-style1__tab-btn .tabs-button-box {
    position: relative;
    display: block;
    border: 1px solid #2f5154;
    border-radius: var(--thm-border-radius);
}

.statement-style1__tab-btn .tabs-button-box li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 150px;
    height: 155px;
    cursor: pointer;
}

.statement-style1__tab-btn .tabs-button-box li+li {
    border-top: 1px solid #2f5154;
}

.statement-style1__tab-btn .tabs-button-box li .icon {
    position: relative;
    display: block;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 12px;
    z-index: 1;
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-goal .path1:before {
    color: var(--thm-primary-color);
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-goal .path2:before {
    color: var(--thm-primary-color);
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-goal .path3:before {
    color: var(--thm-white);
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-goal .path4:before {
    color: var(--thm-white);
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-values .path1:before {
    color: var(--thm-primary-color);
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-values .path2:before {
    color: var(--thm-primary-color);
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-values .path3:before {
    color: var(--thm-primary-color);
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-values .path4:before {
    color: var(--thm-white);
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-values .path5:before {
    color: var(--thm-white);
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-values .path6:before {
    color: var(--thm-white);
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-values .path7:before {
    color: var(--thm-white);
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-values .path8:before {
    color: var(--thm-white);
}

.statement-style1__tab-btn .tabs-button-box li .icon .icon-values .path9:before {
    color: var(--thm-white);
}

.statement-style1__tab-btn .tabs-button-box li .icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #264649;
    z-index: -1;
}

.statement-style1__tab-btn .tabs-button-box li h6 {
    color: var(--thm-white);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.statement-style1__tab-btn .tabs-button-box li:hover h6,
.statement-style1__tab-btn .tabs-button-box li.active-btn-item h6 {
    color: var(--thm-primary-color);
    transform: scale(1.05);
}




.statement-style1__tab .tabs-content-box {
    position: relative;
    display: block;
}

.statement-style1__tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.statement-style1__tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.statement-style1__tab .tab-content-box-item .statement-style1__content-tab-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.statement-style1__tab .tab-content-box-item.tab-content-box-item-active .statement-style1__content-tab-item {
    opacity: 1;
    transform: translateY(0px);
}



.single-statement-style1 {
    position: relative;
    display: block;
}

.single-statement-style1 .content-box {
    position: relative;
    display: block;
    padding-right: 80px;
}

.single-statement-style1 .content-box .title {
    position: relative;
    display: block;
    z-index: 1;
}

.single-statement-style1 .content-box .title::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0px;
    right: 0;
    height: 1px;
    background: #2f5154;
    background: linear-gradient(90deg, rgba(47, 81, 84, 1) 0%, rgba(26, 55, 58, 1) 80%);
    z-index: -1;
}

.single-statement-style1 .content-box .title h3 {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 20px;
    line-height: 30px;
    background-color: var(--thm-black-bg);
    padding-right: 15px;
    z-index: 2;
}



.single-statement-style1 .content-box .text {
    position: relative;
    display: block;
    padding-top: 25px;
}

.single-statement-style1 .content-box .text p {
    color: #a5b9bb;
}

.single-statement-style1 .content-box .fact-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 32px;
}

.single-statement-style1 .content-box .fact-box .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    font-size: 40px;
    line-height: 40px;
}

.single-statement-style1 .content-box .fact-box .icon-box .icon-success .path1:before {
    color: var(--thm-primary-color);
}

.single-statement-style1 .content-box .fact-box .icon-box .icon-success .path2::before {
    color: var(--thm-black);
}

.single-statement-style1 .content-box .fact-box .icon-box .icon-success .path3::before {
    color: var(--thm-black);
}

.single-statement-style1 .content-box .fact-box .icon-box .icon-success .path4::before {
    color: var(--thm-black);
}

.single-statement-style1 .content-box .fact-box .title-box {
    position: relative;
    display: block;
    padding-left: 20px;
    flex: 1;
}

.single-statement-style1 .content-box .fact-box .title-box h3 {
    color: var(--thm-white);
    font-size: 36px;
    line-height: 1.0em;
}

.single-statement-style1 .content-box .fact-box .title-box h4 {
    color: var(--thm-white);
    font-size: 18px;
    line-height: 24px;
}



.single-statement-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 370px;
    border-radius: var(--thm-border-radius);
    margin-top: -192px;
}

.single-statement-style1 .img-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.single-statement-style1 .img-box:hover::before {
    opacity: 0.5;
}

.single-statement-style1 .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-statement-style1 .img-box:hover img {
    transform: scale(1.05) rotate(0deg);
}




/*** 
==================================
    Certification Style1 Css     
==================================
***/
.certification-style1 {
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
}

.single-certification-style1 {
    position: relative;
    display: block;
}

.single-certification-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.single-certification-style1 .img-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.single-certification-style1 .img-box:hover::before {
    opacity: 0.80;
}

.single-certification-style1 .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-certification-style1 .img-box:hover img {
    transform: scale(1.05) rotate(0deg);
}


.single-certification-style1 .certificate-box {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-gray-bg);
    border-radius: var(--thm-border-radius);
    padding: 40px 40px 40px;
}

.single-certification-style1 .certificate-box .shape {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
}

.single-certification-style1 .certificate-box__img {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    padding: 20px 20px 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}

.single-certification-style1 .certificate-box__img img {
    width: 100%;
}

.certification-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: -119px;
    right: 0;
}




/*** 
=========================
    Intro Style1 Css     
=========================
***/
.intro-style1 {
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
}

.intro-style1-content {
    position: relative;
    display: block;
}

.intro-style1-content .big-title {
    position: relative;
    display: block;
    margin-top: -10px;
}

.intro-style1-content .big-title h2 {
    font-size: 40px;
    line-height: 1.2em;
}

.intro-style1-content .text-box {
    position: relative;
    display: block;
    padding-top: 25px;
}

.intro-style1-content .text-box p {
    margin: 0;
}

.tabs-button-box .icon{ margin-bottom:0;}

.intro-style1-content .list-item {
    position: relative;
    display: block;
    padding-top: 0px;
}

.intro-style1-content .list-item h3 {
    font-size: 20px;
    line-height: 30px;
}

.intro-style1-content .list-item ul {
    position: relative;
    display: block;
    padding-top: 18px;
}

.intro-style1-content .list-item ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.intro-style1-content .list-item ul li+li {
    margin-top: 13px;
}

.intro-style1-content .list-item ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 16px;
    margin-right: 14px; margin-bottom:0;
}
.accord-content h4{ color:#fff;}

.intro-style1-content .list-item ul li p {
    margin: 0;
}

.intro-style1-img {
    position: relative;
    display: block;
    padding-top: 50px;
    margin-right: 40px;
}

.intro-style1-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.intro-style1-img .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.intro-style1-img .inner img {
    width: 100%;
}

.intro-style1-img .overlay-content {
    position: absolute;
    top: 0;
    left: 40px;
    overflow: hidden;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    width: 200px;
    z-index: 5;
}

.intro-style1-img .overlay-content .price-box {
    position: relative;
    display: block;
    background-color: var(--thm-black-bg);
    padding: 5px 35px 5px;
}

.intro-style1-img .overlay-content .price-box h3 {
    color: var(--thm-white);
    font-size: 30px;
    line-height: 40px;
}

.intro-style1-img .overlay-content .price-box h3 sup {
    font-size: 18px;
    line-height: 28px;
}

.intro-style1-img .overlay-content .price-box h3 sup {
    font-size: 18px;
    line-height: 28px;
    top: -6px;
}

.intro-style1-img .overlay-content .price-box h3 sub {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    top: 0;
}

.intro-style1-img .overlay-content .rating-box {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 24px 0px 17px;
}

.intro-style1-img .overlay-content .rating-box ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.intro-style1-img .overlay-content .rating-box ul li {
    position: relative;
    display: block;
}

.intro-style1-img .overlay-content .rating-box ul li+li {
    margin-left: 5px;
}

.intro-style1-img .overlay-content .rating-box ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 16px;
}

.intro-style1-img .overlay-content .rating-box .title1 {
    position: relative;
    display: block;
    padding-top: 7px;
}

.intro-style1-img .overlay-content .rating-box .title1 h4 {
    font-size: 16px;
    line-height: 26px;
}

.intro-style1-img .overlay-content .rating-box .text {
    position: relative;
    display: block;
    padding-top: 2px;
}

.intro-style1-img .overlay-content .rating-box .text p {
    margin: 0;
}

.intro-style1-img .overlay-content .rating-box .title2 {
    position: relative;
    display: block;
    padding-top: 5px;
}

.intro-style1-img .overlay-content .rating-box .title2 h3 {
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 30px;
}




.intro-style1-classes {
    position: relative;
    display: block;
    margin-top: -140px;
    z-index: 10;
}

.single-intro-style1-classes {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    border-radius: var(--thm-border-radius);
    padding: 24px 30px 24px;
}

.single-intro-style1-classes ul {
    position: relative;
    display: flex;
    align-items: center;
}

.single-intro-style1-classes ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.single-intro-style1-classes ul li+li {
    margin-left: 100px;
}

.single-intro-style1-classes ul li::before {
    content: "";
    position: absolute;
    top: -35px;
    right: -55px;
    bottom: -35px;
    width: 5px;
    background-color: var(--thm-gray-bg);
    transform: rotate(25deg);
}

.single-intro-style1-classes ul li:last-child::before {
    display: none;
}

.single-intro-style1-classes ul li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--thm-gray-bg);
}

.single-intro-style1-classes ul li .icon i {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 25px;
}

.single-intro-style1-classes ul li .text {
    position: relative;
    display: block;
    padding-left: 15px;
}

.single-intro-style1-classes ul li .text p {
    margin: 0;
}

.single-intro-style1-classes ul li .text p span {
    color: var(--thm-black);
    font-weight: 500;
}



/*** 
=============================
    Courses Style3 Css     
=============================
***/
.courses-style3 {
    background-color: var(--thm-gray-bg);
    padding: 120px 0 80px;
}

.courses-style3__content {
    position: relative;
    display: block;
}



.single-courses-style3 {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.courses-style3__title-box {
    position: relative;
    display: block;
}

.courses-style3__title-box .sec-title {
    padding-bottom: 24px;
}

.courses-style3__title-box .text {
    position: relative;
    display: block;
}

.courses-style3__title-box .text p {
    margin: 0;
}

.video-gallery-style1 {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 32px;
}

.video-gallery-style1__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 50%;
}

.video-gallery-style1__img img {
    width: 100%;
}

.video-gallery-style1__img .video-popup {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0px;
    left: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-color: transparent;
    color: #ffffff;
    font-size: 18px;
    z-index: 3;
}

.video-gallery-style1__img .video-popup:hover {
    color: var(--thm-primary-color);
}

.video-gallery-style1__content {
    position: relative;
    display: block;
    padding-left: 20px;
    flex: 1;
}

.video-gallery-style1__content .title {
    position: relative;
    display: block;
}

.video-gallery-style1__content .title h4 {
    font-size: 18px;
    line-height: 28px;
}

.video-gallery-style1__content .title p {
    margin: 0;
}

.video-gallery-style1__content .btn-box {
    position: relative;
    display: block;
}

.video-gallery-style1__content .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-gallery-style1__content .btn-box a i {
    margin-right: 5px;
}

.video-gallery-style1__content .btn-box a:hover {
    color: var(--thm-primary-color);
}




/*** 
=============================
    Awards Style1 Css     
=============================
***/
.awards-style1 {
    z-index: 100;
}

.awards-style1__inner {
    position: relative;
    display: block;
    padding-left: 345px;
    margin-top: -70px;
}

.awards-style1__title {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    max-width: 345px;
    width: 100%;
    background-color: var(--thm-black-bg);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 27px 40px 0;
}

.awards-style1__title .top-title {
    position: relative;
    display: block;
    padding-left: 55px;
}

.awards-style1__title .top-title .icon {
    position: absolute;
    top: 10px;
    left: 0;
    width: 55px;
    color: var(--thm-white);
    font-size: 40px;
}

.awards-style1__title .top-title .icon .icon-license .path1:before {
    color: var(--thm-primary-color);
}

.awards-style1__title .top-title .icon .icon-license .path2:before {
    color: var(--thm-primary-color);
}

.awards-style1__title .top-title h3 {
    color: var(--thm-white);
    font-size: 24px;
    line-height: 34px;
}

.awards-style1__title .text {
    position: relative;
    display: block;
    padding-top: 11px;
}

.awards-style1__title .text p {
    color: #a1aab4;
}




.awards-style1__content {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    flex: 1;
}

.awards-style1__content ul {
    position: relative;
    display: block;
    width: 100%;
}

.awards-style1__content ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 25%;
}

.awards-style1__content ul li+li {
    border-left: 1px solid #efe4e2;
}

.single-awards-style1-box {
    position: relative;
    display: block;
    padding: 25px 0
}

.single-awards-style1-box a {
    position: relative;
    display: inline-block;
}

.single-awards-style1-box a img {
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-awards-style1-box:hover a img {
    opacity: 0.50;
}




/*** 
=============================
    Overview Style1 Css     
=============================
***/
.overview-style1 {
    background-color: var(--thm-white);
    padding: 120px 0px 90px;
}

.overview-style1__content {
    position: relative;
    display: block;
    line-height: 0;
    padding: 0px 35px 0px;
}

.overview-style1__content::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    bottom: 0;
    border-left: 4px dashed var(--thm-primary-color);
}

.overview-style1__content .text {
    position: relative;
    display: block;
}

.overview-style1__content .text p {
    margin: 0;
}

.overview-style1__content .text p+p {
    margin-top: 25px;
}

.overview-style1__content .recommended-course {
    position: relative;
    display: block;
    padding-left: 65px;
    margin-top: 30px;
}

.overview-style1__content .recommended-course .icon {
    position: absolute;
    top: 4px;
    left: 0;
    color: var(--thm-primary-color);
    font-size: 45px;
    line-height: 45px;
}

.overview-style1__content .recommended-course .content {
    position: relative;
    display: block;
}

.overview-style1__content .recommended-course .content h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 6px;
}

.overview-style1__content .recommended-course .content p {
    margin: 0;
}

.overview-style1__content .recommended-course .content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 16px;
}

.overview-style1__content .recommended-course .content .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.overview-style1__content .recommended-course .content .btn-box a i {
    margin-right: 6px;
}

.overview-style1__content .recommended-course .content .btn-box a:hover {
    color: var(--thm-primary-color);
}



.overview-style1__right {
    position: relative;
    display: block;
}

.single-overview-style1 {
    position: relative;
    display: block;
    padding-top: 10px;
    margin-bottom: 30px;
}

.single-overview-style1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35px;
    right: 35px;
    height: 10px;
    background-color: var(--thm-primary-color);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-overview-style1:hover::before {
    left: 0px;
    right: 0px;
}

.single-overview-style1__inner {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 50px 30px 42px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-overview-style1:hover .single-overview-style1__inner {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.single-overview-style1__inner .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 1px solid #e2e9e6;
    border-radius: var(--thm-border-radius);
    background: rgb(240, 248, 243);
    background: linear-gradient(180deg, rgba(240, 248, 243, 1) 50%, rgba(255, 255, 255, 1) 100%);
    margin: 0 auto;
    font-size: 50px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-overview-style1:hover .single-overview-style1__inner .icon-box {
    border-color: var(--thm-black-bg);
    background: var(--thm-black-bg);
}

.single-overview-style1__inner .icon-box .icon-automatic-transmission .path1:before {
    color: var(--thm-primary-color);
}

.single-overview-style1__inner .icon-box .icon-automatic-transmission .path2:before {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-overview-style1:hover .single-overview-style1__inner .icon-box .icon-automatic-transmission .path2:before {
    color: var(--thm-white);
}

.single-overview-style1__inner .icon-box .icon-automatic-transmission .path3:before {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-overview-style1:hover .single-overview-style1__inner .icon-box .icon-automatic-transmission .path3:before {
    color: var(--thm-white);
}

.single-overview-style1__inner .icon-box .icon-automatic-transmission .path4:before {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-overview-style1:hover .single-overview-style1__inner .icon-box .icon-automatic-transmission .path4:before {
    color: var(--thm-white);
}

.single-overview-style1__inner .icon-box .icon-gear-shift .path1:before {
    color: var(--thm-primary-color);
}

.single-overview-style1__inner .icon-box .icon-gear-shift .path2:before {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-overview-style1:hover .single-overview-style1__inner .icon-box .icon-gear-shift .path2:before {
    color: var(--thm-white);
}

.single-overview-style1__inner .content-box {
    position: relative;
    display: block;
    padding-top: 22px;
}

.single-overview-style1__inner .content-box h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 11px;
}

.single-overview-style1__inner .content-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
}

.single-overview-style1__inner .content-box h3 a:hover {
    color: var(--thm-primary-color);
}

.single-overview-style1__inner .content-box p {
    margin: 0;
}



/*** 
=============================
    Classic Page Css     
=============================
***/
.classic-page {
    padding: 0px 0px 90px;
}

.classic-page .single-courses-style2 {
    max-width: auto;
    margin: 0 auto 30px;
}

.classic-page .single-courses-style2__img::before {
    background-color: var(--thm-black-bg); 
}

.classic-page .single-courses-style2__overlay {
    background-color: var(--thm-black-bg);
    opacity: .97;
}



/*** 
=============================
    History Style1 Css     
=============================
***/
.history-style1 {
    background-color: var(--thm-white);
    padding: 120px 0 120px;
}

.history-style1 .container {
    overflow: hidden;
    max-width: 1240px;
    padding: 0 35px;
}

.history-style1__content {
    position: relative;
    display: block;
    padding-top: 60px;
    padding-bottom: 60px;
}

.history-style1__content-border-line {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 1px;
    background-color: var(--thm-border-color);
}

.history-style1__content-border-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: -5px;
    width: 11px;
    height: 11px;
    background-color: var(--thm-primary-color);
    border-radius: 50%;
}

.history-style1__content-border-line::after {
    content: "";
    position: absolute;
    left: -5px;
    bottom: 0;
    width: 11px;
    height: 11px;
    background-color: var(--thm-primary-color);
    border-radius: 50%;
}

.history-style1__content .row {
    --bs-gutter-x: 170px;
}


.history-style1__content-inner {
    position: relative;
    display: block;
}

.history-style1__content-inner.right {
    position: relative;
    display: block;
    padding-top: 150px;
}

.history-style1__content-inner ul {
    position: relative;
    display: block;
}

.history-style1__content-inner ul li {
    position: relative;
    display: block;
}

.history-style1__content-inner ul li+li {
    margin-top: 130px;
}

.history-style1__content-inner ul li::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -86px;
    bottom: 76px;
    width: 1px;
    background-color: var(--thm-primary-color);
    transform: scaleY(0);
    transition: all 400ms ease 200ms;
}

.history-style1__content-inner.right ul li::before {
    left: -86px;
    right: auto;
    top: -44px;
}

.history-style1__content-inner ul li:hover::before {
    transform: scaleY(1.0);
}





.single-history-style1-round-box {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--thm-white);
    border-radius: 50%;
    border: 1px solid var(--thm-border-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 10;
}

.history-style1__content-inner ul li:hover .single-history-style1-round-box {
    border-color: var(--thm-primary-color);
}

.single-history-style1-round-box.right {
    right: auto;
    left: -100px;
}

.single-history-style1-round-box::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 9px;
    bottom: 9px;
    right: 9px;
    background-color: var(--thm-primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -2;
}

.history-style1__content-inner ul li:hover .single-history-style1-round-box::before {
    transform: scale(1.0);
}




.single-history-style1 {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 0px 100px 0px;
    padding-right: 0;
}

.single-history-style1::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    bottom: 0;
    transform: translateY(-50%);
    width: 15px;
    height: 35px;
    background-color: var(--thm-white);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    z-index: 45;
}

.single-history-style1 .year {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: translateY(0%) rotate(180deg);
    padding: 0px 15px 0px;
    color: #e2e9e6;
    font-size: 30px;
    line-height: 40px;
    font-family: var(--thm-font-2);
    font-weight: 700;
}

.single-history-style1 .date-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 65px;
    bottom: 0;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--thm-gray-bg);
    z-index: 5;
}

.single-history-style1 .date-box .inner {
    position: relative;
    display: block;
    text-align: center;
}

.single-history-style1 .date-box .inner h3 {
    font-size: 18px;
    line-height: 24px;
}

.single-history-style1 .date-box .inner h4 {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
}

.single-history-style1 .content-box {
    position: relative;
    display: block;
    border-left: 1px solid var(--thm-border-color);
    padding: 33px 60px 32px;
    padding-right: 30px;
}

.single-history-style1 .content-box h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}

.single-history-style1 .content-box p {
    margin: 0px;
}



.single-history-style1--right::before {
    right: auto;
    left: -14px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}


/*** 
=============================
   Project Page One Css     
=============================
***/
.project-page-one {
    background-color: #ffffff;
    padding: 120px 0 90px;
}

.project-menu-box {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.project-menu-box ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-menu-box ul li {
    position: relative;
    display: block;
}

.project-menu-box ul li+li {
    margin-left: 10px;
}

.project-menu-box ul li span {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    text-transform: uppercase;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    border: 1px solid var(--thm-border-color);
    cursor: pointer;
    padding: 17px 40px 17px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-menu-box ul li:hover span,
.project-menu-box ul li.active span {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}

.project-menu-box li .count {
    position: absolute;
    top: 12px;
    right: 14px;
    color: #97a69e;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    font-style: normal;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.project-menu-box li:hover .count,
.project-menu-box li.active .count {
    color: var(--thm-white);
}



/*** 
=============================
   Project Page Two Css     
=============================
***/
.project-page-two {
    background-color: #ffffff;
    padding: 120px 0 90px;
}



/*** 
=========================
   Project Page Three Css      
=========================
***/
.project-page-three {
    background-color: #ffffff;
    padding: 120px 0px 90px;
}

.project-page-three .container {
    max-width: 1850px;
}

.single-project-style2--style2 .single-project-style2__img::before {
    background: linear-gradient(0deg, rgba(26, 55, 58, 1) 5%, rgba(20, 43, 45, 0.2049194677871149) 100%);
}






























/*** 
=============================================
    Coming Soon Page Style1      
=============================================
***/
.coming-soon-page-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.coming-soon-page-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    z-index: -1;
}

.coming-soon-page-style1__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, #000000 5%, rgba(0, 0, 0, 0.5) 100%);
}

.coming-soon-page-style1__content {
    position: relative;
    display: block;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.coming-soon-page-style1__content .inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.coming-soon-page-style1__content .big-title {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 80px;
    line-height: 1.1em;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px var(--thm-white);
    word-spacing: 15px;
}

.timer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 57px 0 42px;
    z-index: 2;
}

.timer-box .countdown-timer li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 170px;
    height: 170px;
    margin: 0px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: var(--thm-base);
    border-radius: 50%;
}

.timer-box .countdown-timer li span.days,
.timer-box .countdown-timer li span.hours,
.timer-box .countdown-timer li span.minutes,
.timer-box .countdown-timer li span.seconds {
    color: #ffffff;
    font-size: 55px;
    line-height: 60px;
    font-weight: 700;
    font-family: var(--thm-font);
}

.timer-box .countdown-timer li span.timeRef {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 11px;
    font-family: var(--thm-font);
}

.coming-soon-page-style1__content .inner .text {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.coming-soon-page-style1__content .inner .text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}



.subscribe-box-style1 {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
}

.subscribe-box-style1 form {
    position: relative;
    display: block;
    width: 100%;
}

.subscribe-box-style1 form input[type="email"] {
    position: relative;
    display: block;
    max-width: 560px;
    width: 100%;
    height: 70px;
    border-radius: 7px;
    background: #ffffff;
    border: 1px solid #ffffff !important;
    color: var(--thm-gray);
    font-size: 18px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease 0s;
    font-family: var(--thm-font);
}

.subscribe-box-style1 form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 195px;
    background: var(--thm-primary-color);
    border-radius: 7px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 70px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    text-align: center;
    border: 0px solid #e1e1e1 !important;
    transition: all 500ms ease 0s;
}

.subscribe-box-style1 form input[type="email"]:focus {
    color: var(--thm-black);
}

.subscribe-box-style1 form input[type="email"]:focus+button,
.subscribe-box-style1 form button:hover {
    color: var(--thm-black);
}

.subscribe-box-style1 form input::-webkit-input-placeholder {
    color: #444444;
}

.subscribe-box-style1 form input:-moz-placeholder {
    color: #444444;
}

.subscribe-box-style1 form input::-moz-placeholder {
    color: #444444;
}

.subscribe-box-style1 form input:-ms-input-placeholder {
    color: #444444;
}





/*** 
=============================================
    Error Page Css      
=============================================
***/
.error-page {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
}

.error-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.error-content {
    position: relative;
    display: block;
}

.error-content .big-title {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.error-content .big-title h2 {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 280px;
    line-height: 1.1em;
    font-family: var(--thm-font-2);
    font-weight: 700;
    -webkit-background-clip: text;
    -webkit-text-stroke: 2px var(--thm-white);
}

.error-content .big-title h2::before {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--thm-white);
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.error-content .big-title h2:hover::before {
    width: 100%;
}


.error-content .title {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.error-content .title h2 {
    color: #ffffff;
    font-size: 44px;
    line-height: 1.2em;
}

.error-content .text {
    position: relative;
    display: block;
}

.error-content .text p {
    color: #ffffff;
}

.error-content .btns-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 33px;
}




/*
//////////////////////////
==========================
//////////////////////////
*/




/* Cursor */
.cursor {
    position: fixed;
    background-color: var(--thm-primary-color);
    width: 6px;
    height: 6px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    -webkit-transform: scale(1);
    transform: scale(1);
    display: none;
}

.cursor::before {
    content: "";
    position: absolute;
    top: -7px;
    left: -7px;
    bottom: -7px;
    right: -7px;
    border: 1px solid var(--thm-primary-color);
    border-radius: 50%;
}

.cursor.active {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.cursor.menu-active {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.cursor.hovered {
    opacity: 1;
}

.cursor-follower {
    position: fixed;
    background-color: var(--thm-primary-color);
    opacity: 0.30;
    width: 33px;
    height: 33px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
    display: none;
}

.cursor-follower.active {
    opacity: 0.10;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.cursor-follower.menu-active {
    opacity: 1;
    -webkit-transform: scale(3);
    transform: scale(3);
}

.cursor-follower.hovered {
    opacity: 1;
}

/* Cursor End */



#ui-datepicker-div.ui-widget-content {
    border: 1px solid #c5c5c5;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #777;
    color: #252525;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
    z-index: 999 !important;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: #151515 none repeat scroll 0 0;
    border: 2px solid #252525;
    border-radius: 0;
    color: #fff;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #333333 !important;
    background: #333333 !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: #fff;
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea;
}


.schedule-hd{margin-top: 30px;
  text-align: center;
  background: #ff2020;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 10px 10px 0 0;
  color: #fff; font-size: 20px;}



.main-contact-form__inner .nice-select{ margin-bottom:15px; width:100%; height: 60px;}

.intro-style1-content h4{ margin-top:20px;}
.intro-style1-content p{ margin-bottom:20px;}

.loc-mob{ display:none;}

.align-items-center {
  align-items: center !important;
  display: flex;
}
/*--------------------------------------------------
# End Css 
----------------------------------------------------*/