@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1310px;
    }
    }
    
    html{
        --primary-color: #EE4E7F;
        --second-color: #e5d457;
    }
    
    body{
        font-family: 'Nunito Sans', sans-serif;
    }
    .logo img {
        width: 200px;
        transition: 0.5s;
    }
    .header-menu {
        text-align: right;
    }
    .header-menu li {
        display: inline-block;
    }
    .header-menu a {
        display: block;
        padding: 28px 15px;
        color: #000;
        font-size: 16px;
        text-decoration: none;
        transition: 0.5s;
        position: relative;
        font-weight: 700;
    }
    .header {
        box-shadow: 0px 0px 11px -10px;
    }
    .header .row {
        align-items: center;
    }
    li.button a {
        padding: 10px 30px;
        background-color: var(--primary-color);
        color: #fff;
        border-radius: 5px;
        margin-left: 20px;
    }
    li.button a:hover {
        color: #000;
        background-color: var(--second-color);
    }
    .header-menu a:hover, .header-menu a.active {
        color: var(--primary-color);
    }
    .top-header {
        background-color: #050500;
        box-shadow: 0px 0px 17px -10px;
        padding: 10px 0px;
    }
    .top-txt li {
        color: #fff;
        display: inline-block;
        font-size: 13px;
        margin-right: 20px;
    }
    .top-txt li a {
        color: #fff;
        text-decoration: none;
    }
    .top-user-account {
        text-align: right;
    }
    .top-user-account a {margin: 0px 8px;display: inline-block;color: var(--primary-color);text-decoration: none;transition: 0.5s;}
    .top-user-account a:hover {
        color: var(--second-color);
    }
    ul.sub-menu li {
        display: block;
    }
    li.has-child {
        position: relative;
    }
    ul.sub-menu {
        position: absolute;
        left: 0;
        text-align: left;
        background-color: #ffff;
        box-shadow: 0px 0px 11px -10px;
        padding: 0px;
        width: 230px;
        z-index: 999;
        transition: 0.5s;
        transform: scale(1,0);
        transform-origin: top;
    }
    ul.sub-menu a:hover {
        background-color: var(--primary-color);
        color: #fff;
    }
    ul.sub-menu a {
        padding: 12px 15px;
    }
    .header-menu li:hover > ul {
        transform: scale(1,1);
    }
    .header.stickyHeader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 999;
    }
    .header.stickyHeader .logo img {
        width: 160px;
    }
    
    li.has-child:after {
        content: "\f107";
        font-family: 'FontAwesome';
        position: absolute;
        right: -5px;
        top: 25px;
        font-size: 20px;
        transition: 0.5s;
    }
    li.has-child:hover:after {
        transform: rotate(180deg);
    }
    i#mobile_nav_close, i#mobile_nav_open{
        display: none;
    }
    li.button a.active {
        color: #000;
        background-color: var(--second-color);
    }
    a.button.membership {
        background-color: #ffffffe6;
        padding: 5px 20px;
        border-radius: 4px;
        animation: membershipBtn 2s linear infinite alternate;
        color: var(--primary-color) !important;
    }
    
    @keyframes membershipBtn{
        from{
            transform: scale(1.0);
        }
        to{
            transform: scale(1.1);
        }
    }

    /* page css */
    body.popup-open {
        overflow: hidden;
    }
    body.popup-open:after {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: #0006;
        z-index: 999;
        top: 0;
        left: 0;
    }
    body::-webkit-scrollbar {
      width: 8px;
    }
    body::-webkit-scrollbar-thumb {
      background-color: var(--primary-color);
      border-radius:5px;
    }
    section.newsletter-popup {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 50%;
        margin: auto;
        height: fit-content;
        background-color: #f7f0f0;
        box-shadow: 0px 0px 20px -10px;
        z-index: 999999;
        border-radius: 10px;
        display: none;
    }
    section.newsletter-popup img {
        width: 100%;
        border-radius: 10px 0px 0px 10px;
    }
    section.newsletter-popup .newsl_etter {
        display: block;
    }
    section.newsletter-popup input {
        width: 100%;
        border: solid 1px #0006;
        padding: 12px;
        margin-top: 20px;
        outline: none;
    }
    .popup_text {
        padding: 0px 50px 0px 35px;
    }
    .popup_text button {
        width: fit-content;
        padding: 12px 20px !important;
        margin-top: 20px;
    }
    .popup_text h2 {
        font-size: 25px;
    }
    .popup_text p {
        color: #000000ab;
    }
    .col-md-6.popup-image {
        background-image: url('../media/popup.png');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 400px;
        border-radius: 10px 0px 0px 10px;
    }
    section.newsletter-popup .row {
        align-items: center;
    }
    .progress-header {
        position: fixed;
        top: 0;
        left: 0;
        height: 5px;
        background-color: var(--primary-color);
        transition: all linear 0.1s;
        z-index: 9999;
        border-radius: 0px 50px 50px 0px;
    }
    .loader  {
      animation: rotate 1s infinite;  
      height: 50px;
      width: 50px;
    }
    
    .loader:before,
    .loader:after {
      border-radius: 50%;
      content: '';
      display: block;
      height: 20px;
      width: 20px;
    }
    .loader:before {
      animation: ball1 1s infinite;
      background-color: var(--second-color);
      box-shadow: 30px 0 0 var(--primary-color);
      margin-bottom: 10px;
    }
    .loader:after {
      animation: ball2 1s infinite;
      background-color: var(--primary-color);
      box-shadow: 30px 0 0 var(--second-color);
    }
    
    @keyframes rotate {
      0% { 
        -webkit-transform: rotate(0deg) scale(0.8); 
        -moz-transform: rotate(0deg) scale(0.8);
      }
      50% { 
        -webkit-transform: rotate(360deg) scale(1.2); 
        -moz-transform: rotate(360deg) scale(1.2);
      }
      100% { 
        -webkit-transform: rotate(720deg) scale(0.8); 
        -moz-transform: rotate(720deg) scale(0.8);
      }
    }
    
    @keyframes ball1 {
      0% {
        box-shadow: 30px 0 0 #f8b334;
      }
      50% {
        box-shadow: 0 0 0 #f8b334;
        margin-bottom: 0;
        -webkit-transform: translate(15px,15px);
        -moz-transform: translate(15px, 15px);
      }
      100% {
        box-shadow: 30px 0 0 #f8b334;
        margin-bottom: 10px;
      }
    }
    
    @keyframes ball2 {
      0% {
        box-shadow: 30px 0 0 #97bf0d;
      }
      50% {
        box-shadow: 0 0 0 #97bf0d;
        margin-top: -20px;
        -webkit-transform: translate(15px,15px);
        -moz-transform: translate(15px, 15px);
      }
      100% {
        box-shadow: 30px 0 0 #97bf0d;
        margin-top: 0;
      }
    }
    .site-loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9999999;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    section.newsletter-popup button.close {position: absolute;right: -14px;top: -13px;z-index: 99;opacity: 1;color: #fff;width: 30px;height: 30px;border-radius: 3px;font-size: 20px;justify-content: center;background-color: var(--primary-color);}
    
    section.banner {
        background-image: url(https://img1.wsimg.com/isteam/ip/430c04fd-474c-490e-bb9c-0991465dbe3c/79b25883-3363-4859-b99c-5976947db5bf.jpeg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 700px;
        box-shadow: inset 0px 0px 0px 700px #000000bd;
        display: flex;
        align-items: center;
    }
    .banner-txt h1 {
        color: #fff;
        font-size: 50px;
    }
    .banner-txt p {
        color: #fff;
        font-size: 17px;
    }
    .site-button {
        background-color: var(--primary-color);
        color: #fff;
        display: inline-block;
        padding: 15px 42px;
        border-radius: 3px;
        margin-top: 20px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-decoration: none !important;
        cursor: pointer;
        transition: 0.5s;
        font-weight: 700;
        text-transform: uppercase;
    }
    .site-button:after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 0%;
        background-color: var(--second-color);
        left: 0;
        z-index: -1;
        transition: 0.5s;
    }
    .site-button:hover {
        background-color: var(--second-color);
        color: #000;
    }
    .site-button:hover:after {
        top: 0;
        bottom: auto;
        height: 100%;
    }
    .banner-txt a {
        color: var(--second-color);
    }
    .banner-video {
        text-align: center;
    }
    @keyframes playBtn{
        from{
            box-shadow: 0px 0px 0px 0px #ee4e7f45;
        }
        to{
            box-shadow: 0px 0px 0px 40px #ee4e7f45;
        }
    }
    i#play_video {
        color: #fff;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        font-size: 32px;
        background-color: var(--primary-color);
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        cursor: pointer;
        animation: playBtn 3s infinite alternate;
    }
    section.banner .row {
        align-items: center;
    }
    div#video iframe {
        width: 100%;
        height: 500px;
    }
    div#video .modal-body {
        padding: 0px;
        height: 500px;
    }
    div#video .close {
        position: absolute;
        right: -14px;
        top: -13px;
        z-index: 99;
        opacity: 1;
        color: #fff;
        width: 30px;
        height: 30px;
        border-radius: 3px;
        font-size: 20px;
        justify-content: center;
        background-color: var(--primary-color);
    }
    div#video .modal-dialog {margin-top: 80px;}
    

    .about-img {
        position: relative;
        padding: 65px 0px;
    }
    .about-img:after {
        content: "";
        position: absolute;
        top: 0;
        right: 20px;
        width: 80%;
        height: 100%;
        background-color: #fcf5f5;
        z-index: -1;
        border-radius: 5px;
    }
    
    .about-img img {
        width: 85%;
        border-radius: 5px;
        box-shadow: 0px 0px 11px -10px;
    }
    section.section {
        margin-top: 70px;
    }
    h4.sm-heading {
        font-size: 20px;
        letter-spacing: 6px;
        color: var(--primary-color);
    }
    h2.heading {
        font-size: 40px;
        font-weight: 700;
    }
    .about-txt p {
        line-height: 30px;
        color: #000000c2;
    }
    section.section.about .row {
        align-items: center;
    }
    a.site-button.button-sm {
        font-size: 14px;
        padding: 10px 20px 8px;
    }
    section.section.services {
        padding: 50px 0px;
        background-color: #00000005;
    }
    .services-img {
        width: 160px;
        height: 160px;
        position: relative;
        border-radius: 50%;
        overflow: hidden;
        margin: auto;
    }
    .services-img img {
        width: 100%;
        height: 100%;
    }
    .service-box {
        background-color: #ffff;
        text-align: center;
        padding: 40px 30px 35px;
        box-shadow: 0px 0px 13px -10px;
        border-radius: 5px;
        margin-top: 30px;
        position: relative;
        z-index: 1;
        border: solid 1px #fff0;
        transition: 0.5s;
    }
    .services-img:after {
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
        left: 0;
        transition: 0.5s;
        opacity: 0.6;
        transform: scale(0,0);
        border-radius: 50%;
    }
    .service-box:hover .services-img:after {
        transform: scale(1,1);
    }
    .service-box h4 {
        font-size: 22px;
        margin-top: 30px;
    }
    .service-box p {
        line-height: 30px;
        color: #0009;
        padding: 0px 20px 20px;
        font-size: 16px;
        border-bottom: solid 1px #0000000a;
    }
    .service-box:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../media/services-one-shape-2.png');
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.2;
        z-index: -1;
    }
    .service-box a {
        margin-top: 11px;
    }
    .service-box:hover {
        border-color: var(--primary-color);
    }
    p.head-desc {
        text-align: center;
        margin: auto;
        width: 80%;
        line-height: 30px;
        color: #000000a1;
    }
    .review_box {
        background-color: #fff;
        box-shadow: 0px 0px 12px -10px;
        margin-top: 40px;
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
        align-items: center;
        transition: 0.5s;
        /* width: 90%; */
        margin-left: 40px;
        margin-bottom: 4px;
    }
    .review-img {
        width: 130px;
        height: 130px;
        overflow: hidden;
        border-radius: 50%;
        background-color: var(--primary-color);
        padding: 2px 12px 5px 2px;
        transition: 0.2s;
        margin-left: -40px;
    }
    .review-img img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }
    .review-txt {
        width: 68%;
        padding: 16px;
    }
    .review-txt i {
        font-size: 50px;
        color: var(--primary-color);
    }
    .review-txt p {
        margin-top: 20px;
        color: #000000c7;
        line-height: 30px;
    }
    .review-txt strong {
        color: #000;
        text-transform: uppercase;
        font-weight: 800;
    }
    .review-txt span {
        display: block;
        color: var(--primary-color);
        margin-top: 10px;
    }
    .review_box:hover .review-img {padding: 5px 2px 2px 12px;}
    .exp-imgs {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
    }
    .exp-imgs img {
        width: 48%;
        border-radius: 5px;
        margin-top: 20px;
    }
    section.section.exp .row {
        align-items: center;
    }
    .exp-txt h2 {
        font-size: 49px;
    }
    .exp-txt {
        position: relative;
    }
    .exp-txt:after {
        content: "20 +";
        position: absolute;
        top: -120px;
        font-size: 200px;
        color: #ee4e7f0f;
        left: 0;
    }
    .exp-txt p {
        line-height: 30px;
        font-size: 18px;
        color: #000000a1;
    }
    section.section.teams {
        background-image: url(../media/bg_1.jpg);
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
        padding: 100px 0px;
        margin-top: 0px;
    }
    .team_box {
        box-shadow: 0px 0px 11px -10px;
        overflow: hidden;
        height: 310px;
        border-radius: 4px;
        position: relative;
        z-index: 1;
        margin-top: 35px;
    }
    .team_box img {
        width: 100%;
        height: 100%;
    }
    .taem-txt {
        position: absolute;
        bottom: -50px;
        width: 100%;
        left: 0;
        text-align: center;
        z-index: 99;
        padding: 17px 10px;
        transition: 0.3s;
    }
    .team_box:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 50%;
        width: 100%;
        background-image: -webkit-linear-gradient( 90deg, var(--second-color) 0%, var(--primary-color) 0%, rgba(255,255,255,0) 90%);
        transition: 0.5s;
    }
    .taem-txt h4 {
        color: #fff;
        font-size: 20px;
    }
    .taem-txt p {
        color: var(--second-color);
        font-size: 18px;
    }
    .taem-txt a {
        display: inline-block;
        width: 30px;
        height: 30px;
        background-color: #fff;
        border-radius: 50%;
        color: var(--primary-color);
        font-size: 17px;
        padding-top: 4px;
        transition: 0.5s;
        margin: 0px 6px;
    }
    .taem-txt a:hover {
        box-shadow: inset 14px 0px 0px 0px var(--second-color);
    }
    .team_box:hover .taem-txt {
        bottom: 0;
    }
    .team_box:hover:after {
        height: 100%;
    }

    /* contact page css */
    section.banner.page-banner {
        height: 300px;
    }
    .pagebanner{
        text-align: center;
    }
    .pagebanner h1 {
        color: #fff;
        font-size: 40px;
        font-weight: 800;
    }
    .pagebanner p {
        color: #fff;
        font-size: 18px;
        margin-top: 15px;
    }
    .pagebanner span:before {
        content: "/";
        padding: 0px 8px;
    }
    .pagebanner a {
        color: var(--primary-color);
        text-decoration: none;
    }
    section.contact-section {
        margin-top: 70px;
    }
    .contact-box p {margin-bottom: 5px;font-size: 16px;line-height: 30px;}
    .input label {
        display: block;
    }
    .input input, .input textarea {
        width: 100%;
        border: solid 1px #00000029;
        outline: none;
        padding: 12px;
        border-radius: 2px;
    }
    .input {
        margin-top: 27px;
    }
    .input input:focus, .input textarea:focus {
        border-color: var(--primary-color);
    }
    button.site-button {
        border: none;
    }
    .input textarea {
        height: 100px;
    }
    .contact-box h4 {
        font-size: 22px;
        color: #000;
        line-height: 34px;
    }
    section.contact-section .container {
        box-shadow: 0px 0px 15px -10px;
        border-radius: 5px;
        overflow: hidden;
    }
    section.contact-section .col-md-5 {
        padding: 0px;
    }
    .contact_box {
        height: 100%;
        background-color: var(--second-color);
        padding: 30px;
        background-image: url('../media/contact-us-phone.jpg');
        background-position: center;
        background-attachment: fixed;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: inset 0px 0px 0px 500px #e5d457de;
    }
    .contact-box {
        margin-bottom: 25px;
    }
    .contact-form {
        padding-left: 40px;
    }
    .contact-form h2 {
        font-size: 32px;
        margin: 0px;
    }
    .contact-box.timing p b {
        display: inline-block;
        width: 40px;
    }
    span.close-day {
        color: red;
    }
    section.contact-section .row {
        align-items: center;
    }
    section.contact-section .row .row {
        align-items: baseline;
    }
    /* end contact page css */
    
    /*gallery page*/
    #gallery {
      padding-top: 40px;
    }
    
    .img-wrapper {
      position: relative;
      margin-top: 15px;
    }
    .img-overlay {
      background: rgba(0,0,0,0.7);
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
    }
    
    #overlay {
      background: rgba(0,0,0,0.7);
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      left: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }
    
    #nextButton {
      color: #fff;
      font-size: 2em;
      transition: opacity 0.8s;
    }
    
    #prevButton {
      color: #fff;
      font-size: 2em;
      transition: opacity 0.8s;
    }
    
    #exitButton {
      color: #fff;
      font-size: 2em;
      transition: opacity 0.8s;
      position: absolute;
      top: 15px;
      right: 15px;
    }
    .img-wrapper img {
        width: 100%;
    }
    .img-wrapper {
        box-shadow: 0px 0px 13px -10px;
        margin-bottom: 13px;
        border-radius: 5px;
        overflow: hidden;
        padding: 5px;
    }
    .img-overlay {
        background-color: #ee4e7fdb;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
    }
    div#prevButton, div#nextButton {
        margin: 0px 20px;
        font-size: 15px;
        padding: 6px 12px;
        border-radius: 6px;
        background-color: var(--second-color);
        color: #000;
        cursor: pointer;
    }
    div#exitButton {
        font-size: 13px;
        width: 25px;
        height: 25px;
        background-color: var(--primary-color);
        text-align: center;
        border-radius: 4px;
        padding-top: 3px;
        cursor: pointer;
    }
    div#overlay {
        overflow: auto;
    }
    /*end gallery page*/
    
    /*service pages*/
    
    section.service-section {
        padding-top: 70px;
    }
    .services-list-box {
        margin-top: 30px;
    }
    .services_listing.row {
        padding-top: 50px;
    }
    .services_listing.row .col-md-6 {
        padding: 10px 40px;
    }
    .services-list-box h4 {
        font-size: 19px;
        color: #000c;
        border-bottom: solid 1px #00000012;
        padding-bottom: 10px;
        display: flex;
        display: flex;
        flex-wrap: wrap;
        column-gap: 34px;
    }
    .services-list-box h4 span {
        color: var(--primary-color);
        font-size: 21px;
        width: 10%;
        text-align:right;
    }
    .services-list-box h4 b {
        width: 84%;
    }
    .services-list-box p {
        line-height: 30px;
        font-size: 15px;
        color: #000000a6;
    }
    .col-md-7.threading {
        padding-left: 35px;
    }
    .col-md-7.threading h4 {
        padding-bottom: 26px;
    }
    .services-images {
        display: flex;
        flex-wrap: wrap;
        column-gap: 25px;
        position: sticky;
        top: 100px;
        border-right: solid 1px #00000014;
    }
    .services-images img {
        width: 46%;
        margin-bottom: 25px;
        border: solid #fff;
        border-radius: 5px;
        box-shadow: 0px 0px 14px -10px;
    }
    .services-images .carousel-item img {
        width: 100%;
        border: none;
    }
    .services-images .carousel-item {
    width: 100% !important;
    height: 520px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #ee4e7f0a;
    }
    .services-images .carousel-inner {
        width: 100%;
    }
    div#service_img {
        width: 100%;
    }
    a.carousel-control-prev, a.carousel-control-next {
        width: 35px;
        height: 35px;
        margin: auto;
        background-color: var(--primary-color);
        opacity: 0;
    }
    div#service_img:hover .carousel-control-prev, div#service_img:hover .carousel-control-next {
        opacity: 1;
    }
    
    /*end service pages*/
    
    /*about page css*/
    
    section.service-section.about-sections h4 {
        font-size: 22px;
    }
    section.service-section.about-sections p {
        font-size: 18px;
    }
    .about-box {
        box-shadow: 0px 0px 13px -10px;
        border-radius: 5px;
        overflow: hidden;
        height: 100%;
    }
    .about-box img {
        width: 100%;
    }
    .about-box h4 {
        text-align: center;
        padding: 30px 30px 0px;
        font-size: 22px;
        color: var(--primary-color);
    }
    .about-box p {
        padding: 12px 30px;
        text-align: center;
        line-height: 30px;
        font-size: 16px;
    }
    
    /*end about css*/
    
    /*booking page css*/
    div#address input {
        position: absolute;
        opacity: 0;
    }
    div#address label span {
        padding: 26px 30px;
        display: block;
        background-color: #0000001a;
        border-radius: 4px;
        font-size: 20px;
        cursor: pointer;
        transition: 0.5s;
    }
    .step-flex {
        display: flex;
        flex-wrap: wrap;
        column-gap: 15px;
    }
    .step-flex label {
        width: 49%;
    }
    div#address label p {
        margin: 0px;
        font-size: 14px;
        margin-top: 4px;
    }
    .booking-step h4 {
        color: #000000cf;
        font-size: 22px;
    }
    div#address input:checked + span {
        background-color: var(--primary-color);
        color: #fff;
    }
    .services_row {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
    }
    .booking-fields {
        width: 26%;
    }
    .booking-fields select, .booking-fields input {
        width: 100%;
        padding: 0px 10px;
        font-size: 14px;
        height: 40px;
        outline: none;
        border: solid 1px #0000002b;
    }
    .booking-fields select:focus, .booking-fields input:focus {
       border-color: var(--primary-color);;
    }
    .booking-fields.button {
        width: 14%;
    }
    .booking-fields.button button {
        padding: 8px 26px;
        margin-top: 30px;
    }
    .step-btn {
        padding: 8px 40px;
    }
    .booking-step {
        display: none;
    }
    .booking-error {
        position: fixed;
        top: 0;
        left: 0;
        margin: auto;
        bottom: 0;
        right: 0;
        width: 250px;
        height: fit-content;
        background-color: #fff;
        z-index: 999;
        box-shadow: 0px 0px 16px -10px;
        text-align: center;
        padding: 22px;
        border-radius: 4px;
        display: none;
    }
    .booking-error i {
        font-size: 30px;
        color: #d20000;
    }
    .booking-error h4 {
        font-size: 15px;
        margin: 18px 0px;
        color: red;
    }
    .booking-error button {
        background-color: green;
        color: #fff;
        border: none;
        border-radius: 4px;
        padding: 3px 7px;
    }
    .employee-info {
        padding-top: 40px;
    }
    .user_info {
        display: flex;
        column-gap: 20px;
    }
    .emp-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
    }
    .emp-text h4 {
        font-size: 20px;
    }
    .emp-text span {
        font-size: 30px;
        color: var(--primary-color);
    }
    .timing-info {
        margin-top: 30px;
    }
    .timing-info h2 {
        font-size: 24px;
    }
    .timing-input h6 {
        font-size: 18px;
        margin-top: 25px;
    }
    .timing-input label {
        position: relative;
        display: inline-block;
        margin-right: 20px;
        margin-bottom: 0px;
    }
    .timing-input span {
        border: solid 1px var(--primary-color);
        padding: 5px 10px;
        display: block;
        border-radius: 4px;
        color: #000000ba;
        cursor: pointer;
    }
    .timing-input input {
        position: absolute;
        opacity: 0;
    }
    .timing-input input:checked + span {
        background-color: var(--primary-color);
        color: #fff;
    }
    .services_row {
        box-shadow: 0px 0px 13px -10px;
        padding: 18px;
    }
    .info_emp {
        box-shadow: 0px 0px 13px -10px;
        padding: 18px;
    }
    .emp-img img {
        width: 100%;
    }
    .lds-roller {
      display: inline-block;
      position: relative;
      width: 60px;
      height: 60px;
    }
    .lds-roller div {
      animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
      transform-origin: 40px 40px;
    }
    .lds-roller div:after {
      content: " ";
      display: block;
      position: absolute;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary-color);
      margin: -4px 0 0 -4px;
    }
    .lds-roller div:nth-child(1) {
      animation-delay: -0.036s;
    }
    .lds-roller div:nth-child(1):after {
      top: 63px;
      left: 63px;
    }
    .lds-roller div:nth-child(2) {
      animation-delay: -0.072s;
    }
    .lds-roller div:nth-child(2):after {
      top: 68px;
      left: 56px;
    }
    .lds-roller div:nth-child(3) {
      animation-delay: -0.108s;
    }
    .lds-roller div:nth-child(3):after {
      top: 71px;
      left: 48px;
    }
    .lds-roller div:nth-child(4) {
      animation-delay: -0.144s;
    }
    .lds-roller div:nth-child(4):after {
      top: 72px;
      left: 40px;
    }
    .lds-roller div:nth-child(5) {
      animation-delay: -0.18s;
    }
    .lds-roller div:nth-child(5):after {
      top: 71px;
      left: 32px;
    }
    .lds-roller div:nth-child(6) {
      animation-delay: -0.216s;
    }
    .lds-roller div:nth-child(6):after {
      top: 68px;
      left: 24px;
    }
    .lds-roller div:nth-child(7) {
      animation-delay: -0.252s;
    }
    .lds-roller div:nth-child(7):after {
      top: 63px;
      left: 17px;
    }
    .lds-roller div:nth-child(8) {
      animation-delay: -0.288s;
    }
    .lds-roller div:nth-child(8):after {
      top: 56px;
      left: 12px;
    }
    @keyframes lds-roller {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    .lodar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background-color: #ffffffa3;
        display: flex;
        justify-content: center;
        align-items: center;
        display:none;
    }
    .timing-input[disabled] + span {
        opacity: 0;
    }
    label.disabled span {
        cursor: not-allowed;
    }
    label.disabled {
        position: relative;
    }
    label.disabled:after {
        content: "Already Booked";
        position: absolute;
        width: 100px;
        font-size: 11px;
        top: 0;
        background-color: red;
        color: #fff;
        border-radius: 3px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        cursor: not-allowed;
    }
    label.disabled:hover:after {
        opacity: 1;
    }
    /*end booking*/
    
    /*checkout page css*/
    .service-cart h4 {
        color: #000;
        font-size: 22px;
        margin-bottom: 20px;
    }
    .service-cart p {
        display: flex;
        border-bottom: solid 1px #00000012;
        margin: 0px;
        padding: 9px 0px;
    }
    .service-cart b, .service-cart span {
        width: 50%;
        display: block;
    }
    .service-cart span {
        text-align: right;
        color: var(--primary-color);
    }
    .payment-option h4 {
        color: #000;
        font-size: 22px;
        margin-bottom: 20px;
    }
    .payment-option {
        padding-top: 30px;
    }
    .pay-option-head span {
        padding: 4px 20px;
        display: inline-block;
        background-color: #0000000d;
        border-radius: 5px;
        margin-right: 10px;
        cursor: pointer;
    }
    .pay-option-head span.active {
        background-color: var(--primary-color);
        color: #fff;
    }
    .user-dropdown {
        display: inline-block;
        margin-left: 20px;
    }
    .user-dropdown li {
        position: relative;
        list-style: none;
    }
    .user-dropdown span {
        display: block;
        text-align: right;
        cursor: pointer;
        color: #fff;
    }
    .user-dropdown ul {
        position: absolute;
        right: 0;
        background-color: #fff;
        box-shadow: 0px 0px 14px -10px;
        width: 200px;
        padding: 0px;
        max-height: 0px;
        transition: 0.6s;
        overflow: hidden;
        z-index: 99;
        text-align: left;
        margin-top: 6px;
    }
    .user-dropdown ul a {
        color: #000;
        padding: 10px;
        display: block;
        text-decoration: none;
        transition: 0.5s;
        margin: 0px;
    }
    .user-dropdown li:hover > ul {
        max-height: 400px;
    }
    .user-dropdown ul a i {
        float: right;
        margin-top: 4px;
    }
    .user-dropdown ul a:hover {
        background-color: var(--primary-color);
    }
    p.not-account {
        margin: 16px 0px 0px;
        text-align: center;
        color: #000000b8;
    }
    p.not-account a {
        color: var(--primary-color);
    }
    /*end checkout*/
    
    /*thanku page css*/
    .login-form.thanku {
        text-align: center;
    }
    .login-form.thanku i {
        display: block;
        width: 100px;
        height: 100px;
        margin: auto;
        font-size: 40px;
        border: solid 1px #08b108;
        color: #08b108;
        border-radius: 50%;
        padding-top: 26px;
    }
    .login-form.thanku h4 {
        font-size: 32px;
        color: #08b108;
        margin: 14px 0px;
    }
    .login-form.thanku p {
        padding: 0px 20px;
        line-height: 30px;
        color: #000000c2;
    }
    /*end thanku page css*/
    
    /*my account page css*/
    
    .account-nav ul {
        display: block;
    }
    .account-nav a {
        background-color: #fff !important;
        margin-bottom: 5px;
        color: var(--primary-color);
        box-shadow: 0px 0px 15px -10px #000;
        padding: 14px 20px;
        margin-bottom: 15px;
        transition: 0.5s;
    }
    .account-nav a:hover, .account-nav a.active {
        background-color: var(--primary-color) !important;
        color: #fff !important;
    }
    .account-nav a i {
        float: right;
        padding-top: 3px;
    }
    label.site-logo {
        display: block;
        border: dashed 1px #00000042;
        padding: 20px;
        border-radius: 5px;
        text-align: center;
        cursor: pointer;
        width: 160px;
        position: relative;
        height: 160px;
        border-radius: 50%;
        margin: auto;
    }
    label.site-logo input {
        position: absolute;
        opacity: 0;
        left: 0;
        width: 100%;
    }
    label.site-logo p {
        font-size: 16px;
        color: var(--primary-color);
        padding-top: 20px;
    }
    label.site-logo i {
        font-size: 22px;
        margin-top: 10px;
    }
    label.site-logo img {
        width: 158px;
        height: 158px;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 0;
    }
    label.site-logo .fa-edit {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
        color: #0cbd0c;
    }
    .profile-img-area {
        text-align: center;
    }
    .profile-img-area h5 {
        font-size: 24px;
        margin-top: 10px;
        color: var(--primary-color);
    }
    .profile-img-area p {
        margin-bottom: 0px;
    }
    .account-nav {
        position: sticky;
        top: 100px;
        z-index: 9;
    }
    .account-content .tab-pane {
        background-color: #fff;
        padding: 22px;
        border-radius: 5px;
        margin: auto;
        box-shadow: 0px 0px 14px -10px;
    }
    .account-content .login-form {
        box-shadow: unset;
        border-left: solid 1px #0000002b;
        width: 100%;
        padding-left: 50px;
        border-radius: 0px;
    }
    .account-content .tab-pane h4 {
        padding-bottom: 19px;
        border-bottom: solid 1px #00000012;
        margin-bottom: 30px;
    }
    .appointment-detail {
        padding: 0px 20px;
    }
    .modal.appointment h4 {
        padding: 15px 20px;
    }
    .appointment div#video {
        margin-top: 80px;
    }
    
    /*end my account css*/


    /* footer css */
    .footer {
        background-color: #000;
        padding-top: 120px;
    }
    .row.copyright {
        margin-top: 50px;
        border-top: solid 1px var(--second-color);
        padding: 20px 0px;
    }
    .copyright-txt {
        color: #fff;
        font-size: 15px;
    }
    .copyright-menu {
        text-align: right;
    }
    .copyright-menu a {
        color: #fff;
        transition: 0.5s;
        text-decoration: none;
    }
    .copyright-menu a:nth-child(1):after {
        content: "/";
        padding: 0px 9px;
    }
    .copyright-menu a:hover {
        color: var(--second-color);
    }
    footer {
        margin-top: 70px;
    }
    .container.newsletter {
        background: linear-gradient( 45deg , var(--primary-color) , var(--second-color))!important;
        padding: 26px;
        border-radius: 10px;
        margin-bottom: -70px;
        position: relative;
    }
    .newsletter-text h4 {
        color: #fff;
        font-size: 25px;
    }
    .newsletter-text p {
        color: #fff;
        line-height: 30px;
    }
    .newsletter-text {
        padding-right: 60px;
    }
    .newsletter-form input {
        width: 100%;
        padding: 16px;
        border-radius: 50px;
        border: none;
        outline: none;
    }
    .newsletter-form {
        position: relative;
    }
    .newsletter-form button {
        border: none;
        outline: none;
        position: absolute;
        right: 7px;
        border-radius: 50px;
        padding: 10px 20px;
        top: 6px;
        margin-top: 0px;
    }
    .container.newsletter .row {
        align-items: center;
    }
    .footer-box h4 {
        font-size: 22px;
        color: var(--second-color);
        margin-bottom: 20px;
    }
    .footer-box p {
        color: #fff;
        line-height: 30px;
        margin-bottom: 0px;
    }
    .footer-box.padd-left {
        padding-left: 50px;
    }
    .footer-box li {
        list-style: none;
    }
    div#footer_nav a {
        color: #fff;
        display: block;
        padding: 6px 16px;
        text-decoration: none;
        transition: 0.5s;
        position: relative;
    }
    div#footer_nav a:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 5px;
        height: 5px;
        background-color: var(--second-color);
        border-radius: 50%;
    }
    div#footer_nav a:hover {
        color: var(--primary-color);
    }
    div#footer_nav a:hover:before {
        background-color: var(--primary-color);
    }
    .footer-box.contact li {
        display: flex;
        column-gap: 10px;
        color: #fff;
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 30px;
    }
    .footer-box.contact i {
        color: var(--second-color);
        margin-top: 7px;
        font-size: 18px;
    }
    .newsl_etter {
        display: flex;
        /* column-gap: 20px; */
        flex-wrap: wrap;
    }
    .newsl_etter input {
        width: 66%;
        border-radius: 2px 0px 0px 2px;
        padding: 20px;
        border: none;
        outline: none;
    }
    .newsl_etter button {
        width: 30%;
        padding: 7px 0px !important;
        border-radius: 0px 2px 2px 0px;
        overflow: hidden;
        margin-top: 0px;
    }
    span.newsletter-message {
        background-color: #0c920c;
        font-size: 13px;
        bottom: -38px;
        height: fit-content;
        border-radius: 3px;
        z-index: 9999;
        color: #fff;
        padding: 7px 10px;
        position: absolute;
        width: fit-content;
        display: none;
    }
    span.newsletter-message.danger {
        background-color: #c00606;
    }
    section.newsletter-popup span.newsletter-message {
        bottom: auto;
        top: 253px;
        width: max-content;
    }
    /* end footer css */
    
    /* login page */
    body.login-register {
        padding: 100px 0px;
        background-color: #00000012;
    }
    body.login-register:after {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #000000b0;
        z-index: -1;
    }
    .login-form {
        background-color: #fff;
        padding: 22px;
        border-radius: 5px;
        width: 85%;
        margin: auto;
        box-shadow: 0px 0px 14px -10px;
    }
    .form-head {
        text-align: center;
        padding: 30px 0px;
    }
    .form-head img {
        width: 200px;
    }
    .login-form input {
        height: fit-content;
        padding: 12px 10px;
        box-shadow: unset !important;
    }
    .login-form input:focus {
        border-color: var(--primary-color);
    }
    .login-form button {
        padding: 12px 20px;
        width: 100%;
        border: none;
    }
    p.rember a {
        float: right;
        color: var(--primary-color);
    }
    span.text.text-danger a {
        display: inline-block;
        padding: 4px 7px 3px;
        margin-top: 10px;
        background-color: #3ba647;
        color: #fff;
        border-radius: 2px;
        font-size: 12px;
        text-decoration: none;
    }
    i#show_password {
        position: absolute;
        right: 10px;
        margin-top: -34px;
        color: var(--primary-color);
        cursor: pointer;
    }
    .form-group {
        position: relative;
    }
    .payments{
        display:none;
    }
    /* end login page */
    
    .btn-primary {
        background-color: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
    }
    .footer-box.contact li a {
        color: #fff;
        text-decoration: none;
    }
    
    .contact-box p a {
        color: #000000b8;
        text-decoration: none;
    }
    .newsletter-box {
        padding: 10px 20px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        column-gap: 25px;
        flex-wrap: wrap;
    }
    .newsletter-box i {
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 25px;
        color: #fff;
        transition: 0.3s;
        position: relative;
        border-radius: 50%;
        border: dashed 1px;
    }
    .bx-txt p {
        margin: 0px;
        color: #ffffffc7;
    }
    .bx-txt h4 {
        color: #fff;
    }
    .bx-txt {
        width: 70%;
    }
    a.fixed-btn {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    display: block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    transform: rotate(90deg);
    border-radius: 3px;
    text-decoration: none;
    z-index: 9999;
}
a.fixed-btn i {
    transform: rotate(250deg);
    margin-left: 10px;
}
.our-blog {
	background-image: url('../media/inner-pagebg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-attachment: fixed;
  padding: 100px 0px;
margin-top: 10px;
}
.our-blog-detail h4 {
    color: #fff;
    font-size: 57px;
    font-weight: bolder;
    font-family: var(--heading-font);
}
.our-blog-section {
    margin-top: 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.common-date {
    position: absolute;
    right: 11px;
    bottom: -29px;
    background-color: var(--primary-color);
    width: 58px;
    height: 61px;
    text-align: center;
    color: #fff;
    padding: 6px;
    border-radius: 4px;
}
.blog-image {
    position: relative;
  
}					     

.image-blog{
    overflow: hidden;
    max-height: 300px;
}
.image-blog img{

    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}

.blog-image img {
    border-radius: 10px 10px 0px 0px;
    max-width: 507px;
}
.image-blog:hover img {
-webkit-transform: scale(1.2); 
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);

}
.blog-detail {
    padding-top: 34px;
    padding-bottom: 25px;
    padding-left: 10px;
    transition: 0.3s;
}
.blog-details h2 {
    font-size: 26px;
}

.blog-details h3 {
    font-size: 20px;
}
.common-date h4 {
    font-size: 18px;
}
.blog-link {
    color: #000;
    text-decoration: none !important;
}
.blog-read {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    margin-top: 16px;
}
.blog-detail:hover i {
       transition: all .3s;
    transform: translateX(10px);
}
.blog-section {
    padding-top: 50px;
}
.blog-detail a {
    text-decoration: none !important;
    font-size: 14px
}
a.blog-read i {
    padding-left: 4px;
}
.blog-detail a:hover {
    color: var(--primary-color);
}
.signle-blog-section {
    position: relative;
}
.leave-section {
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px 17px 20px;
    margin-top: 30px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;

}
.leave-section h4 {
    font-size: 40px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--primary-color);-family: var(--heading-font);
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
}

