/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigation
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

/*== Default Css ==*/


:root {
    --thm-font: 'Barlow', sans-serif;
    --thm-font-2: 'Roboto', sans-serif;
    --thm-font-3: 'Yantramanav', sans-serif;
    --thm-base: #4287e3;
    --thm-base-rgb: 66, 135, 227;
    --thm-primary: #4287e3;
    --thm-primary-rgb: 66, 135, 227;
    --thm-gray: #444444;
    --thm-gray-rgb: 68, 68, 68;
    --thm-black: #052049;
    --thm-black-rgb: 5, 32, 73;
    --thm-gray-bg: #e8f0f7;
    --thm-gray-bg-2: #f4f5f9;
    --thm-main-bg: #0e2753;
}



.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;
}

body {
    font-family: var(--thm-font);
    color: var(--thm-gray);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    font-family: var(--thm-font-2);
    font-weight: 700;
    margin: 0;
}

p {
    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;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

::-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: 10px;
}

.rating-box-style1 ul li span {
    position: relative;
    display: inline-block;
    color: #e4492e;
    font-size: 20px;
    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: rgba(var(--thm-black-rgb), 1);
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    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-base-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: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.95;
    visibility: visible;
    right: 100%;
    background: linear-gradient(90deg, rgba(var(--thm-base-rgb), 1.0), rgba(var(--thm-black-rgb), 1.0));
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top 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-base);
    border-color: var(--thn-base);
}

.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: 30px;
    line-height: 40px;
    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-gray);
}

.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: 45px;
}

.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 {
    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 {
    line-height: 24px;
}

.sidebar-contact-info ul li .inner .text p a {
    color: var(--thm-gray);
    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;
}


/*== Tab Box Style1 Css ======*/
.tab-box-style1 .tabs-content-box {
    position: relative;
    display: block;
}

.tab-box-style1 .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.tab-box-style1 .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.tab-box-style1 .tab-content-box-item .item {
    transition: all 0.7s ease;
    opacity: 0;
    transform: scaleY(0.9);
    transform-origin: top bottom;
}

.tab-box-style1 .tab-content-box-item.tab-content-box-item-active .item {
    opacity: 1.0;
    transform: scaleY(1);
    transform-origin: bottom top;
}




/*== Accordion Box Style1 Css ======*/
.accordion-box-style1 {
    position: relative;
    display: block;
}

.accordion-box-style1 .accordion {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 30px 0px;
    border-radius: 0px;
    margin-bottom: 10px;
}

.accordion-box-style1 .accordion:last-child {
    margin-bottom: 0;
}

.accordion-box-style1 .accordion .accord-btn {
    position: relative;
    display: block;
    cursor: pointer;
    padding-top: 10px;
    padding-left: 40px;
    padding-bottom: 10px;
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-box-style1 .accordion .accord-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    bottom: 0px;
    right: -30px;
    background-color: var(--thm-base);
    z-index: -1;
    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);
}

.accordion-box-style1 .accordion .accord-btn:hover:before,
.accordion-box-style1 .accordion .accord-btn.active:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.accordion-box-style1 .accordion .accord-btn h4 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 500ms ease;
}

.accordion-box-style1 .accordion .accord-btn:hover h4,
.accordion-box-style1 .accordion .accord-btn.active h4 {
    color: #ffffff;
}

.accordion-box-style1 .accordion .accord-btn::after {
    font-family: 'icomoon' !important;
    position: absolute;
    content: "\e94b";
    top: 50%;
    left: 0px;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #f6f6f8;
    border: 1px solid #c5c5c5;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    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: var(--thm-black);
    content: "\e94c";
    background-color: #ffffff;
    border: 1px solid #ffffff;
}

.accordion-box-style1 .accordion .accord-content {
    position: relative;
    padding-top: 21px;
    padding-bottom: 23px;
    padding-left: 40px;
    padding-right: 0px;
    display: none;
}

.accordion-box-style1 .accordion .accord-content.collapsed {
    display: block;
}

.accordion-box-style1 .accordion .accord-content p {
    font-size: 18px;
}



/*== 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;
    margin-right: 4px;
    cursor: pointer;
}

.review-box ul li:last-child {
    margin-right: 0px;
}

.review-box ul li i {
    color: #febd2f;
    font-size: 15px;
}



/*== Section Title Css ======*/
.sec-title {
    position: relative;
    display: block;
    margin-top: -13px;
    padding-bottom: 49px;
}

.sec-title.withtext {
    padding-bottom: 53px;
}

.sec-title .sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
}

.sec-title .sub-title .border-line {
    position: relative;
    display: block;
    width: 35px;
    height: 2px;
    background-color: var(--thm-base);
}

.sec-title .sub-title .border-line.left {
    margin-right: 10px;
}

.sec-title .sub-title .border-line.right {
    margin-left: 10px;
}

.sec-title .sub-title.item-center {
    justify-content: center;
}

.sec-title .sub-title h4 {
    color: var(--thm-base);
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    letter-spacing: 0.1em;
    z-index: 1;
}

.sec-title h2 {
    color: var(--thm-black);
    font-size: 45px;
    line-height: 1.2em;
    font-weight: 900;
    text-transform: capitalize;
}

.sec-title p {
    font-size: 18px;
    line-height: 28px;
    margin: 21px 0 0;
}



/*== Btn One Css ======*/
.btn-box {
    position: relative;
    display: block;
}

.btn-one {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    padding-top: 9px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 7px;
    background-color: transparent;
    color: #ffffff;
    font-size: 14px;
    line-height: 44px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    letter-spacing: 0.1em;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: var(--thm-font-2);
    z-index: 2;
}

.btn-one:before {
    position: absolute;
    top: 0px;
    left: 100%;
    right: -50px;
    content: "";
    background: var(--thm-black);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    border-radius: 0%;
    transition-duration: 800ms;
    z-index: 1;
    bottom: 0;
}

.btn-one:hover:before {
    left: 0;
    right: 0px;
}

.btn-one:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 1;
    transform: scaleX(1);
    transition-duration: 800ms;
    background-color: var(--thm-base);
    z-index: -1;
}

.btn-one:hover:after {
    transform: scaleX(0);
    transition-duration: 1500ms;
}

.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;
    margin-left: 10px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}




/*== 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;
}



/*== Owl Dot Style One Css ======*/
.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 0px !important;
    display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 6px;
    background-color: #a7a7a7;
    border: 0px solid #d6d6d6;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 3px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {
    background-color: var(--thm-base);
}

.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: block;
    line-height: 0;
    margin: 0;
    z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid #b6b3b2;
    border-radius: 50%;
    margin: 0 10px;
    padding: 0;
    z-index: 1;
    transition: all 700ms ease 0s;
}

.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-base);
    border-radius: 50%;
    z-index: -1;
    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: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover::before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1);
    transform: perspective(400px) rotateX(0deg) scale(1);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    position: relative;
    display: block;
    color: #b6b3b2;
    font-size: 20px;
    line-height: 48px;
    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: #ffffff;
}



/*== Scrool To Top Css ======*/

.scroll-to-top {
    position: fixed;
    right: -10px;
    bottom: 80px;
    transform: rotate(90deg);
    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;
    top: 1px;
}

.scroll-to-top .scroll-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--thm-base);
    opacity: 1;
}

.scroll-to-top .scroll-bar .bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: var(--thm-primary);
}

.scroll-to-top .scroll-bar-text {
    color: #828698;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--thm-font);
    transition: all 500ms ease;
}

.scroll-to-top .scroll-bar-text:hover {
    transform: scale(1);
}



.scroll-to-top--style2 {
    position: relative;
    top: -5px;
    right: 0;
    bottom: 0;
    transform: rotate(0deg);
}

.scroll-to-top--style2 .scroll-bar {
    display: none;
}

.scroll-to-top--style2 .scroll-bar-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--thm-font-2);
    transition: all 500ms ease;
}

.scroll-to-top--style2 .scroll-bar-text span {
    position: relative;
    top: 8px;
    display: inline-block;
    padding-left: 1px;
    font-size: 30px;
}






