/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigation
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

/*== Default Css ==*/

:root {
    --thm-base: #F42549;
    --thm-base-rgb: 244, 37, 73;
    --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;
}




.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: var(--thm-gray);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    font-family: var(--thm-font-2);
    font-weight: 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: 30px;
}

.thm-social-link ul {
    position: relative;
    display: block;
}

.thm-social-link ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.thm-social-link ul li:last-child {
    margin-right: 0;
}

.thm-social-link ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: rgba(var(--thm-black-rgb), 1);
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.thm-social-link ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(var(--thm-base-rgb), 1);
    border-radius: 5px;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.thm-social-link ul li:hover a:before {
    opacity: 1;
    transform: scale(1);
}

.thm-social-link ul li:hover a {
    color: #ffffff;
}



/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
    position: fixed;
    top: 0;
    left: 0%;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    cursor: url(../images/icon/cross-out.png), pointer;
    z-index: 99999999;

    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.95;
    visibility: visible;
    right: 100%;
    background: linear-gradient(90deg, rgba(var(--thm-base-rgb), 1.0), rgba(var(--thm-black-rgb), 1.0));
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}


.xs-sidebar-widget {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    max-width: 460px;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;

    transition-timing-function: ease-out;
    transition: 0.5s;

    visibility: hidden;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    transition-timing-function: ease-in;
    transition: 0.5s;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 900ms ease 500ms;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    z-index: 0;
    background-color: #000000;
}

.sidebar-textwidget {
    padding: 50px 45px;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--thm-black);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--thm-base);
    border-color: var(--thn-base);
}

.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
    position: relative;
    display: inline-block;
}

.xs-sidebar-group .content-inner h3 {
    color: var(--thm-black);
    font-size: 30px;
    line-height: 40px;
    font-weight: 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: 23px;
}

.sidebar-contact-info ul li:last-child {
    margin-bottom: 0;
}

.sidebar-contact-info ul li .inner {
    position: relative;
    display: block;
    padding-left: 45px;
}

.sidebar-contact-info ul li .inner .icon {
    position: absolute;
    top: 0px;
    left: 0;
}

.sidebar-contact-info ul li .inner .icon 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: 8px;
    font-size: 32px;
}

.sidebar-contact-info ul li .inner .text {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li .inner .text p {
    line-height: 24px;
}

.sidebar-contact-info ul li .inner .text p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-contact-info ul li .inner .text p a:hover {
    color: var(--thm-base);
    text-shadow: -0.45px -0.45px 0 var(--thm-base), 0.45px 0.45px var(--thm-base);
}

.xs-sidebar-group .content-inner .side-content-newsletter-box {
    position: relative;
    display: block;
    padding-top: 49px;
}

.xs-sidebar-group .content-inner .side-content-newsletter-box h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 24px;
}

.side-content-newsletter-box .form-group input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    background-color: rgb(248, 248, 248);
    border: 1px solid #e3dfdf;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 6px;
    font-family: var(--thm-font);
}

.side-content-newsletter-box .form-group button {
    margin-top: 30px;
}


/*== Tab Box Style1 Css ======*/
.tab-box-style1 .tabs-content-box {
    position: relative;
    display: block;
}

.tab-box-style1 .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.tab-box-style1 .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.tab-box-style1 .tab-content-box-item .item {
    transition: all 0.7s ease;
    opacity: 0;
    transform: scaleY(0.9);
    transform-origin: top bottom;
}

.tab-box-style1 .tab-content-box-item.tab-content-box-item-active .item {
    opacity: 1.0;
    transform: scaleY(1);
    transform-origin: bottom top;
}




/*== Accordion Box Style1 Css ======*/
.accordion-box-style1 {
    position: relative;
    display: block;
}

.accordion-box-style1 .accordion {
    position: relative;
    display: block;
    background: #ffffff;
    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: 22px;
    padding-left: 40px;
    padding-bottom: 22px;
    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: var(--thm-black);
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    transition: all 500ms ease;
}

.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: var(--thm-black);
    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;
}





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

.review-box ul {
    display: block;
    overflow: hidden;
}

.review-box ul li {
    display: inline-block;
    margin-right: 4px;
    cursor: pointer;
}

.review-box ul li:last-child {
    margin-right: 0px;
}

.review-box ul li i {
    color: #febd2f;
    font-size: 15px;
}



/*== Section Title Css ======*/
.sec-title {
    position: relative;
    display: block;
    padding-bottom: 48px;
}

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

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

.sec-title h2 {
    color: var(--thm-black);
    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: 15px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--thm-font-3);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.btn-two span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 18px;
    margin-left: 10px;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.btn-two:hover span {
    color: #ffffff;
}

.btn-two span:after {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    z-index: -1;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.btn-two:hover span:after {
    opacity: 1.0;
    transform: scale(1.0);
}

.btn-two:hover {
    color: var(--thm-base);
    letter-spacing: normal;
}





/*== Owl Dot Style One Css ======*/
.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 0px !important;
    display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 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: var(--thm-primary);
}

.scroll-to-top .scroll-bar-text {
    color: var(--thm-black);
    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: 120px 0px 120px;
    background-color: #ffffff;
    z-index: 10;
}

.single-case-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgb(34, 34, 34, 0.10);
    padding: 20px 20px 40px;
    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);
}

.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: 110px;
    padding-right: 150px;
}

.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: 34px;
    margin-bottom: 10px;
}

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

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



/*** 
=============================================
   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: #ffffff;
    padding: 120px 0 0;
    z-index: 10;
}

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

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


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

.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 {
    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 
----------------------------------------------------*/

.pt-cus {
  padding-top: 160px;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;

}


@media screen and (max-width: 776px) {
  .pt-cus {
      padding-top: 120px;
      padding-bottom: 50px;
      padding-left: 15px;
      padding-right: 15px;
  }
}