.leave-form {
    padding: 10px;
    margin: 12px 0px;
}

p.blog-link {
    color:var(--primary-color);
    font-size: 26px;
    font-weight: 600;
}
.date-sectiones {
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 11px 0px 22px 7px;
}
.date-sectiones a i {
    color:var(--primary-color);
}
a.no-section {
    color: #252525b5;
}
.single-blog img {
    width: 100%;
    border-radius: 7px;
}
ul.service-li li {
    padding: 6px 0px;
}
ul.service-li {
    padding-left: 22px;
}
ul.service-li li::marker{
    color:var(--primary-color) !important;
}
.after-before-box {
    background-color: #fff;
    padding: 20px;
    margin-top: 30px;
    border-radius: 10px;
}
.after-before-box h3 {
    font-size: 22px;
}
.about-img.normal-img:after {
    display: none;
}
.about-img.normal:after {
    display: none;
}
.about-img.normal {
    padding: 0px;
}
.about-img.normal img {
    width: 100%;
}
.about-txt h6 {
    font-size: 24px;
}

.faq-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f2937;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.25s ease;
}
.faq-item:hover {
    transform: translateY(-2px);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 17px 26px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question .icon {
    font-size: 26px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.faq-item.active .icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    background: #f9fafb;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 18px 26px 26px;
}
section.section.about.faq h2.heading.text-center {
    margin-bottom: 40px;
}
.booking-cta {
    padding: 70px 20px 30px;
    background: linear-gradient(        180deg,        #fff4f7 0%,        #fff 100%    );
    margin-top: 60px;
}
.booking-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
}
.booking-inner h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}
.booking-inner p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 750px;
    margin: 0 auto 40px;
}
.booking-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
/* Primary Button */
.btn-primary {
    background: #ef4f7d;
    color: #ffffff;
    padding: 10px 34px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.btn-primary:hover {
    background: #e23b6b;
    transform: translateY(-2px);
}
/* Secondary Button */
.btn-outline {
    background: transparent;
    border: 2px solid #ef4f7d;
    color: #ef4f7d;
    padding: 10px 34px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: #ef4f7d;
    color: #ffffff;
}
/* Mobile */
@media (max-width: 600px) {
    .booking-inner h2 {
        font-size: 26px;
    }

    .booking-inner p {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .faq-title {
        font-size: 26px;
    }
    .faq-question {
        font-size: 16px;
    }
}

    
    
    
    @media (max-width:767px){
        .pagebanner h1 {
            font-size: 25px;
        }
        h2.heading {
            font-size: 28px;
        }
        .about-img.normal-img {
            padding-bottom: 0px;
        }
        .about-img {
            padding: 0px;
        }
        .about-img img {
            width: 100%;
        }
        .about-img.normal-img img {
            width: 100%;
        }
        .about-txt h3 {
            margin-top: 30px;
            font-size: 23px;
        }
        .hide-mobile{
            display:none;
        }
        .hide-desktop{
            display:block !important;
        }
        .services_listing.row .col-md-6 {
            padding: 20px 20px !important;
        }
        .header-menu {
            text-align: left;
            overflow: auto;
            height: 100%;
            padding: 20px 0px;
            overflow-x: hidden;
        }
        .col-md-9.header_nav {
            position: fixed;
            right: -100%;
            top: 0;
            background-color: #fff;
            height: 100%;
            z-index: 99999;
            width: 90%;
            transition: 0.5s;
        }
        .header-menu li {
            display: block;
        }
        .header-menu li a {
            display: inline-block;
            padding: 20px 25px;
        }
        li.has-child:after {
            top: 15px;
            right: 10px;
            border: solid 1px var(--primary-color);
            padding: 2px 9px;
        }
        ul.sub-menu {
            width: 100%;
            position: unset;
            transform: unset  !important;
            transition: 0.5s;
            max-height: 0px;
            overflow: hidden;
            margin-bottom: 0px !important;
            box-shadow: unset !important;
            margin-left: 20px;
            /* border-left: solid; */
        }
        i#mobile_nav_close {
            display: block;
            color: #fff;
            position: absolute;
            left: -30px;
            top: 20px;
            background-color: #9b0c0c;
            width: 30px;
            height: 30px;
            text-align: center;
            border-radius: 10px 0px 0px 10px;
            padding-top: 5px;
        }
        .logo {
            padding: 20px 0px;
        }
        i#mobile_nav_open {
            display: block;
            float: right;
            font-size: 32px;
            margin-top: 12px;
            color: var(--primary-color);
        }
        .header_nav.show {
            right: 0;
        }
        body:after {
            content: "";
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: #000000bf;
            z-index: 99;
            transition: 0.5s;
            opacity: 0;
            pointer-events: none;
        }
        body.shadow:after {
            opacity: 1;
            pointer-events: all;
        }
        li.button a {
            padding: 10px 40px;
            margin-top: 30px;
        }
        li.show_sub_menu ul {
            max-height: 1500px;
        }
        li.has-child:hover:after {
            transform: unset;
        }
        li.show_sub_menu:after {
            transform: rotate(180deg) !important;
            background-color: var(--primary-color);
            color: #fff;
        }
        .top-user-account {
            text-align: center;
        }
        .top-txt {
        text-align: center;
        padding: 13px 0px 10px;
        }
        .top-txt li {
    font-size: 17px;
    margin-bottom: 10px;
}
        .review-txt {
            width: 100%;
        }
        .footer-box {
            padding-left: 0px !important;
            margin: 10px 0px;
        }
        .copyright-menu, .copyright-txt {
            text-align: center;
            padding: 3px 0px;
            line-height: 30px;
        }
        .about-img {
            margin-bottom: 40px;
        }
        .banner-video {
            padding-top: 60px;
        }
        section.banner {
            height: fit-content !important;
            padding: 70px 0px;
        }
        i#play_video {margin: 0px;}
        .contact-form {
            padding: 20px;
        }
        section.contact-section {
            margin-top: 0px;
        }
        .contact_box {
            padding-top: 40px;
        }
        section.contact-section .container {
            box-shadow: unset;
        }
        .step-flex label {
            width: 100%;
            margin-top: 20px;
        }
        .booking-fields {
            width: 100%;
            margin-top: 20px;
        }
        .exp-imgs img {
            width: 100%;
        }
        p.head-desc {
            width: 90%;
        }
        section.newsletter-popup {
            width: 80%;
            padding: 10px;
        }
        .col-md-6.popup-image {
            height: 200px;
            width: 91%;
            margin: auto;
        }
        .popup_text {
            padding: 20px;
        }
        .newsl_etter input {
            width: 100%;
            padding: 10px 10px;
        }
        .newsl_etter button {
            width: fit-content;
            padding: 10px !important;
            margin-top: 10px;
        }
        .newsletter-box {
            padding: 0px !important;
            margin-bottom: 20px;
        }
        .newsletter-box i {
            width: 50px;
            height: 50px;
        }
        
        img.for-desktop {
            display:none;
        }
    }
    
@media (min-width:767px){
    img.for-mobile {
        display:none;
    }
}
.count_timer {
    display: none;
}