/*== Styled Pagination Css ======*/
.styled-pagination {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.styled-pagination.pdtop0 {
    padding-top: 0;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.styled-pagination li:last-child {
    margin-right: 0;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 50px;
    border-radius: 3px;
    background: #ffffff;
    border: 1px solid #D9D9D9;
    color: var(--thm-gray);
    font-size: 20px;
    line-height: 48px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.styled-pagination li a span:before {
    position: relative;
    top: 0px;
    font-size: 18px;
}

.styled-pagination li.prev a span:before {
    position: relative;
    display: inline-block;
    padding-right: 8px;
}

.styled-pagination li.next a span:before {
    position: relative;
    display: inline-block;
    padding-left: 8px;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
    color: #ffffff;
    border-color: var(--thm-base);
    background: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
    width: 70px;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
    color: #ffffff;
}






/*== checked Css Css ======*/
.checked-box1 {
    position: relative;
    display: block;
    min-height: 20px;
}

.checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    cursor: pointer;
    min-height: 20px;
    font-family: var(--thm-font-3);
}

.checked-box1 input[type="checkbox"] {
    display: none;
}

.checked-box1 input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #f2ece7;
    cursor: pointer;
    border-radius: 0px;
    -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 {
    font-family: "icomoon" !important;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    content: "\e938";
    color: var(--thm-base);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border: 1px solid #8e8f8f;
    margin: 0px;
    opacity: 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;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checked-box1 input[type="checkbox"]:checked+label span {
    border-color: #8e8f8f;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}


/*== 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;
}





/*== Search Popup Css ======*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    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;
    bottom: 0;
    background-color: #000000;
    opacity: 0.80;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
    background-color: #000000;
    padding: 10px;
}

.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"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
    padding-right: 80px;
}

.search-popup__content .thm-btn {
    position: absolute;
    top: 0;
    right: 0px;
    padding: 0;
    width: 66px;
    height: 66px;
    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-base);
    border: 0;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    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-black);
}




/* 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);
    }
}




/*** 
=============================================
    Choose Style1 Css
=============================================
***/
.choose-style1 {
    position: relative;
    display: block;
    background-color: #f0f5fc;
    padding: 120px 0px 120px;
    z-index: 10;
}

.choose-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 120px;
    background-color: var(--thm-base);
    width: calc((100% - 680px) / 2);
    z-index: -1;
}

.choose-style1__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #000323;
    opacity: 0.10;
    clip-path: polygon(0 20%, 0% 100%, 80% 100%);
}

.choose-style1__img {
    position: relative;
    display: block;
    margin-left: -40px;
    margin-right: 95px;
}

.choose-style1__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.choose-style1__img .inner img {
    width: 100%;
}

.choose-style1__img .inner:hover img {
    transform: translateX(10px);
}


.choose-style1__content {
    position: relative;
    display: block;
    margin-right: -100px;
}

.choose-style1__content .sec-title.withtext {
    padding-bottom: 8px;
}

.choose-style1__content-inner ul.row {
    --bs-gutter-x: 100px;
}

.choose-style1__content-inner ul.row li {
    margin-top: 40px;
}


.choose-style1-single-box {
    position: relative;
    display: block;
}

.choose-style1-single-box .top {
    position: relative;
    display: flex;
    align-items: center;
}

.choose-style1-single-box .top .icon {
    position: relative;
    display: block;
    width: 80px;
}

.choose-style1-single-box .top .icon i {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 55px;
    line-height: 55px;
    transition: all 100ms ease 100ms;
}


.choose-style1-single-box:hover .top .icon i {
    color: var(--thm-base);
    transform: rotate(2deg);
}

.choose-style1-single-box .top h3 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 26px;
    font-weight: 800;
}

.choose-style1-single-box .text {
    position: relative;
    display: block;
    padding-top: 18px;
}



/*** 
=============================================
   Project Style1 Area Css 
=============================================
***/
.project-style1 {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    background-color: #ffffff;
    z-index: 10;
}

.project-style1__top {
    position: relative;
    display: block;
    padding-bottom: 49px;
    max-width: 400px;
    width: 100%;
    z-index: 2;
}

.project-style1__top .sec-title {
    padding-bottom: 0;
}

.project-style1__top .sec-title h2 {
    color: #ffffff;
}

.single-project-item {
    position: relative;
    display: block;
}

.single-project-item .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.single-project-item .img-holder img {
    width: 100%;
    transform: scale(1.0);
}

.single-project-item:hover .img-holder img {
    transform: scale(1.05) rotate(1deg);
}

.single-project-item .img-holder-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00a2ff;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    border-radius: 5px;
    z-index: 1;
}

.single-project-item:hover .img-holder-img-bg {
    opacity: 0.90;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.single-project-item .img-holder .overlay-button {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(20deg) translateX(100%);
    -ms-transform: perspective(400px) rotateX(20deg) translateX(100%);
    transform: perspective(400px) rotateX(20deg) translateX(100%);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: 2;
}

.single-project-item:hover .img-holder .overlay-button {
    opacity: 1.0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(0%);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(0%);
    transform: perspective(400px) rotateX(0deg) translateX(-0%);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.single-project-item .img-holder .overlay-button a {
    position: relative;
    display: block;
    background-color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    color: #000000;
    font-size: 25px;
    line-height: 60px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-project-item .img-holder .overlay-button a+a {
    margin-top: 10px;
}

.single-project-item .img-holder .overlay-button a:hover {
    color: #ffffff;
    background-color: var(--thm-black);
}



.single-project-item .img-holder .overlay-title {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0 50px 42px;
    padding-right: 20px;
    transform: scaleY(0);
    transition: all 300ms ease 100ms;
    z-index: 2;
}

.single-project-item:hover .img-holder .overlay-title {
    transform: scaleY(1.0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-item .img-holder .overlay-title p {
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
}

.single-project-item .img-holder .overlay-title h4 {
    font-size: 28px;
    line-height: 40px;
    margin: 8px 0 0;
    font-family: var(--thm-font);
}

.single-project-item .img-holder .overlay-title h4 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}



.project-style1-carousel.owl-carousel {
    display: block;
    max-width: 710px;
    width: 100%;
    margin: 0 auto;
}

.project-style1-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0;
}

.project-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: -560px;
    right: -560px;
    display: flex;
    justify-content: space-between;
    height: 0;
    opacity: 0;
    transform: translateY(0px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-style1-carousel.owl-nav-style-one.owl-theme:hover .owl-nav {
    opacity: 1;
    transform: translateY(-45px);
}

.project-style1-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    width: 65px;
    height: 90px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0%;
    margin: 0 0px;
    padding: 0;
}

.project-style1-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
    background-color: var(--thm-base);
    border-radius: 0%;
}

.project-style1-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    color: #000000;
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
}

.project-style1-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
    color: #ffffff;
}


.project-style1-carousel.owl-carousel .owl-stage-outer .owl-item.active .single-project-item .img-holder img {
    transform: scale(1.05) rotate(1deg);
}



/*** 
=============================================
   Project Style2 Css 
=============================================
***/
.project-style2 {
    position: relative;
    display: block;
    padding: 120px 0px 0px;
    background-color: #ffffff;
    z-index: 10;
}

.project-style2__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
}

.project-style2__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #021426;
    opacity: 0.95;
}

.project-style2 .sec-title {
    display: inline-flex;
    flex-direction: column;
    padding-bottom: 59px;
    z-index: 11;
}

.project-style2 .sec-title h2 {
    color: #ffffff;
}

.project-style2 .auto-container {
    max-width: 100%;
    padding: 0;
}



.single-project-item-style2 {
    position: relative;
    display: block;
}

.single-project-item-style2 .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-project-item-style2 .img-holder img {
    width: 100%;
    transform: scale(1.0);
}

.single-project-item-style2:hover .img-holder img {
    transform: scale(1.05) rotate(1deg);
}

.single-project-item-style2 .img-holder-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00a2ff;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-100%);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-100%);
    transform: perspective(400px) rotateY(0deg) translateY(-100%);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
    transition: all .4s ease-in-out .1s;
}

.single-project-item-style2:hover .img-holder-img-bg {
    opacity: 0.85;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0%);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0%);
    transform: perspective(400px) rotateY(0deg) translateY(0%);
}

.single-project-item-style2 .img-holder .overlay-title {
    position: absolute;
    left: 40px;
    bottom: 40px;
    right: 0;
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateY(55px);
    transition: all 300ms ease 100ms;
    z-index: 2;
}

.single-project-item-style2:hover .img-holder .overlay-title {
    opacity: 1;
    transform: perspective(370px) rotateX(0deg) translateY(0px);
    transition: all 900ms ease 400ms;
}

.single-project-item-style2 .img-holder .border-box {
    position: absolute;
    left: 0px;
    bottom: 67px;
    right: 0;
    height: 1px;
    background-color: #ffffff;
    width: 0;
    z-index: 1;
}

.single-project-item-style2:hover .img-holder .border-box {
    width: 100%;
    transition: all .2s ease-in-out .9s;
}

.single-project-item-style2 .img-holder .overlay-title h4 a {
    position: relative;
    display: inline-block;
    background-color: #ffffff;
    padding: 15px 35px 14px;
    color: var(--thm-black);
    font-size: 22px;
    font-weight: 700;
    border-radius: 5px;
    transition: all .2s ease-in-out .1s;
}

.single-project-item-style2 .img-holder .overlay-title h4 a:hover {
    color: #ffffff;
    background-color: var(--thm-black);
}

.project-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: -130px;
    right: 0;
    left: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    text-align: right;
    z-index: 10;
}

.project-style2-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.70);
    border-radius: 5px;
    margin: 0 10px;
}

.project-style2-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
    border-radius: 5px;
}

.project-style2-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 25px;
    line-height: 58px;
}

.project-style2-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
    color: #ffffff;
}



/*** 
=============================================
   Project Style3 Css 
=============================================
***/
.project-style3 {
    position: relative;
    display: block;
    padding: 120px 0px 70px;
    background-color: #ffffff;
    z-index: 10;
}

.project-style3__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 59px;
}

.project-style3__top .sec-title {
    padding-bottom: 0;
}

.project-style3__top .btn-box {
    top: -11px;
}

.project-style3 .auto-container {
    max-width: 1600px;
}

.single-project-item-style2.marb50 {
    overflow: hidden;
    border-radius: 7px;
    margin-bottom: 50px;
}



/*** 
=============================================
   Project Style4 Css 
=============================================
***/
.project-style4 {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    background-color: #0b0d26;
    z-index: 10;
}

.project-style4 .auto-container {
    max-width: 1510px;
}

.project-style4 .sec-title h2 {
    color: #ffffff;
}



.single-project-item-style4 {
    position: relative;
    display: block;
}

.single-project-item-style4 .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 25px;
}

.single-project-item-style4 .img-holder img {
    width: 100%;
    transform: scale(1.0);
}

.single-project-item-style4:hover .img-holder img {
    transform: scale(1.05) rotate(1deg);
}

.single-project-item-style4 .img-holder .gradient-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all .4s ease-in-out .1s;
    z-index: 1;
}

