:root {
    --primary-color: rgba(186, 19, 73, 1);
    --secondary-color: rgba(0, 0, 0, 1);
    --font-heading: 'Grenze', serif;
    --font-body: 'Instrument Sans', sans-serif;
    --box-shadow: 0 0px 10px rgba(0, 0, 0, 0.50);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
}

.lh-30 {
    line-height: 30px;
}

.box-shadow {
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.50);
}

a {
    text-decoration: none;
    color: inherit;
}

.text-justify {
    text-align: justify;
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    padding: 5px 20px;
    font-size: 20px;
    font-family: var(--font-body);
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.primary-btn:hover,
.primary-btn:active,
.primary-btn:focus {
    background-color: var(--secondary-color) !important;
    color: #fff;
}
.main-hero-section{aspect-ratio:24/9 !important;}
.secondary-btn {
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    padding: 5px 20px;
    font-size: 20px;
    font-family: var(--font-body);
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.secondary-btn:hover,
.secondary-btn:active,
.secondary-btn:focus {
    background-color: #fff !important;
    color: var(--secondary-color);
}

@media only screen and (max-width:767px) {
    body {
        font-size: 14px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 3px 10px;
        font-size: 14px;
    }
}

.main-heading {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.main-subheading {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: rgba(33, 33, 33, 1);
    line-height: 1;
}

.heading-divider img {
    width: 475px;
    display: block;
    margin: 10px auto;
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:991px) {
    .main-heading {
        font-size: 20px;
    }

    .main-subheading {
        font-size: 12px;
    }

    .heading-divider img {
        max-width: 60%;
    }
}

@media only screen and (max-width:767px) {
    .common_btn {
        padding: 8px 0px;
        font-size: 16px;
        max-width: 135px;
    }
}

.site-header {
    font-family: var(--font-body);
}

.top-header {
    background-color: #fff;
    color: var(--secondary-color);
}

.contact-icon {
    font-size: 25px;
    background: var(--primary-color);
    color: #fff;
    padding: 9px 9px;
    border-radius: 100px;
    width: 45px;
    text-align: center;
}

.contact-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    margin: 0;
    text-align: left;
}

.contact-value {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--secondary-color);
}

.contact-value:hover {
    text-decoration: underline;
}

.top-header .logo {
    width: 200px;
    display: block;
    margin: 0 auto;
}

.social-icons a {
    background: var(--primary-color);
    font-size: 25px;
    transition: 0.3s;
    color: #fff;
    padding: 4px;
    border-radius: 100px;
    width: 45px;
    text-align: center;
}

.social-icons a:hover {
    color: #fff;
    background-color: var(--secondary-color);
}

.navbar {
    background: var(--primary-color);
    padding: 0;
    box-shadow: var(--box-shadow);
}

.navbar-toggler {
    color: var(--primary-color) !important;
    background: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 20px !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    color: #fff !important;
    padding: 5px 10px !important;
    position: relative !important;
}

.nav-link:hover,
.nav-item.show .nav-link {
    color: rgb(255, 255, 255) !important;
}

.nav_divider {
    width: 2px;
    height: 20px;
    background: #fff;
    margin: 0 0.25rem;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-book {
    position: relative !important;
    color: var(--primary-color) !important;
    background-color: #fff !important;
    border-radius: 10px 10px 0 0 !important;
    padding: 15px 10px !important;
    font-weight: 800 !important;
    font-family: var(--font-body) !important;
    text-transform: uppercase !important;
    box-shadow: var(--box-shadow) !important;
  /*  margin-top: -20px !important;*/
    border: 2px solid var(--primary-color) !important;
    font-size: 20px !important;
    max-width: 175px !important;
    width: 100% !important;
    display: block;
    text-align: center !important;
    overflow: hidden !important;
    transition: color 0.3s ease !important, border-color 0.3s ease !important, box-shadow 0.3s ease !important;
    z-index: 1 !important;
}

.btn-book::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: var(--primary-color) !important;
    transform: translateY(100%) !important;
    transition: all 0.3s ease !important;
    z-index: -1 !important;
}

.btn-book:hover,
.btn-book:focus,
.btn-book:active {
    background-color: #fff !important;
    color: #fff !important;
    border-color: #fff !important;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.50) !important;
}

.btn-book:hover::before,
.btn-book:focus::before,
.btn-book:active::before {
    transform: translateY(0) !important;
}

@media (max-width:991px) {
    .top-header .logo {
        width: 150px;
    }

    .social-icons a {
        background: var(--primary-color);
        font-size: 15px;
        width: 30px;
    }

    .navbar-toggler {
        font-size: 15px;
        order: 3;
    }

    .navbar-toggler.menu-open {
        order: 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 0;
    }

    .nav_divider {
        display: none;
    }

    .btn-book {
        border-radius: 10px !important;
        padding: 3px 10px !important;
        margin-top: 0 !important;
        font-size: 16px !important;
    }
}

.section-rudra-yog {
    background-color: #fff;
    overflow: hidden;
}

.section-rudra-yog.container-fluid {
    padding: 0;
}

.section-rudra-yog .heading {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
    margin-bottom: 10px;
}

.rudra-img {
    background-image: var(--primary-color);
    overflow: hidden;
    padding: 0;
}

.rudra-img .namaste-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rudra-content {
    background-image: url(../../images/white-mandala.png);
    background-color: var(--primary-color);
    filter: inherit;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.rudra-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

@media (max-width:991px) {
    .section-rudra-yog .heading {
        font-size: 20px;
        margin-bottom: 0;
    }

    .rudra-content {
        padding: 20px 5px;
    }

    .rudra-map iframe {
        min-height: 300px;
    }
}

.footer-section {
    background: url('https://www.vedayogaashram.com/images/footer_bg.png');
    background-repeat: repeat;
    background-size: contain;
    padding: 20px 0 0;
}

.footer-top {
    padding: 20px 0;
}

.footer-logo img {
    width: 180px;
    height: auto;
    display: block;
    margin: auto;
}

.footer-description {
    font-size: 16px;
    color: #222;
    line-height: 1.7;
    font-family: var(--font-body);
    font-weight: 500;
}

.footer-links {
    font-family: var(--font-body);
    margin-bottom: 20px;
}

.footer-title {
    color: #c0184a;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
    position: relative;
    font-family: var(--font-heading);
}

.footer-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: #c0184a;
    margin: 6px 0;
}

.footer-list {
    list-style: none;
    padding-left: 15px;
    margin: 0;
    text-align: left;
}

.footer-list li {
    margin-bottom: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

.footer-list li::before {
    content: "";
    position: absolute;
    left: -18px;
    background: url('https://www.vedayogaashram.com/images/footer_bullet.png');
    width: 20px;
    height: 20px;
    margin-top: 3px;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer-list li a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-left: 10px;
}

.footer-list li a:hover {
    text-decoration: underline;
}

.footer-list li i {
    color: #c0184a;
    margin-right: 8px;
    font-size: 9px;
}

.footer-contact i {
    font-size: 28px;
    color: #c0184a;
}

.footer-contact .label {
    font-weight: 700;
    color: #c0184a;
    font-size: 15px;
}

.footer-contact .value {
    font-weight: 600;
    color: #000;
}

.footer-social i {
    font-size: 26px;
    color: #c0184a;
    margin-right: 15px;
    transition: all 0.3s;
}

.footer-social i:hover {
    color: #9a0f38;
}

.footer-bottom {
    background-color: #c0184a;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom .footer-copy {
    font-family: var(--font-body);
}

@media (max-width:991px) {
    .footer-section {
        padding: 20px 0 0;
    }

    .footer-top {
        padding: 10px 0 20px;
    }

    .footer-description {
        text-align: center;
        margin-top: 15px;
    }

    .footer-title {
        margin-top: 30px;
    }
}

.best_teachers {
    background: #fff;
}

.best-teachers-carousel .teacher-card {
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    transition: 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.teacher-img {
    position: relative;
    background: var(--primary-color);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0;
}

.teacher-img img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.teacher-info {
    background: #fff;
    padding: 0px 0px 10px;
    text-align: center;
}

.teacher-info .teacher-name {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 0;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
}

.teacher-info .teacher-position {
    color: var(--primary-color);
    font-weight: 400;
    margin: 0;
}

@media (max-width:768px) {
    .teacher-img img {
        height: auto;
    }
}

.food-accomodation {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../../images/food_accomobg.jpg') no-repeat center center / cover;
    padding: 40px 0;
}

.card-custom {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.card-header {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.card-header .card-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.card-header .card-img img {
    width: 50%;
    height: 220px;
    object-fit: cover;
}

.card-img-top {
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.card-title-banner {
    background-color: var(--primary-color);
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--box-shadow);
}

.food-accomodation .card-body {
    padding: 20px 10px;
    text-align: justify;
}

@media (max-width:576px) {
    .card-header .card-img {
        flex-direction: column;
    }

    .card-header .card-img img {
        width: 100%;
        height: 160px;
    }

    .card-title-banner {
        width: 100%;
        font-size: 16px;
        top: 42%;
    }
}

.testimonial {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-carousel.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonial-carousel .owl-item {
    height: auto;
    display: flex;
}

.testimonial-carousel .item {
    padding-top: 45px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.testimonial-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: var(--box-shadow);
    overflow: visible;
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-avatar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    border: 4px solid #fff;
    box-shadow: var(--box-shadow);
    z-index: 3;
}

.testimonial-header {
    background: var(--primary-color);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-body);
    text-align: center;
    padding: 45px 20px 14px;
    border-radius: 13px 13px 0 0;
}

.testimonial-body {
    background: #F6F1E7;
    padding: 20px 22px 26px;
    border-radius: 0 0 13px 13px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 14px;
}

.testimonial-stars .star-filled {
    color: #F5B301;
}

.testimonial-stars .star-empty {
    color: #ddd;
}

.testimonial-text {
    font-size: 15px;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text p {
    text-align: justify;
}

.testimonial-text .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
}

.testimonial-text .read-more-btn:hover {
    text-decoration: underline;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 350px;
    background-color: #fff;
    border: 1px solid var(--primary-color);
    box-shadow: var(--box-shadow);
}

.video-card img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 42px;
    color: #FF0000 !important;
    line-height: 40px;
    font-size: 40px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.video-card:hover .play-btn {
    background-color: #fff;
}

@media (max-width:768px) {
    .video-row {
        flex-direction: column;
        align-items: center;
    }
}

.reading-carousel .item {
    margin: 20px 10px;
}

.book-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    text-align: center;
    transition: .3s;
    box-shadow: var(--box-shadow);
    display: block;
}

.book-card img {
    width: 100%;
    height: auto;
    object-fit: contain ;
}

.book-card .book-title {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    padding: 8px 0;
    margin: 0;
    bottom: 0;
    border-radius: 0 0 12px 12px;
}

.book-card:hover {
    transform: translateY(-5px);
}

.training-courses-carousel .owl-nav,
.testimonial-carousel .owl-nav,
.best-teachers-carousel .owl-nav,
.activity-carousel .owl-nav,
.reading-carousel .owl-nav,
.treatment-carousel .owl-nav {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    pointer-events: none;
}

.training-courses-carousel .owl-nav button,
.testimonial-carousel .owl-nav button,
.best-teachers-carousel .owl-nav button,
.activity-carousel .owl-nav button,
.reading-carousel .owl-nav button,
.treatment-carousel .owl-nav button {
    pointer-events: all;
}

.training-courses-carousel .owl-next,
.testimonial-carousel .owl-next,
.best-teachers-carousel .owl-next,
.activity-carousel .owl-next,
.reading-carousel .owl-next,
.treatment-carousel .owl-next {
    margin-right: -20px !important;
}

.training-courses-carousel .owl-prev,
.testimonial-carousel .owl-prev,
.best-teachers-carousel .owl-prev,
.activity-carousel .owl-prev,
.reading-carousel .owl-prev,
.treatment-carousel .owl-prev {
    margin-left: -20px !important;
}

@media (max-width:768px) {

    .training-courses-carousel .owl-nav button img,
    .testimonial-carousel .owl-nav button img,
    .best-teachers-carousel .owl-nav button img,
    .activity-carousel .owl-nav button img,
    .reading-carousel .owl-nav button img,
    .treatment-carousel .owl-nav button img {
        width: 20px
    }

    .training-courses-carousel .owl-next,
    .testimonial-carousel .owl-next,
    .best-teachers-carousel .owl-next,
    .activity-carousel .owl-next,
    .reading-carousel .owl-next,
    .treatment-carousel .owl-next {
        margin-right: -10px !important;
    }

    .training-courses-carousel .owl-prev,
    .testimonial-carousel .owl-prev,
    .best-teachers-carousel .owl-prev,
    .activity-carousel .owl-prev,
    .reading-carousel .owl-prev,
    .treatment-carousel .owl-prev {
        margin-left: -10px !important;
    }
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #d6d6d6;
    display: block;
    margin: 5px 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: var(--primary-color) !important;
    transform: scale(1.3);
}

.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    transform: scale(1.2);
}

.note-box {
    background-color: #fbedf2;
    border: 1px solid var(--primary-color);
    padding: 10px;
    border-radius: 10px;
    border-left: 6px solid var(--primary-color);
    box-shadow: var(--box-shadow);
    text-align: justify;
}

.note-box .note-head {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.book-image-wrapper {
    position: relative;
}

.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s ease;
}

.book-card:hover .book-overlay {
    opacity: 1;
}

.book-overlay i {
    color: #fff;
    font-size: 30px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.captcha-code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 5px;
    color: var(--secondary-color);
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 5px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    text-decoration: line-through;
}

.captcha-refresh {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.captcha-refresh:hover {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.captcha-input {
    flex: 1;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 16px;
    outline: none;
}

.captcha-input:focus {
    border-color: var(--secondary-color);
}

.faqs {
    background-color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faqs .accordion-item {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.faqs .accordion-button {
    background-color: #fff;
    border-radius: 8px !important;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.faqs .accordion-button:not(.collapsed) {
    background-color: var(--primary-color) !important;
    color: #fff;
    box-shadow: none;
    border-radius: 8px 8px 0 0 !important;
}

.faqs .accordion-button:not(.collapsed) i {
    color: #fff;
}

.faqs .accordion-button:not(.collapsed)::after {
    filter: invert(1);
    font-size: 16px;
    font-weight: 800;
    color: white;
}

.faqs .accordion-button i {
    color: var(--primary-color);
}

.faqs .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.faqs .accordion-body {
    text-align: justify;
    background-color: #fff;
    line-height: 30px;
    border: 1px solid var(--primary-color);
}

.faqs .mandala {
    position: absolute;
    top: 50%;
    width: 300px;
    height: 100%;
    opacity: 0.8;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
}

.faqs .mandala-left {
    left: 0;
    background-image: url('../../images/mandala_left.png');
}

.faqs .mandala-right {
    right: 0;
    background-image: url('../../images/mandala_right.png');
}

.faqs .container {
    position: relative;
    z-index: 2;
}

@media (max-width:768px) {
    .faqs .mandala {
        width: 180px;
        background-size: contain;
        background-repeat: repeat-y;
        background-position: center top;
        top: 0;
        transform: none;
        height: 100%;
    }

    .faqs .accordion-button {
        font-size: 14px;
    }
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.whatsapp-float.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    line-height: 60px;
}

/* Ripple Animation for WhatsApp */
.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #25d366;
    z-index: -1;
    pointer-events: none;
    animation: whatsappRipple 2s infinite ease-out;
}

.whatsapp-float::after {
    animation-delay: 1s;
}

@keyframes whatsappRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
.top-header{background-color:#fff}.top-header .top-bar-inner{row-gap:.5rem}.top-header .contact-text{line-height:1.15}.navbar>.container{align-items:center}.navbar .logo-panel{background:#fff;padding:6px 18px;margin:8px 0;border-radius:12px;box-shadow:0 2px 10px rgba(0,0,0,.25);line-height:0}.navbar .logo-panel img{width:135px;height:auto;display:block}@media(max-width:991px){.top-header .top-bar-inner{justify-content:center!important;gap:.75rem 1rem}.navbar .logo-panel{padding:5px 12px;margin:6px 0;border-radius:10px}.navbar .logo-panel img{width:100px}}@media(max-width:575px){.top-header .contact-item{display:none!important}.top-header .top-bar-inner{justify-content:flex-end!important}}
.hero-banner {
    position: relative;
    overflow: hidden;
    z-index: 999;
}

.banner-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: auto;
    aspect-ratio: 24/9 !important;
    display: flex;
    align-items: center;
}

.banner-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.banner-content .banner-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 0px;
}

.banner-content .banner-subheading {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #000;
    margin-bottom: 35px;
}

.banner-content .banner-description {
    font-family: var(--font-body);
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
}

.banner-btns {
    display: inline-flex;
    gap: 15px;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0px 10px;
}

.owl-nav button {
    background: none !important;
    border: none !important;
    outline: none !important;
    pointer-events: all;
}

.owl-nav img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.owl-nav img:hover {
    transform: scale(1.1);
}

@media (max-width:991px) {
    .banner-content .banner-heading {
        font-size: 20px;
    }

    .banner-content .banner-subheading {
        font-size: 16px;
    }

    .banner-content .banner-description {
        font-size: 14px;
        text-align: justify;
    }
}

@media only screen and (max-width:767px) {
    .banner-content {
        width: 80%;
        margin: auto;
    }

    .hero-carousel .owl-nav {
        padding: 0px;
        bottom: 5%;
    }

    .owl-nav img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width:575px) {
    .small-center {
        justify-content: center !important;
        text-align: center;
    }
}

.stats-card {
    background-color: #b5124c;
    color: #fff;
    border-radius: 10px;
    padding: 40px 20px 25px;
    position: relative;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-icon {
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 60px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--primary-color);
    box-shadow: var(--box-shadow);
}

.stats-number {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 5%;
    margin-top: 30px;
    font-family: var(--font-body);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stats-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-body);
}

@media (max-width:767px) {
    .stats-card {
        margin-top: 20px;
        padding: 10px 5px 10px;
    }

    .stats-icon {
        font-size: 20px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        top: -30px;
        left: 50%;
    }

    .stats-number {
        margin-top: 10px;
    }

    .stats-label {
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        font-family: var(--font-body);
    }
}

.yoga-overlay-section {
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.yoga-overlay-section .yoga-overlay {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 50px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yoga-overlay-section .heading {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 5px;
}

.yoga-overlay-section .subheading {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media (max-width:767px) {
    .yoga-overlay-section {
        padding: 20px 5px;
    }

    .yoga-overlay-section .yoga-overlay {
        padding: 10px;
    }

    .yoga-overlay-section .heading {
        font-size: 22px;
    }

    .yoga-overlay-section .subheading {
        font-size: 16px;
    }

    .yoga-overlay-section p {
        text-align: justify;
    }
}

.training-courses_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.training-course-card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    margin-bottom: 20px;
}

.training-course-img {
    flex: 1 1 33%;
    min-width: 300px;
    border-right: 1px solid var(--primary-color);
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.training-course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training-course-content {
    flex: 1 1 35%;
    padding: 15px;
    border-left: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    background: url(../../images/course_cardbg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.training-course-title span {
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-body);
    margin-bottom: 0px;
    display: block;
    font-size: 34px;
}

.training-course-title {
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-size: 20px;
}

.training-course-details {
    display: flex;
    gap: 25px;
}

.training-course-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 50%;
    flex: 45%;
}

.training-course-details li {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 6px;
    text-align: left;
    font-family: var(--font-body);
}

.training-course-details i {
    color: var(--primary-color);
    margin-right: 6px;
}

.course-info {
    flex: 1 1 31%;
    padding: 10px 10px 0px;
    text-align: left;
    background: var(--primary-color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
}

.course-info .details {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    font-size: 14px;
    color: #fff;
    margin: 10px 0;
    padding: 5px 0;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
}

.course-info .details div {
    display: flex;
    align-items: self-start;
    justify-content: start;
}

.course-info .details div p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 22px;
}

.course-info .details div p span {
    display: block;
    font-weight: 800;
}

.course-info .details i {
    font-size: 32px;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: 5px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    color: #fff;
}

.price-list li {
    margin-bottom: 8px;
    font-size: 17px;
    padding: 5px 0;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
    font-family: var(--font-body);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.price-list li p {
    margin-bottom: 0;
}

.price-list li:last-child {
    border-bottom: none;
    margin-bottom: 25px;
}

.price-list li i {
    font-size: 32px;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: 5px;
}

.price-list span {
    float: right;
    font-weight: 600;
}

.view-more-btn {
    color: var(--primary-color);
    font-weight: 800;
    display: block;
    margin-top: 10px;
    text-decoration: underline;
    text-align: end;
}

.view-more-btn:hover {
    color: var(--secondary-color);
}

.course-info .enroll-now {
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px 5px 0 0;
    margin: auto;
    max-width: fit-content;
    display: block;
    box-shadow: 0 -4px 20px rgba(255, 255, 255, 0.5);
}

.course-info .enroll-now i {
    margin-left: 5px;
}

.course-info .enroll-now:hover {
    background: #fff;
    color: var(--primary-color);
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px 5px 0 0;
    margin: auto;
    max-width: fit-content;
    display: block;
}

.training-course-card2 {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.training-course-card2 .training-course-img {
    min-width: 300px;
    border-bottom: 1px solid var(--primary-color);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.training-course-card2 .training-course-content {
    flex: 100%;
    border: none !important;
}

.training-course-card2 .training-course-title {
    text-align: left;
}

.training-course-card2 .course-info {
    flex: 100%;
    padding: 5px 10px 0px;
}

.training-course-card2 .course-info .details {
    margin: 0 0 10px;
    padding-bottom: 10px;
}

.training-courses-carousel .owl-prev {
    margin-left: -30px;
}

.training-courses-carousel .owl-next {
    margin-right: -20px;
}

.training-courses-carousel .owl-item {
    margin-right: -10px;
}

.training-courses-carousel .owl-item:last-child {
    margin-right: 0;
}

@media (max-width:767px) {
    .course-info {
        padding: 5px 5px 0 !important;
    }

    .training-course-content {
        flex: 1 1 35%;
        padding: 5px;
        border: none !important;
    }

    .training-course-title span {
        font-size: 24px;
    }

    .training-course-title {
        font-size: 16px;
    }

    .training-course-details {
        gap: 10px;
    }

    .course-info .details {
        margin: 0 !important;
    }

    .course-info .details div p {
        font-size: 14px;
        line-height: 18px;
    }

    .course-info .details i {
        font-size: 24px;
    }

    .price-list {
        margin: 5px 0;
    }

    .price-list li {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .price-list li:last-child {
        margin-bottom: 15px;
    }

    .price-list li i {
        font-size: 24px;
    }

    .training-courses_carousel {
        display: block !important;
    }

    .training-courses-carousel .owl-prev {
        margin-left: -30px;
    }

    .training-courses-carousel .owl-next {
        margin-right: -10px;
    }
}

.accomplished-teachers {
    background-color: #fff;
}

.accomplished-teachers img.rounded-4 {
    border-radius: 20px !important;
}

.learn {
    position: relative;
    background-color: rgba(181, 18, 76, 0.1);
    overflow: hidden;
}

.learn .mandala {
    position: absolute;
    opacity: 0.5;
    width: 355px;
    z-index: 1;
}

.learn .mandala-left {
    top: 0;
    left: 0;
}

.learn .mandala-right {
    bottom: 0;
    right: 0;
}

.learn .container {
    position: relative;
    z-index: 2;
}

.learn img.rounded-4 {
    border-radius: 16px !important;
}
.main-hero-section{height:auto;aspect-ratio:24/9;background-position:center center;background-repeat:no-repeat;background-size:cover;} .main-hero-overlay{background:linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 40%,rgba(255,255,255,0.8) 60%,rgba(255,255,255,0) 100%);} .main-hero-heading{font-family:var(--font-heading);color:var(--primary-color);font-size:40px;font-weight:700;margin-bottom:0;line-height:1;text-shadow:0px 1px 3px rgba(0,0,0,0.3);} .breadcrumb-wrapper{position:absolute;bottom:0;right:0;padding:5px 25px;z-index:5;background-image:linear-gradient(to right,rgba(186,19,73,0),rgba(186,19,73,1));border-top-left-radius:6px;} .breadcrumb-item a{color:#fff !important;font-weight:500;} .breadcrumb-item.active{color:#fff !important;font-weight:700;} .breadcrumb-item+.breadcrumb-item::before{content:"\f105";font-family:"Font Awesome 6 Free";font-weight:900;color:#fff;margin-right:6px;margin-left:6px;font-size:14px;} @media (max-width:768px){.main-hero-heading{font-size:14px;} .breadcrumb-item a{font-size:14px;} } @media (max-width:480px){.main-hero-heading{font-size:18px;} } .course-section{background:linear-gradient(180deg,#FFFFFF 0%,#EAE7E7 100%);} .course-slider{background-color:#fff;border:1px solid var(--primary-color);border-radius:20px;padding:10px;max-width:100%;overflow:hidden;min-width:0;} .course-section .slick-prev{position:absolute;left:2px;top:45%;transform:translateY(-50%);z-index:999;background:rgba(255,255,255,0.6);border:none;border-radius:50%;color:var(--secondary-color);} .course-section .slick-next{position:absolute;right:2px;top:45%;transform:translateY(-50%);z-index:999;background:rgba(255,255,255,0.6);border:none;border-radius:50%;color:var(--secondary-color);} .main-slider img{max-width:100%;width:100%;height:auto;border-radius:12px;} .main-slider,.thumb-slider{max-width:100%;min-width:0;} .thumb-slider img{width:100%;height:60px;border-radius:8px;object-fit:cover;cursor:pointer;filter:grayscale(100%);transition:filter 0.3s ease;} .thumb-slider .slick-current img{filter:grayscale(0%);} .thumb-slider img:hover{filter:grayscale(20%);} .thumb-slider .slick-slide{margin:0 4px;} .course-details{border:1px solid var(--primary-color);border-radius:20px;overflow:hidden;background:#ffffff;padding-bottom:0;} .course-header{background:var(--primary-color);color:#fff;text-shadow:0px 1px 3px rgba(0,0,0,0.3);font-family:var(--font-heading);text-align:center;padding:5px 0;font-size:32px;font-weight:800;} .course-info{padding:10px 15px;background-image:url("../../images/course_cardbg.png");background-repeat:no-repeat;background-position:center;background-size:50%;} .info-row{display:flex;gap:35px;padding:18px 0;border-bottom:2px dashed rgba(0,0,0,0.2);} .info-row:last-child{border-bottom:none;} .info-item{flex:1;display:flex;align-items:center;gap:15px;} .info-item .icon{font-size:32px;padding:10px;width:55px;height:55px;vertical-align:middle;margin-right:5px;background:rgba(186,19,73,0.2);color:var(--primary-color);border-radius:10px;display:flex;justify-content:center;align-items:center;} .info-item p{margin:0;font-size:16px;line-height:20px;color:var(--secondary-color);font-weight:400;} .info-item strong{color:#000;} .info-item span{font-size:16px;display:block;color:var(--primary-color);font-weight:800;} .course-pricing{display:flex;align-items:stretch;justify-content:space-between;padding:0 10px 10px;} .pricing-table{width:100%;border-radius:12px;overflow:hidden;border:1px solid var(--primary-color);} .pricing-header,.pricing-row{display:flex;text-align:center;} .pricing-header div,.pricing-row div{flex:1;padding:10px 5px;} .pricing-header div:first-child,.pricing-row div:first-child{flex:0.8;background:var(--primary-color);color:#fff;font-weight:600;} .pricing-row .b-w,.pricing-header .b-w{border-bottom:1px solid #fff;} .pricing-row .b-b{border-bottom:1px solid var(--secondary-color);} .pricing-header .r-b-w{border-right:1px solid #fff;} .pricing-row .r-b-b{border-right:1px solid var(--secondary-color);} .pricing-header div{background:var(--primary-color);color:#fff;font-weight:600;} .pricing-row:first-of-type div:first-child{background:#fff;color:var(--secondary-color);font-weight:600;} .pricing-row div{font-weight:500;font-size:15px;} .course-details .primary-btn{align-items:center;justify-content:center;margin:auto;} .course-description{border:1px solid var(--primary-color);border-radius:20px;overflow:hidden;background:#ffffff;padding:20px 15px;background:#fff;position:relative;} .course-description::before{content:"";position:absolute;inset:0;background:url('../../images/course_cardbg.png') center center no-repeat;background-size:contain;opacity:0.6;z-index:0;} .course-description .content{position:relative;z-index:1;} @media (max-width:992px){.info-row{flex-direction:column;gap:0px;border:none;padding:0;} .info-item{padding-bottom:10px;padding-top:10px;border-bottom:2px dashed rgba(0,0,0,0.2);} .info-row:last-child .info-item:last-child{border-bottom:none !important;} .course-pricing{flex-direction:column;align-items:stretch;} .course-details .primary-btn{width:100%;margin:15px 0 0 0;} } .youwill-get .feature-box{border:1px solid var(--primary-color);border-radius:10px;background:#fff;box-shadow:var(--box-shadow);transition:all 0.3s ease;} .youwill-get .grid_row{gap:80px 0px;margin-top:95px;} .youwill-get .feature-box:hover{transform:translateY(-5px);box-shadow:0 4px 12px rgba(0,0,0,0.1);} .youwill-get .icon{width:60px;height:60px;background-color:var(--primary-color);color:#fff;font-size:24px;border-radius:10px;display:flex;align-items:center;justify-content:center;margin:-55px auto 0;transition:all 0.3s ease;transform:rotate(45deg);box-shadow:var(--box-shadow);outline:5px solid rgba(186,19,73,0.5);} .youwill-get .icon i{transform:rotate(-45deg);} .youwill-get .feature-box:hover .icon{background-color:var(--primary-color);outline:10px solid rgba(186,19,73,0.5);} .youwill-get .feature_text{margin:0;text-align:center;font-family:var(--font-body);} @media (max-width:767.98px){.youwill-get .grid_row{gap:60px 0px;} .youwill-get .feature-box{padding:20px 15px;} .youwill-get .icon{width:50px;height:50px;font-size:20px;} .youwill-get .feature_text{font-size:14px;} } .what-youlearn{background-color:rgba(186,19,73,0.1);text-align:center;position:relative;overflow:hidden;} .what-youlearn .accordion-item{border-radius:8px;box-shadow:var(--box-shadow);} .what-youlearn .accordion-button{background-color:#fff;border-radius:8px !important;color:var(--secondary-color);transition:all 0.3s ease;} .what-youlearn .accordion-button:not(.collapsed){background-color:var(--primary-color) !important;color:#fff;box-shadow:none;border-radius:8px 8px 0 0 !important;} .what-youlearn .accordion-button:not(.collapsed) i{color:#fff;} .what-youlearn .accordion-button:not(.collapsed)::after{filter:invert(1);font-size:16px;font-weight:800;color:white;} .what-youlearn .accordion-button i{color:var(--primary-color);} .what-youlearn .accordion-button:focus{box-shadow:none;border-color:var(--primary-color);} .what-youlearn .accordion-body{text-align:justify;background-color:#fff;line-height:30px;border:1px solid var(--primary-color);} .what-youlearn .mandala{position:absolute;top:50%;width:300px;height:100%;opacity:0.8;transform:translateY(-50%);z-index:0;pointer-events:none;background-size:contain;background-repeat:no-repeat;background-position:top center;} .what-youlearn .mandala-left{left:0;background-image:url('../../images/mandala_left.png');} .what-youlearn .mandala-right{right:0;background-image:url('../../images/mandala_right.png');} .what-youlearn .container{position:relative;z-index:2;} @media (max-width:768px){.what-youlearn .mandala{width:180px;background-size:contain;background-repeat:repeat-y;background-position:center top;top:0;transform:none;height:100%;} .what-youlearn .accordion-button{font-size:14px;} } tbody,td,tfoot,th,thead,tr{border-width:unset;font-family:var(--font-body);} .daily-schedule .schedule-table{border:1px solid var(--primary-color);border-radius:10px;overflow:hidden;} .daily-schedule .schedule-table td{padding:10px 15px;border:none;vertical-align:middle;text-align:left;} .daily-schedule .schedule-table tr.highlight td{background-color:var(--primary-color);color:#fff;font-weight:400;} .daily-schedule .schedule-table tr td:first-child{width:35%;font-weight:600;} .daily-schedule .inquiry-card{border-radius:10px;border:1px solid var(--primary-color);overflow:hidden;} .daily-schedule .inquiry-card-header{font-size:24px;background:var(--primary-color);font-family:var(--font-body);} .daily-schedule .inquiry-card-body{padding:10px;} .inquiry-card form{color:var(--secondary-color);} @media (max-width:768px){.daily-schedule .schedule-table td{padding:5px 10px;} } .upcoming-dates{background:url(../../images/upcoming_bg.png);background-position:center center;background-repeat:no-repeat;background-size:cover;text-align:center;} .training-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(600px,1fr));gap:25px;justify-items:center;margin-bottom:40px;} .training-box{background:#fff;border:1px solid var(--primary-color);border-radius:10px;padding:20px;box-shadow:var(--box-shadow);display:flex;align-items:center;gap:15px;width:100%;transition:all 0.3s ease;} .training-box:hover{transform:translateY(-5px);box-shadow:0 6px 16px rgba(0,0,0,0.1);} .training-box .training-info{text-align:left;flex-grow:1;} .training-box i{color:var(--primary-color);font-size:2rem;flex-shrink:0;background:#FFD9E5;padding:10px;border-radius:8px;} .training-info .t-date{color:var(--primary-color);font-size:1.1rem;margin:0;font-weight:600;font-family:var(--font-body);} .training-info .t-seats{margin:5px 0 0;} .date-offer{background-color:var(--primary-color);} @media (max-width:992px){.training-box{max-width:100%;} } @media (max-width:767px){.training-grid{grid-template-columns:repeat(auto-fit,minmax(260px,1fr));} .training-box{flex-direction:column;text-align:center;padding:15px;max-width:375px;} .training-box i{font-size:1.8rem;} .training-box .training-info{text-align:center;} .training-info .t-date{font-size:1rem;} } .include_notinclude{background:#fff;} .include_notinclude .include_box{border-radius:8px;border:1px solid var(--primary-color);background:#fff;box-shadow:var(--box-shadow);transition:all 0.3s ease;display:flex;flex-direction:column;} .include_notinclude .include_box:hover{transform:translateY(-4px);box-shadow:0 8px 20px rgba(0,0,0,0.1);} .include_notinclude .include_header{font-weight:600;border-bottom:1px solid rgba(0,0,0,0.1);} .include_notinclude .include .include_header{background-color:#ADFAB9;color:#048220;border-color:#048220;} .include_notinclude .include{border-color:#048220;} .include_notinclude .include_body li i{color:#048220;} .include_notinclude .not_include .include_header{background-color:#FAADAD;color:#820404;border-color:#820404;} .include_notinclude .not_include{border-color:#b71c1c;} .include_notinclude .not_include .include_body li i{color:#820404;} .include_notinclude .include_body ul li{font-size:1rem;margin-bottom:12px;display:flex;align-items:center;} @media (max-width:767px){.include_notinclude .include_box{margin-bottom:1.5rem;} } .activity-section{background-color:#fff;} .activity-carousel{padding:10px;} .activity-section .activity_card{border:1px solid var(--primary-color);border-radius:10px;overflow:hidden;background:#fff;transition:all 0.3s ease;} .activity-section .activity_content .heading{color:var(--primary-color);font-family:var(--font-body);font-weight:600;font-size:1.2rem;} .foodand_accomodation{background-position:center center;background-repeat:no-repeat;background-size:cover;position:relative;} .foodand_accomodation::before{content:"";position:absolute;inset:0;background:rgba(255,255,255,0.8);z-index:1;} .foodand_accomodation .container{z-index:2;position:relative;} .foodand_accomodation .foodaccomo_heading{font-size:24px;font-weight:800;color:var(--primary-color);} .foodaccomo_list{display:flex;flex-wrap:wrap;} .foodaccomo_list li{position:relative;padding-left:35px;line-height:1.6;margin-bottom:8px;} .foodaccomo_list li::before{content:"\f06c";font-family:"Font Awesome 6 Free";font-weight:900;position:absolute;left:0;color:var(--primary-color);} .foodand_accomodation img{object-fit:cover;border-radius:20px;} .foodand_accomodation .food_accomimg{min-height:130px;border-radius:20px;} .accomosub-heading{font-size:18px;font-weight:600;} @media (max-width:768px){.foodand_accomodation .foodaccomo_heading{font-size:18px;} .foodaccomo_list li{padding-left:20px;} .foodand_accomodation img{margin-bottom:0.5rem;} .accomosub-heading{font-size:14px;} .foodand_accomodation .food_accomimg{min-height:80px;} } .important_notes{position:relative;background-position:center center;background-repeat:no-repeat;background-size:cover;background-attachment:fixed;} .important_notes::before{content:"";position:absolute;inset:0;background:rgba(255,255,255,0.88);} .important_notes .container{position:relative;z-index:2;} .important_notes .imp_note_header{background-color:var(--primary-color);border-bottom:2px solid var(--primary-color);max-width:fit-content;border-radius:0px 50px 50px 0px;box-shadow:var(--box-shadow);} .important_notes .imp_note_header .imp_note_title{font-size:18px;font-weight:700;} .important_notes .imp_note_header .imp_note_title i{font-weight:600;} .important_notes .imp_note_body ul{list-style:none;padding-left:20px;margin-bottom:0;} .important_notes .imp_note_body ul li{position:relative;padding-left:25px;margin-bottom:10px;line-height:1.7;} .important_notes .imp_note_body ul li::before{content:"\f192";font-family:"Font Awesome 6 Free";font-weight:900;color:var(--primary-color);position:absolute;left:0;top:5px;font-size:0.7rem;} @media (max-width:768px){.important_notes{background-attachment:scroll;} .important_notes .imp_note_header .imp_note_title{font-size:16px;} .important_notes .imp_note_body ul li{padding-left:22px;} } .yoga-gallery{background:#EAE7E7;} .gallery-card{border:1px solid var(--primary-color);border-radius:20px;overflow:hidden;background:#fff;box-shadow:var(--box-shadow);transition:all 0.3s ease;display:block;} .gallery-card{position:relative;display:block;border:1px solid var(--primary-color);border-radius:20px;overflow:hidden;background:#fff;box-shadow:var(--box-shadow);transition:all 0.3s ease;} .overlay-zoom{position:absolute;inset:0;background:rgba(0,0,0,0.45);color:#fff;display:flex;justify-content:center;align-items:center;opacity:0;transition:all 0.3s ease;font-size:40px;} .overlay-zoom i{transform:scale(0.5);transition:0.3s ease;} .gallery-card:hover .overlay-zoom{opacity:1;} .gallery-card:hover .overlay-zoom i{transform:scale(1);} .gallery-card:hover{transform:translateY(-5px);box-shadow:0 8px 16px rgba(0,0,0,0.1);} .gallery-card img{width:100%;height:200px;object-fit:cover;transition:all 0.3s ease;} .gallery-card:hover img{transform:scale(1.1);}





.overflow-hide {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
.clear {
  clear: both;
}
.pull-none {
  float: none;
}
::-moz-selection {
  background: #ff91b8;
  color: #fff;
}
::selection {
  background: #ff91b8;
  color: #fff;
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1300px;
  }
}

dl,
ul,
ol {
  list-style-position: outside;
  padding: 0;
}
ul,
ol {
  margin-bottom: 24px;
}
ul li,
ol li {
  padding: 0;
  font-size: 15px;
}
dl {
  margin-left: 0;
  margin-bottom: 30px;
}
dl dd {
  margin-bottom: 10px;
}
.p-a0 {
  padding: 0;
}
.p-a5 {
  padding: 5px;
}
.p-a10 {
  padding: 10px;
}
.p-a15 {
  padding: 15px;
}
.p-a20 {
  padding: 20px;
}
.p-a25 {
  padding: 25px;
}
.p-a30 {
  padding: 30px;
}
.p-a40 {
  padding: 40px;
}
.p-a50 {
  padding: 50px;
}
.p-a60 {
  padding: 60px;
}
.p-a70 {
  padding: 70px;
}
.p-a80 {
  padding: 80px;
}
.p-a90 {
  padding: 90px;
}
.p-a100 {
  padding: 100px;
}
.p-t0 {
  padding-top: 0;
}
.p-t5 {
  padding-top: 5px;
}
.p-t10 {
  padding-top: 10px;
}
.p-t15 {
  padding-top: 15px;
}
.p-t20 {
  padding-top: 20px;
}
.p-t30 {
  padding-top: 30px;
}
.p-t40 {
  padding-top: 40px;
}
.p-t50 {
  padding-top: 50px;
}
.p-t60 {
  padding-top: 60px;
}
.p-t70 {
  padding-top: 70px;
}
.p-t80 {
  padding-top: 80px;
}
.p-t90 {
  padding-top: 90px;
}
.p-t100 {
  padding-top: 100px;
}
.p-b0 {
  padding-bottom: 0;
}
.p-b5 {
  padding-bottom: 5px;
}
.p-b10 {
  padding-bottom: 10px;
}
.p-b15 {
  padding-bottom: 15px;
}
.p-b20 {
  padding-bottom: 20px;
}
.p-b30 {
  padding-bottom: 30px;
}
.p-b40 {
  padding-bottom: 40px;
}
.p-b50 {
  padding-bottom: 50px;
}
.p-b60 {
  padding-bottom: 60px;
}
.p-b70 {
  padding-bottom: 70px;
}
.p-b80 {
  padding-bottom: 80px;
}
.p-b90 {
  padding-bottom: 90px;
}
.p-b100 {
  padding-bottom: 100px;
}
.p-l0 {
  padding-left: 0;
}
.p-l5 {
  padding-left: 5px;
}
.p-l10 {
  padding-left: 10px;
}
.p-l15 {
  padding-left: 15px;
}
.p-l20 {
  padding-left: 20px;
}
.p-l30 {
  padding-left: 30px;
}
.p-l40 {
  padding-left: 40px;
}
.p-l50 {
  padding-left: 50px;
}
.p-l60 {
  padding-left: 60px;
}
.p-l70 {
  padding-left: 70px;
}
.p-l80 {
  padding-left: 80px;
}
.p-l90 {
  padding-left: 90px;
}
.p-l100 {
  padding-left: 100px;
}
.p-r0 {
  padding-right: 0;
}
.p-r5 {
  padding-right: 5px;
}
.p-r10 {
  padding-right: 10px;
}
.p-r15 {
  padding-right: 15px;
}
.p-r20 {
  padding-right: 20px;
}
.p-r30 {
  padding-right: 30px;
}
.p-r40 {
  padding-right: 40px;
}
.p-r50 {
  padding-right: 50px;
}
.p-r60 {
  padding-right: 60px;
}
.p-r70 {
  padding-right: 70px;
}
.p-r80 {
  padding-right: 80px;
}
.p-r90 {
  padding-right: 90px;
}
.p-r100 {
  padding-right: 100px;
}
.p-lr0 {
  padding-left: 0;
  padding-right: 0;
}
.p-lr5 {
  padding-left: 5px;
  padding-right: 5px;
}
.p-lr10 {
  padding-left: 10px;
  padding-right: 10px;
}
.p-lr15 {
  padding-left: 15px;
  padding-right: 15px;
}
.p-lr20 {
  padding-left: 20px;
  padding-right: 20px;
}
.p-lr30 {
  padding-left: 30px;
  padding-right: 30px;
}
.p-lr40 {
  padding-left: 40px;
  padding-right: 40px;
}
.p-lr50 {
  padding-left: 50px;
  padding-right: 50px;
}
.p-lr60 {
  padding-left: 60px;
  padding-right: 60px;
}
.p-lr70 {
  padding-left: 70px;
  padding-right: 70px;
}
.p-lr80 {
  padding-left: 80px;
  padding-right: 80px;
}
.p-lr90 {
  padding-left: 90px;
  padding-right: 90px;
}
.p-lr100 {
  padding-left: 100px;
  padding-right: 100px;
}
.p-tb0 {
  padding-bottom: 0;
  padding-top: 0;
}
.p-tb5 {
  padding-bottom: 5px;
  padding-top: 5px;
}
.p-tb10 {
  padding-bottom: 10px;
  padding-top: 10px;
}
.p-tb15 {
  padding-bottom: 15px;
  padding-top: 15px;
}
.p-tb20 {
  padding-bottom: 20px;
  padding-top: 20px;
}
.p-tb30 {
  padding-bottom: 30px;
  padding-top: 30px;
}
.p-tb40 {
  padding-bottom: 40px;
  padding-top: 40px;
}
.p-tb50 {
  padding-bottom: 50px;
  padding-top: 50px;
}
.p-tb60 {
  padding-bottom: 60px;
  padding-top: 60px;
}
.p-tb70 {
  padding-bottom: 70px;
  padding-top: 70px;
}
.p-tb80 {
  padding-bottom: 80px;
  padding-top: 80px;
}
.p-tb90 {
  padding-bottom: 90px;
  padding-top: 90px;
}
.p-tb100 {
  padding-bottom: 100px;
  padding-top: 100px;
}
.m-auto {
  margin: auto;
}
.mx-auto {
  margin: 0 auto;
}
.m-a0 {
  margin: 0;
}
.m-a5 {
  margin: 5px;
}
.m-a10 {
  margin: 10px;
}
.m-a15 {
  margin: 15px;
}
.m-a20 {
  margin: 20px;
}
.m-a30 {
  margin: 30px;
}
.m-a40 {
  margin: 40px;
}
.m-a50 {
  margin: 50px;
}
.m-a60 {
  margin: 60px;
}
.m-a70 {
  margin: 70px;
}
.m-a80 {
  margin: 80px;
}
.m-a90 {
  margin: 90px;
}
.m-a100 {
  margin: 100px;
}
.m-t0 {
  margin-top: 0;
}
.m-t5 {
  margin-top: 5px;
}
.m-t10 {
  margin-top: 10px;
}
.m-t15 {
  margin-top: 15px;
}
.m-t20 {
  margin-top: 20px;
}
.m-t30 {
  margin-top: 30px;
}
.m-t40 {
  margin-top: 40px;
}
.m-t50 {
  margin-top: 50px;
}
.m-t60 {
  margin-top: 60px;
}
.m-t70 {
  margin-top: 70px;
}
.m-t80 {
  margin-top: 80px;
}
.m-t90 {
  margin-top: 90px;
}
.m-t100 {
  margin-top: 100px;
}
.m-b0 {
  margin-bottom: 0;
}
.m-b5 {
  margin-bottom: 5px;
}
.m-b10 {
  margin-bottom: 10px;
}
.m-b15 {
  margin-bottom: 15px;
}
.m-b20 {
  margin-bottom: 20px;
}
.m-b30 {
  margin-bottom: 30px;
}
.m-b40 {
  margin-bottom: 40px;
}
.m-b50 {
  margin-bottom: 50px;
}
.m-b60 {
  margin-bottom: 60px;
}
.m-b70 {
  margin-bottom: 70px;
}
.m-b80 {
  margin-bottom: 80px;
}
.m-b90 {
  margin-bottom: 90px;
}
.m-b100 {
  margin-bottom: 100px;
}
.m-l0 {
  margin-left: 0;
}
.m-l5 {
  margin-left: 5px;
}
.m-l10 {
  margin-left: 10px;
}
.m-l15 {
  margin-left: 15px;
}
.m-l20 {
  margin-left: 20px;
}
.m-l30 {
  margin-left: 30px;
}
.m-l40 {
  margin-left: 40px;
}
.m-l50 {
  margin-left: 50px;
}
.m-l60 {
  margin-left: 60px;
}
.m-l70 {
  margin-left: 70px;
}
.m-l80 {
  margin-left: 80px;
}
.m-l90 {
  margin-left: 90px;
}
.m-l100 {
  margin-left: 100px;
}
.m-r0 {
  margin-right: 0;
}
.m-r5 {
  margin-right: 5px;
}
.m-r10 {
  margin-right: 10px;
}
.m-r15 {
  margin-right: 15px;
}
.m-r20 {
  margin-right: 20px;
}
.m-r30 {
  margin-right: 30px;
}
.m-r40 {
  margin-right: 40px;
}
.m-r50 {
  margin-right: 50px;
}
.m-r60 {
  margin-right: 60px;
}
.m-r70 {
  margin-right: 70px;
}
.m-r80 {
  margin-right: 80px;
}
.m-r90 {
  margin-right: 90px;
}
.m-r100 {
  margin-right: 100px;
}
.m-lr0 {
  margin-left: 0;
  margin-right: 0;
}
.m-lr5 {
  margin-left: 5px;
  margin-right: 5px;
}
.m-lr10 {
  margin-left: 10px;
  margin-right: 10px;
}
.m-lr15 {
  margin-left: 15px;
  margin-right: 15px;
}
.m-lr20 {
  margin-left: 20px;
  margin-right: 20px;
}
.m-lr30 {
  margin-left: 30px;
  margin-right: 30px;
}
.m-lr40 {
  margin-left: 40px;
  margin-right: 40px;
}
.m-lr50 {
  margin-left: 50px;
  margin-right: 50px;
}
.m-lr60 {
  margin-left: 60px;
  margin-right: 60px;
}
.m-lr70 {
  margin-left: 70px;
  margin-right: 70px;
}
.m-lr80 {
  margin-left: 80px;
  margin-right: 80px;
}
.m-lr90 {
  margin-left: 90px;
  margin-right: 90px;
}
.m-lr100 {
  margin-left: 100px;
  margin-right: 100px;
}
.m-tb0 {
  margin-bottom: 0;
  margin-top: 0;
}
.m-tb5 {
  margin-bottom: 5px;
  margin-top: 5px;
}
.m-tb10 {
  margin-bottom: 10px;
  margin-top: 10px;
}
.m-tb15 {
  margin-bottom: 15px;
  margin-top: 15px;
}
.m-tb20 {
  margin-bottom: 20px;
  margin-top: 20px;
}
.m-tb30 {
  margin-bottom: 30px;
  margin-top: 30px;
}
.m-tb40 {
  margin-bottom: 40px;
  margin-top: 40px;
}
.m-tb50 {
  margin-bottom: 50px;
  margin-top: 50px;
}
.m-tb60 {
  margin-bottom: 60px;
  margin-top: 60px;
}
.m-tb70 {
  margin-bottom: 70px;
  margin-top: 70px;
}
.m-tb80 {
  margin-bottom: 80px;
  margin-top: 80px;
}
.m-tb90 {
  margin-bottom: 90px;
  margin-top: 90px;
}
.m-tb100 {
  margin-bottom: 100px;
  margin-top: 100px;
}
.no-col-gap [class*="col-xs-"],
.no-col-gap [class*="col-sm-"],
.no-col-gap [class*="col-md-"],
.no-col-gap [class*="col-lg-"] {
  padding-left: 0;
  padding-right: 0;
}
.max-w100 {
  max-width: 100px;
}
.max-w200 {
  max-width: 200px;
}
.max-w300 {
  max-width: 300px;
}
.max-w400 {
  max-width: 400px;
}
.max-w500 {
  max-width: 500px;
}
.max-w600 {
  max-width: 600px;
}
.max-w700 {
  max-width: 700px;
}
.max-w800 {
  max-width: 800px;
}
.max-w900 {
  max-width: 900px;
}
.max-w1000 {
  max-width: 1000px;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.static {
  position: static;
}
.z-index1 {
  z-index: 1;
}
.z-index2 {
  z-index: 2;
}
.z-index3 {
  z-index: 3;
}
.z-index4 {
  z-index: 4;
}
.z-index5 {
  z-index: 5;
}
.z-index6 {
  z-index: 6;
}
.z-index7 {
  z-index: 7;
}
.z-index8 {
  z-index: 8;
}
.z-index9 {
  z-index: 9;
}
.z-index10 {
  z-index: 10;
}
.z-index100 {
  z-index: 100;
}
.z-index999 {
  z-index: 999;
}


.bg-img-fix {
  background-attachment: fixed;
  background-size: cover;
}
.dez-img-overlay1,
.dez-img-overlay2,
.dez-img-overlay3,
.dez-img-overlay4,
.dez-img-overlay5,
.dez-img-overlay6,
.dez-img-overlay7,
.dez-img-overlay8,
.dez-img-overlay9,
.dez-img-overlay11 {
  position: relative;
}
.dez-img-overlay1:before,
.dez-img-overlay1:after,
.dez-img-overlay2:before,
.dez-img-overlay2:after,
.dez-img-overlay3:before,
.dez-img-overlay3:after,
.dez-img-overlay4:before,
.dez-img-overlay4:after,
.dez-img-overlay5:before,
.dez-img-overlay5:after,
.dez-img-overlay6:before,
.dez-img-overlay6:after,
.dez-img-overlay7:before,
.dez-img-overlay7:after,
.dez-img-overlay8:before,
.dez-img-overlay8:after,
.dez-img-overlay9:before,
.dez-img-overlay9:after,
.dez-img-overlay11:before,
.dez-img-overlay11:after {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0.4;
  z-index: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.dez-img-overlay1:before {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.dez-img-overlay1:hover:before,
.dez-box:hover .dez-img-overlay1:before {
  opacity: 0.5;
}
.dez-img-overlay2:before {
  width: 100%;
  height: 100%;
  opacity: 0;
  background: -moz-linear-gradient(top, #fff0 0%, rgb(0 0 0 / 0.65) 100%);
  background: -webkit-linear-gradient(top, #fff0 0%, rgb(0 0 0 / 0.65) 100%);
  background: linear-gradient(to bottom, #fff0 0%, rgb(0 0 0 / 0.65) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#a6000000',GradientType=0);
}
.dez-img-overlay2:hover:before,
.dez-box:hover .dez-img-overlay2:before {
  opacity: 0.9;
}
.dez-img-overlay3:before {
  left: 50%;
  top: 50%;
}
.dez-img-overlay3:hover:before,
.dez-box:hover .dez-img-overlay3:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.dez-img-overlay4:before {
  left: 50%;
  top: 0;
  height: 100%;
}
.dez-img-overlay4:hover:before,
.dez-box:hover .dez-img-overlay4:before {
  width: 100%;
  left: 0;
}
.dez-img-overlay5:before {
  left: 0;
  top: 50%;
  width: 100%;
}
.dez-img-overlay5:hover:before,
.dez-box:hover .dez-img-overlay5:before {
  height: 100%;
  top: 0;
}
.dez-img-overlay6:before {
  left: 0;
  top: auto;
  bottom: 0;
  width: 100%;
}
.dez-img-overlay6:hover:before,
.dez-box:hover .dez-img-overlay6:before {
  height: 100%;
}
.dez-img-overlay7:before,
.dez-img-overlay7:after {
  height: 100%;
}
.dez-img-overlay7:after {
  left: auto;
  right: 0;
}
.dez-img-overlay7:hover:before,
.dez-img-overlay7:hover:after,
.dez-box:hover .dez-img-overlay7:before,
.dez-box:hover .dez-img-overlay7:after {
  width: 50%;
}
.dez-img-overlay8:before,
.dez-img-overlay8:after {
  height: 100%;
}
.dez-img-overlay8:after {
  left: auto;
  right: 0;
}
.dez-img-overlay8:hover:before,
.dez-img-overlay8:hover:after,
.dez-box:hover .dez-img-overlay8:before,
.dez-box:hover .dez-img-overlay8:after {
  width: 100%;
  opacity: 0.3;
}
.dez-img-overlay9:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.dez-img-overlay9:hover:before,
.dez-img-overlay9:hover:after,
.dez-box:hover .dez-img-overlay9:before,
.dez-box:hover .dez-img-overlay9:after {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.dez-img-overlay10:before,
.dez-img-overlay10:after {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.dez-img-overlay10:hover:before,
.dez-box:hover .dez-img-overlay10:before {
  opacity: 0.5;
}
.dez-img-overlay10:hover:after,
.dez-box:hover .dez-img-overlay10:after {
  width: 90%;
  height: 80%;
  left: 5%;
  top: 10%;
  opacity: 0.5;
  background: none;
  border: 1px dashed #fff;
}
.dez-img-overlay11:hover:after,
.dez-box:hover .dez-img-overlay11:after {
  height: 95%;
  opacity: 1;
  right: 7.5%;
  top: 2.5%;
  -moz-transform: skewY(0deg);
  -webkit-transform: skewY(0deg);
  -o-transform: skewY(0deg);
  -ms-transform: skewY(0deg);
  transform: skewY(0deg);
  width: 85%;
}
.dez-img-overlay11:hover:before,
.dez-box:hover .dez-img-overlay11:before {
  height: 85%;
  left: 2.5%;
  opacity: 1;
  top: 7.5%;
  -moz-transform: skewY(0deg);
  -webkit-transform: skewY(0deg);
  -o-transform: skewY(0deg);
  -ms-transform: skewY(0deg);
  transform: skewY(0deg);
  width: 95%;
}
.dez-img-overlay11:after {
  background: #fff0 none repeat scroll 0 0;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  bottom: 5%;
  height: 80%;
  left: auto;
  right: 5%;
  top: auto;
  -moz-transform: skewY(70deg);
  -webkit-transform: skewY(70deg);
  -o-transform: skewY(70deg);
  -ms-transform: skewY(70deg);
  transform: skewY(70deg);
  width: 90%;
}
.dez-img-overlay11:before {
  background: #fff0 none repeat scroll 0 0;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  bottom: auto;
  height: 90%;
  left: 5%;
  right: auto;
  top: 5%;
  -moz-transform: skewX(-70deg);
  -webkit-transform: skewX(-70deg);
  -o-transform: skewX(-70deg);
  -ms-transform: skewX(-70deg);
  transform: skewX(-70deg);
  width: 80%;
}
.dez-img-overlay11 {
  background-color: #000 !important;
}
.dez-img-overlay11:hover img {
  opacity: 0.7 !important;
}
.dez-img-effect {
  position: relative;
  overflow: hidden;
  display: block;
}
.dez-img-effect img {
  display: block;
  margin: 0;
  width: 100%;
  height: auto;
  box-shadow: 0 0 0 #fff0;
  -webkit-box-shadow: 0 0 0 #fff0;
  -moz-box-shadow: 0 0 0 #fff0;
  transition: all 0.25s;
  -moz-transition: all 0.25s;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
}
.dez-img-effect.opacity img:hover {
  opacity: 0.8;
  -moz-opacity: 0.8;
  -webkit-opacity: 0.8;
}
.dez-img-effect.zoom-slow img {
  transition: all 3s;
  -moz-transition: all 3s;
  -webkit-transition: all 3s;
  -o-transition: all 3s;
}
.dez-img-effect.zoom-slow:hover img {
  -moz-transform: scale(2);
  -webkit-transform: scale(2);
  -o-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
}
.dez-img-effect.zoom:hover img {
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -o-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.dez-img-effect.shrink:hover img {
  transform: scale(0.8);
  -ms-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -o-transform: scale(0.8);
  -moz-transform: scale(0.8);
}
.dez-img-effect.side-pan:hover img {
  margin-left: -11%;
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
}
.dez-img-effect.vertical-pan:hover img {
  margin-top: -10%;
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
}
.dez-img-effect.fade-in {
  background: #000;
}
.dez-img-effect.fade-in img {
  opacity: 0.65;
  -moz-opacity: 0.65;
  -webkit-opacity: 0.65;
}
.dez-img-effect.fade-in:hover img {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
}
.dez-img-effect.fade-out {
  background: #000;
}
.dez-img-effect.fade-out:hover img {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -webkit-opacity: 0.7;
}
.dez-img-effect.rotate:hover img {
  -moz-transform: scale(1.5) rotate(-20deg);
  -webkit-transform: scale(1.5) rotate(-20deg);
  -o-transform: scale(1.5) rotate(-20deg);
  -ms-transform: scale(1.5) rotate(-20deg);
  transform: scale(1.5) rotate(-20deg);
}
.dez-img-effect.sepia img {
  -webkit-filter: sepia(100%);
  filter: sepia(100%);
}
.algo-image-hover.sepia:hover img {
  -webkit-filter: sepia(0);
  filter: sepia(0);
}
.dez-img-effect.blurr img {
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.dez-img-effect.blurr:hover img {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
}
.dez-img-effect.blurr-invert img {
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.dez-img-effect.blurr-invert img {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
}
.dez-img-effect.blurr-invert:hover img {
  filter: blur(0);
  -webkit-filter: blur(0);
  -moz-filter: blur(0);
  -o-filter: blur(0);
  -ms-filter: blur(0);
}
.dez-img-effect.off-color img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
}
.dez-img-effect.off-color:hover img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1);
}
.dez-img-effect.on-color img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1);
}
.dez-img-effect.on-color:hover img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
}
.dez-info-has {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 30px 40px 40px;
  opacity: 0;
  margin-bottom: -100px;
  z-index: 2;
}
.dez-info-has.p-a15 {
  padding: 15px;
}
.dez-info-has.p-a20 {
  padding: 20px;
}

.dez-info-has .dez-info-has-text {
  margin-bottom: 20px;
  line-height: 24px;
}
.dez-media {
  overflow: hidden;
  position: relative;
}
.dez-box:hover .dez-info-has,
.dez-media:hover .dez-info-has {
  opacity: 1;
  width: 100%;
  margin-bottom: 0;
}
.dez-info-has.no-hover {
  opacity: 1;
  width: 100%;
  margin-bottom: 0;
}
.dez-info-has.skew-has {
  border-top: 4px solid #2d3239;
  padding: 30px 40px 60px;
  -moz-transform: skewY(10deg);
  -webkit-transform: skewY(10deg);
  -o-transform: skewY(10deg);
  -ms-transform: skewY(10deg);
  transform: skewY(10deg);
  bottom: -35px;
}
.dez-info-has.skew-has > * {
  -moz-transform: skewY(-10deg);
  -webkit-transform: skewY(-10deg);
  -o-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
}
label {
  font-weight: 600;
  margin-bottom: 10px;
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}
.site-header {
  position: relative;
  z-index: 99999;
}
.site-header ul,
.site-header ol {
  margin-bottom: 0;
}
.extra-nav {
  float: right;
  padding: 30px 0 32px 0;
  position: relative;
  z-index: 9;
}
.extra-nav .site-button-link {
  font-size: 22px;
  line-height: 25px;
  color: #020d26;
  cursor: pointer;
}
.extra-nav .extra-cell {
  display: inline-block;
  margin-left: 10px;
}
.ext-header .main-bar .logo-header {
  display: none;
}
@media only screen and (max-width: 991px) {
  .ext-header .main-bar .logo-header {
    display: table;
  }
}
@media only screen and (max-width: 767px) {
  .extra-nav {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .extra-nav {
    margin: 0 1px 0 0;
    text-align: right;
  }
}
#header-part.fix-map-header {
  height: 90px;
}
#header-part.fix-map-header .main-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
@media only screen and (max-width: 480px) {
  #header-part.fix-map-header {
    height: 160px;
  }
}
.top-bar {
  background-color: #fff;
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
  color: #444;
  padding: 10px 0;
}
.dez-topbar-left {
  float: left;
}
.dez-topbar-right {
  float: right;
}
.dez-topbar-center,
.dez-topbar-left,
.dez-topbar-right {
  padding-left: 15px;
  padding-right: 15px;
  width: auto;
}
.dez-topbar-left ul,
.dez-topbar-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dez-topbar-left ul li,
.dez-topbar-right ul li {
  display: inline-block;
}
.dez-topbar-left ul li {
  padding-right: 15px;
  position: relative;
}
.dez-topbar-left ul li:after {
  content: "";
  height: 15px;
  width: 1px;
  background: #000;
  position: absolute;
  right: 5px;
  opacity: 0.2;
  top: 4px;
}
.dez-topbar-left ul li:last-child:after {
  content: none;
}
.dez-topbar-left ul li a,
.dez-topbar-right ul li a {
  color: #444;
}
.text-white .dez-topbar-left ul li a,
.text-white .dez-topbar-right ul li a {
  color: #fff;
}
.dez-topbar-left ul li a {
  position: relative;
}
.topbar-social li a {
  padding: 0 6px;
}
@media only screen and (max-width: 991px) {
  .dez-topbar-right {
    padding-left: 0;
    padding-right: 15px;
  }
  .dez-topbar-left {
    padding-left: 15px;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .top-bar [class*="col-"] {
    width: 100%;
    text-align: right;
    padding: 10px 15px;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
  }
  .top-bar [class*="col-"]:last-child {
    border-bottom: none;
  }
  .top-bar {
    padding: 5px 0;
    display: none;
  }
  .dez-topbar-center,
  .dez-topbar-left,
  .dez-topbar-right {
    display: #000;
    width: 100%;
    text-align: center;
    padding: 3px 15px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
  }
  .dez-topbar-left ul li {
    padding: 0 5px;
  }
  .dez-topbar-left ul li:after {
    right: -2px;
  }
}

.dez-banner-row,
.dez-banner-outer {
  position: relative;
}
.dez-bnr-pic {
  width: 100%;
  overflow: hidden;
}
.dez-bnr-pic img {
  width: 100%;
  height: auto;
  display: block;
}
.dez-bnr-text {
  position: absolute;
  left: 0;
  top: 35%;
  width: 100%;
  margin: 0;
  font-family: Raleway;
  color: #fff;
  font-family: "Raleway";
}
.dez-bnr-text-has {
  max-width: 600px;
}
.dez-bnr-text strong,
.dez-bnr-text span {
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.3);
  -webkit-text-shadow: 0 1px 2px rgb(0 0 0 / 0.3);
}
.dez-bnr-text strong {
  display: block;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  margin: 0 0 25px;
  color: #fff;
}
.dez-bnr-text span {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  display: block;
  margin-bottom: 30px;
}
.dez-bnr-text .btn {
  margin-right: 30px;
}
@media only screen and (max-width: 1200px) {
  .dez-bnr-text strong {
    font-size: 60px;
    line-height: 60px;
    margin: 0 0 15px;
  }
  .dez-bnr-text span {
    font-size: 20px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .dez-bnr-text strong {
    font-size: 50px;
    line-height: 50px;
    margin: 0 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .dez-bnr-text strong {
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 0;
  }
}
@media only screen and (max-width: 680px) {
  .dez-bnr-text strong {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 0;
  }
  .dez-bnr-text span {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .dez-bnr-text strong {
    font-size: 20px;
    line-height: 20px;
  }
  .dez-bnr-text span {
    font-size: 12px;
    line-height: 16px;
  }
}
.dez-bnr-inr.dez-bnr-inr-lg {
  height: 800px;
}
.dez-bnr-inr.dez-bnr-inr-md {
  height: 600px;
}
.dez-bnr-inr.dez-bnr-inr-sm {
  height: 400px;
}
.dez-bnr-inr {
  height: 460px;
  display: table;
  width: 100%;
  text-align: center;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.dez-bnr-inr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.5);
  z-index: 1;
}
.dez-bnr-inr .container {
  display: table;
  height: 100%;
}
.dez-bnr-inr h1 {
  font-size: 45px;
}
.dez-bnr-inr-entry {
  display: table-cell;
  vertical-align: middle;
}
.banner-inner-row h1,
.banner-inner-row h2,
.banner-inner-row h3,
.banner-inner-row h4,
.banner-inner-row h5,
.banner-inner-row h6 {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .dez-bnr-inr {
    height: 300px;
  }
  .dez-bnr-inr h1 {
    font-size: 26px;
    line-height: 32px;
  }
}



.blog-post {
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #ffffff;
  border-radius: 15px;
  overflow: hidden;

}
.dez-post-title {
  margin-bottom: 10px;
}
.dez-post-title .post-title {
  margin-top: 15px;
}
.dez-post-meta {
  margin-bottom: 10px;
}
.dez-post-meta ul {
  margin: 0 -4px;
  list-style: none;
}
.dez-post-meta ul li {
  padding: 0;
  display: inline-block;
  font-size: 13px;
}
.dez-post-meta li:after {
  content: "/";
  display: inline-block;
  font-weight: 400;
  margin-left: 5px;
  opacity: 0.5;
}
.dez-post-meta li:last-child:after {
  display: none;
}
.recent-posts-entry .dez-post-meta a {
  color: #7b7b7b;
}
.dez-post-meta li,
.dez-post-meta a,
.dez-post-meta i {
  color: #7b7b7b;
}
.dez-post-meta i {
  margin: 0 5px;
}
.dez-post-text {
  margin-bottom: 15px;
}
.dez-post-text p:last-child {
  margin: 0;
}
.dez-post-readmore {
  margin-bottom: 15px;
}
.dez-post-readmore.m-b0 {
  margin-bottom: 0;
}
.dez-post-tags {
  border-top: 1px solid #e9e9e9;
  padding-top: 10px;
}
.dez-post-tags .post-tags {
  margin: 0 -3px;
  list-style: none;
}
.dez-post-tags .post-tags a {
  border: 1px solid #ddd;
  padding: 2px 8px;
  color: #7b7b7b;
  margin: 3px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}
.date-style-1 .post-date {
  color: #fff;
  background-color: #f88122;
  padding: 3px 5px 3px 5px;
}
.date-style-1 .post-date .fa {
  color: #fff;
  left: 5px;
  top: 5px;
}
.date-style-2 .post-date,
.date-style-4 .post-date {
  color: #fff;
  position: absolute;
  left: 20px;
  top: 0;
  width: 50px;
  text-align: center;
  text-transform: uppercase;
}
.date-style-2 .post-date strong,
.date-style-2 .post-date span,
.date-style-4 .post-date strong,
.date-style-4 .post-date span {
  display: block;
  padding: 10px 5px;
}
.date-style-2 .post-date strong,
.date-style-4 .post-date strong {
  font-size: 10px;
  padding: 10px 5px 5px;
  position: relative;
}
.date-style-2 .post-date > strong:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 1px;
  background-color: #fff;
  margin: 0 -10px;
  width: 20px;
}
.date-style-2 .post-date span {
  font-size: 16px;
  padding: 5px 5px 10px;
}
.date-style-2 .dez-post-info .post-date {
  float: left;
  margin-right: 15px;
  position: absolute;
}
.date-style-2 .post-date:after,
.date-style-2 .post-date .far,
.date-style-3 .post-date:after,
.date-style-3 .post-date .far,
.date-style-4 .post-date .far {
  display: none;
}
.date-style-3 .dez-post-info {
  position: relative;
}
.date-style-3 .post-date {
  font-family: Poppins, sans-serif;
  text-transform: uppercase;
  position: absolute;
  padding: 8px 15px;
  color: #fff;
  top: -36px;
  left: 0;
  height: 36px;
}
.date-style-3 .post-date strong {
  color: #fff;
  margin-right: 2px;
}
.date-style-3.skew-date .post-date {
  padding-right: 8px;
}
.date-style-3.skew-date .post-date:before {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 22px;
  height: 100%;
  border-right: 3px solid #2d3239;
  -moz-transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  transform: skewX(20deg);
}
.date-style-4 .post-date span {
  background-color: #2e1e13;
}
.date-style-4 .post-date {
  top: 10px;
  left: 10px;
  font-family: "Roboto Slab", serif;
}
.date-style-4 .dez-post-info {
  box-shadow: 0 3px 0 0 #dbdbdb;
}
.date-style-4 .dez-post-meta ul li {
  font-weight: 400;
}
.date-style-5 .ow-post-info {
  position: relative;
}
.date-style-5 .ow-post-info .post-date,
.date-style-5 .dez-post-info .post-date {
  color: #fff;
  left: -1px;
  padding: 7px 15px;
  position: absolute;
  top: -35px;
}
.date-style-5 .ow-post-info .post-date i,
.date-style-5 .dez-post-info .post-date i {
  display: none;
}
.date-style-5 .ow-post-meta li:after,
.date-style-5 .dez-post-meta li:after {
  content: none;
}
.no-image-blog.date-style-2 .algo-post-info {
  padding-top: 70px;
}
.no-image-blog.date-style-2 .post-date {
  top: 0;
  left: 20px;
}
.blog-post.no-img-post .post-date {
  position: static;
  float: left;
}
.blog-md .dez-post-media {
  width: 350px;
  float: left;
  margin-right: 30px;
}
.blog-md .dez-post-info {
  border: none;
}
.blog-md .dez-post-tags {
  border: none;
  display: inline-block;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .blog-md.blog-post .dez-post-media {
    float: none;
    margin: 0 0 20px;
    width: auto;
  }
}
.nav-links:after {
  clear: both;
  content: "";
  display: table;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}
.pagination .page-numbers {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #767676;
  padding: 9px 15px;
  font-weight: 600;
  font-size: 12px;
  display: block;
  float: left;
  margin-left: -1px;
}
.pagination .page-numbers.current,
.pagination a.page-numbers:hover {
  background: #3396d1;
  color: #fff;
}
.nav-links .nav-previous a,
.nav-links .nav-next a {
  display: inline-block;
  color: #3396d1;
  font-weight: 600;
  margin-bottom: 20px;
  outline: none !important;
}
.nav-links .nav-previous a:hover,
.nav-links .nav-next a:hover {
  color: #09c;
}
.nav-links .nav-previous a:after,
.nav-links .nav-next a:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 2px;
  color: #333;
}
.post-navigation {
  background-color: #fff;
  padding: 30px;
  border-bottom: 2px solid #e3e3e3;
}
.post-navigation .screen-reader-text {
  margin-top: 0;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  display: inline-block;
  width: 50%;
}
.post-navigation .nav-next {
  text-align: right;
}
.post-navigation .nav-previous a:after,
.post-navigation .nav-next a:after {
  display: none;
}
.post-navigation .nav-previous .post-title,
.post-navigation .nav-next .post-title {
  display: block;
  font-size: 15px;
  color: #777;
  margin-top: 10px;
}
.dez-link-pages {
  padding: 20px 0 30px;
}
.dez-link-pages a {
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 600;
  background-color: #ccc;
  margin: 0 2px;
}
.sticky-post {
  position: absolute;
  right: 0;
  top: 0;
  background: #77c04b;
  color: #fff;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 600;
}
.post-password-form {
  position: relative;
  clear: both;
}
.post-password-form input[type="password"] {
  width: 100%;
  border: 1px solid #ddd;
  padding: 10px 100px 10px 15px;
  height: 40px;
}
.post-password-form label {
  display: block;
}
.post-password-form input[type="submit"] {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  height: 40px;
  text-transform: uppercase;
  font-weight: 600;
}
.blog [class*="galleryid-"] {
  clear: both;
  margin: 0 auto;
  overflow: hidden;
}
.gallery .gallery-item {
  float: left;
  list-style: none;
  margin: 0 0 0;
  overflow: hidden;
  padding: 0 0 5px 15px;
  text-align: center;
}
.gallery .gallery-caption {
  padding-top: 10px;
  font-size: 13px;
}
.gallery .gallery-item img {
  float: left;
  padding: 0 0;
  width: 100%;
  border: none !important;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-icon img {
  margin: 0 auto;
}
.gallery-caption {
  color: #707070;
  color: rgb(51 51 51 / 0.7);
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0.5em 0;
}
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}
.side-bar .widget {
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .side-bar {
    margin-bottom: 40px;
  }
}
.blog-single .dez-post-meta {
  margin-bottom: 20px;
}
.blog-single .dez-post-text {
  margin-top: 20px;
}
.blog-single .dez-post-tags {
  margin-top: 20px;
}
.blog-single {
  margin-bottom: 3.125rem;
}
@media only screen and (max-width: 575px) {
  .blog-single {
    margin-bottom: 2rem;
  }
}
.blog-single h1,
.blog-single .h1 {
  max-width: 625px;
  margin-bottom: 10px;
}
.blog-single h1.dz-title,
.blog-single .dz-title.h1 {
  max-width: 100%;
}
.blog-single .dz-post-meta {
  margin-bottom: 1.25rem;
}
.blog-single .dz-post-text {
  padding-bottom: 5px;
}
.blog-single .dz-post-text:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
.blog-single .dz-post-tags {
  margin-top: 1.25rem;
}
.blog-single .dz-post-media {
  border-radius: 0.25rem;
}
.blog-single.dz-blog .post-tags {
  margin-bottom: 0;
}
.blog-single.style-1 {
  box-shadow: unset;
  border-radius: 0;
  overflow: unset;
  margin-bottom: 60px;
}
.blog-single.style-1 .post-header .dz-title {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.blog-single.style-1 ul {
  padding: 0;
}
.blog-single.style-1 ul li:before {
  display: none !important;
}
@media only screen and (max-width: 991px) {
  .blog-single.style-1 {
    margin-bottom: 20px;
  }
}
.blog-single.style-1 .dz-media + .dz-info {
  text-align: unset;
  border: 0;
  padding: 0;
  margin-top: 0;
  padding: 30px 0 0 0;
}
.blog-single.style-1 .dz-meta {
  margin-bottom: 30px;
}
.blog-single.style-1 .dz-meta li {
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  position: relative;
  margin-right: 30px;
  font-size: 13px;
  color: #24262b;
}
@media only screen and (max-width: 575px) {
  .blog-single.style-1 .dz-meta li {
    font-size: 12px;
  }
}
.blog-single.style-1 .dz-meta li i {
  color: var(--secondary);
}
.blog-single.style-1 .dz-meta li:after {
  content: "";
  height: 6px;
  width: 6px;
  position: absolute;
  right: -17px;
  top: 50%;
  border-radius: 50%;
  background-color: var(--secondary);
  transform: translate(0%, -50%);
}
.blog-single.style-1 .dz-meta li:first-child:after,
.blog-single.style-1 .dz-meta li:last-child:after {
  content: none;
}
@media only screen and (max-width: 575px) {
  .blog-single.style-1 .dz-meta li.post-date {
    font-size: 12px;
  }
}
@media only screen and (max-width: 575px) {
  .blog-single.style-1 .dz-meta {
    margin-bottom: 20px;
  }
  .blog-single.style-1 .dz-meta li {
    gap: 4px;
    margin-right: 10px;
    padding-right: 0;
  }
  .blog-single.style-1 .dz-meta li:after {
    content: none;
  }
  .blog-single.style-1 .dz-meta li.post-date {
    padding: 5px 10px;
  }
}
.blog-single.style-1 .dz-meta.style-1 li {
  color: #fff;
}
.blog-single.style-1 .dz-meta.style-1 li a {
  color: #fff;
}
.blog-single.style-1 .dz-meta.style-1 li i {
  color: #fff;
}
.blog-single.style-1 .dz-meta.style-1 li:after {
  background-color: #fff;
}
.blog-single.style-1 .dz-info {
  text-align: unset;
  border: 0;
  padding: 0;
  margin-top: 0;
}
.blog-single.style-1 .dz-info + .dz-media {
  margin-top: 25px;
}
.blog-single .dz-media,
.blog-single .dz-post-media {
  text-align: center;
}
.blog-single,
.blog-single .dz-post-media img {
  width: auto;
}
.blog-single.style-1 .list-check-2 {
  padding-left: 0;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.blog-single.style-1 .list-check-2 li {
  padding: 15px 8px 15px 55px !important;
  position: relative;
  align-items: center;
  display: flex;
  font-weight: 500;
  font-size: 16px !important;
  color: #222;
  font-family: var(--font-family-title);
  width: 50%;
}
.blog-single.style-1 .list-check-2 li:after {
  position: absolute;
  left: 5px;
  top: 50%;
  content: "\e83f";
  font-family: "feather" !important;
  font-weight: 300;
  color: var(--primary);
  font-size: 22px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transform: translateY(-50%);
}
.blog-single.style-1 .list-check-2.check-circle li:after {
  border-radius: 50%;
  background-color: #fff0;
  color: var(--secondary);
  border: 1px solid var(--secondary);
}
@media only screen and (max-width: 1199px) {
  .blog-single.style-1 .list-check-2 li {
    padding: 12px 8px 12px 48px !important;
    font-size: 15px !important;
  }
  .blog-single.style-1 .list-check-2 li:after {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-single.style-1 .list-check-2 li {
    width: 100%;
  }
}
.section-full {
  --dz-height: 600px;
}
@media only screen and (max-width: 991px) {
  .section-full {
    --dz-banner-height: 450px;
  }
}
@media only screen and (max-width: 767px) {
  .section-full {
    --dz-height: 380px;
  }
}
@media only screen and (max-width: 575px) {
  .section-full {
    --dz-height: 350px;
  }
}
.post-header {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 575px) {
  .post-header {
    margin-bottom: 1.25rem;
  }
}
.post-header .dz-media {
  height: var(--dz-height);
}
.post-header .dz-media img {
  min-height: 250px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-header .dz-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 100px 30px 30px 30px !important;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .post-header .dz-info {
    padding: 40px 15px 15px 15px !important;
  }
}
.post-header .dz-info .dz-title {
  color: #fff;
  text-transform: capitalize;
}
@media only screen and (max-width: 575px) {
  .post-header .dz-info .dz-title {
    font-size: 24px;
  }
}
.post-header .dz-info .dz-meta > ul {
  justify-content: center;
}
.post-header .dz-info .dz-meta > ul > li {
  color: #fff;
}
.dz-meta ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.dz-meta ul li {
  display: inline-flex;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  margin-right: 10px;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.dz-meta ul li i {
  font-size: 15px;
  margin-right: 2px;
  color: var(--secondary);
  position: relative;
  top: -1px;
}
@media only screen and (max-width: 575px) {
  .dz-meta ul li {
    margin-right: 10px;
    padding-right: 10px;
  }
}
.comments-area {
  padding: 0;
}
.comments-area .comments-title {
  text-transform: uppercase;
  font-size: 20px;
}
ol.comment-list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
ol.comment-list li.comment {
  position: relative;
  padding: 0;
}
ol.comment-list li.comment .comment-body {
  position: relative;
  padding: 20px;
  margin-bottom: 40px;
  margin-left: 80px;
  position: relative;
  border: 1px solid #e9e9e9;
}
ol.comment-list li.comment .comment-body:before,
ol.comment-list li.comment .comment-body:after {
  content: "";
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border-width: 10px 12px 10px 0;
  border-style: solid;
}
ol.comment-list li.comment .comment-body:before {
  border-color: #fff0 #fff #fff0 #fff;
  z-index: 1;
  left: -12px;
  top: 22px;
}
ol.comment-list li.comment .comment-body:after {
  border-color: #fff0 #e9e9e9 #fff0 #e9e9e9;
  border-width: 12px 14px 12px 0;
  left: -14px;
}
ol.comment-list li.comment .comment-author {
  display: block;
  margin-bottom: 10px;
}
ol.comment-list li.comment .comment-author .avatar {
  position: absolute;
  top: 0;
  left: -80px;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  border: 2px solid #fff;
}
ol.comment-list li.comment .comment-author .fn {
  display: inline-block;
  color: #555;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
  font-style: normal;
}
ol.comment-list li.comment .comment-author .says {
  display: none;
  color: #999;
  font-weight: 600;
}
ol.comment-list li.comment .comment-meta {
  color: #8d8d8d;
  text-transform: capitalize;
  margin-bottom: 15px;
}
ol.comment-list li.comment .comment-meta a {
  color: #8d8d8d;
}
ol.comment-list li.comment .comment-meta a {
  color: #8d8d8d;
}
ol.comment-list li.comment .comment-meta:before,
ol.comment-list li.comment .reply a:before {
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  vertical-align: top;
}
ol.comment-list li.comment .comment-meta:before {
  content: "\f133";
}
ol.comment-list li.comment .reply a:before {
  content: "\f064";
  color: #555;
  margin-right: 5px;
  vertical-align: middle;
}
ol.comment-list li.comment p {
  line-height: 18px;
  margin: 0 0 5px;
}
ol.comment-list li.comment .reply a {
  position: absolute;
  top: 50px;
  right: 30px;
  margin-top: -5px;
  color: #f88122;
  font-weight: 600;
}
ol.comment-list li .children {
  list-style: none;
  margin-left: 80px;
}
ol.comment-list li .children li {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .comments-area .padding-30 {
    padding: 15px;
  }
  ol.comment-list li.comment .comment-body {
    margin-bottom: 30px;
    margin-left: 70px;
  }
  ol.comment-list li.comment .comment-author .avatar {
    left: -75px;
    height: 60px;
    width: 60px;
  }
  ol.comment-list li .children {
    margin-left: 20px;
  }
  ol.comment-list li.comment .reply a {
    position: static;
  }
}
@media only screen and (max-width: 480px) {
  ol.comment-list li.comment .comment-body {
    margin-left: 52px;
  }
  ol.comment-list li.comment .comment-author .avatar {
    left: -55px;
    top: 12px;
    width: 40px;
    height: 40px;
  }
}
.comment-respond {
  padding: 30px 30px;
  border: 1px solid #e9e9e9;
}
.comment-respond .comment-reply-title {
  text-transform: uppercase;
  font-size: 20px;
}
.comment-respond .comment-reply-title {
  font-size: 16px;
  font-weight: 600;
}
.comments-area .comment-form {
  margin: 0 -15px;
}
.comments-area .comment-form .comment-notes {
  display: none;
}
.comments-area .comment-form p {
  width: 33.333%;
  float: left;
  padding: 0 15px;
  margin-bottom: 30px;
  position: relative;
}
.comments-area .comment-form p.form-allowed-tags {
  width: 100%;
}
ol.comment-list li.comment .comment-respond .comment-form p {
  padding: 0 15px !important;
}
.comments-area .comment-form p label {
  display: none;
  line-height: 18px;
  margin-bottom: 10px;
}
.comments-area p:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 0;
  font-size: 16px;
  color: #ccc;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #e1e6eb;
  text-align: center;
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
}
.comments-area p.comment-form-author:before {
  content: "\f007";
}
.comments-area p.comment-form-email:before {
  content: "\f0e0";
}
.comments-area p.comment-form-url:before {
  content: "\f0ac";
}
.comments-area p.comment-form-comment:before {
  content: "\f303";
}
.comments-area .comment-form p input[type="text"],
.comments-area .comment-form p textarea {
  width: 100%;
  height: 40px;
  line-height: 6px 12px;
  padding: 10px 10px 10px 50px;
  border: 1px solid #e1e6eb;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  outline: 0;
}
.comments-area .comment-form p.comment-form-comment {
  width: 100%;
  display: block;
  clear: both;
}
.comments-area .comment-form p textarea {
  height: 120px;
}
.comments-area .comment-form p.form-submit {
  clear: both;
  float: none;
  width: 100%;
  margin: 0;
}
.comments-area .comment-form p input[type="submit"] {
  background-color: #f88122;
  border: none;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
  text-transform: uppercase;
}
.comments-area .comment-form p input[type="submit"]:hover,
.comments-area .comment-form p input[type="submit"]:focus,
.comments-area .comment-form p input[type="submit"]:active {
  background-color: #6ab33e;
  border-color: #6ab33e;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .comments-area .comment-form p {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
  .comment-respond {
    padding: 20px;
  }
}
.widget {
  margin-bottom: 40px;
}
.widget-title {
  margin: 0 0 25px;
}
.widget-title {
  padding-bottom: 6px;
  position: relative;
  margin-bottom: 25px;
}
.widget-title:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  height: 3px;
  margin: 0 0 0;
  width: 50px;
  margin: 10px 0;
}
.widget .widget-title {
  text-transform: uppercase;
}
.recent-posts-entry ul,
.category-entry ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.widget_categories ul,
.widget_archive ul,
.widget_meta ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_nav_menu ul,
.widget_rss ul,
.widget_recent_entries ul,
.widget_services ul,
.widget_getintuch ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.widget_categories ul li,
.widget_archive ul li,
.widget_meta ul li,
.widget_pages ul li,
.widget_recent_comments ul li,
.widget_nav_menu li,
.widget_recent_entries ul li,
.widget_services ul li {
  padding-bottom: 18px;
  margin-bottom: 13px;
  border-bottom: 1px solid rgb(102 102 102 / 0.11);
  position: relative;
  padding: 10px 10px 10px 15px;
  margin-bottom: 0;
  line-height: 20px;
}
.widget_categories ul li a,
.widget_archive ul li a,
.widget_meta ul li a,
.widget_pages ul li a,
.widget_recent_comments ul li a,
.widget_nav_menu li a,
.widget_recent_entries ul li a,
.widget_services ul li a {
  color: #767676;
}
.widget_categories ul li:before,
.widget_archive ul li:before,
.widget_meta ul li:before,
.widget_pages ul li:before,
.widget_recent_comments ul li:before,
.widget_nav_menu ul li:before,
.widget_recent_entries ul li:before,
.widget_services ul li:before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}
.widget_categories ul li li,
.widget_archive ul li li,
.widget_meta ul li li,
.widget_pages ul li li,
.widget_recent_comments ul li li,
.widget_nav_menu li li,
.widget_services li li {
  border-bottom: none;
  padding-left: 10px;
  padding-right: 5px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 28px;
}
.widget_categories ul li li:before,
.widget_archive ul li li:before,
.widget_meta ul li li:before,
.widget_pages ul li li:before,
.widget_recent_comments ul li li:before,
.widget_nav_menu li li:before,
.widget_services li li:before {
  top: 0;
  left: -8px;
}
.search-bx .site-button {
  padding: 9px 12px;
  border: 1px solid #fff0;
  border-radius: 0;
}
.widget_search .screen-reader-text {
  display: block;
}
.searchform {
  position: relative;
}
.searchform input[type="text"] {
  width: 100%;
  height: 40px;
  padding: 10px 90px 10px 15px;
  border: 1px solid #ccc;
}
.searchform input[type="submit"] {
  height: 40px;
  padding: 10px 15px;
  background-color: var(--primary);
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: none;
}
.searchform input[type="submit"]:hover,
.searchform input[type="submit"]:focus,
.searchform input[type="submit"]:active {
  background-color: #cf6f91;
  color: #ffffff !important;
  border-bottom-color: #cf6f91;
}
.recent-posts-entry .post-date,
.tweets-feed-entry .tweet-date {
  color: #3396d1;
  font-style: normal;
}
.widget .post-title {
  line-height: 16px;
}
.recent-posts-entry .widget-post {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.recent-posts-entry .dez-post-meta {
  margin-bottom: 0;
}
.recent-posts-entry .post-title {
  margin-bottom: 8px;
}
.recent-posts-entry .dez-separator {
  margin-bottom: 15px;
}
.recent-posts-entry .widget-post-bx:last-child {
  border-bottom: none;
}
.recent-posts-entry .dez-post-media {
  float: left;
  width: 90px;
  min-width: 90px;
}
.recent-posts-entry .dez-post-info {
  background: #fff0;
  padding: 0;
  margin-left: 10px;
  border: none;
}
.recent-posts-entry .post-meta span {
  margin-right: 10px;
}
.widget_recent_comments ul li:before {
  content: "\f086";
}
.widget_recent_comments ul li {
  padding-left: 20px;
  color: #999;
}
.widget_meta ul li a abbr[title] {
  color: #333;
  border-bottom: none;
}
.widget_calendar caption::after {
  color: #707070;
  content: ">";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  margin: 0 0 0 5px;
}
.widget_calendar table {
  border-collapse: separate;
  border-spacing: 2px;
  width: 100%;
}
.widget_calendar thead {
  background-color: #999;
}
.widget_calendar tfoot tr td {
  border: none;
  padding: 0;
}
.widget_calendar tfoot tr td a {
  background-color: #fff;
  padding: 4px 10px;
}
.widget_calendar table thead tr th {
  font-size: 11px;
  padding: 5px;
  text-align: center;
  border: none;
  color: #fff;
}
.widget_calendar table tbody td {
  font-size: 13px;
  padding: 6px 5px;
  text-align: center;
  background-color: #fff;
  border: none;
  color: #444;
}
.widget_calendar table tbody td#today {
  background-color: #77c04b;
  color: #fff;
}
.widget_calendar table tbody td#today a {
  color: #fff;
}
.widget_tag_cloud a {
  padding: 8px 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 12px;
  display: inline-block;
  margin: 0 0 5px;
  color: #555;
}
.side-bar .widget_tag_cloud a:hover {
  background-color: #ccc;
}
.widget_archive select {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
}
.widget_text select {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
}
.widget_text select option {
  width: 100%;
}
.widget_categories li {
  text-align: right;
}
.widget_categories li a {
  float: left;
}
.widget_rss ul {
  margin: 0;
  line-height: 20px;
}
.widget_rss ul li {
  line-height: 20px;
  margin-bottom: 15px;
}
.widget_rss ul .rsswidget {
  color: #333;
}
.widget_rss ul .rss-date {
  color: #3396d1;
}
.widget_rss ul .rssSummary {
  padding: 5px 0;
}
.widget_rss ul cite {
  color: #333;
  font-weight: 600;
}
.widget_getintuch {
  padding-top: 10px;
}
.widget_getintuch li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}
.widget_getintuch b,
.widget_getintuch strong {
  display: block;
  text-transform: uppercase;
}
.widget_getintuch i {
  position: absolute;
  left: 0;
  top: 5px;
  text-align: center;
  font-size: 14px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: rgb(0 0 0 / 0.04);
  border: 1px solid rgb(0 0 0 / 0.05);
}
.widget_gallery ul {
  padding-left: 0;
}
.widget_gallery li {
  display: inline-block;
  margin-bottom: 5px;
  width: 32.1%;
  border: 2px solid #fff0;
}
.widget_gallery li img {
  display: inline-block;
}
.widget_gallery li:nth-child(3n-3) {
  margin-right: 0;
}
.widget_gallery li:hover {
  display: inline-block;
  margin-bottom: 0;
  width: 32.1%;
  border: 2px solid;
}
.widget_gallery a {
  display: inline-block;
}
.btn,
.panel,
.form-control,
.img-thumbnail,
.panel-head ing,
.dropdown-menu,
.panel-group .panel,
.nav-tabs > li > a,
.modal-content,
.navbar-toggle,
.nav-pills > li > a,
.pager li > a,
.pager li > span,
.well,
.alert,
.list-group-item:first-child,
.list-group-item:last-child,
.input-group-addon,
.btn-group-divides
  > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle),
.btn-group-divides > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child),
.dez-booking-form .dez-extra-services li .icon-bx-lg,
.dez-booking-form .dez-extra-services li.active .icon-bx-lg:after,
.widget_tag_cloud a,
.searchform input[type="text"],
.searchform input[type="submit"],
ol.comment-list li.comment .comment-body {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
a,
.dez-box,
.btn,
.form-control,
.overlay-bx,
.overlay-icon li a i,
.icon-bx-xl,
.icon-bx-lg,
.icon-bx-md,
.icon-bx-sm,
.icon-bx-xs,
.share-social-bx li,
.indicator,
.profile-menu ul li,
.staff-member .member-done,
.how-dez-work .dez-box .shadow-bx img,
.how-dez-work .dez-box .step-no-bx,
.dez-info-has,
.dez-we-find .dez-box,
.navbar-toggle,
.logo-header,
.header-nav .nav > li > a,
.extra-nav,
.skew-secondry:hover,
.skew-primary:hover,
.skew-secondry:hover::after,
.skew-primary:hover::after {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.animate-slow {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.animate-mid {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.animate-fast {
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.clearfix:after,
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.has-error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle:hover,
.has-error .bootstrap-select .dropdown-toggle:focus {
  border-color: #a94442 !important;
}
.has-success .bootstrap-select .dropdown-toggle,
.has-success .bootstrap-select .dropdown-toggle:hover,
.has-success .bootstrap-select .dropdown-toggle:focus {
  border-color: #3c763d !important;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.owl-prev,
.owl-next {
  background-color: #2d3239;
  border-color: #2d3239;
  color: #fff;
  padding: 5px 10px;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 13px;
  display: inline-block;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
}
.owl-prev:hover,
.owl-prev:active,
.owl-prev:focus,
.owl-next:hover,
.owl-next:active,
.owl-next:focus {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.site-button,
.site-button-secondry {
  color: #fff;
  padding: 12px 25px;
  display: inline-block;
  font-size: 18px;
  outline: none;
  cursor: pointer;
  outline: none;
  border-width: 0;
  border-style: solid;
  border-color: #fff0;
  line-height: 1.42857;
  border-radius: 6px;
  font-weight: 500;
}

.site-button:active,
.site-button:hover,
.site-button:focus,
.active > .site-button {
  background-color: #26adb9;
  color: #fff;
}

.site-button.text-uppercase {
  text-transform: uppercase;
}
.button-sm {
  padding: 5px 10px;
  font-size: 12px;
}
.button-lg {
  padding: 20px 35px;
  font-size: 16px;
}
.button-xl {
  padding: 30px 50px;
  font-size: 24px;
}
.radius-no {
  border-radius: 0;
  -webkit-border-radius: 0;
}
.radius-sm {
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
.radius-xl {
  border-radius: 100px;
  -webkit-border-radius: 100px;
}
.site-button.white {
  background-color: #fff;
  color: #777;
}
.site-button.white:hover,
.site-button.white:active,
.site-button.white:focus {
  background-color: #f4f4f4;
  color: #555;
}
.site-button.black {
  background-color: #171717;
  color: #fff;
}
.site-button.black:hover,
.site-button.black:active,
.site-button.black:focus {
  background-color: #000;
  color: #fff;
}
.site-button.gray {
  background-color: #666;
  color: #fff;
}
.site-button.gray:hover,
.site-button.gray:active,
.site-button.gray:focus {
  background-color: #555;
  color: #fff;
}
.site-button.pink {
  background-color: #e63f75;
  color: #fff;
}
.site-button.pink:hover,
.site-button.pink:active,
.site-button.pink:focus {
  background-color: #d22b61;
  color: #fff;
}
.site-button.blue {
  background-color: #42b8d4;
  color: #fff;
}
.site-button.blue:hover,
.site-button.blue:active,
.site-button.blue:focus {
  background-color: #2ca2be;
  color: #fff;
}
.site-button.green {
  background-color: #35b494;
  color: #fff;
}
.site-button.green:hover,
.site-button.green:active,
.site-button.green:focus {
  background-color: #26a585;
  color: #fff;
}
.site-button.orange {
  background-color: #e56713;
  color: #fff;
}
.site-button.orange:hover,
.site-button.orange:active,
.site-button.orange:focus {
  background-color: #d55703;
  color: #fff;
}
.site-button.red {
  background-color: #d93223;
  color: #fff;
}
.site-button.red:hover,
.site-button.red:active,
.site-button.red:focus {
  background-color: #c51e0f;
  color: #fff;
}
.site-button.brown {
  background-color: #69441f;
  color: #fff;
}
.site-button.brown:hover,
.site-button.brown:active,
.site-button.brown:focus {
  background-color: #5f3a15;
  color: #fff;
}
.site-button.yellow {
  background-color: #ecc731;
  color: #fff;
}
.site-button.yellow:hover,
.site-button.yellow:active,
.site-button.yellow:focus {
  background-color: #d4af19;
  color: #fff;
}
.site-button.purple {
  background-color: #ae1af7;
  color: #fff;
}
.site-button.purple:hover,
.site-button.purple:active,
.site-button.purple:focus {
  background-color: #9804e1;
  color: #fff;
}
.button-skew {
  position: relative;
  text-align: center;
  margin-right: 21px;
  -moz-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  transform: skewX(-20deg);
}
.button-skew span {
  display: inline-block;
  -moz-transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  transform: skewX(20deg);
}
.button-skew i {
  background-color: inherit;
  position: absolute;
  height: 100%;
  margin-right: -32px;
  right: 0;
  top: 0;
  padding: 12px 12px;
  line-height: normal;
}
.button-skew i:before {
  display: inline-block;
  -moz-transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  transform: skewX(20deg);
}
.button-skew.button-sm i {
  padding: 7px 10px;
  margin-right: -27px;
}
.button-skew.button-lg i {
  padding: 25px 15px;
  margin-right: -40px;
}
.button-skew.button-xl i {
  padding: 35px 22px;
  margin-right: -55px;
}
.site-button.graphical {
  color: #fff;
  border-radius: 3px;
  text-shadow: 0 -1px rgb(0 0 0 / 0.4);
  box-shadow: inset 0 1px 1px rgb(255 255 255 / 0.3),
    0 1px 3px -1px rgb(45 60 72 / 0.5);
  border: 1px solid rgb(0 0 0 / 0.15);
}
.site-button.graphical:active {
  box-shadow: 0 2px 2px rgb(0 0 0 / 0.25) inset;
}
.site-button.button-3d {
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  border-bottom: 4px solid rgb(0 0 0 / 0.2);
  border-left: none;
  border-right: none;
  border-top: none;
}
.site-button.outline {
  color: #888;
  background: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  border-width: 1px;
  border-style: solid;
  border-color: #eee;
}
.site-button.outline.white {
  color: #e7e7e7;
  border-color: #e7e7e7;
}
.site-button.outline.white:hover {
  color: #666;
}
.site-button.outline.black {
  color: #171717;
  border-color: #171717;
}
.site-button.outline.gray {
  color: #666;
  border-color: #666;
}
.site-button.outline.pink {
  color: #e63f75;
  border-color: #e63f75;
}
.site-button.outline.blue {
  color: #42b8d4;
  border-color: #42b8d4;
}
.site-button.outline.green {
  color: #35b494;
  border-color: #35b494;
}
.site-button.outline.orange {
  color: #e56713;
  border-color: #e56713;
}
.site-button.outline.red {
  color: #d93223;
  border-color: #d93223;
}
.site-button.outline.brown {
  color: #69441f;
  border-color: #69441f;
}
.site-button.outline.yellow {
  color: #f88122;
  border-color: #f88122;
}
.site-button.outline.purple {
  color: #ae1af7;
  border-color: #ae1af7;
}
.site-button.outline:hover {
  border-color: #fff0;
  color: #fff;
}
.site-button-link i {
  margin-left: 5px;
}
.site-button-link {
  display: inline-block;
  font-weight: 600;
  border: 0;
  padding: 0;
  background-color: #fff0;
}
.site-button-link.white {
  color: #e7e7e7;
}
.site-button-link.white:hover,
.site-button-link.white:active,
.site-button-link.white:focus {
  color: #ccc;
}
.site-button-link.black {
  color: #171717;
}
.site-button-link.black:hover,
.site-button-link.black:active,
.site-button-link.black:focus {
  color: #000;
}
.site-button-link.gray {
  color: #666;
}
.site-button-link.gray:hover,
.site-button-link.gray:active,
.site-button-link.gray:focus {
  color: #555;
}
.site-button-link.pink {
  color: #e63f75;
}
.site-button-link.pink:hover,
.site-button-link.pink:active,
.site-button-link.pink:focus {
  color: #2ca2be;
}
.site-button-link.blue {
  color: #42b8d4;
}
.site-button-link.blue:hover,
.site-button-link.blue:active,
.site-button-link.blue:focus {
  color: #2ca2be;
}
.site-button-link.green {
  color: #35b494;
}
.site-button-link.green:hover,
.site-button-link.green:active,
.site-button-link.green:focus {
  color: #26a585;
}
.site-button-link.orange {
  color: #e56713;
}
.site-button-link.orange:hover,
.site-button-link.orange:active,
.site-button-link.orange:focus {
  color: #d55703;
}
.site-button-link.red {
  color: #d93223;
}
.site-button-link.red:hover,
.site-button-link.red:active,
.site-button-link.red:focus {
  color: #c51e0f;
}
.site-button-link.brown {
  color: #69441f;
}
.site-button-link.brown:hover,
.site-button-link.brown:active,
.site-button-link.brown:focus {
  color: #5f3a15;
}
.site-button-link.yellow {
  color: #ecc731;
}
.site-button-link.yellow:hover,
.site-button-link.yellow:active,
.site-button-link.yellow:focus {
  color: #d4af19;
}
.site-button-link.purple {
  color: #ae1af7;
}
.site-button-link.purple:hover,
.site-button-link.purple:active,
.site-button-link.purple:focus {
  color: #9804e1;
}
.site-filters {
  margin-bottom: 30px;
}
.site-filters ul {
  margin: 0;
  list-style: none;
}
.site-filters li {
  display: inline;
  padding: 0;
}
.site-filters li.btn {
  box-shadow: none;
  -webkit-box-shadow: none;
  outline: none !important;
  border: 0;
}
.site-filters li input {
  display: none;
}
.site-filters a {
  margin: 0 15px 5px 0;
}
.site-filters .active > [class*="site-button"] {
  color: #fff;
  background-color: #f88122;
}
.site-filters.center {
  text-align: center;
}
.site-filters.center ul {
  display: inline-block;
  margin: auto;
}
.site-filters.center [class*="site-button"] {
  display: inline-block;
  margin: 0 5px 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 480px) {
  .site-filters.center [class*="site-button"] {
    margin: 0 1px 5px;
    padding: 5px 10px;
    font-size: 12px;
  }
}
.dez-separator-outer {
  overflow: hidden;
}
.dez-separator {
  display: inline-block;
  height: 3px;
  width: 50px;
  margin-bottom: 10px;
  position: relative;
}
.dez-separator.style-liner {
  width: 20px;
}
.dez-separator.style-icon {
  width: 30px;
  height: auto;
  text-align: center;
  font-size: 20px;
}
.dez-separator[class*="style-"]:after,
.dez-separator[class*="style-"]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  width: 70px;
  height: 1px;
  background: #eee;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.dez-separator[class*="style-"]:before {
  left: auto;
  right: 30px;
}
.dez-separator.style-skew {
  width: 15px;
  height: 10px;
  margin-left: 1px;
  margin-right: 1px;
  -moz-transform: skewX(-10deg);
  -webkit-transform: skewX(-10deg);
  -o-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
}
.dez-separator.style-skew[class*="style-"]:after,
.dez-separator.style-skew[class*="style-"]:before {
  width: 80px;
  height: 4px;
  left: 20px;
  -moz-transform: translateY(-50%) skewX(-10deg);
  -webkit-transform: translateY(-50%) skewX(-10deg);
  -o-transform: translateY(-50%) skewX(-10deg);
  -ms-transform: translateY(-50%) skewX(-10deg);
  transform: translateY(-50%) skewX(-10deg);
}
.dez-separator.style-skew[class*="style-"]:before {
  right: 20px;
  left: auto;
}
.dez-divider {
  height: 1px;
  position: relative;
  margin: 30px 0;
}
.dez-divider.divider-2px {
  height: 2px;
}
.dez-divider.divider-3px {
  height: 3px;
}
.dez-divider.divider-4px {
  height: 4px;
}
.dez-divider i {
  position: absolute;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  display: block;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.dez-divider.icon-left {
  margin-left: 40px;
}
.dez-divider.icon-left i {
  left: -40px;
}
.dez-divider.icon-right {
  margin-right: 40px;
}
.dez-divider.icon-right i {
  left: auto;
  right: -40px;
}
.dez-divider.icon-center i {
  left: 50%;
  margin-left: -5px;
}
.list-circle,
.list-angle-right,
.list-arrow,
.list-check,
.list-checked,
.list-check-circle,
.list-chevron-circle,
.list-arrow-circle,
.list-times-circle {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
}
.list-circle li,
.list-angle-right li,
.list-arrow li,
.list-check li,
.list-checked li,
.list-check-circle li,
.list-chevron-circle li,
.list-arrow-circle li,
.list-times-circle li {
  padding: 5px 5px 5px 20px;
  position: relative;
  font-size: 15px;
}
.list-circle li:before,
.list-angle-right li:before,
.list-arrow li:before,
.list-check li:before,
.list-checked li:before,
.list-check-circle li:before,
.list-chevron-circle li:before,
.list-arrow-circle li:before,
.list-times-circle li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 6px;
  display: block;
  font-size: 14px;
  color: #777;
}
.list-circle li:before {
  top: 10px;
  font-size: 10px;
}
.list-circle li:before {
  content: "\f111";
}
.list-angle-right li:before {
  content: "\f105";
}
.list-arrow li:before {
  content: "\f0da";
}
.list-check li:before {
  content: "\f00c";
}
.list-checked li:before {
  content: "\f14a";
}
.list-check-circle li:before {
  content: "\f058";
}
.list-chevron-circle li:before {
  content: "\f138";
}
.list-arrow-circle li:before {
  content: "\f0a9";
}
.list-times-circle li:before {
  content: "\f057";
}
.primary li:before {
  color: #f88122;
}
.secondry li:before {
  color: #77c04b;
}
.black li:before {
  color: #000;
}
.white li:before {
  color: #fff;
}
.orange li:before {
  color: #f60;
}
.green li:before {
  color: #0c0;
}
.red li:before {
  color: #ff3737;
}
.no-margin {
  margin: 0 0 0 !important;
  list-style: none;
}
.list-num-count {
  counter-reset: li;
  padding-left: 0;
}
.list-num-count > li {
  position: relative;
  margin: 0 0 6px 30px;
  padding: 4px 8px;
  list-style: none;
}
.list-num-count > li:before {
  content: counter(li, decimal);
  counter-increment: li;
  position: absolute;
  top: 0;
  left: -28px;
  width: 28px;
  height: 28px;
  padding: 5px;
  color: #fff;
  background: #f88122;
  font-weight: 700;
  text-align: center;
  font-size: 12px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.list-num-count.lower-alpha > li:before {
  content: counter(li, lower-alpha);
}
.list-num-count.upper-alpha > li:before {
  content: counter(li, upper-alpha);
}
.list-num-count.right li:before {
  right: -35px;
  left: auto;
}
.list-num-count.right li {
  margin-left: 0;
  margin-right: 35px;
}
.dez-tabs .tab-pane {
  padding: 20px 0;
}
.dez-tabs .nav-tabs > li > a {
  color: #3d474a;
  font-weight: 600;
  font-size: 13px;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.dez-tabs .nav-tabs > li.active > a,
.dez-tabs .nav-tabs > li.active > a:focus,
.dez-tabs .nav-tabs > li.active > a:hover {
  background-color: #fff;
  border-color: #ddd;
  border-bottom: 1px solid #fff;
}
.dez-tabs .nav > li > a:focus,
.dez-tabs .nav > li > a:hover {
  background-color: #fff0;
}
.dez-tabs .nav li a:hover {
  border: 1px solid #fff0;
}
.dez-tabs .nav-tabs > li > a i {
  color: #f88122;
  margin-right: 5px;
}
.dez-tabs.bg-tabs .nav-tabs > li > a {
  border: 1px solid #ddd;
  background-color: #efefef;
  margin-right: 2px;
}
.dez-tabs.bg-tabs .nav-tabs > li.active > a {
  border-bottom: 1px solid #fff0;
  background-color: #fff;
}
.dez-tabs.vertical.bg-tabs .nav-tabs > li > a {
  border: 1px solid #ddd;
}
.dez-tabs.vertical.bg-tabs .nav-tabs > li.active > a {
  border-right: 1px solid #fff0;
}
.dez-tabs.vertical.right.bg-tabs .nav-tabs > li > a {
  border: 1px solid #ddd;
}
.dez-tabs.vertical.right.bg-tabs .nav-tabs > li.active > a {
  border-left: 1px solid #fff0;
}
.dez-tabs.border-top .nav-tabs > li.active > a {
  border-top: 2px solid #f88122;
  padding: 9px 15px 10px;
}
.dez-tabs.border .tab-pane {
  padding: 20px;
  border: 1px solid #ddd;
  margin-top: -1px;
}
.dez-tabs.vertical .nav-tabs {
  float: left;
  width: 170px;
  border-bottom: none;
  border-right: 1px solid #ddd;
}
.dez-tabs.vertical .tab-pane {
  padding: 10px 0 10px 20px;
}
.dez-tabs.vertical .nav-tabs li {
  float: none;
  margin-right: -1px;
}
.dez-tabs.vertical .nav-tabs li a {
  margin-right: 0;
  border-right: none;
}
.dez-tabs.vertical .nav-tabs li.active a {
  border-bottom: 1px solid #ddd;
}
.dez-tabs.vertical .tab-content {
  border-left: 1px solid #ddd;
  margin-left: 169px;
}
.dez-tabs.vertical.border .tab-pane {
  padding: 20px;
  margin-left: -1px;
}
.dez-tabs.vertical.right .nav-tabs {
  border-left: 1px solid #ddd;
  border-right: none;
  float: right;
}
.dez-tabs.vertical.right .nav-tabs li {
  margin-right: 0;
  margin-left: -1px;
}
.dez-tabs.vertical.right .nav-tabs li a {
  border-right: 1px solid #fff0;
  border-left: none;
}
.dez-tabs.vertical.right .nav-tabs li.active a {
  border-right: 1px solid #ddd;
  border-left: none;
}
.dez-tabs.vertical.right .tab-content {
  border-left: none;
  border-right: 1px solid #ddd;
  margin-right: 169px;
  margin-left: 0;
}
.dez-tabs.vertical.right .tab-pane {
  padding: 10px 20px 10px 0;
}
.dez-tabs.vertical.right.border .tab-pane {
  padding: 20px;
  margin-right: -1px;
}
.panel {
  box-shadow: none;
  -webkit-box-shadow: none;
}
.dez-accordion .panel {
  border: none;
  border-radius: 0;
  margin-bottom: -1px;
}
.acod-head {
  position: relative;
}
.acod-title {
  margin-top: 0;
  margin-bottom: 0;
}
.acod-head .fa {
  margin-right: 5px;
}
.acod-head a {
  display: block;
  padding: 15px 40px 15px 15px;
  border: 1px solid #ddd;
}
.acod-head a,
.acod-head a:hover,
.acod-head a.collapsed:hover {
  color: #f88122;
}
.acod-head a.collapsed,
.acod-head a.collapsed:after {
  color: #ba1349;
}
.acod-head a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f068";
  float: right;
  color: #f88122;
  font-size: 14px;
  position: absolute;
  right: 12px;
  top: 15px;
}
.acod-head a.collapsed:after {
  content: "\f067";
}
.acod-body {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #fff0;
  margin-top: -1px;
}
.acod-content {
  margin: 20px;
}
.dez-accordion.rounded .panel:first-child .acod-head a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.dez-accordion.rounded .panel:last-child .acod-head a.collapsed {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.dez-accordion.rounded .panel:last-child .acod-body {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.dez-accordion.rounded .panel:last-child .acod-body.in {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.dez-accordion.space .panel {
  margin-bottom: 20px;
}
.dez-accordion.rounded.space .panel .acod-head a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.dez-accordion.rounded.space .panel .acod-head a.collapsed {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.dez-accordion.rounded.space .panel .acod-body {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.dez-accordion.bg-title .acod-head a {
  background-color: #f7f8fa;
}
.dez-accordion.no-cover .acod-body {
  border: none;
}
.dez-accordion.no-cover .acod-content {
  padding-left: 20px;
  margin-right: 10px;
  border-left: 2px solid #e8e8e8;
  position: relative;
}
.dez-accordion.no-cover .acod-content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 2px solid #e8e8e8;
}
.dez-accordion.border-bottom .acod-head a {
  border-left: none;
  border-right: none;
  border-top: none;
  padding-left: 0;
}
.dez-accordion.border-bottom.no-border .acod-head a {
  border: none;
}
.dez-accordion.no-border .acod-content {
  margin-top: 10px;
  margin-bottom: 10px;
}
.ow-post-info {
  padding: 10px 15px;
  background-color: #ba1349;
}
.ow-post-title .post-title {
  margin: 0 0 10px;
}
.ow-post-text {
  margin-bottom: 10px;
}
.ow-post-text p:last-child {
  margin: 0;
}
.ow-post-readmore {
  margin-bottom: 10px;
}
.ow-post-meta {
  margin-bottom: 10px;
}
.ow-post-meta ul {
  margin: 0 -4px;
  list-style: none;
}
.ow-post-meta ul li {
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.ow-post-meta li:after {
  content: "/";
  display: inline-block;
  font-weight: 400;
  margin-left: 5px;
  opacity: 0.5;
}
.ow-post-meta li:last-child:after {
  display: none;
}
.ow-post-meta a {
  color: #7b7b7b;
  font-weight: 400;
}
.ow-post-meta li,
.ow-post-meta li i {
  color: #7b7b7b;
  margin: 0 5px;
}
.ow-post-media .ow-post-meta li i {
  margin: 0;
}
.ow-post-tags {
  border-top: 1px solid #e9e9e9;
  padding-top: 10px;
}
.ow-post-tags .post-comment {
  float: left;
  font-weight: 400;
  text-transform: uppercase;
}
.ow-post-tags .post-comment a {
  color: #7b7b7b;
}
.ow-post-tags .post-tags {
  margin: 0 -3px;
  list-style: none;
}
.ow-post-tags .post-tags a {
  border: 1px solid #ebebeb;
  padding: 2px 8px 1px;
  color: #777;
  margin: 0 3px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
}
.ow-post-tags .post-tags a:hover,
.ow-post-tags .post-tags a:active,
.ow-post-tags .post-tags a:focus {
  border: 1px solid #0098a6;
  color: #0098a6;
}
.no-image-blog.date-style-2 .ow-post-info {
  padding-top: 70px;
}
.ow-event-info {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ebebeb;
}
.ow-event-title .event-title {
  margin: 0 0 10px;
}
.ow-event-text {
  margin-bottom: 10px;
}
.ow-event-text p:last-child {
  margin: 0;
}
.ow-event-readmore {
  margin-bottom: 10px;
}
.ow-event-meta ul {
  margin: 0;
}
.ow-event-meta ul li {
  color: #a9a9a9;
  font-weight: 600;
  display: inline-block;
  padding-right: 15px;
}
.ow-event-meta ul li i {
  color: #7b7b7b;
  margin-right: 10px;
}
.no-image-event.date-style-2 .ow-post-info {
  padding-top: 70px;
}
.ow-client-logo {
  background-color: #fff;
  display: table;
  width: 100%;
}
.client-logo {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
}
.owl-carousel .ow-client-logo img {
  height: 80px;
  max-height: 100%;
  width: auto;
  display: inline-block;
}

@media only screen and (max-width: 480px) {
  .testimonial-4 .testimonial-pic {
    height: 80px;
    width: 80px;
  }
  .testimonial-4:after {
    transform: skewX(-10deg);
  }
  .testimonial-4 {
    padding: 25px 10px 25px 0;
    margin-left: 110px;
  }
}
.testimonial-5 .testimonial-text {
  border: 2px solid #ff7f00;
  padding: 40px;
}
.testimonial-5 .testimonial-detail {
  padding: 0 0 0 20px;
  margin-top: -35px;
}
.testimonial-5 .testimonial-pic {
  box-shadow: 0 0 0 2px #e6e6e6;
  width: 70px;
  height: 70px;
}
.testimonial-5 .testimonial-text p {
  font-size: 16px;
  line-height: 30px;
}
.testimonial-5 .info p {
  display: inline-block;
  position: relative;
  top: -10px;
  padding: 0 10px;
}
.pricingtable-inner {
  text-align: center;
}
.pricingtable-price {
  padding: 20px 20px;
  background-color: #f4f7f8;
  border: 1px solid #e9e9e9;
}
.pricingtable-bx {
  font-size: 50px;
  font-family: Arial;
  color: #666;
}
.pricingtable-type {
  font-size: 20px;
  text-transform: uppercase;
  font-size: 16px;
}
.pricingtable-type:before {
  content: "/";
  margin-right: 3px;
}
.pricingtable-title {
  padding: 20px;
  text-transform: uppercase;
}
.pricingtable-title * {
  margin: 0;
  color: #fff;
  font-weight: 800;
}
.pricingtable-features {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #e9e9e9;
}
.pricingtable-features li {
  padding: 12px;
  border-bottom: 1px solid #e9e9e9;
}
.pricingtable-features li i {
  margin: 0 3px;
}
.pricingtable-features li:nth-child(even) {
  background-color: #f4f7f8;
}
.pricingtable-features li:last-child {
  border-bottom: none;
}
.pricingtable-footer-old {
  margin-top: -1px;
  padding: 20px;
  background-color: #f4f7f8;
  border: 1px solid #e9e9e9;
}
.pricingtable-highlight {
  margin: -20px 0;
  -webkit-box-shadow: 0 0 10px 5px rgb(0 0 0 / 0.2);
  box-shadow: 0 0 10px 5px rgb(0 0 0 / 0.2);
  position: relative;
  z-index: 99;
}
.pricingtable-highlight .pricingtable-price {
  padding: 30px 20px;
}
.pricingtable-highlight .pricingtable-footer-old {
  padding: 30px 20px;
}
.no-col-gap .pricingtable-wrapper {
  margin-left: -1px;
}
.counter {
  position: relative;
}
.count-row {
  background: #333;
}
#countdown-clock {
  display: table;
  text-align: center;
  width: 80%;
  margin-left: -15px;
  border: 1px solid #3f3f3f;
  margin: 17px 0;
}
#countdown-clock span {
  display: table-cell;
  width: 1%;
  color: #fff;
  padding: 5px 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #999;
  border-right: 1px solid #3f3f3f;
}
#countdown-clock span:last-child {
  border-right: none;
}
#countdown-clock span b {
  display: block;
  font-size: 25px;
  font-weight: 900;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  #countdown-clock {
    width: 100%;
  }
}
.alert.alert-sm {
  padding: 5px 15px;
  font-size: 12px;
}
.alert.alert-lg {
  padding: 25px 15px;
  font-size: 16px;
}
.alert.alert-xl {
  padding: 35px 15px;
  font-size: 18px;
}
.alert[class*="alert-"] i {
  margin-right: 8px;
}
.alert.no-radius {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}
.alert.no-bg {
  background-color: #fff0;
  border-width: 2px;
}
.alert[class*="alert-"] ul {
  padding-left: 25px;
  margin-top: 10px;
}
.alert[class*="alert-"] ul li:before {
  color: #a94442;
}
.modal-header {
  border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
}
.modal-footer-old {
  border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
}
.modal-header {
  background: #f88122;
  padding: 15px 25px;
}
.modal-header .modal-title {
  color: #fff;
}
.modal .modal-body {
  padding: 25px;
}
.modal-xlg {
  width: 1000px;
}
.provider_registration .bootstrap-select div.dropdown-menu ul li a {
  font-weight: 600;
}
.provider_registration
  .bootstrap-select
  div.dropdown-menu
  ul
  li
  a
  span.childcat {
  font-weight: 400;
  color: #7c7c7c;
}
@media only screen and (max-width: 1024px) {
  .modal-xlg {
    width: auto;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.dez-social-icon {
  display: inline-block;
  margin: 0 -3px;
  padding: 0;
  text-align: center;
}
.dez-social-icon li {
  display: inline-block;
  padding: 0;
  font-size: 12px;
}
.dez-social-icon li a {
  display: inline-block;
  width: 24px;
  height: 24px;
  padding: 4px;
}
.dez-social-icon li .fa {
  vertical-align: middle;
}
.dez-social-icon.dez-border li {
  padding: 0 3px;
}
.dez-social-icon.dez-border li a {
  border: 1px solid rgb(255 255 255 / 0.05);
}
.dez-social-links.dark li {
  padding: 0 3px;
}
.dez-social-icon.dark li a {
  border: 1px solid #777;
  color: #777;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}
.dez-share-icon li {
  border: none;
  width: 36px;
  display: block;
  float: left;
  white-space: nowrap;
  overflow: hidden;
  margin-right: 0;
}
.dez-share-icon li a {
  color: #fff;
}
.dez-share-icon li i {
  border-right: none;
  font-size: 14px;
  color: #fff;
  width: 36px;
  height: 34px;
  line-height: 34px;
  padding: 0;
  text-align: center;
}
.dez-share-icon li.fb {
  background: #354d89;
}
.dez-share-icon li.fb i {
  background: #3a5799;
}
.dez-share-icon li.gp {
  background: #d34b2b;
}
.dez-share-icon li.gp i {
  background: #e35736;
}
.dez-share-icon li.tw {
  background: #029fdf;
}
.dez-share-icon li.tw i {
  background: #00abf0;
}
.dez-share-icon li.dig {
  background: #1d61aa;
}
.dez-share-icon li.dig i {
  background: #2b6fb8;
}
.dez-share-icon li.lin {
  background: #0176be;
}
.dez-share-icon li.lin i {
  background: #0082ca;
}
.dez-share-icon li.pin {
  background: #ac0104;
}
.dez-share-icon li.pin i {
  background: #bd0e15;
}
.dez-share-icon li:hover {
  width: 90px;
}
.dataTable .sorting_asc .checkbox {
  margin-right: 0;
}
.overlay-black-light,
.overlay-black-middle,
.overlay-black-dark,
.overlay-gradient-light,
.overlay-gradient-middle,
.overlay-gradient-dark,
.overlay-white-light,
.overlay-white-middle,
.overlay-white-dark,
.overlay-primary-light,
.overlay-primary-middle,
.overlay-primary-dark {
  position: relative;
}
.overlay-black-light:after,
.overlay-black-middle:after,
.overlay-black-dark:after,
.overlay-gradient-light:after,
.overlay-gradient-middle:after,
.overlay-gradient-dark:after,
.overlay-white-light:after,
.overlay-white-middle:after,
.overlay-white-dark:after,
.overlay-primary-light:after,
.overlay-primary-middle:after,
.overlay-primary-dark:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.overlay-black-light:after,
.overlay-black-middle:after,
.overlay-black-dark:after {
  background: #000;
}
.overlay-gradient-light:after,
.overlay-gradient-middle:after,
.overlay-gradient-dark:after {
  background: -moz-linear-gradient(top, #fff0 0%, rgb(0 0 0 / 0.65) 100%);
  background: -webkit-linear-gradient(top, #fff0 0%, rgb(0 0 0 / 0.65) 100%);
  background: linear-gradient(to bottom, #fff0 0%, rgb(0 0 0 / 0.65) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#a6000000',GradientType=0);
}
.overlay-white-light:after,
.overlay-white-middle:after,
.overlay-white-dark:after {
  background: #fff;
}
.overlay-primary-light:after,
.overlay-primary-middle:after,
.overlay-primary-dark:after {
  background: ;
}
.overlay-black-light:after {
  opacity: 0.3;
}
.overlay-black-middle:after {
  opacity: 0.5;
}
.overlay-black-dark:after {
  opacity: 0.9;
}
.overlay-gradient-light:after {
  opacity: 0.3;
}
.overlay-gradient-middle:after {
  opacity: 0.5;
}
.overlay-gradient-dark:after {
  opacity: 0.9;
}
.overlay-white-light:after {
  opacity: 0.5;
}
.overlay-white-middle:after {
  opacity: 0.7;
}
.overlay-white-dark:after {
  opacity: 0.9;
}
.overlay-primary-light:after {
  opacity: 0.3;
}
.overlay-primary-middle:after {
  opacity: 0.5;
}
.overlay-primary-dark:after {
  opacity: 0.9;
}
.overlay-black-light .container,
.overlay-black-middle .container,
.overlay-black-dark .container,
.overlay-white-light .container,
.overlay-white-middle .container,
.overlay-white-dark .container,
.overlay-primary-light .container,
.overlay-primary-middle .container,
.overlay-primary-dark .container,
.overlay-black-light .container-fluid,
.overlay-black-middle .container-fluid,
.overlay-black-dark .container-fluid,
.overlay-white-light .container-fluid,
.overlay-white-middle .container-fluid,
.overlay-white-dark .container-fluid,
.overlay-primary-light .container-fluid,
.overlay-primary-middle .container-fluid,
.overlay-primary-dark .container-fluid {
  position: relative;
  z-index: 1;
}
.overlay-bx {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}
.overlay-icon {
  list-style: none;
  width: 160px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -20px -75px;
}
.overlay-icon a {
  display: inline-block;
  padding: 0;
  margin: 0 2px;
}
.overlay-icon a i {
  background-color: #fff;
}
.overlay-bx:hover a > i,
.dez-media:hover .overlay-bx a > i,
.dez-box-bx:hover .overlay-bx a > i {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.overlay-bx:hover,
.dez-media:hover .overlay-bx,
.dez-box:hover .overlay-bx,
.ow-img:hover .overlay-bx,
.ow-portfolio-img:hover .overlay-bx {
  opacity: 1;
  visibility: visible;
}
.overlay-text {
  width: 100%;
  position: absolute;
  padding: 20px;
  color: #fff;
  left: 0;
  bottom: 20px;
}
.dez-address-bx {
  display: table;
  text-align: left;
  padding: 20px 20px 20px 25px;
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 14px;
  vertical-align: middle;
  font-weight: 600;
}
.dez-address-bx .fa {
  position: absolute;
  top: 22px;
  left: 0;
  font-size: 22px;
}
.col-md-3 .overlay-text {
  padding: 5px;
}
.col-md-4 .overlay-text {
  padding: 20px;
}
.dez-address2-bx {
  display: table;
  background: #eaeaea;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.icon-bx-xl,
.icon-bx-lg,
.icon-bx-md,
.icon-bx-sm,
.icon-bx-xs {
  display: inline-block;
  text-align: center;
}
.icon-bx-xl {
  width: 150px;
  height: 150px;
  line-height: 150px;
}
.icon-bx-lg {
  width: 120px;
  height: 120px;
  line-height: 120px;
}
.icon-bx-md {
  width: 100px;
  height: 100px;
  line-height: 100px;
}
.icon-bx-sm {
  width: 80px;
  height: 80px;
  line-height: 80px;
}
.icon-bx-xs {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.icon-bx-xl.radius,
.icon-bx-lg.radius,
.icon-bx-md.radius,
.icon-bx-sm.radius,
.icon-bx-xs.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.border-1,
.border-2,
.border-3,
.border-4,
.border-5 {
  border-style: solid;
}
.border-1 {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-3 {
  border-width: 3px;
}
.border-4 {
  border-width: 4px;
}
.border-5 {
  border-width: 5px;
}
.icon-bx-xl i,
.icon-bx-lg i,
.icon-bx-md i,
.icon-bx-sm i,
.icon-bx-xs i {
  vertical-align: middle;
}
.icon-bx-xl i {
  font-size: 80px;
}
.icon-bx-lg i {
  font-size: 60px;
}
.icon-bx-md i {
  font-size: 45px;
}
.icon-bx-sm i {
  font-size: 30px;
}
.icon-bx-xs i {
  font-size: 20px;
}
.icon-bx-xl img,
.icon-bx-lg img,
.icon-bx-md img,
.icon-bx-sm img,
.icon-bx-xs img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
}
.icon-bx-xl img {
  height: 80px;
}
.icon-bx-lg img {
  height: 55px;
}
.icon-bx-md img {
  height: 40px;
}
.icon-bx-sm img {
  height: 30px;
}
.icon-bx-xs img {
  height: 20px;
}
.icon-xl,
.icon-lg,
.icon-md,
.icon-sm,
.icon-xs {
  display: inline-block;
  text-align: center;
}
.icon-xl {
  width: 100px;
}
.icon-lg {
  width: 80px;
}
.icon-md {
  width: 60px;
}
.icon-sm {
  width: 40px;
}
.icon-xs {
  width: 30px;
}
.icon-xl i,
.icon-lg i,
.icon-md i,
.icon-sm i,
.icon-xs i {
  vertical-align: middle;
}
.icon-xl i {
  font-size: 80px;
}
.icon-lg i {
  font-size: 60px;
}
.icon-md i {
  font-size: 45px;
}
.icon-sm i {
  font-size: 30px;
}
.icon-xs i {
  font-size: 20px;
}
.icon-xl img,
.icon-lg img,
.icon-md img,
.icon-sm img,
.icon-xs img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
}
.icon-xl img {
  height: 80px;
}
.icon-lg img {
  height: 70px;
}
.icon-md img {
  height: 50px;
}
.icon-sm img {
  height: 30px;
}
.icon-xs img {
  height: 20px;
}
.icon-bx-wraper {
  position: relative;
}
.icon-bx-wraper .dez-tilte {
  margin-top: 0;
}
.icon-bx-wraper .after-titile-line {
  margin-bottom: 10px;
}
.icon-bx-wraper p:last-child {
  margin: 0;
}
.icon-content {
  overflow: hidden;
}
.icon-bx-wraper.left .icon-bx-xl,
.icon-bx-wraper.left .icon-bx-lg,
.icon-bx-wraper.left .icon-bx-md,
.icon-bx-wraper.left .icon-bx-sm,
.icon-bx-wraper.left .icon-bx-xs {
  float: left;
  margin-right: 20px;
  padding: 10px;
}
.icon-bx-wraper.left .icon-xl,
.icon-bx-wraper.left .icon-lg,
.icon-bx-wraper.left .icon-md,
.icon-bx-wraper.left .icon-sm,
.icon-bx-wraper.left .icon-xs {
  float: left;
  margin-right: 10px;
}
.icon-bx-wraper.right {
  text-align: right;
}
.icon-bx-wraper.right .icon-bx-xl,
.icon-bx-wraper.right .icon-bx-lg,
.icon-bx-wraper.right .icon-bx-md,
.icon-bx-wraper.right .icon-bx-sm,
.icon-bx-wraper.right .icon-bx-xs {
  float: right;
  margin-left: 20px;
}
.icon-bx-wraper.right .icon-xl,
.icon-bx-wraper.right .icon-lg,
.icon-bx-wraper.right .icon-md,
.icon-bx-wraper.right .icon-sm,
.icon-bx-wraper.right .icon-xs {
  float: right;
  margin-left: 10px;
}
.icon-bx-wraper.center {
  text-align: center;
}
[class*="icon-bx-"][class*="bg-"] a {
  color: #fff;
}
[class*="icon-bx-"].bg-white a {
  color: inherit;
}
[class*="icon-bx-"][class*="border-"] {
  display: table;
  line-height: normal;
  margin-left: auto;
  margin-right: auto;
}
[class*="icon-bx-"][class*="border-"] .icon-cell {
  display: table-cell;
  vertical-align: middle;
}
.icon-bx-wraper.bx-style-1,
.icon-bx-wraper.bx-style-2 {
  border-width: 2px;
  border-style: solid;
  border-color: #ba1349;
  border-radius: 15px;
  background: #fff;
}
.icon-bx-wraper.bx-style-2.center [class*="icon-bx-"],
.icon-bx-wraper.bx-style-2.left [class*="icon-bx-"],
.icon-bx-wraper.bx-style-2.right [class*="icon-bx-"] {
  position: absolute;
}
.icon-bx-wraper.bx-style-2.center [class*="icon-bx-"] {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.icon-bx-wraper.bx-style-2.center .icon-bx-xl {
  margin-left: -75px;
}
.icon-bx-wraper.bx-style-2.center .icon-bx-lg {
  margin-left: -60px;
}
.icon-bx-wraper.bx-style-2.center .icon-bx-md {
  margin-left: -50px;
}
.icon-bx-wraper.bx-style-2.center .icon-bx-sm {
  margin-left: -40px;
}
.icon-bx-wraper.bx-style-2.center .icon-bx-xs {
  margin-left: -20px;
}
.icon-bx-wraper.bx-style-2.left [class*="icon-bx-"] {
  position: absolute;
  top: auto;
  left: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.icon-bx-wraper.bx-style-2.right [class*="icon-bx-"] {
  position: absolute;
  top: auto;
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
.dez-box,
.dez-info,
.dez-tilte,
.dez-tilte-inner {
  position: relative;
}
.dez-tilte-inner {
  display: inline-block;
}
.dez-tilte-inner.skew-title:after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: -1;
  -moz-transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  transform: skewX(20deg);
}
.dez-box[class*="border-"],
.dez-info[class*="border-"] {
  border-color: #eee;
}
.dez-info.border-1,
.dez-info.border-2,
.dez-info.border-3,
.dez-info.border-4,
.dez-info.border-5 {
  border-top: none;
}
.left-border,
.right-border {
  position: relative;
}
.left-border:before,
.right-border:before {
  content: "";
  position: absolute;
  top: 5px;
  width: 1px;
  height: 90%;
  background: #ccc;
}
.right-border:before {
  right: 0;
}
.dez-media,
.dez-media,
.dez-post-media {
  background-color: #fff;
  position: relative;
}
.dez-media img,
.dez-post-media img {
  width: 100%;
  height: auto;
}
.post-video iframe {
  height: 510px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .post-video iframe {
    height: 350px;
  }
}
@media only screen and (max-width: 575px) {
  .post-video iframe {
    height: 250px;
  }
}
.dz-media,
.dz-post-media {
  position: relative;
  overflow: hidden;
}
.dz-media img,
.dz-post-media img {
  width: 100%;
  height: auto;
}
.modal.status-modal
  .modal-content
  .status-wrapper
  .status-swiper
  .swiper-slide
  .status-top-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-image: linear-gradient(0deg, #fff0 0.3%, rgb(0 0 0 / 0.6) 100%);
  opacity: 0.6;
  z-index: -1;
}
@media only screen and (max-width: 575px) {
  .modal.status-modal
    .modal-content
    .status-wrapper
    .status-swiper
    .swiper-slide
    .status-top-box
    .title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .modal-dialog {
    margin: 0;
  }
}
.blog-single > .dz-media.post-link img + .post-link-in {
  background: rgb(255 255 255 / 0.8);
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80px;
  gap: 10px;
}
.blog-single > .dz-media.post-link img + .post-link-in:hover {
  background: var(--primary);
  color: #fff;
}
.blog-single > .dz-media.post-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.5);
  backdrop-filter: blur(5px);
}
.blog-single > .dz-media.post-link:not(:has(img))::after {
  content: none;
}
.blog-single > .dz-media.post-link:not(:has(img)) > .post-link-in {
  position: static;
  transform: none;
  width: auto;
  background-color: var(--primary);
}
.post-link-in {
  padding: 15px 15px;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 1;
}
.blog-single > .dz-media > img + .quote-text {
  position: absolute;
}
.blog-single > .dz-media:not(:has(img)) > .quote-text {
  position: static;
  transform: none;
  width: auto;
  background-color: var(--rgba-primary-1);
}
.quote-text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(255 255 255 / 0.9);
  width: 720px;
}
@media only screen and (max-width: 1199px) {
  .quote-text {
    width: 510px;
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .quote-text {
    width: calc(100% - 20px);
    padding: 8px;
  }
}
@media only screen and (max-width: 1199px) {
  .quote-text blockquote p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .quote-text blockquote p {
    font-size: 12px;
  }
  .post-link-in {
    font-size: 15px;
  }
}
.dlab-media,
.dlab-media,
.dlab-post-media {
  position: relative;
}
.dlab-media img,
.dlab-post-media img {
  width: 100%;
  height: auto;
}
.dlab-media {
  overflow: hidden;
  position: relative;
}
.tutorial {
  border-width: 2px;
  border-style: solid;
  border-color: #e7e7e7;
  border-image: initial;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
}
.tutorial-data > div {
  scroll-margin-top: 100px;
}
.tutorial ul li {
  list-style: none;
  margin-bottom: 5px;
}
.cateloge {
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  padding: 20px;
  background: #fff;
  display: flex;
  gap: 20rem;
  margin-bottom: 15px;
}
.cateloge table td {
  padding: 10px 0;
}
.dlab-img-effect {
  position: relative;
  overflow: hidden;
  display: block;
  vertical-align: middle;
}
.dlab-img-effect img {
  display: block;
  margin: 0;
  width: 100%;
  height: auto;
  box-shadow: 0 0 0 #fff0;
  -webkit-box-shadow: 0 0 0 #fff0;
  -moz-box-shadow: 0 0 0 #fff0;
  transition: all 0.25s;
  -moz-transition: all 0.25s;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
}
.xl-sticky-top > .side-bar,
.sticky-top,
.sticky-top > .side-bar {
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
}
.product-gallery.on-show-slider {
  position: relative;
}
.status-media {
  position: relative;
}
@media only screen and (max-width: 575px) {
  .status-btn {
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  .blog-single > .dz-media.post-link img + .post-link-in {
    width: 80%;
    gap: 10px;
    height: unset;
  }
}
.status-media .post-status-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  width: 100px;
  height: 100px;
  border: 0;
  background-color: rgb(0 0 0 / 0.4);
}
@media only screen and (max-width: 575px) {
  .status-media .post-status-btn {
    width: 70px;
    height: 70px;
  }
  .status-media .post-status-btn svg {
    width: 22px;
    height: 22px;
  }
}
.modal.status-modal {
  background: rgb(0 0 0 / 0.6);
  backdrop-filter: blur(10px);
  z-index: 99999;
  overflow-y: hidden;
}
@media only screen and (max-width: 575px) {
  .modal.status-modal .modal-dialog {
    margin: 0;
  }
}
.modal.status-modal .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  color: #fff;
  background-image: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21 1L1 21" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 1L21 21" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  z-index: 9;
}
@media only screen and (max-width: 575px) {
  .modal.status-modal .btn-close {
    top: 10px;
    right: 10px;
  }
}
.modal.status-modal .status-pagination {
  position: absolute;
  top: 0;
  bottom: auto !important;
  left: 50% !important;
  height: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 9;
  transform: translate(-50%);
  padding: 10px 0;
}
.modal.status-modal .status-pagination .swiper-pagination-bullet {
  height: 5px;
  background-color: rgb(255 255 255 / 0.5);
  opacity: 1;
  width: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.modal.status-modal .status-pagination .swiper-pagination-bullet::after {
  content: "";
  height: 100%;
  width: 0;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.modal.status-modal
  .status-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 100%;
  transition: 3.5s linear;
}
.modal.status-modal .modal-content {
  border-radius: 30px;
}
.modal.status-modal
  .modal-content
  .status-wrapper
  .status-swiper
  .swiper-slide {
  height: unset;
}
.modal.status-modal
  .modal-content
  .status-wrapper
  .status-swiper
  .swiper-slide
  .status-top-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 30px 20px 0 20px;
}
.modal.status-modal
  .modal-content
  .status-wrapper
  .status-swiper
  .swiper-slide
  .status-top-box
  .post-date {
  font-size: 16px;
  color: #fff;
}
.modal.status-modal
  .modal-content
  .status-wrapper
  .status-swiper
  .swiper-slide
  .status-top-box
  .title {
  font-size: 24px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0;
}
@media only screen and (max-width: 480px) {
  .modal.status-modal
    .modal-content
    .status-wrapper
    .status-swiper
    .swiper-slide
    .status-top-box
    .title {
    font-size: 20px;
    font-weight: 700;
  }
}
.modal.status-modal
  .modal-content
  .status-wrapper
  .status-swiper
  .swiper-slide
  .status-top-box
  .status-btn
  .btn.btn-sm {
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 5px;
  background: #000;
  color: #fff;
}
.modal.status-modal
  .modal-content
  .status-wrapper
  .status-swiper
  .swiper-slide
  .status-top-box
  .status-btn
  .btn.btn-sm:hover {
  background-color: #ebebeb;
  color: #000;
}
.modal.status-modal
  .modal-content
  .status-wrapper
  .status-swiper
  .swiper-slide
  .status-top-box
  .status-btn
  .volume-icon {
  width: 44px;
  height: 44px;
  position: relative;
  background: rgb(255 255 255 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  float: right;
}
.modal.status-modal
  .modal-content
  .status-wrapper
  .status-swiper
  .swiper-slide
  img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
.modal.status-modal
  .modal-content
  .status-wrapper
  .status-swiper
  .swiper-slide
  video {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}
.fullscreen-cover {
  height: 100vh !important;
  object-fit: cover;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .fullscreen-cover {
    height: 50vh !important;
    object-fit: cover;
    width: 100%;
  }
}
.pagination-bx .pagination,
.cvf-universal-pagination .pagination {
  margin: 0;
}
.pagination {
  padding: 10px 0;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: 0;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.pagination > li > a,
.pagination > li > span {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #767676;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 12px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  border-color: #fff0;
  color: #fff;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  border-color: #fff0;
}
.pagination > .previous > a,
.pagination > .next > a {
  padding: 8px 14px;
  font-size: 12px;
}
.dataTables_paginate ul.pagination {
  margin: 0;
}
.dataTables_paginate .pagination > li {
  padding: 0;
}
.dez-newsletter {
  overflow-x: hidden;
}
.skew-subscribe {
  position: relative;
}
.skew-subscribe:after {
  background-color: #12151a;
  content: "";
  position: absolute;
  left: -50px;
  bottom: 0;
  width: 2000px;
  height: 100%;
  border-right: 7px solid #2d3239;
  -webkit-transform: skew(30deg);
  -moz-transform: skew(30deg);
  -o-transform: skew(30deg);
  -ms-transform: skew(30deg);
  transform: skew(30deg);
}
@media only screen and (max-width: 767px) {
  .dez-newsletter .p-t40.p-b20 {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .skew-subscribe.p-t40.p-b20 {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .skew-subscribe:after {
    left: auto;
    right: 30px;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
  }
}
.footer-old-fixed .site-footer-old {
  position: fixed;
  width: 100%;
  bottom: 0;
}
.footer-old-fixed .page-content {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
footer-old h1,
footer-old h2,
footer-old h3,
footer-old h4,
footer-old h5,
footer-old h6,
footer-old h1 a,
footer-old h2 a,
footer-old h3 a,
footer-old h4 a,
footer-old h5 a,
footer-old h6 a {
  color: #fff;
}
footer-old p,
footer-old strong,
footer-old b,
footer-old {
  color: #212529;
}
footer-old h1 a,
footer-old h2 a,
footer-old h3 a,
footer-old h4 a,
footer-old h5 a,
footer-old h6 a,
footer-old p a {
  color: #f88122;
}
footer-old a,
footer-old a:visited {
  color: #fff;
}
footer-old a:active,
footer-old a:focus,
footer-old a:hover {
  color: #f88122;
}
footer-old p {
  margin-bottom: 10px;
}
footer-old p,
footer-old li {
  font-size: 15px;
  line-height: 22px;
}
footer-old#footer-old {
  background-position: center;
  background-size: cover;
}
.dez-top-footer-old-overlay,
.dez-bottom-footer-old-overlay {
  position: relative;
}
.dez-top-footer-old-overlay .container,
.dez-bottom-footer-old-overlay .container {
  position: relative;
  z-index: 1;
}
.dez-top-footer-old-overlay:before,
.dez-bottom-footer-old-overlay:before {
  content: "";
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dez-top-footer-old-overlay:before {
  opacity: ;
}
.dez-bottom-footer-old-overlay:before {
  opacity: ;
}
footer-old p {
  line-height: 24px;
  margin-bottom: 10px;
}
footer-old p a {
  color: #3396d1;
}
footer-old .widget ul {
  list-style: none;
  margin-top: 5px;
}
footer-old .widget_categories ul li,
footer-old .widget_archive ul li,
footer-old .widget_meta ul li,
footer-old .widget_pages ul li,
footer-old .widget_recent_comments ul li,
footer-old .widget_nav_menu li,
footer-old .widget_recent_entries ul li,
footer-old .widget_services ul li {
  border-bottom: 1px dashed rgb(102 102 102 / 0.3);
}
footer-old .widget_getintuch i {
  background-color: rgb(0 0 0 / 0.1);
  border: 1px solid rgb(0 0 0 / 0.1);
}
.footer-old-top {
  background: #6f3662;
  background-size: cover;
  background-position: center;
  padding: 50px 0 20px;
}
.footer-old-line {
  position: relative;
}
.footer-old-line:after {
  content: "";
  position: absolute;
  top: 0;
  height: 5px;
  width: 100%;
  background-color: #f88122;
  background-image: url(../images/line.html);
  background-position: top;
  background-repeat: repeat-x;
}
.footer-old-bottom {
  background-color: #ff7f00;
  padding: 30px 0;
  color: #fff;
  font-size: 15px;
}
.footer-old-bottom ul {
  margin: 0;
}
@media only screen and (max-width: 991px) {
  footer-old .container {
    width: 100%;
  }
  .col-md-3.col-sm-6.footer-old-col-4:nth-child(3) {
    clear: both;
  }
}
@media only screen and (max-width: 767px) {
  .footer-old-clear {
    display: block !important;
    clear: both;
  }
  #footer-old .footer-old-4-col {
    width: 100%;
  }
  .footer-old-bottom [class*="clo-"] {
    width: 100%;
  }
}
button.scroltop {
  background: var(--color-primary);
  border-color: #f88122;
  border-radius: 4px;
  border-style: solid;
  border-width: 0;
  bottom: 15px;
  color: #fff !important;
  cursor: pointer;
  display: none;
  height: 50px;
  line-height: 50px;
  margin: 0;
  position: fixed;
  right: 15px;
  text-align: center;
  width: 50px;
  z-index: 999;
  box-shadow: -4px 4px 24px -10px var(--color-primary);
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
}
button.scroltop.style3:after,
button.scroltop.style2:after,
button.scroltop.style1:after {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  content: "";
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  background: inherit;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.3s;
  -moz-transition: -moz-transform 0.2s, opacity 0.3s;
  transition: transform 0.2s, opacity 0.3s;
}
button.scroltop.style1:hover:after {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
}
button.scroltop.radius {
  border-radius: 100%;
}
button.scroltop.white {
  background: #fff;
  color: var(--color-primary) !important;
}
button.scroltop.style2:after {
  border: 1px dashed var(--color-primary);
  background: #fff0;
  transform: scale(1.2);
  transition: all 0.5s;
}
button.scroltop.style2:hover:after {
  -webkit-animation: spinAround 9s linear infinite;
  -moz-animation: spinAround 9s linear infinite;
  animation: spinAround 9s linear infinite;
}
@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg) scale(1.2);
  }
  to {
    -webkit-transform: rotate(360deg) scale(1.2);
  }
}
@-moz-keyframes spinAround {
  from {
    -moz-transform: rotate(0deg) scale(1.2);
  }
  to {
    -moz-transform: rotate(360deg) scale(1.2);
  }
}
@keyframes spinAround {
  from {
    transform: rotate(0deg) scale(1.2);
  }
  to {
    transform: rotate(360deg) scale(1.2);
  }
}
.icon-bx-wraper:hover .icon-up img,
.icon-bx-wraper:hover .icon-up i,
.icon-up:hover i {
  -webkit-animation: toTopFromBottom 0.8s forwards;
  -moz-animation: toTopFromBottom 0.8s forwards;
  animation: toTopFromBottom 0.8s forwards;
}
@media only screen and (max-width: 591px) {
  button.scroltop {
    height: 35px;
    line-height: 35px;
    width: 35px;
  }
}
@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toTopFromBottom {
  49% {
    -moz-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
button.scroltop.style3:after {
  background: #fff0;
  border: 1px solid var(--color-primary);
}
button.scroltop.style3:hover:after {
  transform: scale(1.2);
}
button.scroltop.style4 {
  transition: all 0.5s;
}
button.scroltop.style4:hover {
  transform: scale(1.1);
}
.yoga-footer-old .footer-old-top .saf-footer-old {
  padding: 50px 30px 20px;
  background-color: #6f3662;
}
.yoga-footer-old .footer-old-top {
  padding-bottom: 0;
}
.yoga-footer-old .footer-old-top,
.yoga-footer-old .footer-old-bottom {
  background-color: #ff7f00;
}
.yoga-footer-old .widget {
  margin-bottom: 0;
}
.yoga-footer-old .newsletter {
  max-width: 500px;
}
.yoga-footer-old .newsletter input[type="text"] {
  background-color: #6f3662;
  border: 0;
  border-radius: 30px !important;
}
.yoga-footer-old .newsletter input,
.yoga-footer-old .newsletter button {
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  background: #ff7f00;
}
.yoga-footer-old .section-head {
  margin-bottom: 30px;
}
.footer-old-social li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  background: #ff7f00;
  text-align: center;
}
.footer-old-social li a:hover {
  color: #fff;
}
.footer-old-image .footer-old-top,
.footer-old-image .footer-old-bottom {
  background-color: #fff0;
}
.footer-old-image .saf-footer-old,
.footer-old-image .newsletter input[type="text"],
.yoga-footer-old.footer-old-image .footer-old-top .saf-footer-old {
  background-color: rgb(0 0 0 / 0.5);
}
.site-footer-old .widget_services ul li a {
  color: #fff;
}
.footer-old-overlay .footer-old-bottom {
  background-color: rgb(0 0 0 / 0.85);
}
.footer-old-overlay .footer-old-top {
  background-color: rgb(0 0 0 / 0.8);
}
.footer-old-info-box {
  border: 1px solid rgb(255 255 255 / 0.2);
}
.footer-old-info-box .dez-social-icon li a {
  background-color: #fff;
  border: medium none;
  border-radius: 100%;
  font-size: 16px;
  height: 38px;
  line-height: 38px;
  padding: 0;
  width: 38px;
}
.newsletter input {
  height: 44px;
}
.footer-old-info-box .dez-social-icon {
  border-bottom: 1px dashed rgb(255 255 255 / 0.2);
  display: inline-block;
  margin: 0 -3px;
  padding: 0 0 15px;
  text-align: center;
}
.footer-old-info-box .newsletter .input-group {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.footer-old-info-box .newsletter input[type="text"] {
  background-color: #fff;
}
.footer-old-white {
  border-top: 2px solid #e0e0e0;
}
.footer-old-white .footer-old-top {
  background-color: #fff;
}
.footer-old-white .footer-old-bottom {
  background-color: #efefef;
}
footer-old.footer-old-white h1,
footer-old.footer-old-white h2,
footer-old.footer-old-white h3,
footer-old.footer-old-white h4,
footer-old.footer-old-white h5,
footer-old.footer-old-white h6,
footer-old.footer-old-white h1 a,
footer-old.footer-old-white h2 a,
footer-old.footer-old-white h3 a,
footer-old.footer-old-white h4 a,
footer-old.footer-old-white h5 a,
footer-old.footer-old-white h6 a,
footer-old.footer-old-white.site-footer-old .widget_services ul li a,
footer-old.footer-old-white p,
footer-old.footer-old-white strong,
footer-old.footer-old-white b,
footer-old.footer-old-white,
footer-old.footer-old-white .dez-post-meta li,
footer-old.footer-old-white .dez-post-meta a,
footer-old.footer-old-white .recent-posts-entry .dez-post-meta a,
footer-old.footer-old-white .dez-post-meta i,
footer-old.footer-old-white .footer-old-bottom,
footer-old.footer-old-white .footer-old-bottom a {
  color: #000;
}
footer-old .dez-post-meta li,
footer-old .dez-post-meta a,
footer-old .recent-posts-entry .dez-post-meta a,
footer-old .dez-post-meta i {
  color: #fff;
}
.page-wraper {
  background: #fff;
}
.section-full {
  position: relative;
}
.content-area {
  padding-top: 120px !important;
}
@media only screen and (max-width: 991px) {
  .content-area {
    padding-top: 70px !important;
  }
}
.section-head {
  margin-bottom: 25px;
}
.section-head.no-margin {
  margin-bottom: 0;
}
.section-head h1,
.section-head h2,
.section-head h3 {
  margin-top: 0;
}
.title-small {
  display: block;
  color: #494949;
  margin-bottom: 15px;
}
.section-head p {
  padding-top: 10px;
  font-size: 14px;
  color: #797979;
}
.text-center.section-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.text-white {
  color: #fff;
}
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white .title-small {
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .section-full {
    background-attachment: scroll !important;
  }
}
@media only screen and (max-width: 991px) {
  .page-content {
    margin-top: 0;
  }
}
.page-notfound {
  padding: 50px 0;
}
.page-notfound strong {
  font-size: 200px;
  font-weight: 900;
  line-height: 140px;
  display: block;
}
.page-notfound strong i {
  font-size: 190px;
  margin: 0 10px;
}
.page-notfound .searchform {
  position: relative;
  text-align: left;
  max-width: 420px;
  margin: 30px auto;
}
.error-text {
  font-size: 200px;
  font-weight: unset;
  line-height: 200px;
}
.error-box p {
  font-size: 22px;
  line-height: 36px;
  margin: auto;
  max-width: 600px;
}
.error-box .input-group {
  margin: 20px auto;
  max-width: 500px;
}
.error-box .input-group input {
  height: 45px;
  border-width: 2px 0 2px 2px;
}
.sticky {
  clear: both;
}
.gallery-caption {
  clear: both;
}
.bypostauthor {
  clear: both;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgb(0 0 0 / 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.dez-gallery-listing {
  list-style: none;
}
.dez-gallery-box {
  margin-bottom: 30px;
}
.dez-gallery-box .check-km {
  cursor: pointer;
}
.dez-gallery-box .icon-bx-xs {
  background-color: #fff;
  color: var(--color-primary);
  font-size: 15px;
}
.lg-actions .lg-next,
.lg-actions .lg-prev,
.lg-sub-html,
.lg-toolbar {
  background-color: var(--color-primary);
}
.lg-outer .lg-toogle-thumb,
.lg-outer .lg-thumb-outer,
.lg-outer .lg-img-wrap,
.lg-outer .lg-item {
  background-color: #fff;
}
.lg-actions .lg-next,
.lg-actions .lg-prev,
.lg-toolbar .lg-icon,
#lg-counter {
  color: #fff;
}
#bg {
  background-attachment: fixed;
  background-size: cover;
}
.boxed .page-wraper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.5);
}
.boxed .tp-banner-container,
.boxed .rev_slider_wrapper {
  left: 0 !important;
  width: 100% !important;
}
.boxed .tp-rightarrow {
  right: 0 !important;
}
.boxed .tp-leftarrow {
  left: 0 !important;
}
.boxed.footer-old-fixed .site-footer-old {
  left: 50%;
  width: 1200px;
  margin: 0 -600px;
}
.boxed .is-fixed .main-bar {
  left: 50%;
  width: 1200px;
  margin: 0 -600px;
}
.boxed .is-fixed.header-curve .logo-header:after {
  right: auto;
  left: -15px;
  width: 90%;
}
.owl-imgbx,
.ow-portfolio-img {
  position: relative;
}
.ow-entry-content {
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #eee;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 5px;
}
.ow-entry-title {
  font-size: 16px;
  font-weight: 600;
  padding: 5px 0;
}
.ow-entry-title,
.ow-entry-title a {
  color: #3d474a;
}
.ow-entry-text p:last-child {
  margin: 0;
}
.btn-quantity {
  width: 150px;
}
.product-description.dex-tabs.border-top .nav-tabs > li.active > a {
  border-top: 2px solid #f88122;
}
.product-description.dex-tabs .nav-tabs > li > a i {
  color: #f88122;
}
.dex-tabs.bg-tabs .nav-tabs > li > a {
  background-color: #fcfcfc;
}
ol.commentlist {
  list-style: none;
  margin: 0;
}
ol.commentlist li {
  position: relative;
  padding: 0;
  margin-bottom: 20px;
  background: #f7f8fa;
  padding: 20px;
  border: 1px dashed #eee;
  min-height: 120px;
}
ol.commentlist li img {
  float: left;
  border: 5px solid #fff;
  width: 80px;
  height: auto;
}
ol.commentlist li .comment-text {
  padding-left: 100px;
}
ol.commentlist li .meta {
  margin-bottom: 5px;
}
ol.commentlist li .meta strong {
  font-size: 16px;
}
ol.commentlist li .meta .time {
  color: #999;
  display: block;
  font-size: 14px;
}
ol.commentlist li .description p {
  margin: 0;
}
ol.commentlist li .star-rating {
  position: absolute;
  top: 20px;
  right: 20px;
}
.comment-reply-title {
  margin-top: 0;
}
.comment-form [class*="comment-form"] {
  width: 49%;
}
.comment-form label {
  display: block;
}
.comment-form [class*="comment-form"] input,
.comment-form [class*="comment-form"] textarea {
  border: 1px solid #ccc;
  padding: 8px 10px;
  width: 100%;
}
.comment-form {
  margin: 0 -15px;
}
.comment-form [class*="comment-form"],
.comment-form .form-submit {
  margin-bottom: 20px;
  padding: 0 15px;
}
.comment-form .form-submit input:active,
.comment-form .form-submit input:focus,
.comment-form .form-submit input:hover {
  background: #037a85;
}
.dez-quik-search {
  background-color: rgb(0 0 0 / 0.9) !important;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
  overflow: hidden;
  padding: 0 20px;
}
.dez-quik-search.On form {
  transition: all 0.5s ease 0.5s;
  -moz-transition: all 0.5s ease 0.5s;
  -webkit-transition: all 0.5s ease 0.5s;
  max-width: 1200px;
  opacity: 1;
}
.dez-quik-search form {
  width: 100%;
  max-width: 100px;
  margin: auto;
  position: relative;
  top: 50%;
  transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  opacity: 0;
}
.dez-quik-search .form-control {
  padding: 15px 60px 15px 15px;
  width: 100%;
  height: 90px;
  border: none;
  background: none;
  color: #fff;
  font-size: 20px;
  border-bottom: 2px solid rgb(255 255 255 / 0.2);
}
.dez-quik-search .form-control::-moz-placeholder {
  color: #fff;
}
.dez-quik-search .form-control:-moz-placeholder {
  color: #fff;
}
.dez-quik-search .form-control:-ms-input-placeholder {
  color: #fff;
}
.dez-quik-search .form-control::-webkit-input-placeholder {
  color: #fff;
}
.dez-quik-search span {
  position: absolute;
  right: 15px;
  top: 50%;
  margin: -15px 0;
  height: 25px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
}
#gmap_canvas {
  width: 100%;
  height: 400px;
}
#gmap_canvas img {
  max-width: none !important;
  background: none !important;
}
.fb-btn {
  background-color: #4867aa;
}
.tw-btn {
  background-color: #1da1f2;
}
.gplus-btn {
  background-color: #dc4a38;
}
.pin-btn {
  background-color: #cc2127;
}
.link-btn {
  background-color: #0274b3;
}
.dez-social-icon.dez-social-icon-lg li a {
  font-size: 14px;
  height: 35px;
  line-height: 34px;
  padding: 0;
  width: 35px;
  color: #fff;
}
.dez-media.dez-media-left .dez-info-has,
.dez-media.dez-media-top .dez-info-has,
.dez-media.dez-media-right .dez-info-has {
  bottom: auto;
  margin-bottom: 0;
  top: 0;
}
.dez-media.dez-media-top .dez-info-has {
  margin-top: -100px;
}
.dez-media.dez-media-top:hover .dez-info-has,
.dez-box:hover .dez-media.dez-media-top .dez-info-has {
  margin-top: 0;
}
.dez-media.dez-media-left .dez-info-has {
  left: 0;
  padding: 15px;
  width: auto;
  margin-left: -60px;
}
.dez-media.dez-media-left:hover .dez-info-has {
  margin-left: 0;
}
.dez-media.dez-media-left .dez-social-icon li {
  display: block;
  margin: 3px 0;
}
.dez-media.dez-media-right .dez-info-has {
  right: 0;
  padding: 15px;
  width: auto;
  left: auto;
  margin-right: -60px;
}
.dez-media.dez-media-right:hover .dez-info-has {
  margin-right: 0;
}
.dez-media.dez-media-right .dez-social-icon li {
  display: block;
  margin: 3px 0;
}
.footer-old-top .container {
  position: relative;
}
.widget_tag_cloud.text-black a {
  background: #111;
}
.sidenav.cs-sidenav {
  width: 800px;
  right: -820px;
  left: auto;
}
.sidenav {
  height: 100%;
  width: 300px;
  position: fixed;
  z-index: 9;
  top: 0;
  left: -320px;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  box-shadow: 0 0 50px 15px rgb(0 0 0 / 0.2);
  border: 0 none;
  border-radius: 0;
}
.sidenav > ul li a {
  border-color: #ebebeb;
  border-image: none;
  border-style: solid;
  border-width: 1px 0;
  display: block;
  margin-bottom: -1px;
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 600;
}
.sidenav > ul li a:hover {
  color: #fff;
}
.sidenav .logo-header {
  height: auto;
  padding: 15px;
  width: 100%;
}
.button-side-nav {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  box-shadow: -2px 2px 5px 0 rgb(0 0 0 / 0.4);
  font-size: 17px;
  cursor: pointer;
}
.sidenav .closebtn {
  color: #fff;
  font-size: 24px;
  height: 35px;
  line-height: 35px;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 35px;
  z-index: 9;
}
#main {
  transition: margin-left 0.5s;
}
@media only screen and (max-width: 800px) {
  .sidenav.cs-sidenav {
    width: 100%;
  }
}
.sidenav.full-page {
  left: 0;
  width: 280px;
}
.one-page-layout #main {
  margin-left: 280px;
}
.contant-block {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1500px;
}
.one-page-layout .closebtn,
.one-page-layout .button-side-nav {
  display: none;
}
#myNavbar li.active a {
  color: #fff;
}
.one-page-layout {
  padding-bottom: 0;
  margin-bottom: 0;
}
.one-page-layout.right-side .sidenav {
  left: auto;
  right: 0;
  border-radius: 0;
}
.one-page-layout.right-side #main {
  margin-left: 0;
  margin-right: 280px;
}
@media only screen and (max-width: 1024px) {
  .one-page-layout .closebtn,
  .one-page-layout .button-side-nav {
    display: block;
  }
  .sidenav.full-page {
    left: -350px;
    width: 300px;
    z-index: 999;
  }
  .one-page-layout #main {
    margin-left: 0px !important;
  }
  .site-footer-old .footer-old-bottom .col-md-4 {
    width: 33.33%;
    display: inline-block;
    float: left;
  }
  .one-page-layout.right-side #main {
    margin-right: 0;
  }
  .one-page-layout.right-side .sidenav {
    left: -350px;
    right: auto;
    border-radius: 0;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer-old .footer-old-bottom .col-md-4 {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
  }
}
.dez-full-blog {
  height: 100%;
  position: fixed;
  width: 50%;
  background-color: #efefef;
}
.dez-full-blog .owl-carousel .dez-thum-bx img {
  width: 100%;
}
.dez-full-blog .owl-carousel {
  z-index: auto;
}
.dez-full-blog .dez-post-info {
  background-color: #efefef;
  padding: 20px 30px 30px;
  width: 100%;
}
.left-footer-old-menu .footer-old-social li a {
  border-radius: 50%;
  height: 40px;
  line-height: 40px;
  width: 40px;
  padding: 0;
  text-align: center;
  font-weight: 400;
}
.left-footer-old-menu .footer-old-social li {
  padding: 0 2px;
}
.left-footer-old-menu {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.dez-full-blog .dez-post-tags {
  background-color: #efefef;
  bottom: 0;
  padding: 15px 30px;
  position: fixed;
  width: 100%;
}
.full-blog-dark .dez-full-blog .dez-post-tags {
  background-color: #090909;
}
.full-blog-dark {
  background-color: #101010;
}
.full-blog-dark .post-title a {
  color: #fff;
}
.full-blog-dark.style-1 .dez-post-info {
  padding-top: 10px;
  padding-bottom: 15px;
}
.full-blog-dark .dez-full-blog .dez-post-info {
  background-color: #090909;
  border: 0;
  padding: 20px 30px 30px;
}
.full-blog-dark .dez-post-tags {
  border-top: 1px solid #141414;
}
.full-blog-dark .dez-post-tags .post-tags a {
  border: 1px solid #2b2b2b;
}
.full-blog-dark .sidenav {
  background-color: #090909;
}
.full-blog-dark .sidenav ul li a {
  border-color: #0c0c0c;
}
.full-blog-dark .dez-full-blog {
  background: #090909;
}
.full-blog-dark.style-2 .dez-post-info,
.full-blog-dark.style-3 .dez-post-info {
  border: 1px solid #1b1b1b;
  padding: 20px;
}
.blog-page-content .card-container {
  padding-left: 10px;
  padding-right: 10px;
}
.blog-page-content .blog-post {
  margin-bottom: 20px;
}
.blog-page-content .dez-full-blog .dez-post-text {
  margin-bottom: 30px;
}
.style-2 .dez-post-info,
.style-3 .dez-post-info {
  border: 1px solid #ddd;
  padding: 10px 20px 20px;
}
.style-3 .dez-full-blog {
  width: 41.66%;
}
@media only screen and (max-width: 1024px) {
  .style-3 .dez-full-blog {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .dez-full-blog,
  .style-3 .dez-full-blog {
    position: unset;
    width: 100%;
  }
  .dez-full-blog .dez-post-tags {
    position: unset;
  }
}
@media only screen and (max-width: 767px) {
  #main {
    margin-left: 0 !important;
  }
  .blog-page-content .dez-full-blog .blog-post {
    margin-bottom: 0;
  }
}
.countdown .date span {
  font-size: 60px;
  font-weight: 500;
}
.countdown .date {
  min-width: 120px;
  color: #fff;
  display: inline-block;
  border-right: 1px solid rgb(255 255 255 / 0.2);
  margin: 0 -2px;
}
.countdown .date:last-child {
  border: 0 solid;
}
.countdown .date text {
  display: block;
  margin: 0 auto;
  padding: 2px 1px;
  width: 100%;
  font-size: 14px;
  font-weight: 100;
  border-top: 1px solid rgb(255 255 255 / 0.2);
  letter-spacing: 2px;
}
.coming-soon-content h2 {
  font-size: 50px;
  font-family: roboto;
  font-weight: 300;
  min-height: 50px;
  line-height: 50px;
}
.coming-soon-content p {
  max-width: 800px;
  margin: 0 auto;
}
.dez-coming-soon {
  height: 100%;
  width: 100%;
}
.dez-coming-soon .container {
  position: relative;
  z-index: 2;
}
.dez-coming-soon-full {
  position: fixed;
  overflow-y: scroll;
}
.dez-coming-bx {
  margin-top: 50px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.dez-coming-bx .input-group input.form-control {
  background: #fff0 none repeat scroll 0 0;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 60px;
  padding: 0 20px;
  background: rgb(255 255 255 / 0.2);
}
.dez-coming-bx .input-group input.form-control::placeholder {
  color: #fff;
}
.dez-coming-soon[class*="overlay"]:after {
  position: fixed;
}
.dez-coming-soon .logo-header,
.dez-login .logo-header {
  width: 100%;
  padding: 30px;
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.dez-coming-soon .logo-header img,
.dez-login .logo-header img,
.top-head img {
  max-width: 300px;
}
.sidenav.coming-side-bar {
  background-color: #fff;
}
.dez-coming-bx.left-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  margin-top: 0;
}
.dez-coming-soon .container-fluid {
  z-index: 2;
}
.mack-an-appointment {
  background-color: #2c4a6b;
}
.mack-an-appointment [class*="col-md-"] {
  padding: 0 7.5px;
}
.mack-an-appointment .form-group {
  margin-bottom: 15px;
}
.mack-an-appointment .form-control {
  background-color: #1f3d5e;
  border: 1px solid #153354;
}
.mack-an-appointment .bootstrap-select button.dropdown-toggle {
  background-color: #1f3d5e !important;
  border: 1px solid #153354 !important;
}
.mack-an-appointment.white {
  background-color: #fff;
  border: 1px solid #d4d4d4;
}
.mack-an-appointment.white .form-control {
  background-color: #fff;
  border: 1px solid #d4d4d4;
}
.mack-an-appointment.white .bootstrap-select button.dropdown-toggle {
  background-color: #fff !important;
  border: 1px solid #d4d4d4 !important;
}
.dez-book-now-content {
  margin-top: 25%;
}
.dez-login {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.login-form {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
}
.dez-form .form-control {
  background: #fff;
  height: 44px;
}
.dez-form .form-group {
  margin-bottom: 15px;
}
.login-form .bottom:hover a {
  color: #fff;
  text-decoration: underline;
}
.dz-tab-area {
  display: none;
}
.dz-tab-area.active {
  display: block;
}
@media only screen and (max-width: 1200px) {
  .dez-coming-bx.left-bar .dez-coming-bx .countdown .date {
    min-width: 110px;
  }
}
@media only screen and (max-width: 991px) {
  .dez-coming-soon.two-box,
  .dez-coming-soon.two-box .dez-coming-bx {
    position: relative;
    width: 100%;
  }
  .dez-coming-soon.two-box .dez-coming-bx {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .dez-coming-soon.two-box .dez-coming-bx h2 {
    margin-top: 0;
  }
  .coming-side-bar {
    background: #fff;
  }
  .skew-content-box {
    padding: 5px;
  }
  .skew-content-box ul li a {
    margin-right: 3px;
    font-size: 13px;
  }
  .dez-social-icon {
    margin: 0;
  }
  .skew-content-box ul li a {
    padding: 5px;
  }
  .request-a-quote:before {
    left: 0;
    transform: skewX(0deg);
  }
  .header-style-4 .slide-up {
    position: unset;
  }
  .dez-coming-bx.left-bar {
    position: unset;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .dez-book-now-content {
    margin-top: 10px;
    margin-bottom: 50px;
  }
  .coming-soon-content h2 {
    font-size: 30px;
  }
  .countdown .date span {
    font-size: 45px;
  }
  .countdown .date {
    max-width: 50px;
  }
  .dez-coming-bx {
    margin-top: 20px;
  }
  .our-service .service-box {
    margin-bottom: 30px;
  }
  .our-service {
    margin-top: 50px;
  }
  .dez-login {
    padding: 10px 20px 50px;
  }
  .dez-newsletter {
    padding: 15px;
  }
}
.particles-js-canvas-el {
  position: fixed;
  top: 0;
  z-index: 1;
  height: 100%;
}
.dez-book-now-form.tp-light {
  background-color: rgb(0 0 0 / 0.3);
}
.dez-book-now-form.tp-light .form-control,
.dez-book-now-form.tp-light .bootstrap-select .dropdown-toggle {
  background-color: #fff0 !important;
  border: 1px solid rgb(255 255 255 / 0.5) !important;
}
.dez-book-now-form.tp-dark {
  background-color: rgb(0 0 0 / 0.7);
}
.dez-book-now-form.tp-dark .form-control,
.dez-book-now-form.tp-dark .bootstrap-select .dropdown-toggle {
  background-color: #fff0 !important;
  border: 1px solid rgb(255 255 255 / 0.2) !important;
}
.skew-section {
  position: relative;
  z-index: 2;
}
.skew-section.left-top:after,
.skew-section.left-bottom:after,
.skew-section.right-top:before,
.skew-section.right-bottom:before {
  background: inherit;
  content: "";
  height: 100%;
  position: absolute;
  width: 100px;
  z-index: -1;
  top: 0;
  bottom: 0;
}
.skew-section.left-top:after {
  left: -50px;
  transform: skewX(7deg);
}
.skew-section.left-bottom:after {
  left: -50px;
  transform: skewX(-7deg);
}
.skew-section.right-top:before {
  right: -50px;
  transform: skewX(7deg);
}
.skew-section.right-bottom:before {
  right: -50px;
  transform: skewX(-7deg);
}
.bottom-footer-old {
  position: fixed;
  bottom: 0;
  height: 35px;
  background: rgb(0 0 0 / 0.2);
  width: 100%;
  padding: 5px;
  left: 0;
  right: 0;
  z-index: 4;
}
@media only screen and (max-width: 991px) {
  .winHeight {
    overflow: scroll;
  }
}
.tp-login-black.login-form,
.tp-login-black .dez-form .form-control {
  background-color: rgb(0 0 0 / 0.5);
}
.tp-login-white.login-form,
.tp-login-white .dez-form .form-control {
  background-color: rgb(255 255 255 / 0.3);
  backdrop-filter: blur(10px);
}
.tp-login-black .dez-form .form-control,
.tp-login-white .dez-form .form-control {
  border: 0;
}
.tp-login-white .dez-form .form-control::-moz-placeholder {
  color: #fff;
}
.login-form.style-2 .form-control {
  background: #fff;
  border-left: 2px solid #ff91b8;
}
.login-form.style-3 .form-control {
  background: rgb(255 145 184 / 0.5);
  border: 0 solid #0079fc;
}
.login-form.style-3 .dez-form {
  padding: 30px;
  border: 1px solid #6aaf08;
}
.login-form.style-3 {
  background: rgb(0 0 0 / 0.3);
}
.login-form.style-3 .dez-form .form-control {
  color: #fff;
}
.login-form.style-3 .dez-form .form-control::-moz-placeholder,
.yoga-footer-old .newsletter .form-control::-moz-placeholder,
.yoga-footer-old .newsletter .form-control {
  color: #fff;
}
.slideskew {
  animation: 5s ease 0s normal none infinite running slideskew;
}
@keyframes slideskew {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    -moz-transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
.theme-btn {
  background-color: #fff;
  border-radius: 40px;
  bottom: 10px;
  color: #fff;
  display: table;
  height: 50px;
  left: 10px;
  min-width: 50px;
  position: fixed;
  text-align: center;
  z-index: 9999;
}
.theme-btn i {
  font-size: 22px;
  line-height: 50px;
}
.theme-btn.bt-support-now {
  background: #1ebbf0;
  background: -moz-linear-gradient(45deg, #1ebbf0 8%, #39dfaa 100%);
  background: -webkit-linear-gradient(45deg, #1ebbf0 8%, #39dfaa 100%);
  background: linear-gradient(45deg, #1ebbf0 8%, #39dfaa 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1ebbf0',endColorstr='#39dfaa',GradientType=1);
  bottom: 70px;
}
.theme-btn.bt-buy-now {
  background: #1fdf61;
  background: -moz-linear-gradient(top, #a3d179 0%, #88ba46 100%);
  background: -webkit-linear-gradient(top, #a3d179 0%, #88ba46 100%);
  background: linear-gradient(to bottom, #a3d179 0%, #88ba46 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1fdf61',endColorstr='#88BA46',GradientType=0);
}
.theme-btn:hover {
  color: #fff;
  padding: 0 20px;
}
.theme-btn span {
  display: table-cell;
  vertical-align: middle;
  font-size: 16px;
  letter-spacing: -15px;
  opacity: 0;
  line-height: 50px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  text-transform: uppercase;
}
.theme-btn:hover span {
  opacity: 1;
  letter-spacing: 1px;
  padding-left: 10px;
}
.at-expanding-share-button[data-position="bottom-left"] {
  bottom: 130px !important;
}
.g-recaptcha {
  transform: scale(0.88);
  -webkit-transform: scale(0.88);
  -moz-transform: scale(0.88);
  -o-transform: scale(0.88);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -o-transform-origin: 0 0;
}
#rc-imageselect {
  transform: scale(0.88);
  -webkit-transform: scale(0.88);
  -moz-transform: scale(0.88);
  -o-transform: scale(0.88);
  transform-origin: 0 0;
  -o-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}
@media screen and (max-height: 575px) {
  #rc-imageselect,
  .g-recaptcha {
    transform: scale(0.77);
    -moz-transform: scale(0.77);
    -o-transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}
.dzSubscribeMsg p {
  margin: 0;
}
@media screen and (max-height: 768px) {
  .dzSubscribeMsg p {
    bottom: -20px;
  }
}
@media screen and (max-height: 360px) {
  .dzSubscribeMsg p {
    bottom: -10px;
  }
}
.dzForm .input-group-text {
  height: 100%;
}
.bootstrap-select .dropdown-toggle:before {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  right: 10px;
}
.filter-option {
  height: auto;
}
.dropdown-item.active:not(:hover),
.dropdown-item:active {
  color: #fff !important;
}
.bootstrap-select .dropdown-toggle .filter-option {
  height: auto;
}
.new-page {
  padding: 2px 5px;
  font-size: 10px;
  background: red;
  color: #fff;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 10px;
}
.heart {
  width: 60px;
  height: 60px;
  display: inline-block;
  background: url(../images/like.png) no-repeat;
  cursor: pointer;
  margin: -25px -18px;
}
.heart-blast {
  background-position: -1680px 0;
  transition: background 1s steps(28);
}
.badge {
  padding: 3px 4px;
  font-weight: var(--headings-font-weight);
  background-color: var(--primary);
  color: #fff;
  border-radius: 0;
  font-family: var(--font-family-base);
  font-size: 11px;
  min-width: 17px;
  min-height: 13px;
  text-align: center;
}
.container-fluid {
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (max-width: 1280px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
.fs-35 {
  font-size: 35px !important;
}
.box {
  padding: 15px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #ff7f00;
  border-radius: 20px 0 20px 0;
}
.box h3 {
  font-family: "Laila", Sans-serif;
  font-size: 25px;
  text-align: left;
}
.box p {
  margin-bottom: 0;
  font-size: 14px;
}
.box img {
  width: 80px;
  height: 80px;
}
.box .d-block {
  margin-left: 15px;
}

.fs-18 {
  font-size: 18px;
}
.icon-bx-sm img {
  height: 60px;
  width: 60px;
}
.bg-primary .site-button {
  background: #ba1349;
}
.ul-type {
  margin-left: 25px;
}
.breadcrumb-h1 {
  font-size: 45px;
  text-align: center;
  color: #fff !important;
  font-weight: 500;
}
.developer-d .half-border {
  position: relative;
  z-index: 1;
  padding: 30px;
}
.developer-d .half-border:before {
  content: "";
  border-right: 7px solid #ba1349;
  border-bottom: 7px solid #ba1349;
  height: 60%;
  width: 20%;
  position: absolute;
  bottom: -7px;
  right: -7px;
  z-index: -1;
}
.developer-d .half-border:after {
  content: "";
  border-left: 7px solid #ba1349;
  border-top: 7px solid #ba1349;
  height: 60%;
  width: 20%;
  position: absolute;
  left: -7px;
  top: -7px;
  z-index: -1;
}
.developer-d-box-shadow {
  box-shadow: rgb(0 0 0 / 0.25) 0 8px 12px 0;
}
.bg-grey {
  background: #f2f2f2;
  padding: 20px;
  border-radius: 15px;
  border: 2px solid #ba1349;
}
.rounded-2-side {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table th,
.schedule-table td {
  color: #fff;
  padding: 12px 20px;
  border-bottom: 1px solid #ddd;
}
.p-25px {
  padding: 25px;
}
.table-schedule thead th {
  background: #ba1349;
  color: #fff;
}
.table-schedule {
  border: 1px solid #ba1349;
}
.body {
  background: #f5f5f5;
  display: block;
  height: 100%;
  border: 1px solid #ddd;
  overflow: hidden;
  padding: 10px;
}
.body .date-course {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 17px;
}
.body .date-course::before {
  background: url(../img/calendar.svg);
  content: "";
  position: relative;
  height: 15px;
  width: 15px;
  filter: invert(7%) sepia(2%) saturate(234%) hue-rotate(314deg) brightness(92%)
    contrast(87%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.body .body-inner {
  background: #fff;
  box-shadow: 0 0 20px 0 #ddd;
  padding: 15px;
}
.body span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dashed #8f8f91;
}
.body span.location-course::before {
  background: url(../img/location.svg);
  content: "";
  position: relative;
  height: 15px;
  width: 15px;
  filter: invert(7%) sepia(2%) saturate(234%) hue-rotate(314deg) brightness(92%)
    contrast(87%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.body span.course-lang::before {
  background: url(../img/lang.svg);
  content: "";
  position: relative;
  height: 15px;
  width: 15px;
  filter: invert(7%) sepia(2%) saturate(234%) hue-rotate(314deg) brightness(92%)
    contrast(87%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.body .table {
  margin-top: 15px;
}
.body .table th {
  font-weight: 600;
  color: #333;
  font-size: 15px;
  text-align: center;
}
.body .table td {
  font-size: 16px;
  vertical-align: middle;
  text-align: center;
}
.client-thinks {
  position: relative;
  max-width: 80%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
}
.my-bg {
  position: relative;
  z-index: 1;
}
.my-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #030303c2 !important;
  z-index: -1;
}
.footer-old-top::before {
  background-image: url(../img/image-4-1.jpg);
  background-overlay: "";
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.breadcrumb-row li a {
  color: #fff !important;
}
.breadcrumb-row li a:hover {
  color: #ff7f00 !important;
}
.secondary-bordered-dev {
  border: 1px solid #ff7f00;
  border-radius: 8px;
}
.hover-effect-secondary:hover {
  background: #ff7f00 !important;
  color: #fff;
}
.trainer-card {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px #0000001a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trainer-card__image-container {
  flex: 0 30%;
  position: relative;
  overflow: hidden;
}
.trainer-card__content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trainer-card__name {
  font-size: 1.6rem;
  color: #ff7f00;
  margin-bottom: 1rem;
  font-weight: 700;
}
.trainer-card__skills {
  list-style-type: none;
  padding: 0;
  margin: auto auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trainer-card__skill {
  border: 1px solid #ba1349;
  color: #ba1349;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .hero-slider {
    height: 547px;
  }
}
@media (max-width: 767px) {
  .hero-slider {
    height: 400px;
  }
}
.hero-style {
  height: 547px;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .hero-style {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .hero-style {
    height: 340px;
  }
}
@media screen and (min-width: 992px) {
  .hero-style .container {
    padding-top: 95px;
  }
}
.three-columns {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  column-gap: 2rem;
}
.three-columns li {
  break-inside: avoid;
  padding-bottom: 0.5rem;
}
.two-columns {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  column-gap: 2rem;
}
.two-columns li {
  break-inside: avoid;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .three-columns {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 2rem;
  }
}
