.container-max {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 24px;
}

.fancybox-image,
.fancybox-spaceball {
    border-radius: 10px;
}

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

.auto-container-header {
    max-width: 100%;
    height: 100%;
    padding: 0px 24px;
    margin: 0 auto;
}


.boxed_wrapper {
    position: relative;
    margin: 0 auto;
    overflow: clip;
    background: #ffffff none repeat scroll 0 0;
    width: 100%;
    min-width: 320px;
}


.sec-title {
    position: relative;
    display: block;
    margin-top: -4px;
    padding-bottom: 49px;
}

.sec-title .sub-title {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 0;
    padding-bottom: 6px;
}

.sec-title.center .sub-title {
    justify-content: center;
}


.sec-title .sub-title p {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.sec-title .sub-title .dotted {
    position: relative;
    display: block;
    width: 6px;
    height: 6px;
    background: var(--thm-base);
    border-radius: 50%;
    margin-right: 9px;
    animation: slide5 10s linear infinite;
    -webkit-animation: slide5 10s linear infinite;
}

.sec-title h2 {
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 400;
    text-transform: none;
}


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


@keyframes pulse {
    50% {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, .1),
            0 0 0 20px rgba(238, 238, 238, 0.3000);
    }
}

@keyframes pulse2 {
    50% {
        box-shadow: 0 0 0 5px rgba(255, 231, 1, .1),
            0 0 0 20px rgba(255, 231, 1, 0.3000);
    }
}

/* Update header Style */
@keyframes menu_sticky {
    0% {
        margin-top: -90px;
    }

    50% {
        margin-top: -74px;
    }

    100% {
        margin-top: 0;
    }
}

/*** Scroll To Top style ***/
.scroll-top {
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 56px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    display: none;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 999999999;
}

.scroll-top span {}

.scroll-top:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    z-index: -1;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}


.scroll-top:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    -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;
}


.scroll-top:hover {
    color: #ffffff;
    background-color: var(--thm-black);
    border-color: var(--thm-black);
}


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


.review-box {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 16px;
}

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

.review-box>ul>li {
    display: inline-block;
    float: left;
    margin-right: 4px;
}

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

.review-box>ul>li>i {
    position: relative;
    display: inline-block;
    color: #cdcdcd;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.review-box>ul>li:hover>i {
    color: var(--thm-base);
}


/** xs sidebar **/

.xs-sidebar-widget {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 365px;
    background-color: #1d2f38;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 700ms ease 100ms;
    visibility: hidden;
    opacity: 1;
    z-index: 999999999;
}


@keyframes slide5 {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -200px 0;
    }
}

@-webkit-keyframes slide5 {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -200px 0;
    }
}


.video-holder-box1 .icon {
    position: relative;
    display: block;
}

.video-holder-box1 .icon a {
    position: relative;
    display: block;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    border: 15px solid var(--thm-primary);
    border-radius: 50%;
}

.video-holder-box1 .icon a:before {
    position: absolute;
    content: '';
    top: -15px;
    left: -15px;
    bottom: -15px;
    right: -15px;
    border-radius: 50%;
    background: rgba(54, 124, 232, 0.0);
    z-index: -1;
    -webkit-animation: ripple2 1s infinite;
    animation: ripple2 3s infinite;
}


.video-holder-box1 .icon a span:before {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #172746;
    font-size: 25px;
    line-height: 90px;
    text-align: center;
}

.video-holder-box1 .title {
    position: relative;
    display: block;
    padding-top: 25px;
}

.video-holder-box1 .title h4 {
    color: #252628;
    font-size: 20px;
    line-height: 26px;
}


/*** 
=============================================
   contact Style1 Area Css
=============================================
***/
.contact-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    z-index: 1;
    padding: 0 0 70px 0;
}


.form-style1__image-box .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.form-style1__image-box .img-holder::after {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .7) 100%);
    transform: skewX(-5deg);
    z-index: 2;
}

.form-style1__image-box:hover .img-holder::after {
    -webkit-animation: shine 1.2s;
    animation: shine 1.2s;
}

.form-style1__image-box .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}


/*** 
=============================================
    Slogan area style
=============================================
***/
.slogan-area {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 107px 0 120px;
    z-index: 1;
    margin-bottom: 60px;
}

.slogan-area.pdb220 {
    padding-bottom: 220px;
}

.slogan-area::before {
    background: rgba(var(--thm-black-rgb), .60);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
}

.slogan-area .title {
    position: relative;
    display: block;
    margin: 0 0 48px;
}