.single-project-item-style4:hover .img-holder .gradient-bg {
    height: 0px;
}

.single-project-item-style4 .img-holder-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-base);
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-100%);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-100%);
    transform: perspective(400px) rotateY(0deg) translateY(-100%);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
    transition: all .4s ease-in-out .1s;
}

.single-project-item-style4:hover .img-holder-img-bg {
    opacity: 0.85;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0%);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0%);
    transform: perspective(400px) rotateY(0deg) translateY(0%);
}

.single-project-item-style4 .img-holder .static-title {
    position: absolute;
    left: 50px;
    bottom: 39px;
    right: 0;
    z-index: 2;
}

.single-project-item-style4 .img-holder .static-title h3 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
}

.single-project-item-style4 .img-holder .static-title h3 a {
    color: #ffffff;
    transition: all 600ms linear;
    transition-delay: 0.1s;
    transform: translateY(0px);
}

.single-project-item-style4:hover .img-holder .static-title h3 a {
    opacity: 0;
}



.single-project-item-style4 .img-holder .overlay-box {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0 50px 54px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 500ms ease;
    z-index: 3;
}

.single-project-item-style4:hover .img-holder .overlay-box {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}

.single-project-item-style4 .img-holder .overlay-box h3 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.single-project-item-style4 .img-holder .overlay-box h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-item-style4 .img-holder .overlay-box h3 a:hover {
    color: var(--thm-black);
}

.single-project-item-style4 .img-holder .overlay-box p {
    color: #ffffff;
}

.single-project-item-style4 .img-holder .overlay-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 30px;
}

.single-project-item-style4 .img-holder .overlay-box .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 18px;
    line-height: 26px;
    font-family: var(--thm-font);
    font-weight: 500;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-item-style4 .img-holder .overlay-box .btn-box a:hover {
    color: var(--thm-primary);
}

.single-project-item-style4 .img-holder .overlay-box .btn-box a span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 22px;
    line-height: 22px;
    margin-left: 12px;
}




/*** 
=============================================
    Video Gallery Style1 Css
=============================================
***/
.video-gallery-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding-top: 120px;
    padding-bottom: 60px;
    z-index: 10;
}

.video-gallery-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 60px;
    right: 0;
    background-color: #f5f5f8;
    z-index: -1;
}

.video-gallery-style1__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: calc((100% - 173px) / 2);
}

.video-gallery-style1__img-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    overflow: hidden;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.video-gallery-style1__img-bg:hover {
    transform: translateX(15px);
}

.video-gallery-style1__img-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0.20;
    -webkit-mask-image: linear-gradient(to left, transparent 47.5%, #fff 52.5%);
    -webkit-mask-size: 210%;
    -webkit-mask-position: right;
    transform: rotate(45deg);
    z-index: 1;
}

.video-gallery-style1__img-bg:hover:before {
    -webkit-mask-position: left;
    transition: -webkit-mask-position 0.3s linear;
}

.video-gallery-style1__play-btn {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-gallery-style1__play-btn .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 135px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.video-gallery-style1__play-btn .video-popup:hover {
    background-color: var(--thm-base);
}

.video-gallery-style1__play-btn .video-popup:after,
.video-gallery-style1__play-btn .video-popup:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.video-gallery-style1__play-btn .video-popup:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-gallery-style1__play-btn .video-popup .border-round {
    position: absolute;
    top: -12px;
    left: -12px;
    bottom: -12px;
    right: -12px;
    border: 2px solid rgba(255, 255, 255, 0.70);
    border-radius: 50%;
}

.video-gallery-style1__play-btn .video-popup span {
    position: relative;
    color: var(--thm-black);
    font-size: 50px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-gallery-style1__play-btn .video-popup:hover span {
    color: #ffffff;
}

.video-gallery-style1__img .overlay-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 300px;
    background-color: var(--thm-base);
    padding: 34px 40px 30px;
    z-index: 10;
}

.video-gallery-style1__img .overlay-content h3 {
    color: #ffffff;
    font-size: 25px;
    line-height: 32px;
    margin: 0 0 12px;
}

.video-gallery-style1__img .overlay-content a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    letter-spacing: 0.1em;
}

.video-gallery-style1__img .overlay-content a span {
    position: relative;
    display: inline-block;
    padding-left: 5px;
}



.video-gallery-style1__content {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
    padding-bottom: 120px;
}

.video-gallery-style1__content .sec-title {
    padding-bottom: 30px;
}

.video-gallery-style1__content .sec-title p {
    margin: 41px 0 0;
}

.video-gallery-style1__content-inner {
    position: relative;
    display: block;
}

.video-gallery-style1__content-inner .text {
    position: relative;
    display: block;
    padding-bottom: 46px;
}



.progress-levels {
    position: relative;
    display: block;
    max-width: 500px;
}

.progress-box {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.progress-box:last-child {
    margin-bottom: 0;
}

.progress-box .top {
    position: relative;
    display: block;
    padding-bottom: 5px;
}

.progress-box .top h4 {
    position: relative;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font);
}

.progress-box .skill-percent {
    position: absolute;
    top: -31px;
    right: 0px;
}

.progress-box .count-text {
    position: relative;
    color: #909090;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    display: inline-block;
    float: none;
    font-family: var(--thm-font);
}

.progress-box .percent {
    position: relative;
    color: #909090;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    display: inline-block;
    float: none;
    margin-left: -3px;
    font-family: var(--thm-font);
}

.progress-box .bar {
    position: relative;
    display: block;
}

.progress-box .bar .bar-innner {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: #d2d2e3;
    border-radius: 5px;
}

.progress-box .bar .bar-fill {
    position: absolute;
    top: 0%;
    left: 0px;
    bottom: 0%;
    width: 0px;
    height: 10px;
    border-radius: 5px;
    transition: all 2000ms ease 300ms;
    background: var(--thm-base);
}



/*------------------------------------------
    Team Style1 Css
--------------------------------------------*/
.team-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 60px 0px 120px;
    z-index: 11;
}

.team-style1 .row {
    --bs-gutter-x: 30px;
}

.single-team-style1 {
    position: relative;
    display: block;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.single-team-style1:hover {
    transform: translateY(-5px);
}

.single-team-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #000000;
    border-radius: 12px;
}

.single-team-style1 .img-box img {
    width: 100%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1:hover .img-box img {
    opacity: 0.70;
}

.single-team-style1 .img-box .social-share-box {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.single-team-style1 .img-box .social-share-box span {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #4a4e56;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.single-team-style1 .img-box .social-share-box:hover span {
    color: #ffffff;
    background-color: var(--thm-base);
}

.single-team-style1 .img-box .social-share-box ul {
    position: absolute;
    top: 0;
    left: 0%;
    white-space: nowrap;
    transform: translateX(100px);
    padding-top: 50px;
    opacity: 0;
    transition: all 0.3s;
}

.single-team-style1 .img-box .social-share-box:hover ul {
    opacity: 1;
    transform: translateX(0px);
}


.single-team-style1 .img-box .social-share-box ul li {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.single-team-style1 .img-box .social-share-box ul li:last-child {
    margin-bottom: 0;
}

.single-team-style1 .img-box .social-share-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background: #ffffff;
    border-radius: 50%;
    color: #000000;
    font-size: 16px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.single-team-style1 .img-box .social-share-box ul li a:hover {
    color: #ffffff;
}

.single-team-style1 .img-box .social-share-box ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: var(--thm-base);
    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;
}

.single-team-style1 .img-box .social-share-box ul li:hover a:before {
    opacity: 1;
    transform: scale(1);
    border-radius: 50%;
}



.single-team-style1 .img-box .title-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 244px;
    padding: 43px 35px 13px;
    z-index: 3;
}

.single-team-style1 .img-box .title-box .title-box__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    z-index: -1;
}

.single-team-style1 .img-box .title-box h3 {
    font-size: 21px;
    line-height: 20px;
    font-weight: 700;
}

.single-team-style1 .img-box .title-box h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .img-box .title-box span {
    color: #ffffff;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--thm-font-2);
}



/*------------------------------------------
    Team Style1 IN style2 Css
--------------------------------------------*/
.team-style1-in-style2 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0px 120px;
    z-index: 11;
}



/*------------------------------------------
    Team Style1 IN style3 Css
--------------------------------------------*/
.team-style1-in-style3 {
    position: relative;
    display: block;
    background-color: #f4f5f9;
    padding: 120px 0px 120px;
    z-index: 11;
}



/*------------------------------------------
    Team Style1 IN style4 Css
--------------------------------------------*/
.team-style1-in-style4 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0px 80px;
    z-index: 11;
}


.team-style1-in-style4__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 49px;
}

.team-style1-in-style4__top .sec-title {
    padding-bottom: 0;
}

.team-style1-in-style4__top .text {
    position: relative;
    top: -4px;
    display: block;
    max-width: 520px;
    width: 100%;
}

.team-style1-in-style4 .single-team-style1 {
    margin-bottom: 40px;
}



/*------------------------------------------
    Team Page One Css
--------------------------------------------*/
.team-page-one {
    position: relative;
    display: block;
    background-color: #f2f3f5;
    padding: 120px 0px 70px;
    z-index: 11;
}

.team-page-one .single-team-style1 {
    margin-bottom: 50px;
}






/*** 
=============================================
   Video gallery style2 Css
=============================================
***/
.video-gallery-style2 {
    position: relative;
    display: block;
    padding: 150px 0px 130px;
    z-index: 10;
}

.video-gallery-style2-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    z-index: -1;
}

