/*--------------------------------------------------------------
>>> 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: 'Open Sans', sans-serif;
    --thm-font-2: 'recoletaregular_demo';
    --thm-base: #33cc33;
    --thm-base-rgb: 255, 167, 43;
    --thm-primary: #4287e3;
    --thm-primary-rgb: 66, 135, 227;
    --thm-gray: #777777;
    --thm-black: #222222;
    --thm-black-rgb: 34, 34, 34;
    --thm-gray-bg: #F7F7F7;
    --thm-main-bg: #222222;
}

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


::-webkit-scrollbar {width: 10px;}
::-webkit-scrollbar-track {background: #3c3c3c;}
::-webkit-scrollbar-thumb {background: #33cc33;}


.auto-container {
    position: static;
    max-width: 1320px;
    padding: 0px 12px;
    margin: 0 auto;
}

.row {
    --bs-gutter-x: 24px;
}

.gutter-y-30 {
    --bs-gutter-y: 24px;
}

body {
    font-family: var(--thm-font);
    color: #111;
    font-size: 15.2px;
    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: #fff;
    font-family: var(--thm-font-2);
    font-weight: 400;
    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: 12px;
    padding-right: 12px;
}


@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}


::-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: 40px;
}

.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);

    background-color: #33cc33;
    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));*/
    background: linear-gradient(90deg, rgb(72 72 72), 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: 500;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
    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: 30px;
}

.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 i {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 27px;
    line-height: 27px;
    font-weight: 500;
}

.sidebar-contact-info ul li .inner .icon span.map-marker {
    color: var(--thm-base);
    position: relative;
    top: 0px;
    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: #fff0;
    border-bottom: 1px solid #e9e9e9;
}

.accordion-box-style1 .accordion:last-child {
    margin-bottom: 0;
}

.accordion-box-style1 .accordion .accord-btn {
    position: relative;
    display: block;
    cursor: pointer;
    padding-top: 20px;
    padding-left: 40px;
    padding-bottom: 20px;
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-box-style1 .accordion .accord-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: transparent;
    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: #f1f1f1;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    transition: all 500ms ease;
    text-transform: capitalize;
}


.accordion-box-style1 .accordion .accord-btn:hover h4,
.accordion-box-style1 .accordion .accord-btn.active h4 {
    color: var(--thm-base);
}

.accordion-box-style1 .accordion .accord-btn::after {
    font-family: 'icomoon' !important;
    position: absolute;
    content: "\e91c";
    top: 50%;
    left: 0px;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1f1f1;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    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-base);
    content: "\e91c";
}

.accordion-box-style1 .accordion .accord-content {
    position: relative;
    padding-top: 0px;
    padding-left: 40px;
    padding-bottom: 22px;
    padding-right: 0px;
    display: none;
    margin-top: -12px;
}

.accordion-box-style1 .accordion .accord-content.collapsed {
    display: block;
}

.accordion-box-style1 .accordion .accord-content p {
    margin: 0;
    color: #fff;
}





/*== Review Css ======*/
.review-box {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 15px;
}

.review-box ul {
    display: block;
    overflow: hidden;
    margin-top: 10px;
}

.review-box ul li {
    display: inline-block;
    margin-right: 0px;
    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;
    padding-bottom: 35px;
}

.sec-title__shape {
    position: relative;
    display: block;
    width: 100px;
}

.sec-title__shape.item-center {
    margin: 0 auto;
}

.sec-title h2 {
    color: #f1f1f1;
    font-size: 32px;
    line-height: 1.3em;
    font-weight: 400;
    text-transform: capitalize;
    margin: 5px 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: 31px;
    padding-right: 32px;
    padding-bottom: 7px;
    background-color: transparent;
    color: #ffffff;
    font-size: 16px;
    line-height: 44px;
    font-weight: 400;
    text-transform: capitalize;
    -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: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:before {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
    width: 3px;
    content: "";
    background: var(--thm-black);
    transition-duration: 800ms;
    z-index: 1;
}

.btn-one:hover:before {
    width: 100%;
}

.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: 5px;
    font-size: 14px;
}



/*== Btn Two Css ======*/
.btn-two {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-base);
    font-size: 16px;
    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: 12px;
    height: 12px;
    background-color: transparent;
    border: 1px solid #e2e2e2;
    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 {
    border-color: var(--thm-base);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 4px;
    background-color: #8c8c8c;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active::before {
    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;
}

.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: #33cc33;
}

.scroll-to-top .scroll-bar-text {
    color: #33cc33;
    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);
    }
}





/*------------------------------------------
    Team Style1 Css
--------------------------------------------*/
.team-style1 {
    position: relative;
    display: block;
    background-color: #f7f7f7;
    padding: 120px 0px 96px;
    z-index: 11;
}

.single-team-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 20px 20px 22px;
    margin-bottom: 24px;
    z-index: 1;
}

.single-team-style1::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border: 1px solid var(--thm-black);
    opacity: 0;
    transform: perspective(400px) scaleX(0.7);
    transform-origin: center;
    z-index: -1;
}

.single-team-style1:hover::before {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}


.single-team-style1 .img-box {
    position: relative;
    display: block;
}

.single-team-style1 .img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-team-style1 .img-box .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-base);
    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;
    z-index: 1;
}

.single-team-style1:hover .img-box .inner::before {
    opacity: 0.80;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.single-team-style1 .img-box .inner img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.single-team-style1:hover .img-box .inner img {
    transform: scale(1.05) rotate(0deg);
}



.single-team-style1 .img-box .social-link-box {
    position: absolute;
    bottom: -80px;
    right: 10px;
    z-index: 3;
}

.single-team-style1 .img-box .social-link-box ul {
    position: relative;
    display: block;
}

.single-team-style1 .img-box .social-link-box ul li {
    position: relative;
    display: block;
}

.single-team-style1 .img-box .social-link-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 50px;
    height: 50px;
    font-size: 16px;
    line-height: 16px;
    background-color: var(--thm-black);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-team-style1 .img-box .social-link-box ul li a.bg-color-2 {
    background-color: #272727;
}

.single-team-style1 .img-box .social-link-box ul li:hover a {
    background-color: var(--thm-base);
}



.single-team-style1 .title-box {
    position: relative;
    display: block;
    padding-top: 25px;
    padding-left: 10px;
    padding-right: 10px;
}

.single-team-style1 .title-box h3 {
    font-size: 24px;
    line-height: 32px;
}

.single-team-style1 .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .title-box h3 a:hover {
    color: var(--thm-base);
}

.single-team-style1 .title-box span {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}



/*------------------------------------------
    Team Style1 In Style2 Css
--------------------------------------------*/
.team-style1--instyle2 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0px 96px;
    z-index: 11;
}

.team-style1--instyle2.pdt0 {
    padding-top: 0;
}

.team-style1--instyle2.pdtb120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.team-style1--instyle2 .single-team-style1 {
    background-color: var(--thm-gray-bg);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.team-style1--instyle2 .single-team-style1:hover {
    background-color: #ffffff;
}



/*** 
=============================================
 Case Style1 Css 
=============================================
***/
.case-style1 {
    position: relative;
    display: block;
    padding: 85px 0px 100px;
    background-color: #3c3c3c;
    z-index: 10;
}

.single-case-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #272727;
    padding: 20px;
    margin-bottom: 24px;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-case-style1:hover {
    border-color: transparent;
}

.single-case-style1::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 1px;
    right: 0px;
    border: 1px solid var(--thm-black);
    opacity: 0;
    transform: perspective(400px) scaleX(0.7);
    transform-origin: center;
    z-index: -1;
}

.single-case-style1:hover::before {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-case-style1 .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-case-style1 .img-holder img {
    width: 100%;
    transform: scale(1.0);
    height: 300px;
    object-fit: cover;
}

.single-case-style1:hover .img-holder img {
    transform: scale(1.05) rotate(1deg);
}

.single-case-style1 .img-holder-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    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;
    z-index: 1;
}

.single-case-style1: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-case-style1 .img-holder .overlay-button {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(20px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(20px);
    transform: perspective(400px) rotateX(0deg) translateY(20px);
    -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-case-style1:hover .img-holder .overlay-button {
    opacity: 1.0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0px);
    transform: perspective(400px) rotateX(0deg) translateY(0px);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.single-case-style1 .img-holder .overlay-button a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thm-base);
    width: 70px;
    height: 70px;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-case-style1 .img-holder .overlay-button a:hover {
    color: var(--thm-base);
    background-color: #ffffff;
}


.single-case-style1 .title-holder {
    position: relative;
    display: block;
    padding: 40px 10px 0;
    z-index: 1;
}

.single-case-style1__bg {
    position: absolute;
    top: 0;
    left: -20px;
    bottom: -40px;
    right: -20px;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    opacity: 0;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    -moz-transform: translateY(20%);
    transform: translateY(20%);
    z-index: -1;
}

.single-case-style1:hover .single-case-style1__bg {
    opacity: 0.05;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}



.single-case-style1 .title-holder .count-box {
    position: relative;
    display: block;
    color: #F7F7F7;
    font-size: 90px;
    line-height: 100px;
    font-weight: 400;
    font-family: var(--thm-font-2);
    text-transform: capitalize;
}

.single-case-style1 .title-holder .category-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: var(--thm-base);
    font-size: 14px;
    line-height: 14px;
    font-family: var(--thm-font);
    font-weight: 400;
    height: 35px;
    border: 1px solid rgba(34, 34, 34, 0.1);
    border-radius: 100px;
    margin-bottom: 24px;
    margin-top: 95px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.single-case-style1:hover .category-box {
    color: #ffffff;
    border-color: var(--thm-black);
    background-color: var(--thm-black);
}

.single-case-style1 .title-holder h3 {
    font-size: 24px;
    line-height: 33px;
}

.single-case-style1 .title-holder h3 a {
    color: var(--thm-black);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.single-case-style1 .title-holder h3 a:hover {
    color: var(--thm-base);
}


.case-style1__btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 26px;
}

.case-style1__btn-box .btn-one {
    color: var(--thm-black);
}

.case-style1__btn-box .btn-one:after {
    border: 1px solid var(--thm-black);
    background-color: transparent;
}

.case-style1__btn-box .btn-one:hover {
    color: #ffffff;
}



/*------------------------------------------
    Case Style2 Css
--------------------------------------------*/
.case-style2 {
    position: relative;
    display: block;
    padding: 120px 0px 96px;
    background-color: #ffffff;
    z-index: 10;
}

.case-style2__top-text {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 48px;

}

.case-style2__top-text .sec-title {
    padding-bottom: 0;
}

.case-style2__top-text .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-bottom: 12px;
}