.slogan-area .title h2 {
    color: #ffffff;
    font-size: 60px;
    line-height: 70px;
    font-weight: 400;
}

.slogan-area .button {
    line-height: 0;
}


.slogan-style2-area .title {
    position: relative;
    display: block;
    margin: 0 0 48px;
}

.slogan-style2-area .title h2 {
    color: #ffffff;
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
}

.slogan-style2-area .title h2 span {
    position: relative;
    display: inline-block;
}

.slogan-style2-area .title h2 span img {
    position: absolute;
    top: -20px;
    left: -30px;
}

.slogan-style2-area .button {
    line-height: 0;
    position: relative;
    display: inline-block;
}

.slogan-style2-area .button .arrow {
    position: absolute;
    bottom: 30px;
    right: -120px;
    -webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}

.slogan-style2-area .button .btn-one:after {
    background-color: var(--thm-black);
}


.before-after-work-area .before-after-content .before-after .twentytwenty-container img {
    width: 100%;
}

.before-after-work-area .before-after-content .before-after .twentytwenty-horizontal .twentytwenty-before-label:before {
    position: absolute;
    left: -10px;
    top: -10px;
    width: 100px;
    height: 100px;
    line-height: 90px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0px;
    padding: 0px;
    background: transparent;
    z-index: 1;
    transform: rotate(-45deg);
    text-transform: uppercase;

    display: none;
}

.before-after-work-area .before-after-content .before-after .twentytwenty-horizontal .twentytwenty-before-label:after {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}


.before-after-work-area .before-after-content .before-after .twentytwenty-horizontal .twentytwenty-after-label:before {
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100px;
    line-height: 140px;
    text-align: center;
    font-size: 16px;
    background: transparent;
    font-weight: 700;
    color: #fff;
    margin: 0px;
    padding: 0px;
    bottom: 0px;
    transform: rotate(-45deg);
    z-index: 1;
    text-transform: uppercase;
    display: none;
}

.before-after-work-area .before-after-content .before-after .twentytwenty-horizontal .twentytwenty-after-label:after {
    position: absolute;
    content: '';
    bottom: 0px;
    right: 0px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.twentytwenty-after-label,
.twentytwenty-before-label {
    opacity: 1 !important;
}


.home1-page-map-outer {
    position: relative;
    display: block;
    z-index: 10;
}

.home1-page-map-outer .map-canvas {
    position: relative;
    width: 100%;
    height: 580px;
}


/*** 
=============================================
    Opening Hours Css
=============================================
***/
.opening-hours-area {
    position: relative;
    display: block;
    background: #ffffff;
}

.opening-hours__content {
    position: relative;
    display: block;
    padding-top: 66px;
    padding-left: 165px;
    padding-bottom: 67px;
    background: var(--thm-base);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: -60px;
    z-index: 100;
}

.clock-icon-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 165px;
    background: #1d2f38;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 65px;
    line-height: 65px;
}

.opening-hours__content-inner {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 60px;
    padding-right: 20px;
}

.opening-hours__content-inner .inner-title {
    position: relative;
    display: block;
}

.opening-hours__content-inner .inner-title h2 {
    color: #ffffff;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
}

.opening-hours__content-inner ul {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 110px;
}

.opening-hours__content-inner ul li {
    position: relative;
    display: block;
    padding-left: 80px;
    padding-right: 80px;
    z-index: 1;
}

.opening-hours__content-inner ul li:first-child {
    padding-left: 0;
}

.opening-hours__content-inner ul li:last-child {
    padding-right: 0;
}

.opening-hours__content-inner ul li::before {
    position: absolute;
    top: -16px;
    left: 0;
    bottom: -16px;
    width: 1px;
    background: #ffffff;
    opacity: 0.20;
    z-index: -1;
    content: "";
}

.opening-hours__content-inner ul li:first-child::before {
    display: none;
}

.opening-hours__content-inner ul li p {
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 7px;
}

.opening-hours__content-inner ul li h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    font-family: var(--thm-font);

}


/*** 
=============================================
    Sidebar Css
=============================================
***/


.thm-sidebar-box {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
}


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

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--thm-base);
    border: 2px solid rgba(var(--thm-base-rgb), .80);
    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 var(--thm-base) !important;
    background: var(--thm-base) !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%;
    z-index: 99999999;
}

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


.fact-counter-block-1 .fact-counter-box {
    margin-top: 0px;
}


.fact-counter-block-2 .fact-counter-box {
    margin-top: 0px;
    box-shadow: none;
}


.faq-block-2 .faq-style1-content {
    max-width: 830px;
    width: 100%;
    margin: 0 auto;
}