.video-gallery-style2__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-gallery-style2__content .title-box {
    position: relative;
    display: block;
    max-width: 1030px;
}

.video-gallery-style2__content .title-box .sec-title {
    padding-bottom: 0;
}

.video-gallery-style2__content .title-box .sec-title .sub-title {
    margin-bottom: 16px;
}

.video-gallery-style2__content .title-box .sec-title .sub-title h4 {
    color: #ffffff;
}

.video-gallery-style2__content .title-box .sec-title .sub-title .border-line.left {
    background-color: #ffffff;
}

.video-gallery-style2__content .title-box .sec-title h2 {
    color: #ffffff;
    font-size: 65px;
    line-height: 1.2em;
    font-family: var(--thm-font-3);
}



.video-gallery-style2__content .btn-box {
    position: relative;
    display: flex;
    align-items: center;
}

.video-gallery-style2__content .play-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.video-gallery-style2__content .play-btn .border-round {
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 50%;
}

.video-gallery-style2__content .play-btn:hover {
    background-color: var(--thm-black);
}

.video-gallery-style2__content .play-btn:after,
.video-gallery-style2__content .play-btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.video-gallery-style2__content .play-btn:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-gallery-style2__content .play-btn .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.video-gallery-style2__content .play-btn .video-popup span::before {
    position: relative;
    color: var(--thm-base);
    font-size: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-gallery-style2__content .play-btn :hover .video-popup span::before {
    color: #ffffff;
}

.video-gallery-style2__content .btn-box h4 {
    color: #ffffff;
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 30px;
}



/*---------------------------------------------------
# Home Google Map Style1 Css
----------------------------------------------------*/
.home-google-map-style1 {
    position: relative;
    display: block;
    background: #ffffff;
    overflow: hidden;
    z-index: 10;
}

.home-google-map {
    position: relative;
    display: block;
    border: none;
    height: 340px;
    width: 100%;
    background-color: #201c22;
    mix-blend-mode: luminosity;
    z-index: 10;
}



/*---------------------------------------------------
# Home Google Map Style2 Css
----------------------------------------------------*/
.home-google-map-style2 {
    position: relative;
    display: block;
    background: #ffffff;
    overflow: hidden;
    z-index: 10;
}

.home-google-map-2 {
    position: relative;
    display: block;
    border: none;
    height: 340px;
    width: 100%;
    background-color: #201c22;
    mix-blend-mode: luminosity;
    z-index: 10;
}

.google-map-content-box {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 15px;
    z-index: 100;
}

.map-contact-info-box {
    position: relative;
    display: block;
    max-width: 400px;
    width: 100%;
    background-color: #087fe8;
    padding: 65px 50px 78px;
    float: right;
    z-index: 1;
}

.map-contact-info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: -100000px;
    bottom: 0;
    background-color: #087fe8;
    z-index: -1;
}

.map-contact-info-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 16px;
}

.map-contact-info-box .inner-title::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
}

.map-contact-info-box .inner-title h3 {
    color: #ffffff;
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
}

.map-contact-info-box p {
    color: #ffffff;
    margin: 31px 0 0;
}

.map-contact-info-box h5 {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    padding-top: 36px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.map-contact-info-box h5 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.map-contact-info-box h5 a:hover {
    color: var(--thm-base);
}




/*** 
=============================================
   Video gallery style3 Css
=============================================
***/
.video-gallery-style3 {
    position: relative;
    display: block;
    padding: 120px 0px 114px;
    z-index: 10;
}

.video-gallery-style3-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    z-index: -1;
}

.video-gallery-style3-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #252b48;
    opacity: 0.80;
}

.video-gallery-style3__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.video-gallery-style3__content .sec-title {
    padding-bottom: 0;
    margin-top: -10px;
}

.video-gallery-style3__content .sec-title .sub-title h4 {
    color: #ffffff;
    font-style: italic;
}

.video-gallery-style3__content .sec-title .sub-title .border-line {
    background-color: #ffffff;
}

.video-gallery-style3__content .sec-title h2 {
    color: #ffffff;
    font-size: 80px;
    line-height: 1.2em;
    font-weight: 600;
}

.video-gallery-style3__content .sec-title p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    margin: 11px 0 0;
}




.video-gallery-style3__content .btn-box {
    position: relative;
    display: flex;
    align-items: center;
}

.video-gallery-style3__content .play-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.video-gallery-style3__content .play-btn .border-round {
    position: absolute;
    top: -30px;
    left: -30px;
    bottom: -30px;
    right: -30px;
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 50%;
}

.video-gallery-style3__content .play-btn .border-round-2 {
    position: absolute;
    top: -60px;
    left: -60px;
    bottom: -60px;
    right: -60px;
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 50%;
}

.video-gallery-style3__content .play-btn:hover {
    background-color: #000000;
}

.video-gallery-style3__content .play-btn:after,
.video-gallery-style3__content .play-btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.video-gallery-style3__content .play-btn:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-gallery-style3__content .play-btn .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.video-gallery-style3__content .play-btn .video-popup span::before {
    position: relative;
    color: var(--thm-base);
    font-size: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-gallery-style3__content .play-btn:hover .video-popup span::before {
    color: #ffffff;
}



/*---------------------------------------
  Features Style1 Css
-----------------------------------------*/
.features-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.features-style1 .sec-title h2 {
    color: var(--thm-black);
    font-size: 38px;
    line-height: 1.2em;
    font-weight: 300;
    text-transform: capitalize;
}

.features-style1__content {
    position: relative;
    display: block;
}

.features-style1__tab {
    position: relative;
    display: block;
}

.features-style1-tab-content-box-item {
    position: relative;
    display: block;
    text-align: center;
}

.features-style1-tab-content-box-item .text {
    position: relative;
    display: block;
    padding: 0 60px;
}


.features-style1__tab-button {
    position: relative;
    display: block;
    padding-top: 83px;
    z-index: 1;
}

.features-style1__tab-button .tabs-button-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-style1__tab-button .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    width: 210px;
    float: left;
    text-align: center;
    cursor: pointer;
    padding-top: 7px;
    padding-bottom: 7px;
    z-index: 1;
}

.features-style1__tab-button .tabs-button-box .tab-btn-item+.tab-btn-item {
    border-left: 1px solid #cfcfcf;
}

.features-style1__tab-button .tabs-button-box .tab-btn-item:hover,
.features-style1__tab-button .tabs-button-box .tab-btn-item.active-btn-item {}



.features-style1__tab-button__inner {
    position: relative;
    display: block;
}

.features-style1__tab-button__inner .icon {
    position: relative;
    display: block;
}

.features-style1__tab-button__inner .icon i {
    position: relative;
    display: inline-block;
    color: #2d6293;
    font-size: 50px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-style1__tab-button .tabs-button-box .tab-btn-item:hover .features-style1__tab-button__inner .icon i,
.features-style1__tab-button .tabs-button-box .tab-btn-item.active-btn-item .features-style1__tab-button__inner .icon i {
    color: var(--thm-base);
    transform: translateY(4px);
}

.features-style1__tab-button__inner h3 {
    color: #242424;
    font-size: 22px;
    line-height: 30px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-style1__tab-button .tabs-button-box .tab-btn-item:hover .features-style1__tab-button__inner h3,
.features-style1__tab-button .tabs-button-box .tab-btn-item.active-btn-item .features-style1__tab-button__inner h3 {
    color: var(--thm-base);
}



/*---------------------------------------
  About Faq Style1 Css
-----------------------------------------*/
.about-faq-style1 {
    position: relative;
    display: block;
    background-color: #f6f6f6;
    padding: 120px 0 120px;
    z-index: 10;
}



.about-faq-style1__about {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
}

.about-faq-style1__about .sec-title {
    padding-bottom: 40px;
}

.about-faq-style1__about .text {
    position: relative;
    display: block;
}

.about-faq-style1__about ul {
    position: relative;
    display: block;
    margin-top: 47px;
    border-top: 1px solid #e7e7e7;
}

.about-faq-style1__about ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    color: #242424;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 13px;
}

.about-faq-style1__about ul li {
    margin-top: 13px;
}

.about-faq-style1__about ul li .icon {
    position: absolute;
    top: 5px;
    left: 0;
    line-height: 0;
}

.about-faq-style1__about ul li .icon span {
    color: var(--thm-base);
    font-size: 18px;
    font-weight: 600;
}

.about-faq-style1__faq {
    position: relative;
    display: block;
    margin-left: -50px;
}

.about-faq-style1__faq-content {
    position: relative;
    display: block;
}



/*------------------------------------------
    Slogan Style1 Css
--------------------------------------------*/
.slogan-style1 {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    padding: 40px 0px 40px;
    z-index: 10;
}

.slogan-style1__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slogan-style1__content .title-box {
    position: relative;
    display: block;
}

.slogan-style1__content .title-box h2 {
    color: #ffffff;
    font-size: 39px;
    line-height: 49px;
    font-weight: 900;
}

.slogan-style1__content .title-box h2 span {
    font-weight: 400;
}


.slogan-style1__content .btn-box {
    position: relative;
    display: block;
}

.slogan-style1__content .btn-box a {
    color: var(--thm-black);
}

.slogan-style1__content .btn-box a:after {
    background-color: #ffffff;
}

.slogan-style1__content .btn-box a:hover {
    color: #ffffff;
}



/*------------------------------------------
    Slogan Style2 Css
--------------------------------------------*/
.slogan-style2 {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    padding: 50px 0px 50px;
    z-index: 10;
}

.slogan-style2__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slogan-style2__content .title-box {
    position: relative;
    display: block;
}

.slogan-style2__content .title-box h2 {
    color: #eaeaee;
    font-size: 34px;
    line-height: 44px;
    font-weight: 400;
}

.slogan-style2__content .btn-box {
    position: relative;
    display: block;
}

.slogan-style2__content .btn-box a {
    position: relative;
    display: inline-block;
    color: #eaeaee;
    font-size: 22px;
    line-height: 24px;
    font-weight: 400;
}

.slogan-style2__content .btn-box a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: #ffffff;
}