.case-style2__top-text .btn-box .btn-one::before {
    background-color: var(--thm-base);
}

.case-style2__top-text .btn-box .btn-one::after {
    background-color: var(--thm-black);
}

.case-style2 ul li:nth-child(2),
.case-style2 ul li:nth-child(4) {
    margin-top: 50px;
}

.case-style2 .container-fluid {
    padding-right: 0;
    padding-left: 0;
    max-width: 1920px;
}

.single-case-style2 {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #ffffff;
    padding: 1px;
    margin-bottom: 24px;
}

.single-case-style2__border {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    border: 1px solid var(--thm-black);
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(20px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(20px);
    transform: perspective(400px) rotateX(0deg) translateY(20px);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
    z-index: 1;
}

.single-case-style2:hover .single-case-style2__border {
    opacity: 1;
    transition: all .4s ease-in-out .1s;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0px);
    transform: perspective(400px) rotateX(0deg) translateY(0px);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
}

.single-case-style2 .img-holder {
    position: relative;
    display: block;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-case-style2 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.single-case-style2 .img-holder .inner img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.single-case-style2:hover .img-holder .inner img {
    transform: scale(1.05) rotate(0deg);
}

.single-case-style2 .img-holder .overlay-content {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border: 20px solid #ffffff;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(-20px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(-20px);
    transform: perspective(400px) rotateX(0deg) translateY(-20px);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
    z-index: 2;
}

.single-case-style2:hover .img-holder .overlay-content {
    opacity: 1;
    transition: all .6s ease-in-out .1s;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0px);
    transform: perspective(400px) rotateX(0deg) translateY(0px);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
}

.single-case-style2 .img-holder-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0;
    -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;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-case-style2: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-case-style2 .img-holder .overlay-content .btn-box {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.1s ease-in-out 0.9s;
}

.single-case-style2:hover .img-holder .overlay-content .btn-box {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.5s ease-in-out 0.5s;
}


.single-case-style2 .img-holder .overlay-content .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thm-base);
    width: 70px;
    height: 70px;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-case-style2 .img-holder .overlay-content .btn-box a:hover {
    color: var(--thm-base);
    background-color: #ffffff;
}


.single-case-style2 .img-holder .overlay-content .bottom-content {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 20px;
    opacity: 0;
    transform: translateY(70px);
    transition: all 0.1s ease-in-out 0.9s;
}

.single-case-style2:hover .img-holder .overlay-content .bottom-content {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.5s ease-in-out 0.5s;
}

.single-case-style2 .img-holder .overlay-content .bottom-content .category {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    height: 35px;
    border-radius: 100px;
    background-color: #272727;
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    font-family: var(--thm-font);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-case-style2 .img-holder .overlay-content .bottom-content h3 {
    font-size: 24px;
    line-height: 34px;
    margin-top: 24px;
}

.single-case-style2 .img-holder .overlay-content .bottom-content h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-case-style2 .img-holder .overlay-content .bottom-content h3 a:hover {
    color: var(--thm-base);
}



/*** 
=============================================
    Case Style3 Css
=============================================
***/
.case-style3 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0px 120px;
    z-index: 10;
}

.case-style3__top-text {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 53px;
}

.case-style3__top-text .sec-title {
    padding-bottom: 0;
}

.case-style3__top-text .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    top: -12px;
}

.case-style3__top-text .btn-box .btn-one:before {
    background: var(--thm-base);
}

.case-style3__top-text .btn-box .btn-one:after {
    background-color: var(--thm-black);
}

.case-style3 .auto-container {
    max-width: 1461px;
}



.single-case-style3 {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 1px;
    margin-bottom: 24px;
}

.single-case-style3__border {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    border: 1px solid var(--thm-black);
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(20px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(20px);
    transform: perspective(400px) rotateX(0deg) translateY(20px);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
    z-index: 1;
}

.single-case-style3:hover .single-case-style3__border {
    opacity: 1;
    transition: all .4s ease-in-out .1s;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0px);
    transform: perspective(400px) rotateX(0deg) translateY(0px);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
}

.single-case-style3 .img-holder {
    position: relative;
    display: block;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-case-style3 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    mix-blend-mode: multiply;
    z-index: 2;
}

.single-case-style3 .img-holder .inner img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.single-case-style3 .img-holder .inner:hover img {
    transform: scale(1.05) rotate(0deg);
}

.single-case-style3 .img-holder-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0;
    -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;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-case-style3: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-case-style3 .img-holder .overlay-content {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border: 20px solid #ffffff;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(-20px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(-20px);
    transform: perspective(400px) rotateX(0deg) translateY(-20px);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
    z-index: 2;
}

.single-case-style3:hover .img-holder .overlay-content {
    opacity: 1;
    transition: all .6s ease-in-out .1s;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0px);
    transform: perspective(400px) rotateX(0deg) translateY(0px);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
}

.single-case-style3 .img-holder .overlay-content .btn-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 100px;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.1s ease-in-out 0.9s;
}

.single-case-style3:hover .img-holder .overlay-content .btn-box {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.5s ease-in-out 0.5s;
}

.single-case-style3 .img-holder .overlay-content .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thm-base);
    width: 70px;
    height: 70px;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-case-style3 .img-holder .overlay-content .btn-box a:hover {
    color: var(--thm-base);
    background-color: #ffffff;
}

.single-case-style3 .img-holder .overlay-content .text-box {
    position: absolute;
    left: 30px;
    bottom: 20px;
    right: 0;
    opacity: 0;
    transform: translateY(70px);
    transition: all 0.1s ease-in-out 0.9s;
    z-index: 3;
}

.single-case-style3:hover .img-holder .overlay-content .text-box {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.5s ease-in-out 0.5s;
}

.single-case-style3 .img-holder .overlay-content .text-box .category {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    height: 35px;
    border-radius: 100px;
    background-color: #272727;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    margin-bottom: 24px;
}

.single-case-style3 .img-holder .overlay-content .text-box .category span {
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    font-family: var(--thm-font);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-case-style3 .img-holder .overlay-content .text-box h3 {
    font-size: 22px;
    line-height: 33px;
}

.single-case-style3 .img-holder .overlay-content .text-box h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-case-style3 .img-holder .overlay-content .text-box h3 a:hover {
    color: var(--thm-base);
}


.single-case-style3__shape {
    position: absolute;
    bottom: 19px;
    right: 17px;
    z-index: 5;
    left: 60px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.2s ease-in-out 0.2s;
    left: 30%;
}

.single-case-style3__shape img {
    width: 100%;
}

.single-case-style3:hover .single-case-style3__shape {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.5s ease-in-out 0.5s;
}



/*------------------------------------------
    Case Page Two Css
--------------------------------------------*/
.case-page-two {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    background-color: #ffffff;
    z-index: 10;
}

.case-sidebar-box {
    position: relative;
    display: block;
}



/*** 
=============================================
   Case Details Page Css 
=============================================
***/
.case-details-page {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0px 120px;
    z-index: 10;
}

.case-details-page__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.case-details-page__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-black);
    opacity: 0;
    z-index: 2;
    transition: all 500ms linear;
    transition-delay: 0.2s;
}

.case-details-page__img:hover::before {
    opacity: 0.70;
}

.case-details-page__img img {
    width: 100%;
    transform: scale(1.0);
}

.case-details-page__img:hover img {
    transform: scale(1.02) rotate(0deg);
}



.case-details-page__content {
    position: relative;
    display: block;
    margin-top: 50px;
}

.case-details-page__content .text-box {
    position: relative;
    display: block;
}

.case-details-page__content .text-box .category-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    height: 35px;
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    font-family: var(--thm-font);
    font-weight: 400;
    background-color: var(--thm-black);
    border-radius: 100px;
    margin-bottom: 27px;
}

.case-details-page__content .text-box h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 13px;
}

.case-details-page__content .text-box p {
    margin: 0;
}

.case-details-page__content .text-box-2 {
    position: relative;
    display: block;
    margin-top: 35px;
}

.case-details-page__content .text-box-2 h3 {
    font-size: 24px;
    line-height: 33px;
    text-transform: capitalize;
    margin-bottom: 11px;
}

.case-details-page__content .text-box-2 p+p {
    margin-top: 12px;
}


.case-details-page__content .text-box-3 {
    position: relative;
    display: block;
    margin-top: 35PX;
}

.case-details-page__content .text-box-3 h3 {
    font-size: 24px;
    line-height: 33px;
    text-transform: capitalize;
    margin-bottom: 11px;
}

.case-details-page__content .text-box-3 p {
    margin: 0;
}

.case-details-page__content .text-box-3 ul {
    position: relative;
    display: block;
    margin-top: 17px;
}

.case-details-page__content .text-box-3 ul li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 22px;
    padding-left: 35px;
}

.case-details-page__content .text-box-3 ul li+li {
    margin-top: 17px;
}

.case-details-page__content .text-box-3 ul li .icon {
    position: absolute;
    top: 3px;
    left: 0;
    line-height: 0;
}

.case-details-page__content .text-box-3 ul li .icon span {
    color: var(--thm-base);
    font-size: 16px;
    line-height: 16px;
}



.case-details-page__content .case-details-page__nav-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(31, 36, 46, 0.1);
    border-bottom: 1px solid rgba(31, 36, 46, 0.1);
    margin-top: 46px;
    padding-top: 41px;
    padding-bottom: 42px;
}

.case-details-page__content .case-details-page__nav-box .arrow-box {
    position: relative;
    display: flex;
    align-items: center;
}

.case-details-page__content .case-details-page__nav-box .arrow-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 25px;
    line-height: 25px;
    top: -2px;
}

.case-details-page__content .case-details-page__nav-box .arrow-box h5 {
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
    padding-left: 3px;
}

.case-details-page__content .case-details-page__nav-box .arrow-box h5 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.case-details-page__content .case-details-page__nav-box .arrow-box h5 a:hover {
    color: var(--thm-base);
}

.case-details-page__content .case-details-page__nav-box .arrow-box.right h5 {
    padding-right: 5px;
    padding-left: 0;
}



.case-details-page__sidebar {
    position: relative;
    display: block;
}

.case-details-page__sidebar .sidebar-case-info {
    margin-bottom: 50px;
}



.case-details-page__faq-content {
    position: relative;
    display: block;
    margin-top: 112px;
}

.case-details-page__faq-content .top-title {
    position: relative;
    display: block;
    padding-bottom: 14px;
}

.case-details-page__faq-content .top-title h2 {
    font-size: 32px;
    line-height: 42px;
    text-transform: capitalize;
    margin: 0 0 10px;
}




/*---------------------------------------
  Scrolling Text Style1 Css
-----------------------------------------*/
.scrolling-text-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    overflow: hidden;
    margin-top: -8px;
    padding-bottom: 83px;
    z-index: 10;
}

.scrolling-text-style1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 20%;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

.scrolling-text-style1:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20%;
    background: rgb(255, 255, 255);
    background: linear-gradient(280deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

.scrolling-text-style1 .inner {
    position: relative;
    display: block;
}

.scrolling-text-style1 .inner ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: fit-content;
}

.scrolling-text-style1 .inner ul:hover {
    animation-play-state: paused;
}

.scrolling-text-style1 .inner ul li {
    position: relative;
    display: block;
    white-space: nowrap;
    float: left;
    color: var(--thm-black);
    font-size: 150px;
    font-weight: 400;
    line-height: 160px;
    font-family: var(--thm-font-2);
    margin-left: 50px;
    transition: all .4s ease;
}

.scrolling-text-style1 .inner ul li span {
    position: relative;
    display: inline-block;
    color: transparent;
    text-transform: capitalize;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(34, 34, 34, 0.2);
    transition: all 1s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.scrolling-text-style1 .inner ul li:hover span {
    color: var(--thm-black);
}



/*---------------------------------------
  Features Style1 Css
-----------------------------------------*/
.features-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.features-style1__top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--thm-black);
}

.features-style1__shape1 {
    position: absolute;
    left: 15px;
    bottom: 0;
    opacity: 0.10;
}



.features-style1__content {
    position: relative;
    display: block;
    padding-right: 82px;
    margin-right: 28px;
}

.features-style1__content .top-title {
    position: relative;
    display: block;
    margin-top: -7px;
    margin-bottom: 33px;
}

.features-style1__content .top-title h2 {
    font-size: 54px;
    line-height: 1.2em;
    margin-bottom: 4px;
}

.features-style1__content .top-title p {
    margin: 0;
}

.features-style1__content ul {
    position: relative;
    display: block;
}

.features-style1__content ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(34, 34, 34, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.features-style1__content ul li:last-child {
    margin-bottom: 0;
}

.features-style1__content ul li .inner {
    position: relative;
    display: block;
    padding-left: 100px;
    padding-right: 0px;
}

.features-style1__content ul li .inner .counting-box {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--thm-black);
    font-size: 24px;
    line-height: 33px;
    font-family: var(--thm-font-2);
    font-weight: 400;
}

.features-style1__content ul li .inner .text-box {
    position: relative;
    display: block;
}

.features-style1__content ul li .inner .text-box h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
}

.features-style1__content ul li .inner .text-box p {
    margin: 0;
}

.features-style1__content ul li .inner .text-box .btns {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 19px;
}

.features-style1__content ul li .inner .text-box .btns a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-style1__content ul li .inner .text-box .btns a:hover {
    color: var(--thm-base);
}

.features-style1__content ul li .inner .icon-box {
    position: absolute;
    top: 6px;
    right: 0;
    width: 80px;
    height: 80px;
    line-height: 0;
}

.features-style1__content ul li .inner .icon-box .round-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    background-color: #E8E8E8;
    border-radius: 50%;
}

.features-style1__content ul li .inner .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 80px;
    line-height: 80px;
}



.features-style1__img {
    position: relative;
    display: block;
    background-color: #ffffff;
    border: 1px solid var(--thm-black);
    padding: 25px 25px 25px;
    margin-left: -28px;
}

.features-style1__shape-2 {
    position: absolute;
    top: 0;
    right: -194px;
    opacity: 0.10;
    z-index: -1;
}

.features-style1__img .box {
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background-color: var(--thm-base);
    z-index: 1;
}

.features-style1__img .box.one {
    top: -1px;
    left: -1px;
    animation: myanimation__bgcolor 10s infinite;
}

.features-style1__img .box.two {
    top: -1px;
    left: auto;
    right: -1px;
    background-color: var(--thm-black);
    animation: myanimation__bgcolor 5s infinite;
}

.features-style1__img .box.three {
    top: auto;
    left: -1px;
    bottom: -1px;
    background-color: var(--thm-black);
    animation: myanimation__bgcolor 3s infinite;
}

.features-style1__img .box.four {
    top: auto;
    left: auto;
    bottom: -1px;
    right: -1px;
    background-color: var(--thm-black);
    animation: myanimation__bgcolor 2s infinite;
}



@keyframes myanimation__bgcolor {
    0% {
        background-color: var(--thm-base);
    }

    25% {
        background-color: var(--thm-black);
    }

    50% {
        background-color: var(--thm-base);
    }

    75% {
        background-color: var(--thm-black);
    }

    100% {
        background-color: red;
    }
}


.features-style1__img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(var(--thm-base-rgb), 1.0), rgba(var(--thm-black-rgb), 1.0));
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.features-style1__img-inner img {
    width: 100%;
    transform: scale(1);
    transition: .5s linear;
    height: 698px;
    object-fit: cover;
}

.features-style1__img-inner:hover img {
    opacity: 0.70;
    transform: scale(1.05) rotate(1deg);
}


.home-abt-img{
    display: block;
    margin: 0 auto;
    width: 80%;
}



/*** 
=============================================
   Features Style2 Css 
=============================================
***/
.features-style2 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 114px 0px 120px;
    z-index: 10;
}

.features-style2__shape1 {
    position: absolute;
    left: 15px;
    bottom: 0;
    opacity: 0.10;
}

.features-style2__shape-2 {
    position: absolute;
    top: 126px;
    right: 118px;
    opacity: 0.10;
    z-index: -1;
}

.features-style2 .top-title {
    position: relative;
    display: block;
    padding-bottom: 55px;
}

.features-style2 .top-title h2 {
    font-size: 54px;
    line-height: 1.2em;
    margin-bottom: 14px;
}

.features-style2 .top-title p {
    margin: 0;
}



.features-style2__content {
    position: relative;
    display: revert;
}

.features-style2__content .row {
    --bs-gutter-x: 245px;
}

.features-style2__content .left-box {
    position: relative;
    display: block;
}

.features-style2__content .right-box {
    position: relative;
    display: block;
}

.features-style2__content ul {
    position: relative;
    display: block;
}

.features-style2__content ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(34, 34, 34, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.features-style2__content ul li:last-child {
    margin-bottom: 0;
}

.features-style2__content ul li .inner {
    position: relative;
    display: block;
    padding-left: 85px;
    padding-right: 120px;
}

.features-style2__content ul li .inner .counting-box {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--thm-black);
    font-size: 24px;
    line-height: 33px;
    font-family: var(--thm-font-2);
    font-weight: 400;
}

.features-style2__content ul li .inner .text-box {
    position: relative;
    display: block;
}

.features-style2__content ul li .inner .text-box h3 {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 10px;
}

.features-style2__content ul li .inner .text-box p {
    margin: 0;
}

.features-style2__content ul li .inner .text-box .btns {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 19px;
}

.features-style2__content ul li .inner .text-box .btns a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-style2__content ul li:hover .inner .text-box .btns a {
    color: var(--thm-base);
    transform: scale(1.05) rotate(45deg);
}

.features-style2__content ul li .inner .icon-box {
    position: absolute;
    top: 6px;
    right: 0;
    width: 80px;
    height: 80px;
    line-height: 0;
}

.features-style2__content ul li .inner .icon-box .round-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    background-color: #E8E8E8;
    border-radius: 50%;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.features-style2__content ul li:hover .inner .icon-box .round-shape {
    background-color: var(--thm-base);
    transform: scale(1.05);
}


.features-style2__content ul li .inner .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 80px;
    line-height: 80px;
}





/*** 
=============================================
   Video gallery style1 Css
=============================================
***/
.video-gallery-style1 {
    position: relative;
    display: block;
    padding: 285px 0px 285px;
    z-index: 10;
}

.video-gallery-style1-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;
}

.video-gallery-style1-shape {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: multiply;
}

.video-gallery-style1__big-title {
    position: absolute;
    left: calc(50% - 1234px/2 - 194px);
    bottom: -204px;
    color: #FFFFFF;
    font-size: 400px;
    line-height: 0.9em;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    z-index: -1;
}



.video-gallery-style1__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-gallery-style1__content .play-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border: 1px solid #ffffff;
    background-color: transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.video-gallery-style1__content .play-btn:hover {
    background-color: var(--thm-black);
}