/*---------------------------------------
  Approach Style1 Css
---------------------------------------*/
.approach-style1 {
    position: relative;
    display: block;
    background-color: #eaeaee;
    padding: 120px 0 113px;
    z-index: 10;
}

.approach-style1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 90px;
    background-color: #000000;
}

.approach-style1__title {
    position: relative;
    display: block;
}

.approach-style1__title .sec-title {
    margin-top: -10px;
    padding-bottom: 0;
}

.approach-style1__content {
    position: relative;
    display: block;
}

.approach-style1__content .icon-box {
    position: relative;
    display: block;
    margin-bottom: 43px;
}

.approach-style1__content .icon-box ul {
    position: relative;
    display: flex;
    align-items: center;
}

.approach-style1__content .icon-box ul li {
    position: relative;
    display: block;
}

.approach-style1__content .icon-box ul li+li {
    margin-left: 36px;
}

.approach-style1__content .top-text {
    position: relative;
    display: block;
    margin-bottom: 37px;
}

.approach-style1__content .top-text h2 {
    color: #181d4e;
    font-size: 35px;
    line-height: 1.2em;
    font-weight: 300;
    font-family: var(--thm-font-2);
}

.approach-style1__content .text {
    position: relative;
    display: block;
}

.approach-style1__content .text p {
    margin: 0;
}



/*---------------------------------------
  Approach Style2 Css
---------------------------------------*/
.approach-style2 {
    position: relative;
    display: block;
    background-color: #f9f9f9;
    padding: 120px 0 113px;
    z-index: 10;
}

.approach-style2__title {
    position: relative;
    display: block;
}

.approach-style2__title .sec-title {
    padding-bottom: 0;
    margin-top: -9px;
}

.approach-style2__title .sec-title .border-line {
    position: relative;
    display: block;
    width: 85px;
    height: 2px;
    background-color: var(--thm-base);
    margin-top: 29px;
}






/*---------------------------------------
  Quality Policy Css
-----------------------------------------*/
.quality-policy {
    position: relative;
    display: block;
    background-color: #eaeaee;
    padding: 120px 0 120px;
    z-index: 10;
}

.quality-policy__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
}

.quality-policy__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #02092b;
    opacity: 0.90;
}

.quality-policy__top-title {
    position: relative;
    display: block;
}

.quality-policy__top-title .icon {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.quality-policy__top-title h2 {
    color: #ffffff;
    font-size: 45px;
    line-height: 1.2em;
    font-weight: 900;
    margin-bottom: 25px;
}

.quality-policy__top-title p {
    color: #dfe3ec;
    font-weight: 500;
}

.quality-policy__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
}

.quality-policy__content .left {
    position: relative;
    display: block;
}

.quality-policy__content .left h2 {
    color: #dfe3ec;
    font-size: 100px;
    line-height: 1.2em;
    font-weight: 700;
    font-family: var(--thm-font);
}

.quality-policy__content .right {
    position: relative;
    display: block;
    max-width: 300px;
    border-left: 1px solid rgb(255, 255, 255, 0.40);
    padding-left: 34px;
    margin-left: 46px;
}

.quality-policy__content .right p {
    color: #dfe3ec;
    font-weight: 500;
}




/*---------------------------------------
  Features Style2 Css
-----------------------------------------*/
.features-style2 {
    position: relative;
    display: block;
    background-color: #061d44;
    padding: 120px 0 113px;
    z-index: 10;
}

.features-style2 .container {
    display: flex;
    justify-content: flex-end;
}

.features-style2__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc((100% - 0px) / 2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    transition: all 3500ms ease;
    z-index: 1;
}

.features-style2__bg::before {
    position: absolute;
    content: '';
    top: 0;
    right: -1px;
    bottom: 0;
    width: 280px;
    background-color: #061d44;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    z-index: 3;
}

.features-style2__bg::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0px;
    bottom: 0;
    width: 300px;
    background-color: #005fff;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    z-index: 2;
}

.features-style2__bg-black {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: .20;
}


.features-style2__content {
    position: relative;
    display: block;
    max-width: 595px;
    width: 100%;
    padding-left: 35px;
}

.features-style2__content .sec-title {
    padding-bottom: 22px;
}

.features-style2__content .sec-title h2 {
    color: #ffffff;
}

.features-style2__content .top {
    position: relative;
    display: block;
    margin-bottom: 28px;
}

.features-style2__content .top h3 {
    color: #ffffff;
    font-size: 19px;
    line-height: 29px;
}

.features-style2__content .text {
    position: relative;
    display: block;
}

.features-style2__content .text p {
    color: #ffffff;
}



.features-style2__content-inner {
    position: relative;
    display: block;
    margin-top: 32px;
}

.features-style2__content-inner .single-box {
    position: relative;
    display: block;
}

.features-style2__content-inner .single-box .icon-title-box {
    position: relative;
    display: flex;
    align-items: center;
}

.features-style2__content-inner .single-box .icon-title-box .icon {
    position: relative;
    display: block;
}

.features-style2__content-inner .single-box .icon-title-box .icon i {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 64px;
    line-height: 64px;
}

.features-style2__content-inner .single-box .icon-title-box .title {
    position: relative;
    display: block;
    margin-left: 25px;
}

.features-style2__content-inner .single-box .icon-title-box .title h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 26px;
}

.features-style2__content-inner .single-box .text-box {
    position: relative;
    display: block;
    margin-top: 20px;
}

.features-style2__content-inner .single-box .text-box p {
    color: rgb(255, 255, 255, 0.50);
    font-size: 17px;
}










/*---------------------------------------
  Industries Served Css
-----------------------------------------*/
.industries-served {
    position: relative;
    display: block;
    background-color: #eff0f3;
    padding: 120px 0 120px;
    z-index: 10;
}

.row.industries-served__content {
    --bs-gutter-x: 2px;
}

.single-industries-served {
    position: relative;
}

.single-industries-served__inner {
    position: relative;
    display: block;
    background-color: #ffffff;
    text-align: center;
    padding: 45px 0 43px;
    transform: translateY(0);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-industries-served__inner:hover {
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(5px);
    z-index: 2;
}

.single-industries-served__inner .icon {
    position: relative;
    display: block;
}

.single-industries-served__inner .icon img {
    position: relative;
    display: inline-block;
    transition: color 0.5s ease;
    transition: all 0.5s ease;
}

.single-industries-served__inner:hover .icon img {
    mix-blend-mode: multiply;
}

.single-industries-served__inner h3 {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font);
    margin-top: 21px;
}



.industries-served__bottom-btn {
    position: relative;
    display: block;
    margin-top: 39px;
}

.industries-served__bottom-btn a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.industries-served__bottom-btn a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    right: 0;
    height: 1px;
    background-color: var(--thm-base);
}



/*---------------------------------------
  Features Style3 Css
---------------------------------------*/
.features-style3 {
    position: relative;
    display: block;
    background-color: #eff0f3;
    padding: 0px 0 0px;
    z-index: 10;
}

.features-style3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 50%;
    background-color: #ffffff;
    z-index: -1;
}

.features-style3__img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.features-style3__img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.70;
    background-color: var(--thm-base);
    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;
}

.features-style3__img-box:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.features-style3__img-box img {
    width: 100%;
}

.features-style3__img-box:hover {
    opacity: 0.90;

}


.features-style3__content-box {
    position: relative;
    display: block;
    background-color: #232a50;
    margin-left: -30px;
    padding: 72px 60px 80px;
}

.features-style3__content-box h2 {
    color: #ffffff;
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 10px;
}

.features-style3__content-box .top-text {
    position: relative;
    display: block;
}

.features-style3__content-box .top-text p {
    color: #b1b4c2;
    margin: 0;
}

.features-style3__content-box .bottom-text {
    position: relative;
    display: block;
    margin-top: 31px;
}

.features-style3__content-box .bottom-text h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 8px;
}

.features-style3__content-box .bottom-text p {
    color: #b1b4c2;
    margin: 0;
}

.features-style3__content-box .btn-box {
    position: relative;
    display: block;
    margin-top: 33px;
}

.features-style3__content-box .btn-box .btn-one {
    color: var(--thm-black);
    border-radius: 30px;
    padding-top: 4px;
    padding-bottom: 2px;
}

.features-style3__content-box .btn-box .btn-one:hover {
    color: #ffffff;
}

.features-style3__content-box .btn-box .btn-one:before {
    background-color: var(--thm-base);
}

.features-style3__content-box .btn-box .btn-one:after {
    background-color: #ffffff;
}






















/*---------------------------------------
  Case Studies Style1 Css
---------------------------------------*/
.case-studies-style1 {
    position: relative;
    display: block;
    background-color: #0b0d26;
    padding: 120px 0 120px;
    z-index: 10;
}

.case-studies-style1__title {
    position: relative;
    display: block;
}

.case-studies-style1__title .sec-title.withtext {
    padding-bottom: 0;
}

.case-studies-style1__title .sec-title h2 {
    color: #ffffff;
}

.case-studies-style1__title .sec-title p {
    color: #ced2e2;
}