.video-gallery-style1__content .play-btn:after,
.video-gallery-style1__content .play-btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    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__content .play-btn:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-gallery-style1__content .play-btn .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.video-gallery-style1__content .play-btn .video-popup span::before {
    position: relative;
    color: #ffffff;
    font-size: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-gallery-style1__content .play-btn:hover .video-popup span::before {
    color: var(--thm-base);
}



/*** 
=============================================
   Video gallery style2 Css
=============================================
***/
.video-gallery-style2 {
    position: relative;
    display: block;
    background-color: var(--thm-main-bg);
    z-index: 10;
}

.video-gallery-style2__shape1 {
    position: absolute;
    top: 25px;
    left: 25px;
    opacity: 0.10;
}

.video-gallery-style2__shape2 {
    position: absolute;
    top: 240px;
    left: 83px;
    opacity: 0.30;
}

.video-gallery-style2__shape2 img {
    -webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}

.video-gallery-style2__shape3 {
    position: absolute;
    left: 105px;
    bottom: 0;
    opacity: 0.10;
}

.video-gallery-style2__shape4 {
    position: absolute;
    top: 0;
    right: 102px;
    opacity: 0.10;
}

.video-gallery-style2__shape5 {
    position: absolute;
    left: 242px;
    bottom: 163px;
}

.video-gallery-style2__shape5 img {
    -webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}


.video-gallery-style2__shape6 {
    position: absolute;
    left: 482px;
    bottom: 46px;
    opacity: 0.10;
}

.video-gallery-style2__shape7 {
    position: absolute;
    top: 30px;
    right: 190px;
    opacity: 0.30;
}

.video-gallery-style2__shape8 {
    position: absolute;
    bottom: 160px;
    right: 95px;
    opacity: 0.10;
}



.video-gallery-style2__content {
    position: relative;
    display: block;
}

.video-gallery-style2__content .big-title {
    position: absolute;
    left: 0;
    bottom: 240px;
    color: #ffffff;
    font-size: 100px;
    line-height: 1.0em;
    font-weight: 400;
    font-family: var(--thm-font-2);
    text-transform: capitalize;
    z-index: 2;
}

.video-gallery-style2__content .big-title span {
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

.video-gallery-style2__img1 {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 50px;
    padding-right: 110px;
}

.video-gallery-style2__img1 .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.video-gallery-style2__img1 .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    background-color: var(--thm-black);
    z-index: 1;
}

.video-gallery-style2__img1:hover .inner::before {
    opacity: 0.60;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}

.video-gallery-style2__img1 .inner img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.video-gallery-style2__img1:hover .inner img {
    transform: scale(1.05) rotate(0deg);
}

.video-gallery-style2__img1 .inner .overly-box {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    mix-blend-mode: multiply;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
    z-index: 2;
}

.video-gallery-style2__img1:hover .inner .overly-box {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
}

.video-gallery-style2__img1 .inner .overly-box img {
    width: 100%;
}

.video-gallery-style2__img2 {
    position: relative;
    display: block;
    overflow: hidden;
}

.video-gallery-style2__img2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 1;
}

.video-gallery-style2__img2:hover::before {
    opacity: 0.60;
}

.video-gallery-style2__img2 img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.video-gallery-style2__img2:hover img {
    transform: scale(1.05) rotate(0deg);
}


.video-gallery-style2__img3 {
    position: relative;
    display: block;
    padding-left: 110px;
    padding-top: 120px;
}

.video-gallery-style2__img3 .play-btn {
    position: absolute;
    top: 90px;
    left: 0px;
}

.video-gallery-style2__img3 .play-btn .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 195px;
    height: 195px;
    background-color: var(--thm-base);
    color: #ffffff;
    font-size: 24px;
    line-height: 24px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.video-gallery-style2__img3 .play-btn .video-popup:after,
.video-gallery-style2__img3 .play-btn .video-popup:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 0%;
    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__img3 .play-btn .video-popup:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-gallery-style2__img3 .play-btn:hover .video-popup {
    color: var(--thm-base);
    background-color: #ffffff;
}

.video-gallery-style2__img3 .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 250px;
}

.video-gallery-style2__img3__shape1 {
    position: absolute;
    top: 63px;
    right: 127px;
    margin: 0 auto;
}

.video-gallery-style2__img3 .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 1;
}

.video-gallery-style2__img3 .inner:hover::before {
    opacity: 0.60;
}

.video-gallery-style2__img3 .inner img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.video-gallery-style2__img3 .inner:hover img {
    transform: scale(1.05) rotate(0deg);
}
























/*** 
=============================================
   Faq Style1 Css 
=============================================
***/
.faq-style1 {
    position: relative;
    display: block;
    background-color: #3c3c3c;
    padding: 85px 0 110px;
    z-index: 10;
}

.faq-style1__img-box {
    position: relative;
    display: block;
    padding-right: 45px;
}

.faq-style1__img-box-inner {
    position: relative;
    display: block;
    margin-left: -12px;
    margin-right: -12px;
}

.faq-style1__img-box-inner .single-box {
    position: relative;
    display: block;
    float: left;
    padding: 0px 12px 0px;
}

.faq-style1__img-box-inner .single-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.faq-style1__img-box-inner .single-box .inner img {
    width: 100%;
    transition: all 500ms ease;
}

.faq-style1__img-box-inner .single-box:hover .inner img {
    transform: scale(1.02) rotate(0deg);
}

.faq-style1__img-box-inner .single-box-2 {
    margin-top: 50px;
}

.faq-style1__img-box .overlay-box {
    position: absolute;
    top: 230px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 245px;
    height: 225px;
    background-color: var(--thm-black);
    padding: 28px 35px 0px;
    z-index: 1;
}

.faq-style1__img-box .overlay-box .box-one {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--thm-base);
}

.faq-style1__img-box .overlay-box h3 {
    color: #ffffff;
    font-size: 32px;
    line-height: 42px;
}


.faq-content-box {
    position: relative;
    display: block;
}

.faq-content-box .top-title {
    position: relative;
    display: block;
    margin-top: 11px;
    padding-bottom: 13px;
}

.faq-content-box .top-title h2 {
    font-size: 54px;
    line-height: 1.2em;
    text-transform: capitalize;
}

.faq-content-box .top-title p {
    margin: 4px 0 0;
    width: 100%;
    color: #f1f1f1;
}


.faq-style1--gray-bg {
    background-color: var(--thm-gray-bg);
    padding-bottom: 120px;
}

.faq-style1--gray-bg .accordion-box-style1 .accordion {
    background: transparent;
}
















/*** 
=============================================
   Digital Strategy Css 
=============================================
***/
.digital-strategy {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    padding: 114px 0 112px;
    z-index: 10;
}

.digital-strategy__shape1 {
    position: absolute;
    top: 135px;
    left: 90px;
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: -1;
}

.digital-strategy__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    width: calc((100% + 640px) / 2);
    z-index: -1;
}

.digital-strategy__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(104.43deg, #222222 -1.04%, rgba(34, 34, 34, 0.9) 23.69%, rgba(34, 34, 34, 0.9) 64.74%, rgba(34, 34, 34, 0.5) 100%);
}




.digital-strategy__title-box {
    position: relative;
    display: block;
}

.digital-strategy__title-box .top-title {
    position: relative;
    display: block;
}

.digital-strategy__title-box .top-title h5 {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.digital-strategy__title-box .top-title h2 {
    color: #ffffff;
    font-size: 54px;
    line-height: 1.2em;
    text-transform: capitalize;
    margin-bottom: 23px;
}

.digital-strategy__title-box .top-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 30px;
}




.digital-strategy .project-counting-box {
    position: relative;
    display: block;
    width: 195px;
    height: 215px;
    background-color: var(--thm-base);
    text-align: center;
    transform: translateY(50%);
}

.digital-strategy .project-counting-box .counting {
    position: relative;
    display: block;
    padding-top: 48px;
}

.digital-strategy .project-counting-box .counting h2 {
    position: relative;
    top: -12px;
    color: #ffffff;
    font-size: 54px;
    line-height: 54px;
}

.digital-strategy .project-counting-box .counting span {
    color: #ffffff;
    font-size: 54px;
    line-height: 54px;
    font-family: var(--thm-font-2);
    font-weight: 400;
}

.digital-strategy .project-counting-box .counting i {
    color: #ffffff;
    font-size: 10px;
    line-height: 10px;
}

.digital-strategy .project-counting-box p {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font-2);
}



.digital-strategy__content-box {
    position: relative;
    display: block;
    padding-left: 110px;
}

.digital-strategy__content-box .text-box {
    position: relative;
    display: block;
    top: -2px;
    padding-right: 35px;
}

.digital-strategy__content-box .text-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 30px;

}

.digital-strategy__content-box ul {
    position: relative;
    display: block;
    margin-top: 24px;
}

.digital-strategy__content-box ul li {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    font-family: var(--thm-font-2);
    font-weight: 400;
    padding-left: 20px;
}

.digital-strategy__content-box ul li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ffffff;
}

.digital-strategy__content-box ul li+li {
    margin-top: 8px;
}



.digital-strategy .progress-levels {
    position: relative;
    display: block;
    padding-top: 32px;
}

.digital-strategy .progress-levels .progress-box {
    position: relative;
    display: block;
    margin-top: 0;
}

.digital-strategy .progress-levels .progress-box .top h4 {
    color: #ffffff;
}

.digital-strategy .progress-levels .progress-box .top .skill-percent .count-text {
    color: #ffffff;
}

.digital-strategy .progress-levels .progress-box .top .skill-percent .percent {
    color: #ffffff;
}

.digital-strategy .progress-levels .progress-box .bar .bar-innner {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    background-color: transparent;
}

.digital-strategy .progress-box .bar .bar-fill {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}




.digital-strategy-checkbox {
    position: relative;
    display: block;
    margin-top: 24px;
}

.digital-strategy-checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--thm-font);
}

.digital-strategy-checkbox input[type="checkbox"] {
    display: none;
}

.digital-strategy-checkbox input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 7px;
    left: 0;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-color: transparent;
    border: 0px solid #8e8f8f;
    cursor: pointer;
    border-radius: 0;
    transition: all 300ms ease;
}

.digital-strategy-checkbox label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    font-family: 'icomoon' !important;
    content: "\e91f";
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    border-radius: 0%;
    opacity: 0;
    background-color: transparent;
    transition: all 300ms ease;
}

.digital-strategy-checkbox input[type="checkbox"]:checked+label span {
    border-color: none;
}

.digital-strategy-checkbox input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}










/*** 
=============================================
   Pricing Plan Css 
=============================================
***/
.pricing-plan {
    position: relative;
    display: block;
    background-color: var(--thm-gray-bg);
    padding: 120px 0 120px;
    z-index: 10;
}

.single-pricing-box {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #ffffff;
    padding: 42px 30px 50px;
    z-index: 1;
}

.single-pricing-box__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
    -webkit-transform: translateY(-50%, -50%);
    transform: translateY(-50%, -50%);
    opacity: 0;
    transition: background-image 0.2s ease;
    transition: all 0.2s ease;
    transform-origin: bottom right;
}

.single-pricing-box:hover .single-pricing-box__shape-bg {
    opacity: 1.0;
    width: 100%;
    transform-origin: left right;
}

.single-pricing-box_top {
    position: relative;
    display: block;
}

.single-pricing-box_top h2 {
    font-size: 32px;
    line-height: 44px;
}

.single-pricing-box_top h2 span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    top: -9px;
    padding-right: 3px;
}

.single-pricing-box_top h2 b {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.single-pricing-box_top h3 {
    font-size: 32px;
    line-height: 34px;
    padding-left: 20px;
    margin-top: 14px;
}

.single-pricing-box_top h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 15px;
    width: 10px;
    height: 10px;
    background-color: var(--thm-base);
}

.single-pricing-box ul {
    position: relative;
    display: block;
    border-top: 1px solid var(--thm-black);
    margin-top: 22px;
    padding-top: 21px;
}

.single-pricing-box ul li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    padding-left: 35px;
}

.single-pricing-box ul li+li {
    margin-top: 9px;
}

.single-pricing-box ul li .icon {
    position: absolute;
    top: 8px;
    left: 0;
    line-height: 0;
}

.single-pricing-box .btn-box {
    position: relative;
    display: block;
    margin-top: 44px;
}

.single-pricing-box .btn-box .btn-one {
    color: var(--thm-black);
}

.single-pricing-box .btn-box .btn-one:after {
    border: 1px solid var(--thm-black);
    background-color: transparent;
}

.single-pricing-box .btn-box .btn-one:before {
    background: var(--thm-base);
}

.single-pricing-box .btn-box .btn-one:hover {
    color: #ffffff;
}

.single-pricing-box .best-sell {
    position: absolute;
    top: 25px;
    right: 10px;
    background-color: var(--thm-base);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
    line-height: 25px;
    z-index: 1;
}

.single-pricing-box .best-sell:before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    bottom: 0px;
    right: -65px;
    background-color: var(--thm-base);
    z-index: -1;
}

.pricing-plan-carousel .owl-stage-outer {
    padding-bottom: 50px;
}




/*------------------------------------------
    Slogan Style1 Css
--------------------------------------------*/
.slogan-style1 {
    position: relative;
    display: block;
    background-color: #272727;
    padding: 55px 0px;
    overflow: hidden;
    z-index: 10;
}

.slogan-style1__left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 60px;
    background-color: var(--thm-base);
    clip-path: polygon(100% 70%, 0 0, 0 100%);
    z-index: 1;
}

.slogan-style1__left-box {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 87px;
    background-color: var(--thm-black);
    clip-path: polygon(100% 100%, 0 0, 0 100%);
    z-index: -1;
}

.slogan-style1__right {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: 60px;
    background-color: var(--thm-base);
    clip-path: polygon(100% 0, 0% 70%, 100% 100%);
    z-index: 1;
}

.slogan-style1__right-box {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 87px;
    background-color: var(--thm-black);
    clip-path: polygon(100% 100%, 100% 0, 0% 100%);
    z-index: -1;
}

.slogan-style1__shape1 {
    position: absolute;
    top: 0;
    left: 70px;
    opacity: 0.05;
}

.slogan-style1__shape2 {
    position: absolute;
    top: 0;
    right: 220px;
    opacity: 0.05;
}

.slogan-style1__shape3 {
    position: absolute;
    top: 24px;
    left: 620px;
    opacity: 0.05;
}

.slogan-style1__shape4 {
    position: absolute;
    top: -15px;
    right: 5px;
}

.slogan-style1__shape5 {
    position: absolute;
    bottom: 47px;
    right: 725px;
    opacity: 0.05;
}


.slogan-content-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.slogan-content-box .title-box {
    position: relative;
    display: block;
}

.slogan-content-box .title-box h2 {
    color: #FFFFFF;
    font-size: 54px;
    line-height: .9em;
}

.slogan-content-box .title-box h3 {
    color: #FFFFFF;
    font-size: 54px;
    line-height: .9em;
}


.slogan-content-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.slogan-content-box .btn-box .btn-one {
    padding-top: 14px;
    padding-left: 40px;
    padding-right: 43px;
    padding-bottom: 12px;
}

.slogan-content-box .btn-box .btn-one:hover {
    color: var(--thm-black);
}

.slogan-content-box .btn-box .btn-one::before {
    background-color: #ffffff;
}



/*** 
=============================================
   Gallery Style1 Css 
=============================================
***/
.gallery-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0px 120px;
    z-index: 10;
}

.gallery-style1 .row {
    --bs-gutter-x: 21px;
}

.single-gallery-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 4px;
    margin-bottom: 21px;
}

.single-gallery-style1__border {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    border: 1px solid var(--thm-black);
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(20px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(20px);
    transform: perspective(400px) rotateX(0deg) translateY(20px);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
    z-index: 1;
}

.single-gallery-style1:hover .single-gallery-style1__border {
    opacity: 1;
    transition: all .4s ease-in-out .1s;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0px);
    transform: perspective(400px) rotateX(0deg) translateY(0px);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
}

.single-gallery-style1 .img-holder {
    position: relative;
    display: block;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-gallery-style1 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.single-gallery-style1 .img-holder .inner img {
    height: 450px;
    object-fit: cover;
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.single-gallery-style1:hover .img-holder .inner .inner img {
    transform: scale(1.05) rotate(0deg);
}

.single-gallery-style1 .img-holder .inner .img-holder-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-color: var(--thm-black);*/
    mix-blend-mode: multiply;
    opacity: 0;
    -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;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-gallery-style1:hover .img-holder .inner .img-holder-img-bg {
    opacity: 100;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.single-gallery-style1 .img-holder .overlay-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border: 17px solid #ffffff;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(-20px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(-20px);
    transform: perspective(400px) rotateX(0deg) translateY(-20px);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
    z-index: 2;
}

.single-gallery-style1:hover .img-holder .overlay-button {
    opacity: 1;
    transition: all .6s ease-in-out .1s;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0px);
    transform: perspective(400px) rotateX(0deg) translateY(0px);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
}

.single-gallery-style1 .img-holder .overlay-button .btn-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-50%);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
}

.single-gallery-style1:hover .img-holder .overlay-button .btn-box {
    opacity: 1;
    transform: translateY(0px);
}

.single-gallery-style1 .img-holder .overlay-button .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thm-base);
    width: 70px;
    height: 70px;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-gallery-style1 .img-holder .overlay-button .btn-box a:hover {
    color: var(--thm-base);
    background-color: #ffffff;
}




/*------------------------------------------
 Pagination Style1 Box Css
--------------------------------------------*/
.pagination-style1-box {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgb(31, 36, 46, 0.10);
    border-bottom: 1px solid rgb(31, 36, 46, 0.10);
    padding: 30px 0px 30px;
}

.pagination-style1-box.martop25 {
    margin-top: 25px;
}

.pagination-style1-box .arrow-box {
    position: relative;
    display: flex;
    align-items: center;
}

.pagination-style1-box .arrow-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 32px;
    line-height: 32px;
    top: -5px;
}

.pagination-style1-box .arrow-box.left span {
    padding-right: 4px;
}

.pagination-style1-box .arrow-box.right span {
    padding-left: 4px;
}

.pagination-style1-box .arrow-box h5 {
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
}

.pagination-style1-box .arrow-box h5 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.pagination-style1-box .arrow-box h5 a:hover {
    color: var(--thm-base);
}



.pagination {
    position: relative;
    display: flex;
    align-items: center;
}

.pagination li {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #f7f7f7;
    border-radius: 50%;
}

.pagination li+li {
    margin-left: 10px;
}

.pagination li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 20px;
    font-family: var(--thm-font);
    font-weight: 600;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.pagination li:hover a,
.pagination li.active a {
    color: #ffffff;
    background-color: var(--thm-black);
}
























/*------------------------------------------
  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;
}



/*** 
=============================================
    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: linear-gradient(180deg, #222222 5%, rgba(34, 34, 34, 0.8) 100%);
}


.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, 5%);
    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: 400;
}

.subscribe-box-style1 {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
}

.subscribe-box-style1 form {
    position: relative;
    display: block;
    width: 100%;
}

.subscribe-box-style1 form input[type="email"] {
    position: relative;
    display: block;
    max-width: 560px;
    width: 100%;
    height: 70px;
    border-radius: 7px;
    background: #ffffff;
    border: 1px solid #ffffff !important;
    color: var(--thm-gray);
    font-size: 18px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease 0s;
    font-family: var(--thm-font);
}

.subscribe-box-style1 form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 195px;
    background: var(--thm-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: #000000;
    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: var(--thm-base);
    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);
}

.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: 0px;
    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;
}

.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;
}

.error-content .btns-box:hover .btn-one {
    color: #ffffff;
}

.error-content .btns-box .btn-one::after {
    background-color: #ffffff;
}

.error-content .btns-box .btn-one::before {
    background-color: var(--thm-base);
}









#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 
----------------------------------------------------*/

.fronz-ul{
    height: 520px;
    overflow: auto;
}

.fronz-1{
    margin-top: 30px;
    padding-bottom: 10px;
}

.fronz-ul-1{
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 30px;
}

.fronz-ul-1 li{
   list-style: disc;
   padding-bottom: 5px;
}

.fz-1{
    padding-top: 10px;
    color: #f1f1f1;
}

.fz-2{
    padding-bottom: 15px;
}

.about-fz-ul{
    padding-top: 20px;
    columns: 2;
    color: #f1f1f1;
}

.about-fz-ul li{
    
}

.about-fz-ul i{
    padding-right: 3px;
    color: #33cc33;
    font-size: 14px;
}

.hm-about-a{
    padding-left: 25px;
    color: #fff;
    font-family: var(--thm-font-2);
    font-size: 28px;
    font-weight: 700;
}

.hm-about-a:hover{
    color: #33cc33;
}

.hm-about-a i{
    padding-right: 5px;
    position: relative;
    top: 3px;
}