.single-case-studies-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.single-case-studies-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-base);
    border-radius: 8px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.single-case-studies-style1 .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.70;
    background-color: #00a2ff;
    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;
}

.single-case-studies-style1:hover .img-box::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.single-case-studies-style1 .img-box img {
    width: 100%;
}

.single-case-studies-style1:hover .img-box {
    opacity: 0.90;
    transform: scale(1.0) translateY(10px);
}

.case-studies-carousel.owl-nav-style-one {
    margin-right: -360px;
}

.case-studies-carousel.owl-theme .owl-nav {
    position: absolute;
    left: -310px;
    bottom: 50px;
}

.case-studies-carousel.owl-carousel .owl-stage-outer {
    margin-right: -390px;
}



/*------------------------------------------
  Get In Touch Style1
--------------------------------------------*/
.get-in-touch-style1 {
    position: relative;
    display: block;
    padding: 100px 0 100px;
    background-color: #e4e7e9;
    z-index: 10;
}

.get-in-touch-style1__bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: calc((100% - 370px) / 2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    z-index: -1;
}


.get-in-touch-style1__form {
    position: relative;
    display: block;
    padding-right: 155px;
}

.get-in-touch-style1__form .inner-title {
    position: relative;
    display: block;
    margin-top: -7px;
    padding-bottom: 29px;
}

.get-in-touch-style1__form .inner-title h2 {
    color: var(--thm-black);
    font-size: 42px;
    line-height: 50px;
    font-weight: 900;
}



.get-in-touch-style1__form form {
    position: relative;
    display: block;
}

.get-in-touch-style1__form form .form-group {
    position: relative;
    display: block;
    padding-bottom: 15px;
}

.get-in-touch-style1__form form .input-box {
    position: relative;
    display: block;
}

.get-in-touch-style1__form form input[type="text"],
.get-in-touch-style1__form form input[type="email"],
.get-in-touch-style1__form form input[type="tel"],
.get-in-touch-style1__form form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 0px solid #e1e1e1;
    width: 100%;
    height: 40px;
    color: #444444;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.get-in-touch-style1__form form input[type="text"]:focus,
.get-in-touch-style1__form form input[type="email"]:focus,
.get-in-touch-style1__form form input[type="tel"],
.get-in-touch-style1__form form textarea:focus {
    border-color: 1px solid var(--thm-base);
    outline: none;
}

.get-in-touch-style1__form form textarea {
    height: 140px;
    padding-top: 12px;
    padding-bottom: 10px;
}

.get-in-touch-style1__form form input[type="text"]::-webkit-input-placeholder {
    color: #444444;
}

.get-in-touch-style1__form form input[type="text"]:-moz-placeholder {
    color: #444444;
}

.get-in-touch-style1__form form input[type="text"]::-moz-placeholder {
    color: #444444;
}

.get-in-touch-style1__form form input[type="text"]:-ms-input-placeholder {
    color: #444444;
}


.get-in-touch-style1__form form input[type="email"]::-webkit-input-placeholder {
    color: #444444;
}

.get-in-touch-style1__form form input[type="email"]:-moz-placeholder {
    color: #444444;
}

.get-in-touch-style1__form form input[type="email"]::-moz-placeholder {
    color: #444444;
}

.get-in-touch-style1__form form input[type="email"]:-ms-input-placeholder {
    color: #444444;
}

.get-in-touch-style1__form form textarea::-webkit-input-placeholder {
    color: #444444;
}

.get-in-touch-style1__form form textarea:-moz-placeholder {
    color: #444444;
}

.get-in-touch-style1__form form textarea::-moz-placeholder {
    color: #444444;
}

.get-in-touch-style1__form form textarea:-ms-input-placeholder {
    color: #444444;
}

.get-in-touch-style1__form form .button-box {
    position: relative;
    display: block;
}




/*---------------------------------------
  Mission Style1 Css
-----------------------------------------*/
.mission-style1 {
    position: relative;
    display: block;
    background-color: transparent;
    padding-bottom: 120px;
    margin-top: -200px;
    z-index: 10;
}

.mission-style1__inner {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 90px 90px 0px;
    padding-right: 0;
    z-index: 1;
}

.mission-style1__inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: -1000000px;
    background-color: #ffffff;
    z-index: -1;
}

.mission-style1-img-box {
    position: relative;
    display: block;
}

.mission-style1-img-box .row {
    --bs-gutter-x: 100px;
}

.mission-style1-img-box .single-img-box {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.mission-style1-img-box .single-img-box img {
    width: 100%;
    transform: scale(1.0);
}

.mission-style1-img-box .single-img-box:hover img {
    transform: scale(1.0) rotate(0deg);
}


.mission-style1-content-box {
    position: relative;
    display: block;
}

.mission-style1-content-box .row {
    --bs-gutter-x: 40px;
}

.mission-style1-content-box .text-box1 {
    position: relative;
    display: block;
    padding-top: 120px;
}

.mission-style1-content-box .text-box1 .sec-title {
    padding-bottom: 30px;
}

.mission-style1-content-box .text-box1 .text {
    position: relative;
    display: block;
}

.mission-style1-content-box .text-box1 .text p {
    margin: 0;
}


.mission-style1-content-box .text-box1 .bottom-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 68px;
}

.mission-style1-content-box .text-box1 .bottom-box .left {
    position: relative;
    display: flex;
    align-items: center;
}

.mission-style1-content-box .text-box1 .bottom-box .left .img-box {
    position: relative;
    display: block;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
}

.mission-style1-content-box .text-box1 .bottom-box .left .title-box {
    position: relative;
    display: block;
    margin-left: 30px;
}

.mission-style1-content-box .text-box1 .bottom-box .left .title-box h3 {
    color: #161837;
    font-size: 18px;
    line-height: 18px;
    font-family: var(--thm-font);
    font-weight: 600;
}

.mission-style1-content-box .text-box1 .bottom-box .left .title-box p {
    color: #161837;
}

.mission-style1-content-box .text-box1 .bottom-box .right {
    position: relative;
    display: block;
    margin-left: 30px;
}

.mission-style1-content-box .text-box1 .bottom-box .right .signature {
    position: relative;
    display: block;
}

.mission-style1-content-box .text-box2 {
    position: relative;
    display: block;
    padding-top: 175px;
    padding-left: 15px;
}

.mission-style1-content-box .text-box2 .inner-title {
    position: relative;
    display: flex;
    align-items: center;
}

.mission-style1-content-box .text-box2 .inner-title .border-box {
    position: relative;
    display: block;
    top: -7px;
    width: 35px;
    height: 2px;
    background-color: #00a7eb;
    margin-right: 10px;
}

.mission-style1-content-box .text-box2 .inner-title .title {
    position: relative;
    display: block;
    margin-bottom: 13px;
}

.mission-style1-content-box .text-box2 .inner-title .title h6 {
    color: #00a7eb;
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    letter-spacing: 0.1em;
    z-index: 1;
}

.mission-style1-content-box .text-box2 .text {
    position: relative;
    display: block;
}

.mission-style1-content-box .text-box2 .text p {
    margin: 0;
}






/*---------------------------------------
  Our Values Style1 Css
---------------------------------------*/
.our-values-style1 {
    position: relative;
    display: block;
    background-color: #0b0d26;
    padding: 120px 0 120px;
    z-index: 10;
}

.our-values-style1__img {
    position: relative;
    display: block;
    margin-right: 35px;
}

.our-values-style1__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.our-values-style1__img .inner::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0;
    z-index: 1;
    transition: all 1500ms ease;
}

.our-values-style1__img:hover .inner::after {
    opacity: 0.50;
}

.our-values-style1__img .inner img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.our-values-style1__img:hover .inner img {
    transform: scale(1.05) rotate(0deg);
}



.our-values-style1__content {
    position: relative;
    display: block;
}

.our-values-style1__content .sec-title {
    padding-bottom: 19px;
}

.our-values-style1__content .sec-title h2 {
    color: #ffffff;
}

.our-values-style1__content .text {
    position: relative;
    display: block;
}

.our-values-style1__content .text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 32px;
}

.our-values-style1__content .text p u {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.our-values-style1__content .text p u::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 3px;
    right: 0px;
    height: 1px;
    background-color: #d5d6d8;
}


.our-values-style1__content-features {
    position: relative;
    display: block;
    margin-top: 39px;
}

.our-values-style1__content-features ul {
    position: relative;
    display: block;
}

.our-values-style1__content-features ul li {
    position: relative;
    display: block;
    padding-left: 90px;
    margin-bottom: 39px;
}

.our-values-style1__content-features ul li:last-child {
    margin: 0;
}

.our-values-style1__content-features ul li .icon {
    position: absolute;
    top: 4px;
    left: 0;
    line-height: 0;
}

.our-values-style1__content-features ul li .icon i {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 62px;
    line-height: 62px;
}

.our-values-style1__content-features ul li .text {
    position: relative;
    display: block;
}

.our-values-style1__content-features ul li .text h3 {
    color: rgba(255, 255, 255, 0.60);
    font-size: 23px;
    line-height: 26px;
    padding-bottom: 4px;
}

.our-values-style1__content-features ul li .text p {
    color: rgba(255, 255, 255, 0.80);
    margin: 0;
}



/*---------------------------------------
  Vision Style1 Css
---------------------------------------*/
.vision-style1 {
    position: relative;
    display: block;
    z-index: 10;
}

.vision-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc((100% - 370px) / 2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    z-index: 1;
}

.vision-style1__bg-2 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: calc((100% + 370px) / 2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    background-color: #00346a;
    background-blend-mode: overlay;
    z-index: -1;
}