.hm-service{
    font-family: var(--thm-font-2);
    color: #33cc33;
    font-size: 18px;
    font-weight: 600;
}

.single-service-style2 a:hover{
    color: #777777;   
}

.hm-serv-p{
    padding-top: 5px;
    padding-bottom: 10px;
    color: #f1f1f1;
}

.hm-serv-icon{
    color: #33cc33;
}

.hm-serv-icon i{
    position: relative;
    top: 2px;
    padding-left: 5px;
}



.faq-image-1{
    width: 306px !important;
    height: 630px;
    object-fit: cover;
}

.faq-image-2{
    width: 260px !important;
    height: 630px;
    object-fit: cover;
}

.fa-why{
    font-size: 24px;
}


.foot-follow{
    color: #000;
    font-size: 18px;
    padding: 25px 0 15px;
    text-transform: uppercase;
}




.section--callouts {
    padding-bottom: 0;
    padding: 4.2rem 1.2rem 2rem;
    max-width: calc(82.5rem + 0rem);
    width: 100%;
    margin: 0 auto;
    margin-bottom: 2rem;
}
.section__header {
    margin-bottom: 4rem;
}
.section--callouts .section__header .section__image {
    text-align: center;
    margin-bottom: 1em;
}
.section__header--centered .section__heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section__heading {
    color: #33cc33;
    margin-bottom: 1.5rem;
}
.section__header--centered .section__sub-head {
    color: #222;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 15px;
}
.section__sub-head {
    font-size: 1.2rem;
    line-height: 1.8;
}
.callout-arrows .callouts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    background-color: transparent;
    border-top: 0;
    padding: 0;
    margin-top: 3rem;
    align-items: center;
}
.callout-arrows .callouts {
    position: relative;
}

@media (min-width: 767px){
    .callout-arrows .callout:nth-child(odd) {
        background: linear-gradient( to top, rgba(178, 178, 178, 0) 0%, rgba(178, 178, 178, 1) 0%, rgba(178, 178, 178, 1) 50%, rgba(178, 178, 178, 0) 50% );
    }
}

@media (min-width: 767px){
    .callout-arrows .callout {
        margin: 0 -0.063rem;
        flex-basis: 33.33333%;
        flex-grow: 1;
    }
}

.callout-arrows .callout {
    text-align: center;
    position: relative;
    padding: 0.125rem;
    border-radius: 0.7rem;
}
@media (min-width: 768px){
.borderless .callout {
    border: 0;
}}
.callout-arrows .callout-interior {
    background: #fff;
    border-radius: 0.6rem;
    padding: 2rem 1.5rem;
}
.callout-arrows img.callout__img {
    height: 4.75rem;
    display: initial;
}

@media (min-width: 768px){
.borderless .callout__heading {
    color: #33cc33;
    min-height: 2.9rem;
}}

@media (min-width: 768px){
.callout__heading {
    max-width: 12em;
    margin: 1.5rem auto 1.2rem;
}}
.callout__heading {
    font-size: 1.6rem;
    font-weight: bold;
}
.callout-arrows .callout__paragraph {
    text-align: center;
}
@media (min-width: 767px){
.callout-arrows .callout:first-child:after {
    left: -0.3rem;
}}
@media (min-width: 767px){
.callout-arrows .callout:first-child:after, .callout-arrows .callout:last-child:after {
    content: '';
    display: block;
    background: #33cc33;
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    z-index: 20;
}}

/*-------------------*/
@media (min-width: 768px) {
  .callouts-wrapper:not(.borderless) {
    filter: drop-shadow(0 0.25rem 0.75rem rgba(0, 0, 0, 0.15));
  }
  .callouts {
    background-color: #fff;
    border-top: 0.5rem solid #33cc33;
    border-radius: 0.5rem;
    margin-top: 3rem;
    padding: 2rem 1rem 0.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 6%;
  }
  .callouts:not(.borderless)::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0.6%;
    height: 15%;
    width: 98.8%;
    margin-top: -0.02rem;
    background: #fff url(../../uploads/callouts-vector.svg) no-repeat center top /
      100%;
    -webkit-clip-path: polygon(50% 85%, 0 1%, 0 0, 100% 0, 100% 1%);
    clip-path: polygon(50% 85%, 0 1%, 0 0, 100% 0, 100% 1%);
  }
  .callout {
    padding: 0 1.5rem;
    border-right: 0.125rem solid #f8f8f8;
    flex-basis: 33.33333%;
    flex-grow: 1;
  }
  .callout:last-child {
    border-right: 0;
  }
  .callout .callout__link {
    color: #33cc33;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
  }
  .callout__heading {
    max-width: 12em;
    margin: 1rem auto 0.5rem;
  }
  .borderless {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
    margin-top: -2rem;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .borderless .callout {
    border: 0;
  }
  .borderless .callout__heading {
    color: #33cc33;
    min-height: 2.9rem;
  }
  .section--callouts .callout__img {
    display: initial;
  }
}

@media (max-width: 767px) {
  .callout {
    margin: 3rem 2rem;
    text-align: left;
  }
  .callout__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1rem;
  }
  .callout__heading {
    margin-left: 1rem;
    margin-bottom: 0;
  }
}

/*CALLOUT PRIMARY*/
.callout-primary__wrap {
  position: relative;
}

.callout-primary-content__wrap {
  margin-top: 1rem;
}

.callout-primary-logo__wrap {
  display: flex;
  justify-content: space-between;
}

.callout-primary-logo__wrap img {
  width: 25%;
}

@media (min-width: 768px) {
  .callout-primary__wrap {
    display: flex;
    justify-content: center;
  }

  .callout-primary__image--main-left,
  .callout-primary__image--main-right {
    position: absolute;
  }

  .callout-primary__image--main-left {
    left: 10px;
    width: 14vw;
    max-width: 197px;
  }

  .callout-primary__image--main-right {
    right: 10px;
    width: 17vw;
    max-width: 240px;
  }

  .callout-primary-content__wrap {
    width: 60%;
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  .callout-primary-content__wrap p {
    text-align: center;
  }

  .callout-primary-logo__wrap img {
    width: 100%;
  }
}

/* CALLOUT VARIATION - ARROWS */
.callout-arrows .callouts {
  position: relative;
}
.callout-arrows .callout {
  text-align: center;
  position: relative;
  padding: 0.125rem;
  border-radius: 0.7rem;
}
.callout-arrows .callout-interior {
  background: #fff;
  border-radius: 0.6rem;
  padding: 2rem 4.5rem;
}
.callout-arrows img.callout__img {
  height: 4.75rem;
}
/* styles for the arrows */
.callout-arrows .callout:nth-child(even):before,
.callout-arrows .callout:nth-child(odd):before {
  content: '';
  display: block;
  background-image: url(https://www.westernpest.com/wp-content/uploads/callout-arrow.svg);
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  height: 1.25rem;
  width: 1.25rem;
  padding: 2rem 0 0 0;
  position: absolute;
  z-index: 10;
}

@media (min-width: 767px) {
  .callout-arrows .callouts-wrapper {
    margin-top: 3rem;
    padding: 2rem 1rem 0.3rem;
    margin-bottom: 6%;
  }
  .callout-arrows .callouts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    background-color: transparent;
    border-top: 0;
    padding: 0;
    margin-top: 3rem;
    align-items: center;
  }
  .callout-arrows .callout {
    margin: 0 -0.063rem;
    flex-basis: 33.33333%;
    flex-grow: 1;
  }
  .callout-arrows .callout:nth-child(odd) {
    background: linear-gradient(
      to top,
      rgba(178, 178, 178, 0) 0%,
      rgba(178, 178, 178, 1) 0%,
      rgba(178, 178, 178, 1) 50%,
      rgba(178, 178, 178, 0) 50%
    );
  }
  .callout-arrows .callout:nth-child(even) {
    background: linear-gradient(
      to bottom,
      rgba(178, 178, 178, 0) 0%,
      rgba(178, 178, 178, 1) 0%,
      rgba(178, 178, 178, 1) 50%,
      rgba(178, 178, 178, 0) 50%
    );
  }
  /* Orange circles */
  .callout-arrows .callout:first-child:after,
  .callout-arrows .callout:last-child:after {
    content: '';
    display: block;
    background: #33cc33;
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    z-index: 20;
  }
  .callout-arrows .callout:first-child:after {
    left: -0.3rem;
  }
  .callout-arrows .callout:last-child:after {
    right: -0.3rem;
  }
  /* styles for the arrows */
  .callout-arrows .callout:nth-child(even):before,
  .callout-arrows .callout:nth-child(odd):before {
    left: -0.55rem;
  }
  .callout-arrows .callout:nth-child(even):before {
    top: calc(50% - 0.3rem);
  }
  .callout-arrows .callout:nth-child(odd):before {
    transform: rotate(180deg);
    top: calc(50% - 1.7rem);
  }
  .callout-arrows .callout:first-child:before {
    display: none;
  }
  .callout-arrows .callout__paragraph {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .callout-arrows .callout {
    text-align: left;
    margin: -0.125rem;
  }
  .callout-arrows .callout:first-child {
    border-radius: 0 0 0 0.7rem;
    padding-top: 0;
    background: linear-gradient(
      to right,
      rgba(178, 178, 178, 0) 0%,
      rgba(178, 178, 178, 1) 0%,
      rgba(178, 178, 178, 1) 50%,
      rgba(178, 178, 178, 0) 50%
    );
  }
  .callout-arrows .callout:nth-child(2) {
    border-radius: 0 0.7rem 0 0;
    padding-bottom: 0;
    background: linear-gradient(
      to left,
      rgba(178, 178, 178, 0) 0%,
      rgba(178, 178, 178, 1) 0%,
      rgba(178, 178, 178, 1) 50%,
      rgba(178, 178, 178, 0) 50%
    );
  }
  .callout-arrows .callout:first-child .callout-interior {
    border-radius: 0 0 0 0.6rem;
  }
  .callout-arrows .callout:nth-child(2) .callout-interior {
    border-radius: 0 0.6rem 0 0;
  }
  /* Orange circles */
  .callout-arrows .callouts:before {
    left: -0.375rem;
  }
  .callout-arrows .callouts:after {
    right: -0.375rem;
  }
  .callout-arrows .callout:first-child:after,
  .callout-arrows .callout:nth-child(2):after {
    content: '';
    display: block;
    background: #33cc33;
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 100%;
    position: absolute;
    z-index: 20;
  }
  .callout-arrows .callout:first-child:after {
    top: 0;
    left: -0.3rem;
  }
  .callout-arrows .callout:nth-child(2):after {
    bottom: 0;
    right: -0.3rem;
  }
  /* styles for the arrows */
  .callout-arrows .callout:nth-child(even):before,
  .callout-arrows .callout:nth-child(odd):before {
    display: none;
  }
  .callout-arrows .callout:first-child:before {
    display: block;
    bottom: -0.94rem;
    transform: rotate(90deg);
    left: 5rem;
  }
  .callout-arrows .callout:nth-child(2):before {
    display: block;
    top: 2rem;
    transform: rotate(180deg);
    right: -0.55rem;
  }
  .callout-arrows .callout__header {
    justify-content: start;
    flex-direction: column;
  }
  .callout-arrows .callout__step {
    margin: 1rem 0 0;
  }
  .callout-arrows .callout__heading {
    margin-left: 0;
  }
}




.section--bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2rem 2rem;
    margin-bottom: 0;
    max-width: calc(64rem + 4rem);
    width: 100%;
    margin: 0 auto;
}

.bar {
    font-family: var(--thm-font-2);
    background-color: black;
    color: #ffffff;
    padding: 2.5rem 1rem;
    font-size: 1.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 48rem;
    max-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0.5rem;
}




.bar__message {
    margin-right: 0.5em;
}
.bar__arrow {
    height: 1.25em;
    width: 1.25em;
}

.bar__number {
    color: #33cc33;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 500;
    margin-left: 0.5em;
}

.bar__number:hover{
    color: #fff;
}

.bar__pest-alive-image {
    left: 1.5rem;
}
.bar__pest-alive-image, .bar__pest-dead-image {
    position: absolute;
    height: 7.5rem;
    width: 15rem;
    top: -7.5rem;
}

.bar__pest-dead-image {
    right: 1rem;
}
.bar__pest-alive-image, .bar__pest-dead-image {
    position: absolute;
    height: 7.5rem;
    width: 15rem;
    top: -7.5rem;
}



.ft-fs{font-size: 24px;}

.logo-box-style2 img{
    width: 280px;
}

.ft-pl-15{
    padding-left: 15px;
}

.ft-pl-45{
    padding-left: 45px;
}



.turbo-h1{
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 3px;
    color: #f1f1f1;
}

.turbo-h2{
    margin-bottom: 8px;
    color: #f1f1f1;
}

.turbo-h21{
    margin-top: 30px;
    margin-bottom: 8px;
    color: #f1f1f1;
}

.turbo-ul{
    padding-left: 30px;
    margin-top: 5px;
    margin-bottom: 5px;

}

.turbo-ul i {
    padding-right: 3px;
    color: #33cc33;
    font-size: 14px;
}


.turbo-faq{
    background-color: #2b2a2a;
    padding: 70px 0 90px;
}



.nsp-loaction-title{
    font-size: 48px;
    line-height: 1.2em;
    text-transform: capitalize;
    color: #33cc33;
    text-align: center;
    margin-top: 60px;
}



.nsp-loaction-ul{
    padding-left: 40px;
    margin-top: 30px;
    columns: 4;
    font-weight: 400;
    color: #111;
}


.nsp-loaction-ul li{
    padding-bottom: 5px;
    border-bottom: 1px solid #f1f1f1;
    margin-right: 45px;
    margin-bottom: 7px;
}

.nsp-loaction-ul li a{
    color: #fff;
}


.nsp-loaction-ul li:before{
    content: '';
    background:url('../img/icon/map.png');
    background-size: 20px 20px;
    position:absolute;
    width:20px;
    height:20px;
    margin-left:-30px;
    margin-top: 5px;
    filter: invert();
}


.huop2{
    margin-bottom: 30px;
}


.mob-view-only{
    display: none;
}


.local-land-call{
    background-color: #33cc33;
    padding: 15px 25px;
    color: #fff;
}

.local-land-call i{
    margin-right: 4px;
    position: relative;
    top: 1px;
}

.turbo-ul li{
    list-style: disc;
    padding-bottom: 5px;
}

.nsp-service {
    position: relative;
    padding-left: 25px;
    color: #33cc33;
    font-family: var(--thm-font-2);
    font-size: 28px;
    top: 5px;
    font-weight: 600;
    letter-spacing: 1px;
}

.nsp-service:hover{
    color: #fff;
}


.nsp-service i {
    top: 3px;
    position: relative;
    padding-right: 5px;
}

.nsp-mt30{
    margin-top: 30px;
}

.land-fence{
    background-color: #3c3c3c;
    margin: 0px 0;
    padding: 80px 0 60px;
}

.land-title-tag h2{
    text-align: center;
}

.land-divider{
    width: 185px;
    height: 2px;
    background-color: #d6d6d663;
    display: block;
    margin: 15px auto;
}

.land-divider2 {
    width: 185px;
    height: 2px;
    background-color: #989898;
    display: block;
    margin: 15px auto;
}

.land-divider3{
    width: 185px;
    height: 2px;
    background-color: #e3e3e363;
    display: block;
    margin: 20px auto;
}

.land-title-tag p{
    text-align: center;
    color: #f1f1f1;
}

.wrk-cnt-mt{
    margin-top: 45px;
}

.work-content-area{
    width: 23.33%;
}

.work-content{
    background-color: #2b2a2a;
    padding: 50px 15px;
    text-align: center;
}

.work-content h4{
    font-size: 64px;
    color: #fff;
}

.work-content p{
   color: #fff;
}

.work-content h3{
    color: #fff;
    padding: 15px 0 20px;
}

.arrow-content-area{
    width: 15%;
}

.arrow-content-area img{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}


.jiko{
    font-size: 32px;
}



.land-whychoose{
    background-color: #272727;
    padding: 60px 0;
}

.land-whychoose h2{
    color: #fff;
}

.land-whychoose p{
    color: #fff;
}

.why-landone{
    width: 33.33%;
}

.why-landone-content{
    padding: 30px 10px;
    border: 3px solid #fff;
    min-height: 275px;
    margin-bottom: 30px;
}

.why-landone-content i{
    color: #fff;
    font-size: 42px;
    text-align: center;
    margin: 0 auto 15px;
    display: block;
}

.why-landone-content h3{
    color: #fff;
    text-align: center;
}

.why-landone-content p{
    text-align: center;
    color: #fff;
}


.why-martop{
    margin-top: 45px;
}


.whats-next {
    background-color: #303030;
    padding: 75px 0;
}

.whats-nextp{
    margin-bottom: 20px;
}

.whats-next-quote {
    display: block;
    margin: 29px auto 0;
    background-color: #33cc33;
    color: #fff;
    padding: 10px 35px;
}


.footer-up-quote{
    padding: 100px 0;
    background-color: #222;
}


.footupquote-content h4{
    text-align: center;
    color: #fff;
    font-size: 42px;
}

.footupquote-content h3{
    text-align: center;
    color: #fff;
    font-size: 62px;
}

.footup-divider{
    width: 450px;
    height: 2px;
    background-color: #989898;
    display: block;
    margin: 25px auto 35px;
}

.footupquote-content-btn{
    border-radius: 3px;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 30px;
    margin: 30px auto 0;
    display: block;
}

.lndserv-mt{
    padding: 0 25px;
    margin-top: 45px;
}

.land-service-content{
    margin-bottom: 45px;
}

.land-service-content img{
    width: 100%;
    height: 285px;
    object-fit: cover;
    margin-bottom: 15px;
}

.land-service-content h3{
    text-align: center;
    margin-bottom: 10px;
    font-size: 26px;
}

.land-service-content p{
    text-align: center;
    margin-bottom: 22px;
    color: #f1f1f1;
    padding: 0 10px;
}

.land-services-readmore{
    background-color: #33cc33;
    color: #fff;
    padding: 10px 30px;
    margin: 0px auto;
    display: block;
}

.lnd-servpadd{
    padding-left: 5px;
    padding-right: 5px;
}


.full-cta{
    margin-top: 45px;
    background-color: #272727;
    padding: 50px 0;
}

.full-cta h2{
    text-align: center;
    color: #fff;
    font-size: 42px;
    text-transform: uppercase;
}


.full-cta-two{
    display: flex;
    width: 100%;
}

.full-one-third{
    width: 33.33%;
}

.full-two-content{
    min-height: 620px;
    background-blend-mode: overlay;
    background-color: #0b12039e;
    background-size: cover;
    padding: 130px 100px;
}

.full-two-content h3{
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.fullcta-divider{
    width: 185px;
    height: 2px;
    background-color: #b8b8b8ad;
    display: block;
    margin: 45px auto;
}

.fullcta-divider2{
    width: 400px;
    height: 2px;
    background-color: #b8b8b8ad;
    display: block;
    margin: 25px auto;
}



.full-two-content p{
    color: #fff;
    text-align: center;
    margin-bottom: 45px;
}

.fullcta-btn{
    border-radius: 3px;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 30px;
    margin: 30px auto 0;
    display: block;
}


.full-cta-1{
    background-color: #272727;
    padding: 50px 0;
}

.full-cta-1 h2{
    text-align: center;
    color: #fff;
    font-size: 42px;
    text-transform: uppercase;
}


.full-cta-three{
    background-color: #272727;
    padding: 0px 15px;
    display: flex;
    width: 100%;
}

.cta-three-img{
    min-height: 625px;
    background-blend-mode: overlay;
    background-color: #31323152;
    background-size: cover;
}

.full-cta-four{
    background-color: #272727;
    padding: 30px 15px;
    display: flex;
    width: 100%;
}


.full-cta-four-content{
    width: 100%;
    display: flex;
}

.full-cta-icon{
    width: 8%;
}

.full-cta-icon i{
    color: #fff;
    font-size: 32px;
}

.last-cta-content{
    width: 92%;
}

.last-cta-content h3{
    color: #fff;
}

.last-cta-content p{
    color: #fff;
    padding-right: 15px;
}


.local-lad-gallery{
    margin: 60px 0 20px;
}

.local-lad-gallery h2{
    text-align: center;
    text-transform: uppercase;
}


.local-land-circle{
    margin: 80px 0;
}

.land-center{
    text-align: center;
}

.land-circle-ul{
    width: 100%;
    display: flex;
    margin-top: 25px;
}

.land-circle-ul li{
    width: 20%;
}

.land-circle-ul img{
    border-radius: 50%;
    border: 3px solid #f1f1f1;
    padding: 15px;
    margin-bottom: 20px;
}

.land-circle-ul h4{
    padding: 0 20px;
    text-align: center;
    text-transform: capitalize;
}


.land-circle-btn{
    background-color: #33cc33;
    color: #fff;
    padding: 10px 30px;
    margin: 0px auto;
    display: block;
}

.land-circle-ptag{
    text-align: center;
    padding: 30px 75px;
    color: #f1f1f1;
}


.land-mb-30{
    margin-bottom: 30px;
}

.land-mb-15{
    margin-bottom: 15px;
}


.local-land-about{
    margin: 80px 0;
}

.local-land-about img{
    width: 100%;
    height: 410px;
    object-fit: cover;
}


.local-land-about-content h2{
    font-size: 42px;
}

.local-land-about-divider{
    width: 185px;
    height: 2px;
    background-color: #11111163;
    margin: 20px 0;
}


.land-sort-paddding{
    padding: 0 0px;
}

.land-br-none{
    border-right: none !important;
}


.gallery-container {
    width: 100%;
    max-width: 1600px;
    padding-left: 12px;
    padding-right: 12px;
    margin-right: auto;
    margin-left: auto;
}


.land-insta-section{
    margin: 80px 0;
}

/*.land-insta-section h2:before {
  content: '';
  background: url(../img/icon/instagram.png);
  background-size: 20px 20px;
  position: absolute;
  width: 20px;
  height: 20px;
  margin-left: -30px;
  margin-top: 5px;
}*/


.insta-icon-name{
    width: 100%;
    display: flex;
    gap: 20px;
}

.insta-icon{
    background-color: #111;
    padding: 23px;
    border-radius: 50%;
}

.insta-icon img{
    width: 32px;
    filter: invert(1);
}

.insta-name h2{
    padding-top: 20px;
}


.land-insta-ul{
   width: 100%;
   display: flex;
   gap: 10px;
}

.land-insta-ul li{
   width: 25%;
   margin-bottom: 10px;
}

.land-insta-ul li img{
    height: 300px;
    width: 100%;
    object-fit: cover;
}



.land-insta-btn-icon{
    filter: invert(1);
    width: 18px;
    margin-right: 5px;
    position: relative;
    top: -1px;
}


.get-intouch-ul{
    margin-top: 20px;
}

.get-intouch-ul i{
    color: #33cc33;
}

.get-intouch-ul li{
    margin-bottom: 3px;
}

.gtini1{margin-right: 5px;}
.gtini2{margin-right: 9px;}
.gtini3{margin-right: 12px;}


.foot-bottom-nav{
    display: flex;
    gap: 18px;
    margin-top: 15px;
}

.foot-bottom-nav li{
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}

.foot-bottom-nav li a{
    color: #111;
}



.margtp-are{
    margin-top: 25px;
}


.mob-only-full-cta{
    display: none;
}

.mob-view-only{
    display: none;
}

.mob-call-only{
    display: none;
}

.mob-call-btn{
    /*opacity: 0;*/
    display: none;
}


.pro-border-btnone{
    border-bottom: none !important;
}

.pro-ptag{
    color: #f1f1f1;
}

.pro-ptag1{
    color: #f1f1f1;
    padding-bottom: 15px;
    font-weight: 500;
}






/*------- about us section -------*/
.section-about {
    padding: 8rem 0 0;
}
@media (min-width: 768px) {
    .section-about {
        padding-top: 5rem;
    }
}
.section-subtitle {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #33cc33;
    margin-bottom: 1rem;
}


.section-about-title {
    margin-bottom: 3rem;
    font-weight: 600;
}
.section-title {
    /*margin: 0;*/
}
.experience-box {
    position: relative;
    white-space: nowrap;
    margin: 6rem 0 10rem;
}
@media (min-width: 1200px) {
    .experience-box {
        margin-top: 6.2rem;
    }
}
.experience-border {
    display: inline-block;
    vertical-align: middle;
    width: 12.15rem;
    height: 12.15rem;
    border: 0.357rem solid #33cc33;
}
.experience-content {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    left: -10.5rem;
    top: 0.2rem;
}
.experience-number {
    display: inline-block;
    vertical-align: middle;
    font-size: 7.142rem;
    line-height: 1;
    font-weight: 600;
    color: #fff;
}
.experience-info {
    display: inline-block;
    vertical-align: middle;
    margin: 0rem 0 0 4rem;
    font-size: 1.57rem;
    line-height: 1.181;
    color: #fff;
}
@media (min-width: 992px) {
    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }
}
.dots-image {
    display: inline-block;
    position: relative;
}
.dots-image img {
    display: block;
    position: relative;
    z-index: 1;
    height: 647px;
    object-fit: cover;
    width: 100%;
}
.dots-image .dots {
    position: absolute;
    left: -20%;
    bottom: -15%;
    width: 101%;
    height: 57.2%;
    background: url(../img/icon/dots.png) 0 0 repeat;
}


.testi-header{
    width: 100%;
    display: flex;
}

.testi-logo{
    width: 13%;
    margin-right: 12px;
}

.test-name{
    width: 80%;
}

.test-name h4{
    line-height: 22px;
    font-size: 18px;
}

.test-name p{
    line-height: 17px;
    color: #f1f1f1a1;
    font-size: 14px;
}

.testi-google{
    width: 8%;
}

.testi-ptag{
    height: 100px;
    overflow: auto;
    padding-right: 5px;
}


.testi-ptag::-webkit-scrollbar {width: 4px;}
.testi-ptag::-webkit-scrollbar-track {background: #111;}
.testi-ptag::-webkit-scrollbar-thumb {background: #33cc33;}

.pro-nav-padd{
    padding: 0 100px;
}

.pro-nav-social{
    display: flex;
    gap: 8px;
    padding-left: 40px;
}

.navi-insta{
    border: 1px solid #f1f1f1;
    color: #fff;
    font-size: 18px;
    padding: 8px 8px;
    border-radius: 50%;
}

.navfb-fb{
    color: #fff;
    font-size: 18px;
    padding: 8px 10px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.nav-fob-call{
    color: #fff;
    font-size: 19px;
    font-weight: 800;
}

.nav-fob-call span{
    color: #33cc33;
}

.navbbcrigt{
    padding-left: 45px;
    border-left: 1px solid #f1f1f196;
}

.nav-fob-call:hover {
    color: #fff;
}


.desk-view{display: block;}
.mob-only{display: none;}


.kopli{filter: invert(1);padding-right: 10px;}

















.pulse-area-blink{
    animation: pulse 2s infinite !important;
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px rgb(102 141 60);
    }

    100% {
        box-shadow: 0 0 0 14px rgb(255 255 255 / 0%);
    }
}

@-webkit-keyframes blink {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.15);
    }

    100% {
      transform: scale(1);
    }
  }

  @keyframes blink {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.15);
    }

    100% {
      transform: scale(1);
    }
  }