.vision-style1__bg-2::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0px;
    bottom: 0;
    left: 0;
    background-color: #00346a;
    opacity: 0.85;
}



.vision-style1__content {
    position: relative;
    display: block;
    padding-left: 400px;
}

.vision-style1__content-inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 100px;
}

.fact-counter-box-style2 {
    position: relative;
    display: block;
    width: 220px;
    border-right: 1px solid rgb(255, 255, 255, 0.35);
    padding-top: 18px;
    padding-bottom: 18px;
}

.fact-counter-box-style2 ul {
    position: relative;
    display: block;
}

.fact-counter-box-style2 ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fact-counter-box-style2 ul li+li {
    margin-top: 95px;
}

.fact-counter-box-style2 ul li .counting {
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 50px;
    line-height: 1.2em;
}

.fact-counter-box-style2 ul li .counting h2 {
    color: #ffffff;
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 900;
    font-family: var(--thm-font-2);
}

.fact-counter-box-style2 ul li .counting span.k {
    position: relative;
    display: inline-block;
    line-height: 40px;
    font-family: var(--thm-font-2);
    font-weight: 900;
    font-size: 46px;
    top: -1px;
    margin-left: 3px;
}

.fact-counter-box-style2 ul li h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
}

.fact-counter-box-style2 .btn-box {
    position: relative;
    display: block;
    list-style: 0;
    margin-top: 23px;
}

.fact-counter-box-style2 .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fact-counter-box-style2 .btn-box a span {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 22px;
    top: -1px;
    margin-right: 10px;
}


.vision-style1__main-content {
    position: relative;
    display: block;
    padding-left: 60px;
    margin-right: -50px;
    flex: 1;
}

.vision-style1__main-content .sec-title {
    padding-bottom: 31px;
}

.vision-style1__main-content .sec-title .sub-title .border-line {
    background-color: #ffffff;
}

.vision-style1__main-content .sec-title .sub-title h4 {
    color: #ffffff;
}

.vision-style1__main-content .sec-title h2 {
    color: #ffffff;
}

.vision-style1__main-content .top-text {
    position: relative;
    display: block;
    margin-bottom: 34px;
}

.vision-style1__main-content .top-text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.vision-style1__main-content .bottom-text {
    position: relative;
    display: block;
}

.vision-style1__main-content .bottom-text p {
    color: #ffffff;
}


/*---------------------------------------
  history Style1 Css
---------------------------------------*/

.history-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 0px 0px 120px;
}

.history-style1__inner {
    position: relative;
    display: block;
    border-top: 1px solid #e0e0e0;
    padding-top: 93px;
}

.history-box,
.vertox-history {
    position: relative;
    display: block;
}

.history-box li::before,
.vertox-history li:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 55px;
    bottom: -90px;
    right: 0;
    width: 1px;
    background-color: #d2d2d2;
}

.history-box li:last-child:before,
.yt-last .vertox-history li:before {
    display: none;
}

.history-box li+li {
    margin-top: 64px;
}

.single-history-box {
    position: relative;
    display: block;
    padding-left: 175px;
}

.single-history-box .date-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 7px;
    left: 0;
    height: 110px;
    width: 110px;
    border-radius: 50%;
    background-color: var(--thm-base);
    z-index: 1;
}

.single-history-box .date-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 50%;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    background-color: #000000;
    z-index: -1;
}

.single-history-box:hover .date-box::before {
    transform: scaleX(1.0);
}



.single-history-box .date-box h2 {
    color: #ffffff;
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    font-family: var(--thm-font);
}

.single-history-box .text-box {
    position: relative;
    display: block;
}

.single-history-box .text-box h3 {
    font-size: 34px;
    line-height: 44px;
    font-weight: 900;
    margin-bottom: 10px;
}

.single-history-box .text-box p {
    margin: 0;
}



.history-style1__img-box {
    position: relative;
    display: block;
    padding-left: 170px;
    padding-right: 170px;
    margin-top: 68px;
}

.history-style1__img-box .single-img-box {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.history-style1__img-box .single-img-box img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.history-style1__img-box .single-img-box:hover img {
    transform: scale3d(1.2, 1.1, 1);
    transition: transform 1s ease-in-out;
}

.history-style1__img-box .single-img-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-black);
    opacity: 0.30;
    -webkit-mask-image: linear-gradient(to left, transparent 47.5%, #fff 52.5%);
    -webkit-mask-size: 210%;
    -webkit-mask-position: right;
    z-index: 1;
}

.history-style1__img-box .single-img-box:hover:before {
    -webkit-mask-position: left;
    transition: -webkit-mask-position 1s linear;
}































/*** 
=============================================
    Project Info Css     
=============================================
***/
.project-info {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 113px;
}

.project-info-img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-info-img-box:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 0%;
    background-color: var(--thm-base);
    opacity: 0.70;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    z-index: 1;
}

.project-info-img-box:hover::before {
    height: 100%;
    top: 0px;
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.50);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.50);
}

.project-info-img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 700ms linear;
    transition-delay: 0.1s;
}

.project-info-img-box:hover img {
    transform: scale(1.05) rotate(1deg);
}



.project-info-box {
    position: relative;
    display: block;
    background-color: #181d4e;
    padding: 61px 40px 66px;
}

.project-info-box ul {
    position: relative;
    display: block;
}

.project-info-box ul li {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--thm-font);
    margin-bottom: 20px;
}

.project-info-box ul li:last-child {
    margin-bottom: 0;
}

.project-info-box ul li span {
    font-weight: 700;
    padding-right: 3px;
}

.project-info-box ul li a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-info-box ul li a:hover {
    color: var(--thm-base);
}

.project-description-box {
    position: relative;
    display: block;
    margin-top: 89px;
}

.project-description-box h2 {
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 29px;
    font-weight: 900;
}

.project-description-box p+p {
    margin-top: 24px;
}



/*** 
=============================================
    Project Details Style1 Css     
=============================================
***/
.project-details-style1 {
    position: relative;
    display: block;
    background-color: #f4f4f4;
    padding: 120px 0 113px;
}

.project-details-style1-content {
    position: relative;
    display: block;
}

.project-details-style1-content h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 900;
    margin-top: -9px;
    margin-bottom: 19px;
}

.project-details-style1-content ul {
    position: relative;
    display: block;
    margin-top: 32px;
}

.project-details-style1-content ul li {
    position: relative;
    display: block;
    padding-left: 30px;
}

.project-details-style1-content ul li+li {
    margin-top: 27px;
}

.project-details-style1-content ul li .dot-box {
    position: absolute;
    top: 9px;
    left: 0px;
    width: 8px;
    height: 8px;
    background-color: #5b5b5b;
    border-radius: 50%;
}

.project-details-style1-content ul li .text-box {
    position: relative;
    display: block;
}

.project-details-style1-content ul li .text-box h3 {
    font-size: 20px;
    line-height: 26px;
    font-family: var(--thm-font);
    font-weight: 600;
    margin-bottom: 6px;
}


.project-details-style1-img-box {
    position: relative;
    display: block;
}

.project-details-style1-img-box img {
    width: 100%;
}



/*** 
=============================================
    Project Details Style2 Css    
=============================================
***/
.project-details-style2 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 110px 0 113px;
    z-index: 10;
}

.project-details-style2-content {
    position: relative;
    display: block;
}

.project-details-style2-content h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 900;
    margin-bottom: 29px;
}

.project-details-style2-content p+p {
    margin: 24px 0 0;
}

.project-details-style2-content ul {
    position: relative;
    display: block;
    margin-top: 34px;
}

.project-details-style2-content ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-bottom: 4px;
}

.project-details-style2-content ul li:last-child {
    margin-bottom: 0;
}

.project-details-style2-content ul li .dot-box {
    position: absolute;
    top: 11px;
    left: 0px;
    width: 8px;
    height: 8px;
    background-color: #5b5b5b;
    border-radius: 50%;
}



/*---------------------------------------
  Project Page Css
-----------------------------------------*/
.project-page {
    position: relative;
    display: block;
    padding: 120px 0px 70px;
    background-color: #ffffff;
    z-index: 10;
}

.project-page .auto-container {
    max-width: 1600px;
}



/*---------------------------------------
  Project Page two Css
-----------------------------------------*/
.project-page-two {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
    background-color: #ffffff;
    z-index: 10;
}

.project-page-two__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 44px;
}

.project-page-two__top .sec-title {
    padding-bottom: 0;
}

.project-page-two__top .text {
    position: relative;
    top: -4px;
    display: block;
    max-width: 450px;
    width: 100%;
}

.project-page-two__top .text p {
    color: #444444;
    font-weight: 500;
}



.project-menu-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 51px;
}