/*-------- Contact Us Page --------------*/
.contact-us-page-pro{
    background-color: #3c3c3c;
    padding: 130px 0 100px;
}

.pro-contat-line{
    margin-top: 13px;
    width: 7rem;
    max-width: 100%;
    height: .28rem;
    background: #33cc33;
}

.pro-form-contat-line{
    margin-top: 8px;
    width: 7rem;
    max-width: 100%;
    height: .28rem;
    background: #33cc33;
}


.con-display-none{
    display: none !important;
}

.pro-contat-h2{
    font-size: 48px;
    width: 65%;
    font-weight: 600;
    letter-spacing: .6px;
}

.pro-con-mt100{
    margin-top: 120px;
}

.pro-form-mt{
    margin-top: 70px;
}

.pro-h4tag{
    color: #999;
    line-height: 1.111;
    font-size: 1.28rem;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 20px;
    letter-spacing: .6px;
}

.prconrw{
    font-weight: 600;
    letter-spacing: .6px;
    padding-bottom: 25px;
}

.pro-contact-row{
    color: #33cc33;
    font-weight: 600;
    font-size: 15px;
    padding-bottom: 6px;
}

.pro-contact-row span{
    color: #fff;
}

.pro-call{
    color: #999;
    padding-bottom: 20px;
    font-weight: 600;
}

.pro-number{
    color: #fff;
    font-weight: 700;
    font-size: 36px;
}

.pro-number:hover{
    color: #33cc33;
}

.cn-office{
    color: #fff;
    font-size: 15px;
    margin-top: 30px;
    font-weight: 600;
    padding-bottom: 6px;
}

.cn-follow{
    color: #fff;
    font-size: 15px;
    margin-top: 24px;
    font-weight: 600;
    padding-bottom: 6px;
}

.cn-frm-lble{
    font-weight: 600;
    color: #999;
    width: 100%;
    margin-bottom: 4px;
}


.cont-ul {
    position: relative;
    display: block;
}

.cont-ul li{
    position: relative;
    float: left;
    margin-right: 7px;
}

.cont-ul img{
    width: 32px;
}

.cont-ul ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    color: rgb(255, 255, 255, 0.30);
    font-size: 16px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.cont-ul ul li:last-child {
    margin-right: 0;
}


.mar-con-pt{
    padding-top: 100px;
}

.map-area-row{
    width: 90%;
    margin: 0 auto;
}

.pro-slider-box{
    width: 250px;
    height: 600px;
    background-color: #fff;
    border: 5px solid #111;
}


.slider-left-border{
    /*border-left: 3px solid #33cc33;*/
    /*height: 155px;*/
    /*padding-left: 30px;*/
}


.logo-lika{
    width: 245px;
}

.like-about-logo{
    padding-top: 10px;
}