.project-filter {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.project-filter li {
    position: relative;
    display: flex;
    float: left;
    margin: 0 18px 6px;
}

.project-filter li:first-child {
    margin-left: 0;
}

.project-filter li .filter-text {
    position: relative;
    display: block;
    color: #181d4e;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all .4s ease;
    z-index: 1;
    font-family: var(--thm-font);
}

.project-filter li .filter-text:before {
    position: absolute;
    left: 0px;
    bottom: -1px;
    right: 0px;
    height: 1px;
    content: "";
    background: var(--thm-base);
    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;
}

.project-filter li:hover .filter-text:before,
.project-filter li.active .filter-text:before {
    transform: scaleX(1.0);
}

.project-filter li:hover .filter-text,
.project-filter li.active .filter-text {
    color: var(--thm-base);
}

.project-filter li .count {
    display: none;
}

.project-page-two .single-project-item {
    margin-bottom: 30px;
}

.single-project-item .overlay-title h4 a:hover {
    color: var(--thm-black);
}





















/*---------------------------------------
  Service Pages Css
-----------------------------------------*/
.service-style3.service-page {
    padding: 120px 0px 90px;
}

.service-style3.service-page .sec-title p {
    color: rgb(28, 30, 42, 0.70);
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}



/*---------------------------------------
  More Service Style1 Css
-----------------------------------------*/
.more-service-style1 {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 120px 0px 120px;
    z-index: 10;
}

.more-service-style1__title-box {
    position: relative;
    display: block;
    padding-right: 15px;
}

.more-service-style1__title-box .sec-title.withtext {
    padding-bottom: 0;
}



.more-service-style1__content-box {
    position: relative;
    display: block;
    padding-left: 20px;
    margin-top: 34px;
}

.more-service-style1__content-box ul {
    position: relative;
    display: block;
}

.more-service-style1__content-box ul li {
    position: relative;
    display: block;
}

.more-service-style1__content-box ul li+li {
    margin-top: 14px;
}

.more-service-style1__content-box ul li .line-box {
    position: absolute;
    top: 14px;
    left: 0;
    width: 5px;
    height: 1px;
    background-color: #494949;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.more-service-style1__content-box ul li:hover .line-box {
    background-color: var(--thm-base);
    margin-left: 5px;
}

.more-service-style1__content-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    color: #494949;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-left: 10px;
}

.more-service-style1__content-box ul li:hover a {
    color: var(--thm-base);
    padding-left: 5px;
}




/*---------------------------------------
  Faq Page One Css
-----------------------------------------*/
.faq-page-one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.faq-page-one .sec-title {
    padding-bottom: 43px;
}

.faq-page-one .sec-title .text {
    position: relative;
    display: block;
    padding-top: 10px;
}

.faq-page-one .sec-title .text p {
    color: #444444;
}


.faq-search-box {
    position: relative;
    display: block;
    max-width: 100%;
    width: 100%;
    margin-bottom: 61px;
}

.faq-search-box__inner {
    position: relative;
    display: block;
}

.faq-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.faq-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 60px;
    border-radius: 7px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.faq-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 60px;
    font-size: 16px;
    line-height: 60px;
    display: block;
    text-align: center;
    border-radius: 0%;
    border: 0px solid #e7e7e8;
    transition: all 500ms ease 0s;
}

.faq-search-box .search-form button i {
    position: relative;
    top: 4px;
    color: var(--thm-black);
    font-size: 25px;
}

.faq-search-box .search-form input[type="text"]:focus {
    color: #000;
}



.faq-content-box--style2 {
    position: relative;
    display: block;
}

.accordion-box-style1--instyle2 {
    position: relative;
    display: block;
}

.accordion-box-style1--instyle2 .accordion {
    margin-bottom: 44px;
    padding: 0px 0px 0px;
}

.accordion-box-style1--instyle2 .accordion .accord-btn {
    padding-top: 0px;
    padding-left: 30px;
    padding-bottom: 0px;
}

.accordion-box-style1--instyle2 .accordion .accord-btn:before {
    display: none;
}

.accordion-box-style1--instyle2 .accordion .accord-btn::after {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 0px solid #c5c5c5 !important;
    border-radius: 0%;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    margin: 1px 0;
}

.accordion-box-style1--instyle2 .accordion .accord-btn h4 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    font-family: var(--thm-font-2);
}

.accordion-box-style1--instyle2 .accordion .accord-btn:hover h4,
.accordion-box-style1--instyle2 .accordion .accord-btn.active h4 {
    color: var(--thm-base);
}

.accordion-box-style1--instyle2 .accordion .accord-content {
    padding-top: 14px;
    padding-left: 30px;
    padding-bottom: 0px;
}



/*** 
=============================================
    Faq Form Area Style      
============================================= 
***/
.faq-form-area {
    position: relative;
    display: block;
    background-color: #f0f1f2;
    padding: 120px 0 120px;
    overflow: hidden;
    z-index: 10;
}

.faq-form-area__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    max-width: 915px;
    width: 100%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: right center;
    background-size: cover;
    z-index: -1;
}

.faq-form-box {
    position: relative;
    display: block;
}

.faq-form-box .top-title {
    position: relative;
    display: block;
    margin-top: -9px;
    padding-bottom: 24px;
}

.faq-form-box .top-title h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 900;
}

.faq-form-box form {
    position: relative;
    display: block;
    max-width: 950px;
}

.faq-form-box form .input-box {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.faq-form-box form input[type="text"],
.faq-form-box form input[type="email"],
.faq-form-box form textarea {
    position: relative;
    display: block;
    background: transparent;
    width: 100%;
    height: 60px;
    border: 0px solid #e3e3e3;
    border-bottom: 2px solid #c0c6ca;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    padding-left: 0px;
    padding-right: 0px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.faq-form-box form textarea {
    height: 170px;
}

.faq-form-box form input[type="text"]:focus {
    color: #000000;
    border-color: var(--thm-base);
}

.faq-form-box form input[type="email"]:focus {
    color: #000000;
    border-color: var(--thm-base);
}

.faq-form-box form textarea:focus {
    color: #000000;
    border-color: var(--thm-base);
}


.faq-form-box form input[type="text"]::-webkit-input-placeholder {
    color: #444444;
}

.faq-form-box form input[type="text"]:-moz-placeholder {
    color: #444444;
}

.faq-form-box form input[type="text"]::-moz-placeholder {
    color: #444444;
}

.faq-form-box form input[type="text"]:-ms-input-placeholder {
    color: #444444;
}


.faq-form-box form input[type="email"]::-webkit-input-placeholder {
    color: #444444;
}

.faq-form-box form input[type="email"]:-moz-placeholder {
    color: #444444;
}

.faq-form-box form input[type="email"]::-moz-placeholder {
    color: #444444;
}

.faq-form-box form input[type="email"]:-ms-input-placeholder {
    color: #444444;
}


.faq-form-box form textarea::-webkit-input-placeholder {
    color: #444444;
}

.faq-form-box form textarea:-moz-placeholder {
    color: #444444;
}

.faq-form-box form textarea::-moz-placeholder {
    color: #444444;
}

.faq-form-box form textarea:-ms-input-placeholder {
    color: #444444;
}

.faq-form-box form .button-box {
    position: relative;
    display: block;
    padding-top: 5px;
}



/*** 
=============================================
    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;
    z-index: -1;
}

.coming-soon-page-style1__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #0b0d26;
    opacity: 0.80;
}

.coming-soon-page-style1__content {
    position: relative;
    display: block;
    max-width: 805px;
    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;
    color: #ffffff;
    font-size: 60px;
    line-height: 70px;
    font-weight: 900;
    font-family: var(--thm-font-2);
    z-index: 2;
}

.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.6);
    background-color: rgb(255, 255, 255, 3%);
    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: 26px;
    line-height: 38px;
    font-weight: 600;
}

.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-base);
    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-page__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #d90528;
    opacity: 0.85;
}

.error-content {
    position: relative;
    display: block;
}

.error-content .big-title {
    position: relative;
    display: block;
    margin-bottom: 24px;
}

.error-content .big-title h2 {
    color: #ffffff;
    font-size: 200px;
    line-height: 180px;
    font-family: var(--thm-font);
    font-weight: 700;
    text-transform: uppercase;
}

.error-content .title {
    position: relative;
    display: block;
    margin-bottom: 19px;
}

.error-content .title h2 {
    color: #ffffff;
    font-size: 55px;
    line-height: 1.2em;
    font-family: var(--thm-font);
}

.error-content .text {
    position: relative;
    display: block;
}

.error-content .text p {
    color: #ffffff;
    font-size: 28px;
    line-height: 38px;
    font-family: var(--thm-font);
    font-weight: 700;
}

.error-page-search-box {
    position: relative;
    display: inline-block;
    max-width: 570px;
    width: 100%;
    padding-top: 43px;
}

.error-page-search-box .search-form {
    position: relative;
    display: block;
}

.error-page-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background: #ffffff;
    border-radius: 0px;
    border: 0px solid #000000;
    color: #e2e2e2;
    font-size: 17px;
    font-weight: 500;
    padding-left: 30px;
    padding-right: 70px;
    border-radius: 30px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.error-page-search-box .search-form button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    right: 0px;
    width: 60px;
    height: 60px;
    color: var(--thm-black);
    font-size: 26px;
    font-weight: 400;
    background: #f3f1f1;
    text-align: center;
    transition: all 500ms ease 0s;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.error-page-search-box .search-form button i {
    position: relative;
    top: 0px;
    font-weight: 600;
}

.error-page-search-box .search-form input[type="text"]:focus {
    color: var(--thm-black);
}

.error-page-search-box .search-form input[type="text"]:focus+button,
.error-page-search-box .search-form button:hover {
    color: var(--thm-base);
}

.error-page-search-box .search-form input::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.error-page-search-box .search-form input:-moz-placeholder {
    color: var(--thm-gray);
}

.error-page-search-box .search-form input::-moz-placeholder {
    color: var(--thm-gray);
}

.error-page-search-box .search-form input:-ms-input-placeholder {
    color: var(--thm-gray);
}

.error-content .btns-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 30px;
}

.error-content .btns-box .btn-one {
    color: #000000;
    border-radius: 35px;
}

.error-content .btns-box:hover .btn-one {
    color: #ffffff;
}

.error-content .btns-box .btn-one::after {
    background-color: #ffffff;
}





























#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;
}

/*--------------------------------------------------
# End Css 
----------------------------------------------------*/