/* import fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

/* import css */
@import url(/assets/css/bootstrap.min.css);

body {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
}

.stick-social-icons {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0 0 3rem 1rem;
    bottom: 0;
    z-index: 999;
}

.stick-social-icons a i {
    font-size: 2rem;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.stick-social-icons a {
    display: grid;
    place-content: center;
    padding: 10px 13px;
    background-color: #5783cb;
    border-radius: 15px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.9);
    transition: 0.2s ease-in-out;
}

.stick-social-icons a:hover i {
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .stick-social-icons a i {
        font-size: 1rem;
    }

    #tidio-chat {
        display: none;
    }
}

/* NAVBAR START */

.fixed-nav_items {
    width: 100%;
    display: flex;
    place-content: center;
    gap: 2rem;
    background-color: #5783cb;
    margin: 0;
}

.fixed-nav_items a {
    font-size: 1rem;
    font-weight: 200;
    color: #fff;
    font-family: "Poppins", sans-serif;
    transition: 0.3s ease-in-out;
}

.fixed-nav_items a:hover,
.sticky-nav_items a:hover {
    color: rgb(82, 77, 77);
}

.fixed-nav_items a i {
    margin: 0 0.3rem;
    font-weight: 100;
}

/* FIXED NAVBAR END */

.sticky-nav {
    top: 0;
}

nav {
    position: fixed;
    width: 100%;
    height: fit-content;
    z-index: 999;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

nav.top {
    top: 0;
}

nav .wrapper {
    position: relative;
    padding: 0px 30px;
    height: fit-content;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.wrapper .logo a {
    color: #5783cb;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

.wrapper .nav-links {
    display: inline-flex;
    gap: 0.1rem;
    margin: 0 !important;
    font-family: "Poppins", sans-serif;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 1rem;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    transform: translateX(5px);
}

.nav-links .drop-menu {
    position: absolute;
    background: #fff;
    width: 180px;
    line-height: 45px;
    top: 85px;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    padding: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: none;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 0;
    top: 75px;
    width: 100%;
    padding: 0 30px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #fff;
    padding: 25px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    /* grid-template-columns: repeat(4,auto); */
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.mega-box .content .row {
    display: block !important;
    line-height: 45px;
    cursor: pointer;
    width: 100%;
    margin: 0;
}

.content .row img {
    position: relative;
    width: 100%;
    height: 300px !important;
    object-fit: cover;
}

.content .row .row-head {
    position: relative;
    width: 100%;
    padding: 0;
}

.content .row p {
    position: absolute;
    top: 50%;
    right: 50%;
    width: 80%;
    padding: 5px;
    text-align: center;
    font-size: 0.7rem;
    transform: translate(50%, -50%);
    background-color: #fff;
    transition: 0.3s ease-in-out;
    opacity: 0;
}

.content .row:hover .row-head p {
    opacity: 1;
}

.mega-links {
    text-align: center;
    margin-top: 0.5rem;
}

.row .mega-links h3.title {
    font-size: 1.2rem;
    width: 100% !important;
    text-align: center !important;
}

.row .mega-links h4.price {
    font-size: 1rem;
}

button.btn-1 {
    width: fit-content;
    justify-self: center;
    border: none;
    background-color: transparent;
    border: 1px solid #5783cb;
    border-radius: 25px;
    transition: 0.3s all ease-in-out;
}

.btn-1 a {
    color: #5783cb;
    text-transform: capitalize;
    padding: 10px;
}

button.btn-1:hover {
    background-color: #5783cb;
    transition: 0.3s ease-in-out all;
}

button.btn-1:hover a {
    color: #fff;
}

button.btn-2 {
    height: 45px;
    width: 150px;
    justify-self: center;
    border: none;
    background-color: #5783cb;
    border: 1px solid #5783cb;
    border-radius: 25px;
    transition: 0.3s all ease-in-out;
    float: right;
}

.btn-2 a {
    color: #fff;
    text-transform: capitalize;
    padding: 10px;
}

button.btn-2:hover {
    background-color: #ffff;
    border: 1px solid #5783cb;
    transition: 0.3s ease-in-out all;
}

button.btn-2:hover a {
    color: #5783cb;
}

/* Media query for mobile screens */
@media (max-width: 1000px) {
    button.btn-2 {
        display: block;
        margin: 0 auto;
        /* Center button on mobile */
        float: none;
        /* Remove float on mobile */
    }
}

.row .mega-links li a {
    padding: 0px;
    color: #5783cb;
    font-size: 17px;
    display: block;
}

.wrapper .btn {
    color: #5783cb;
    font-size: 20px;
    cursor: pointer;
    display: none;
    box-shadow: none;
}

.wrapper .btn:hover {
    box-shadow: none;
}

nav input {
    display: none;
}

.body-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

.body-text div {
    font-size: 45px;
    font-weight: 600;
}

/* END NAVBAR */
/* HEADER */
header {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #fff;
    margin-top: 50px;
}

.header-overaly {
    /*position: relative;*/
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding-top: 13px;
}

.header-overaly video {
    width: inherit;
}

header .main-title {
    position: absolute;
    width: 55%;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.8);
}

.main-title h1 {
    color: #5783cb;
    font-size: 4rem;
}

.main-title p {
    text-align: center;
    color: #5783cb;
    opacity: 0.8;
}

@media only screen and (max-width: 970px) {
    /* header .main-title {
    margin-top: 70px;
  } */

    header {
        /* padding-top: 50px; */
        padding-top: 0px;
        position: relative;
        width: 100%;
        height: 100%;
    }

    #header-video {
        width: 100%;
    }
}

/* END HEADER */

/* FIRST SECTION */
.about_content {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
    padding-top: 100px;
}

.about_content div img {
    width: 550px;
    height: 400px;
    border-radius: 10px;
}

.about_content div h2.head {
    font-size: 2.5rem;
    font-weight: 600;
    color: #5783cb;
    font-family: "Poppins", sans-serif;
}

.about_content .description {
    align-items: flex-start;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
}

.about_content .description p {
    font-size: 1rem;
    margin: 3rem 0;
    line-height: 1.6;
}

.about_content .description button.btn-1 {
    padding: 15px 25px;
}

@media only screen and (max-width: 970px) {
    .about_content {
        padding-top: 14%;
    }

    .about_content div img {
        width: 100%;
        height: 40%;
    }
}

/* END FIRST SECTION */
/* DINING */
/*.surfskate-pacakge {
  position: relative;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
}

.surfskate-pacakge::before {
  position: absolute;
  content: '';
  width: 50%;
  height: 100%;
  background-size: cover;
  border-radius: 0 5px 0 0;
  z-index: -1;
}

.left-area.surfskate-pacakge::before {
  background-image: url(/assets/imgs/elhoucine-lazrak-M7IEwCJXiPE-unsplash.jpg);
}

.right-area.surfskate-pacakge::before {
  background-image: url(https://images.unsplash.com/photo-1537177278121-faeab2f78c14?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=690&q=80);
}

.left-area .dining-content {
  width: 55%;
  padding: 4rem;
  border-radius: 0 15px 0 0;
  background-color: rgb(255, 255, 255, .850);
  grid-column: span 2;
  justify-self: end;
}

.right-area .dining-content {
  width: 130%;
  height: auto;
  padding: 4rem 4rem 4rem 0;
  border-radius: 0 0 0 15px;
  background-color: rgb(255, 255, 255, .850);
  margin: 0 0 0 8rem;
  grid-column: span 1;
}

.dining-content p {
  width: 80%;
}

.dining-content h4 {
  font-weight: 400;
  color: #5783CB;
}

.dining-content h2 {
  color: #5783CB;
}

.dining-content button {
  padding: 10px 20px;
}

.right-area {
  justify-self: start;
  grid-column: span 2;
}

.right-area::before {
  right: 0;
  border-radius: 0 0 0 5px;
}*/

@media only screen and (max-width: 970px) {

    /* NAVBAR */
    .fixed-nav {
        display: none;
    }

    .logo {
        display: block !important;
    }

    /* .header-overaly video{
    transform: scale(1.5);
  } */

    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: calc(100vh - 10%);
        width: 100%;
        bottom: 0;
        left: -100%;
        background: #fff;
        display: block;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }

    .nav-links.show {
        left: 0%;
    }

    nav {
        transition: all 1s ease;
    }

    nav.full {
        height: 100%;
        transition: all 1s ease;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        width: fit-content;
        padding: 0 20px;
        display: block;
        font-size: 4vh;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        transition: all 0.3s ease;
        opacity: 0;
    }

    .drop-menu {
        display: none;
        box-shadow: none !important;
    }

    .nav-links:hover>.drop-menu {
        display: block;
        box-shadow: none;
    }

    .nav-links li:hover .drop-menu {
        display: block;
        transition: all 0.3s ease;
        top: 100px;
        opacity: 1;
        visibility: visible;
    }

    .nav-links .dropdown-item {
        display: block;
    }

    .nav-links .mobile-item {
        display: block;
        color: #5783cb;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links .mobile-item:hover {
        background: var(--gray);
    }

    .drop-menu li {
        margin: 0;
    }

    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }

    .content .row .mega-links {
        border-left: 0px;
        line-height: 1.9;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content .row header {
        font-size: 19px;
    }

    .header-overaly video {
        width: auto;
    }

    /* END NAVBAR */

    /* HEADER */

    .booking-bar {
        grid-template-columns: 1fr;
        transform: translateY(-95px);
    }

    .booking-bar select {
        width: 100%;
    }

    .booking-bar button {
        margin: 0;
    }

    /* flatpicker center */
    .flatpickr-calendar.animate.open.arrowTop.arrowLeft,
    .flatpickr-calendar.animate.arrowLeft.open.arrowBottom {
        left: 110px !important;
    }

    .main-title h1 {
        font-size: 25px;
        font-weight: bold;
        /*padding-top: 17%;*/
    }

    .main-title p {
        /*text-align: center;
    font-size: 1rem;*/
        display: none;
    }

    /* END HEADER */

    /* ABOUT */
    .about_content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* END ABOUT */

    /* DINING */
    /*.surfskate-pacakge::before {
    display: none;
  }

  .surfskate-pacakge {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
  }

  .left-area .dining-content,
  .right-area .dining-content {
    width: 85%;
    height: auto;
    margin: 0;
    padding: 2rem;
    justify-self: center;
    text-align: center;
    margin: 2rem 0;
  }

  .dining-content {
    width: 100%;
    min-height: 400px !important;
    display: grid;
    place-content: center;
    border-radius: 10px !important;
    box-shadow: 8px 8px 40px 0px rgba(0, 0, 0, 0.4);
  }

  .left-area .dining-content {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url(/assets/imgs/elhoucine-lazrak-M7IEwCJXiPE-unsplash.jpg);
    background-size: cover;
  }

  .right-area .dining-content {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url(https://images.unsplash.com/photo-1537177278121-faeab2f78c14?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=690&q=80);
    background-size: cover;
  }

  .dining-content p {
    width: 100%;
    color: #fff;
    opacity: 0.5;
  }

  .dining-content h4 {
    color: #fff;
  }

  .dining-content h2 {
    text-transform: capitalize;
    color: #fff;
  }*/
}

/*packages*/
.package .pack {
    position: relative;
    height: 500px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: 0.5s;
}

.package .pack:hover {
    transform: translateY(-10px);
}

/* Centered text */

.packages_cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: space-between;
    gap: 2rem;
}

.packages_cards .card {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: grid;
    place-content: center;
    padding: 2rem;
    background-color: white;
    background-size: cover;
    transition: 400ms ease-in-out;
}

.packages_cards .card:hover {
    transform: translateY(-15px);
}

.card .card_content {
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
}

.package .moor-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    background-color: #5783cb;
    border: 1px solid transparent;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
}

.package .moor-btn:hover {
    background-color: #5783cb;
    border: 1px solid #fff;
    transition: 0.3s ease-in-out all;
}

@media only screen and (max-width: 970px) {
    .packages_cards {
        grid-template-columns: 1fr;
    }
}

/* END PACKAGES */
/*divider*/
hr.divider {
    height: 0.2rem;
    max-width: 4rem;
    margin: 1.5rem auto;
    background-color: rgb(233, 172, 60);
    opacity: 1;
}

/*Cta*/
.cta {
    background: linear-gradient(rgba(197, 196, 196, 0.4),
            rgba(197, 196, 196, 0.4)),
        url("../imgs/surf.webp") fixed center center;
    background-size: cover;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

/*Testimionals*/
.sectiontest {
    display: grid;
    place-items: center;
    height: 100vh;
}

.sectiontest-header {
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    font-weight: 900;
    padding-bottom: 25px;
    color: #fff;
}

.sectiontest-header:after {
    content: "";
    height: 3px;
    width: 200px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 100px);
    background: #fff;
}

.sectiontest-header span {
    display: block;
    font-size: 15px;
    font-weight: 300;
}

.testimonials {
    max-width: 1000px;
    padding: 0 15px 50px;
    margin: 0 auto 80px auto;
}

.single-item {
    background: #fff;
    color: #111;
}

.profile {
    margin-bottom: 30px;
    text-align: center;
}

.img-area {
    margin: 0 15px 15px 15px;
}

.img-area img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 7px solid #5783cb;
}

.content {
    font-size: 18px;
}

.content p {
    text-align: justify;
}

.content p span {
    font-size: 48px;
    margin-right: 20px;
    color: #5783cb;
}

.socials {
    width: 100%;
    display: flex;
    place-content: center;
    gap: 1rem;
}

.bio h4 {
    font-family: "Berkshire Swash", cursive;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: #5783cb;
}

.black-bg {
    background: #16161a;
}

/* footer */
.footer-padding {
    padding-top: 80px;
    /*160px old*/
    padding-bottom: 130px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-padding {
        padding-top: 100px;
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-padding {
        padding-top: 80px;
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .footer-padding {
        padding-top: 80px;
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer-padding {
        padding-top: 50px;
        padding-bottom: 30px;
    }
}

.footer-area .footer-logo img {
    margin-bottom: 32px;
}

.footer-area .footer-social {
    margin-bottom: 30px;
}

.footer-area .footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid #888;
    background: #fff;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    color: #949eb2;
    margin-right: 5px;
    transition: 0.3s linear;
}

.footer-area .footer-social a:hover {
    background: none;
    color: #fff;
    border: 1px solid #fff;
    transform: scale(1.1);
}

.footer-area .footer-social2 a:hover {
    background: #5783cb;
    color: #fff;
    border: 1px solid transparent;
}

.footer-area .footer-pera p {
    color: #868c98;
    font-size: 14px;
    padding-right: 52px;
}

.footer-area .footer-pera p span a {
    color: #5783cb;
}

.footer-area .footer-pera p span a:hover {
    color: #fff;
}

.footer-area .footer-tittle h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 500;
}

.footer-area .footer-tittle ul li {
    color: #868c98;
    margin-bottom: 14px;
}

.footer-area .footer-tittle ul li a {
    color: #868c98;
    font-weight: 300;
}

.footer-area .footer-tittle ul li a:hover {
    color: #5783cb;
    padding-left: 5px;
}

.footer-area .footer-form {
    margin-top: 30px;
}

.footer-area .footer-form form {
    position: relative;
}

.footer-area .footer-form form input {
    width: 100%;
    height: 43px;
    padding: 10px 20px;
    border: 1px solid #fff;
}

.footer-area .footer-form form .form-icon button {
    position: absolute;
    top: 6px;
    right: 18px;
    background: none;
    border: 0;
    cursor: pointer;
}

.footer-area .info.error {
    color: #5783cb;
}

/* END footer */

/*Contact*/
.contact .info {
    border-top: 3px solid #5783cb;
    border-bottom: 3px solid #5783cb;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 20px;
    color: #5783cb;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #5783cb;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #5783cb;
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #5783cb;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #5783cb;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    border-top: 3px solid #5783cb;
    border-bottom: 3px solid #5783cb;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
    margin-bottom: 20px;
}

.contact .php-email-form label {
    padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #5783cb;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    border: 0;
    padding: 12px 34px;
    background-color: transparent;
    color: #5783cb;
    border: 1px solid #5783cb;
    border-radius: 50px;
    transition: 0.4s all ease-in-out;
}

.contact .php-email-form button[type="submit"]:hover {
    background-color: #5783cb;
    color: #fff;
    transition: 0.4s ease-in-out all;
}

/* End contact */
/*** Service ***/
.serv-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

.serv-item:hover {
    background: #86ace9;
}

.serv-item * {
    transition: 0.5s;
}

.serv-item:hover * {
    color: var(--light) !important;
}

/***END Service ***/
/*showcase*/
.showcase {
    margin-top: 90px;
}

.showcase .showcase-text {
    padding: 3rem;
}

.showcase .showcase-img {
    min-height: 20rem;
    background-size: cover;
}

@media (min-width: 768px) {
    .showcase .showcase-text {
        padding: 7rem;
    }
}

/*END showcase*/
/*forquery*/
.forQuery {
    padding-top: 200px;
    padding-bottom: 200px;
}

@media (max-width: 767px) {
    .forQuery {
        padding: 60px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .forQuery {
        padding: 100px 0;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .forQuery {
        padding: 100px 0;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .forQuery {
        padding: 100px 0;
    }
}

.forQuery .Query_border {
    border: 1px solid #bababa;
    padding: 38px 50px;
}

@media (max-width: 767px) {
    .forQuery .Query_border {
        padding: 20px 20px;
    }
}

.forQuery .Query_border .Query_text {
    text-align: left;
}

.forQuery .Query_border p {
    font-size: 30px;
    color: #1f1f1f;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .forQuery .Query_border p {
        margin-bottom: 20px;
        font-size: 18px;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .forQuery .Query_border p {
        font-size: 18px;
    }
}

.forQuery .Query_border .phone_num {
    text-align: right;
}

@media (max-width: 767px) {
    .forQuery .Query_border .phone_num {
        text-align: center;
    }
}

.forQuery .Query_border .phone_num a {
    background: #5783cb;
    color: #fff;
    padding: 12px 53px;
    border-radius: 30px;
    display: inline-block;
    font-size: 18px;
    border: 1px solid transparent;
}

.forQuery .Query_border .phone_num a:hover {
    color: #5783cb;
    border: 1px solid #5783cb;
    background: #fff;
}

/*END forquery*/
.btn {
    padding: 6px 10px;
    font-family: "Poppins", sans-serif;
    color: #5783cb;
    background-color: #5783cb;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    margin-bottom: 5px;
    transform: translate(-0.25rem, -0.25rem);
    box-shadow: 0.25rem 0.25rem var(--bs-dark);
}

/* Rooms Area CSS */
.single-rooms-area {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 515px;
    margin-bottom: 100px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-rooms-area .bg-thumbnail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.single-rooms-area .price-from {
    position: absolute;
    z-index: 20;
    top: -19px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 10px 15px;
    background-color: #fff;
    border: 2px solid #5783cb;
    display: inline-block;
    margin-bottom: 0;
    line-height: 1;
    color: #5783cb;
    font-size: 14px;
}

.single-rooms-area .rooms-text {
    position: absolute;
    z-index: 30;
    background-color: rgba(0, 0, 0, 0.63);
    padding: 30px 30px 40px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    border: 2px solid #5783cb;
    text-align: center;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-rooms-area .rooms-text .line {
    width: 90px;
    height: 2px;
    background-color: #5783cb;
    display: block;
    margin: 0 auto 20px;
}

.single-rooms-area .rooms-text h4 {
    color: #ffffff;
}

@media only screen and (max-width: 767px) {
    .single-rooms-area .rooms-text h4 {
        font-size: 20px;
    }
}

.single-rooms-area .rooms-text p {
    color: #ffffff;
    margin-bottom: 0;
}

.single-rooms-area .book-room-btn {
    position: absolute;
    bottom: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 50;
    color: #fff;
    background-color: #5783cb;
    border-radius: 25px;
    padding: 10px;
    transition: 0.3s all ease-in-out;
}

.single-rooms-area .book-room-btn:hover {
    background-color: rgb(94, 91, 91);
}

.single-rooms-area:hover .rooms-text,
.single-rooms-area:focus .rooms-text {
    background-color: #000;
}

/* END room-area */

/* surf-package Area CSS */
.single-surf-package-area {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 515px;
    margin-bottom: 100px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-surf-package-area .bg-thumbnail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.single-surf-package-area .price-from {
    position: absolute;
    z-index: 20;
    top: -19px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 10px 15px;
    background-color: #fff;
    border: 2px solid #5783cb;
    display: inline-block;
    margin-bottom: 0;
    line-height: 1;
    color: #5783cb;
    font-size: 14px;
}

.single-surf-package-area .surf-package-text {
    position: absolute;
    z-index: 30;
    background-color: rgba(0, 0, 0, 0.63);
    padding: 30px 30px 40px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    border: 2px solid #5783cb;
    text-align: center;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-surf-package-area .surf-package-text .line {
    width: 90px;
    height: 2px;
    background-color: #5783cb;
    display: block;
    margin: 0 auto 20px;
}

.single-surf-package-area .surf-package-text h4 {
    color: #ffffff;
}

@media only screen and (max-width: 767px) {
    .single-surf-package-area .surf-package-text h4 {
        font-size: 20px;
    }
}

.single-surf-package-area .surf-package-text p {
    color: #ffffff;
    margin-bottom: 0;
}

.single-surf-package-area .book-room-btn {
    position: absolute;
    bottom: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 50;
    color: #fff;
    background-color: #5783cb;
    border-radius: 25px;
    padding: 10px;
    transition: 0.3s all ease-in-out;
}

.single-surf-package-area .book-room-btn:hover {
    background-color: rgb(94, 91, 91);
}

.single-surf-package-area:hover .surf-package-text,
.single-surf-package-area:focus .surf-package-text {
    background-color: #000;
}

/*image slider*/
.sliderimage {
    display: grid;
    place-items: center;
    height: 100vh;
}

.images {
    max-width: 1000px;
    padding: 0 15px 50px;
    margin: 0 auto 80px auto;
}

.single-item {
    background: #fff;
    color: #111;
}

.slide {
    margin-bottom: 30px;
    text-align: center;
}

.area-img {
    margin: 0 15px 15px 15px;
}

.area-img img {
    height: 400px;
    width: 1000px;
}

@media (max-width: 970px) {
    .area-img img {
        width: 100%;
    }
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: #5783cb;
}

/* Map */
/*.map-responsive {
  overflow: hidden;
  padding-bottom: 50%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 70%;
  width: 100%;
  position: absolute;
}*/

/* END Map */
/*Pricing*/
.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
    color: #5783cb;
}

.pricing h4 {
    font-size: 48px;
    color: #5783cb;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 25px;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: #47b2e4;
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.pricing ul i {
    color: #5783cb;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: #5783cb;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
    border: 1px solid #5783cb;
}

.pricing .buy-btn:hover {
    background: #5783cb;
    color: #fff;
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*END Pricing*/
/*Frequently Asked Questions*/
.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #5783cb;
    transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
    color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*END Frequently Asked Questions*/
/* sticky button*/
.stick-request-package {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0 0 3rem 1rem;
    z-index: 999;
    right: 15px;
    bottom: 15px;
}

.stick-request-package a {
    display: grid;
    place-content: center;
    padding: 11px 13px;
    background-color: #5783cb;
    border-radius: 15px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.9);
    transition: 0.2s ease-in-out;
}

.stick-request-package a h6 {
    color: #fff;
    transition: 0.3s ease-in-out;
}

.stick-request-package a:hover h6 {
    transform: scale(1.1);
}

/* END sticky button*/
/*Breadcrumbs*/
.breadcrumbs {
    padding: 15px 0;
    background: rgba(86, 112, 160, 0.05);
    min-height: 40px;
    margin-top: 76px;
}

.breadcrumbs h2 {
    font-size: 30px;
    font-weight: 300;
    margin: 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
    font-size: 15px;
}

.breadcrumbs ol li a {
    font-size: 15px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6e87b6;
    content: "/";
}

@media (max-width: 992px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs h2 {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*End Breadcrumbs*/
/*Blog Posts List*/
.blog .posts-list article {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.blog .posts-list article+article {
    margin-top: 60px;
}

.blog .posts-list .post-img {
    max-height: 240px;
    margin: -30px -30px 0 -30px;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.blog .posts-list .title {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
}

.blog .posts-list .title a {
    color: var(--color-secondary);
    transition: 0.3s;
}

.blog .posts-list .title a:hover {
    color: #154085;
}

.blog .posts-list .meta-top {
    margin-top: 20px;
    color: #6c757d;
}

.blog .posts-list .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .posts-list .meta-top ul li+li {
    padding-left: 20px;
}

.blog .posts-list .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(87, 131, 203, 0.8);
}

.blog .posts-list .meta-top a {
    color: #6c757d;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog .posts-list .content {
    margin-top: 20px;
}

.blog .posts-list .read-more a {
    display: inline-block;
    background: #5783cb;
    color: #fff;
    padding: 8px 30px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.blog .posts-list .read-more a:hover {
    background: rgba(87, 131, 203, 0.8);
}

/* END Blog Posts List */
/*Blog Details Page*/
.blog .blog-details {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    background: rgba(86, 112, 160, 0.05);
}

.blog .blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog .blog-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
    color: #5783cb;
}

.blog .blog-details .content {
    margin-top: 20px;
}

.blog .blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .blog-details .content blockquote {
    overflow: hidden;
    background-color: rgba(var(--color-secondary-rgb), 0.06);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .blog-details .content blockquote p {
    color: var(--color-default);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-secondary);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .blog-details .meta-top {
    margin-top: 20px;
    color: var(--color-gray);
}

.blog .blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .blog-details .meta-top ul li+li {
    padding-left: 20px;
}

.blog .blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(87, 131, 203, 0.8);
}

.blog .blog-details .meta-top a {
    color: #6c757d;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

blockquote {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}

blockquote p {
    display: inline;
}

/*Blog Details Page*/
.blog .blog-details {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    background: rgba(86, 112, 160, 0.05);
}

.blog .blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog .blog-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
    color: #5783cb;
}

.blog .blog-details .content {
    margin-top: 20px;
}

.blog .blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .blog-details .content blockquote {
    overflow: hidden;
    background-color: rgba(var(--color-secondary-rgb), 0.06);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .blog-details .content blockquote p {
    color: var(--color-default);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-secondary);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .blog-details .meta-top {
    margin-top: 20px;
    color: var(--color-gray);
}

.blog .blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .blog-details .meta-top ul li+li {
    padding-left: 20px;
}

.blog .blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(87, 131, 203, 0.8);
}

.blog .blog-details .meta-top a {
    color: #6c757d;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

blockquote {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}

blockquote p {
    display: inline;
}

/*End Blog Details Page*/
/*Why Us*/
.why-us .content {
    padding: 60px 100px 0 100px;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #5783cb;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #848484;
}

.why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.why-us .accordion-list li+li {
    margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
}

.why-us .accordion-list span {
    color: #47b2e4;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 15px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
    color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1024px) {

    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .img {
        min-height: 400px;
    }

    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .why-us .img {
        min-height: 200px;
    }
}

/* END Why Us */

/* checkout */
.category ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.request {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 2rem;
}

/*.request_form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.request_form div label {
  display: block;
  font-size: 1em;
  padding: 0;
  margin: 0;
}


.request_form div input::placeholder {
  color: #adb5bd;
}

.request_form div input,
.request_form select.select-list,
.request_form textarea {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4rem;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d2d6da;
  appearance: none;
  border-radius: 0.5rem;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  padding: 10px 20px;
}

.request_form div input:focus-visible,
.request_form select.select-list:focus-visible,
.request_form textarea:focus-visible {
  outline: 2px solid #5783CB;
}

.request_form button {
  display: block;
  font-weight: 400;
  line-height: 1.4rem;
  background-clip: padding-box;
  border: 1px solid #d2d6da;
  appearance: none;
  border-radius: 0.5rem;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  padding: 10px 20px;
  width: 30%;
  margin: auto;
  grid-column: 1;
  background: #5783CB;
  color: white;
  font-size: 1.2rem;
  font-family: inherit;
  margin: auto;
}

.request_form button:hover {
  background: #7597ce;
}

.request_form textarea,
.request_form button {
  grid-column: 1 / 3;
}


.request_form textarea::placeholder {
  text-transform: capitalize;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4rem;
  color: #adb5bd;
}*/

/* .request_form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
} */

.request_form div label {
    display: block;
    font-size: 1em;
    padding: 1rem 0;
    margin: 0;
}

.request_form div input::placeholder {
    color: #adb5bd;
}

.request_form div input,
.request_form select.select-list,
.request_form textarea {
    display: block;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4rem;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d2d6da;
    appearance: none;
    border-radius: 0.5rem;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
    padding: 10px 20px;
}

.request_form div input:focus-visible,
.request_form select.select-list:focus-visible,
.request_form textarea:focus-visible {
    outline: 2px solid #5783cb;
}

.request_form button,
.process_payment-btn {
    padding: 10px 18px;
    width: 30%;
    margin: auto;
    grid-column: 1;
    font-size: 1rem;
    font-family: inherit;
    color: #fff;
    background-color: #5783cb;
    border: 1px solid #5783cb;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.request_form button:hover,
.process_payment-btn:hover {
    background-color: #fff;
    color: #5783cb;
}

.request_form .more_info,
.request_form button {
    grid-column: 1 / 3;
}

.request_form textarea::placeholder {
    text-transform: capitalize;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4rem;
    color: #adb5bd;
}

.request_date {
    position: relative;
}

.request_date i {
    position: absolute;
    right: 25px;
    top: 72px;
    cursor: pointer;
}

.request_date i::before {
    color: #adb5bd;
}

/* Customize the label (the container) */
.container {
    display: block;
    position: relative;
    padding-left: 35px !important;
    margin-bottom: 12px !important;
    /*cursor: pointer;
  font-size: 22px;*/
    /* -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; */
}

/* Hide the browser's default checkbox */
.additional-services .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.additional-services .checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #d1cbcb;
}

/* On mouse-over, add a grey background color */
.additional-services .container:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.additional-services .container input:checked~.checkmark {
    background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.additional-services .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.additional-services .container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.additional-services .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.flatpickr-calendar .flatpickr-day.endRange,
.flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day.startRange,
.flatpickr-calendar .flatpickr-day.today {
    background: #5783cb !important;
}

.flatpickr-calendar.animate.open.arrowTop.arrowLeft,
.flatpickr-calendar.animate.arrowLeft.open.arrowBottom {
    left: 20% !important;
}

.form-control:focus {
    border-color: transparent;
    box-shadow: none;
}

.btn{
    color: white;
}

@media only screen and (max-width: 1226px) {
    nav {
        box-shadow: none;
    }

    nav .wrapper {
        flex-direction: row;
    }

    .request {
        grid-template-columns: 1fr;
    }

    /* .request_form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    } */

    .request_form button {
        width: 50%;
    }

    /* .request_form .more_info,
    .request_form button {
        grid-column: 1;
    } */
}

/* START PACKAGES DETAILS */
.header-overaly.package_detail {
    height: 500px;
}

.package_details {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    transform: translateY(-50px);
    background-color: white;
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.507);
    overflow: hidden;
}

.package_details .details {
    padding: 2rem;
    background-color: white;
    z-index: 1;
}

.package_details .package_price {
    text-align: right;
    color: black;
}

.package_details .img_pack {
    overflow: hidden;
}

.img_pack img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

@media only screen and (max-width: 970px) {
    .package_details .img_pack img {
        height: 350px;
    }

    .header-overaly.package_detail {
        height: 210px;
    }
}

.package_details>img {
    width: 100%;
    transform: scale(1.2);
}

.package_content {
    border: 1px solid rgba(0, 0, 0, 0.26);
    border-radius: 5px;
    padding: 1rem;
}

.package_content div {
    margin-block: 1rem;
}

.package_content * h4 {
    margin: 0 !important;
}

.package_content * li {
    margin-left: 1rem;
}

.request_now {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.request_now p {
    margin: 0 !important;
}

.request_now .package_price {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--bs-font-sans-serif);
}

.request_now a.request_btn {
    padding: 7px 20px;
    border: 2px solid #5783cb;
    background: #5783cb;
    border-radius: 10px;
    color: #fff;
}

.request_now a.request_btn:hover {
    background: #6c8ec5;
}

.request_now a.request_btn a {
    color: white;
    text-transform: capitalize;
}

@media only screen and (max-width: 970px) {
    .package_details {
        grid-template-columns: 1fr;
    }

    .details {
        grid-row: 1;
    }
}

/* END PACKAGES DETAILS */

/* boards start */
.swiper {
    width: 500px;
    height: 450px;
}

.our_boards {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
    padding-top: 150px;
    padding-bottom: 150px;
}

.our_boards_description {
    position: relative;
}

.our_boards_description img.small_wave {
    position: absolute;
    top: -25px;
    left: 0;
    width: 50px;
}

.our_boards_preview {
    position: relative;
    width: 100%;
    height: 100%;
}

.our_boards_preview img.small_wave {
    position: absolute;
    right: -50px;
    width: 150px;
    height: 85px;
    z-index: 999;
}

.our_boards_preview img {
    width: 100%;
    height: 100%;
}

.board-brands {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.board-brands img {
    width: 100px;
    filter: grayscale(100%);
}

@media only screen and (max-width: 970px) {
    .our_boards {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .swiper {
        width: 300px;
        height: 400px;
    }

    .our_boards_preview img.small_wave {
        width: 100px;
        height: 60px;
        right: 0;
    }
}

/* boards end */

.guest-info-checkout {
    width: 100%;
    min-height: 500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    padding: 2rem 2rem 0 2rem;
    background-color: white;
    margin-block: 2rem;
    box-shadow: 5px 9px 32px #00000059;
    font-family: "Montserrat", sans-serif;
}

.guest-info-checkout h2 {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: "Playfair Display", serif !important;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(128, 128, 128, 0.327);
}

.guest-information {
    text-align: left;
}

.guest-info-checkout .guest-info-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guest-info-checkout .guest-info-inputs .check {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.guest-info-checkout .guest-info-inputs .check p {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.157);
    font-family: "Montserrat", sans-serif;
    margin: 0 !important;
    transition: border-color ease-in-out 0.15s;
}

@media only screen and (max-width: 600px) {
    .guest-info-checkout .guest-info-inputs .check {
        display: block;
    }
}

.guest-info-checkout .guest-info-inputs>div {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.guest-info-checkout label {
    margin: 0 !important;
    color: black;
}

.guest-info-checkout .guest-info-inputs>div>input {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.157);
    transition: border-color ease-in-out 0.15s;
}

.guest-info-checkout .guest-info-inputs>div>input:focus,
.guest-info-checkout .guest-info-inputs .check p:hover {
    border-color: #dca73a;
}

.guest-info-checkout small {
    display: block !important;
    color: rgb(160, 157, 157);
}

.guest-info-checkout .guest-info-inputs input[type="checkbox"] {
    width: 19px;
    height: 19px;
}

.guest-info-checkout .airport-transfer label {
    font-size: 1rem;
}

.airport-transfer>div {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.payment-item {
    text-align: left;
}

.payment-item label {
    font-weight: 500;
}

.payment-item small {
    margin-left: 1.7rem;
}

.payment-item label {
    font-size: 1rem;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 1rem;
    margin-top: 1.5rem;
    list-style: none;
}

.payment-method input[type="radio"] {
    width: 19px;
    height: 19px;
}

.payment-method li>div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stripe-input {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.157);
    margin-top: 1.2rem;
    list-style: none;
}

.stripe-input>.strip-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stripe-input p {
    font-family: "Montserrat", sans-serif;
    color: black;
    font-weight: 500;
}

.stripe-input .cards-icon i {
    font-size: 1.5rem;
}

.stripe-input .card-input input {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.157);
    width: 100%;
}

.stripe-input .card-input button[type="submit"] {
    padding: 0.8rem 2rem;
    border: none;
    color: white;
    background-color: #dca73a;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.stripe-input .card-input button[type="submit"]:hover {
    background-color: #f1b233;
}

.stripe-input .card-input>div {
    display: flex;
    gap: 1rem;
}

.total-payment {
    grid-column: 1 / span 2;
    margin-inline: -2rem;
    margin-top: -4rem;
}

.total-payment div {
    border-block: 2px solid rgba(0, 0, 0, 0.157);
}

.total-payment div ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.total-payment div ul {
    margin: 0 2rem;
    padding: 0;
}

.total ul {
    padding-bottom: 0;
    text-transform: capitalize !important;
}

.total-services {
    border: none !important;
}

.total-payment p {
    font-size: 18px;
    font-family: "Montserrat", sans-serif !important;
}

.total-room .room_name p {
    color: #dca73a;
    font-weight: 500;
}

.total>ul>li p {
    font-size: 18px;
    font-weight: 600;
    color: #4a4343;
}

@media only screen and (max-width: 600px) {
    .guest-info-checkout {
        gap: 1rem;
    }

    .payment-option,
    .guest-information {
        grid-column: 1 / span 2;
    }

    .total-payment {
        margin-top: 0;
    }
}

.surfskate-container {
    display: block;
    padding: 35px 35px;
    margin-bottom: 20px;
    /* Adjust the amount of space as needed */
    position: relative;
}

.surfskate-container .row:first-child .col-md-6 {
    margin-bottom: 50px;
    /* Adjust the amount of space as needed */
    position: relative;
    /* Ensure relative positioning for the column */
    height: 500px;
}

.surfskate-container img {
    width: 95%;
    height: 100%;
    object-fit: cover;
}

/* Overlay styling */
.surfskate-image-overly {
    position: absolute;
    top: 75%;
    left: 47%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    /* Adjust the background color and opacity as needed */
    color: white;
    padding: 20px;
    width: 80%;
    max-width: 500px;
}

.surfskate-image-overly h3 {
    color: white;
    text-align: center;
}

/* Show the overlay when hovering over the image */
.col-md-6:hover .surfskate-image-overly {
    display: block;
}

@media only screen and (max-width: 600px) {
    .surfskate-container img {
        width: 100%;
        height: 95%;
    }

    .surfskate-image-overly {
        top: 65%;
        left: 50%;
        width: 80%;
        max-width: none;
    }
}

.surfskate-pacakge .single-surfskate-pacakge {
    position: relative;
    padding: 150px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .surfskate-pacakge .single-surfskate-pacakge {
        padding: 10px 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .surfskate-pacakge .single-surfskate-pacakge {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .surfskate-pacakge .single-surfskate-pacakge {
        padding: 10px 0;
    }
}

.surfskate-pacakge .single-surfskate-pacakge.right-img {
    position: relative;
}

.surfskate-pacakge .single-surfskate-pacakge.right-img::before {
    position: absolute;
    right: 0;
    content: "";
    top: 0;
    bottom: 0;
    background-image: url(../imgs/surfskate.webp);
    width: 50%;
    border-radius: 0 0 0 5px;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .surfskate-pacakge .single-surfskate-pacakge.right-img::before {
        display: none;
    }
}

/*PACKGE**/

.surfskate-pacakge .single-package-area {
    position: relative;
    padding: 150px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .surfskate-pacakge .single-package-area {
        padding: 10px 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .surfskate-pacakge .single-package-area {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .surfskate-pacakge .single-package-area {
        padding: 10px 0;
    }
}

.surfskate-pacakge .single-package-area.right-img {
    position: relative;
}

.surfskate-pacakge .single-package-area.right-img::before {
    position: absolute;
    right: 0;
    content: "";
    top: 0;
    bottom: 0;
    background-image: url(../imgs/surfskate.webp);
    width: 50%;
    border-radius: 0 0 0 5px;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .surfskate-pacakge .single-package-area.right-img::before {
        display: none;
    }
}

.surfskate-pacakge .surfskate-pacakge-caption {
    background: #faf9f9;
    padding: 92px 98px 98px 96px;
    border-radius: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .surfskate-pacakge .surfskate-pacakge-caption {
        padding: 60px 69px 68px 61px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .surfskate-pacakge .surfskate-pacakge-caption {
        padding: 57px 59px 65px 79px;
    }
}

@media (max-width: 767px) {
    .surfskate-pacakge .surfskate-pacakge-caption {
        padding: 55px 38px 53px 29px;
    }
}

.surfskate-pacakge .surfskate-pacakge-caption span {
    color: #dca73a;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.surfskate-pacakge .surfskate-pacakge-caption h3 {
    font-weight: 600;
    color: #112e41;
    margin-bottom: 30px;
}

.surfskate-pacakge .surfskate-pacakge-caption p {
    margin-bottom: 56px;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 767px) {
    .surfskate-pacakge .surfskate-pacakge-caption p br {
        display: none;
    }
}

/* rent boards page */

section.surfboards-rent-intro {
    margin-top: 8rem;
    background-image: url("https://taghazoutsurfers.com/assets/imgs/gallery/WhatsApp%20Image%202023-12-22%20at%2017.14.20%20(6).jpeg");
    background-size: cover;
    background-position: center;
    height: 30rem;
    padding-top: 1rem;
}

section.surfboards-rent-intro .container {
    width: 85%;
    margin: 0 auto !important;
}

section.surfboards-rent-intro .surf-rent-intro {
    width: 40%;
    background-color: #ffff;
    padding: 1rem 2rem;
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.33);
}

.surfboards-rent-intro .surf-rent-intro h3 {
    font-size: 1rem;
    font-weight: bolder;
    font-family: sans-serif;
}

.surfboards-rent-intro .surf-rent-intro p {
    font-size: 0.9rem;
}

.surfboards-rent-intro .surf-rent-intro ul li {
    text-decoration: underline;
}

/* guid */

.surfboards-rent-guide .container {
    width: 85%;
    margin: 0 auto !important;
}

.surfboards-rent-guide .container .head {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.surfboards-rent-guide .rent-content {
    width: 100%;
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-template-rows: 500px;
    gap: 3rem;
}

.surfboards-rent-guide .rent-content {
    color: black;
    text-align: center;
}

.surfboards-rent-guide .rent-content img {
    width: 25%;
    margin: 0 auto;
    margin-block: 1rem;
}

.rent-content .guide-intro {
    padding: 1.5rem;
    background-color: #afd3e7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.rent-content .guide-intro-img {
    width: 100%;
}

.rent-content .guide-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
}

/* nested = rent-guide */
.surfboards-rent-guide .rent-guide {
    margin-top: 5rem;
}

.surfboards-rent-guide .rent-guide div {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.078);
    transition: 0.3s ease-in-out;
}

.surfboards-rent-guide .rent-guide div:hover {
    background-color: rgba(67, 174, 190, 0.1);
    transition: 0.3s ease-in-out;
}

/* nested = surf-forbeginners */

.surfboards-rent-guide .surf-forbeginners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-block: 5rem;
}

.surf-forbeginners .surf-forbeginners-content p {
    font-size: 1rem;
}

.surf-forbeginners .surf-forbeginners-img,
.guide-intro-img {
    -webkit-mask-box-image-source: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg");
    -webkit-mask-box-image-slice: 50 fill;
    -webkit-mask-box-image-repeat: round;
    /* mask-image: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg"); */
    mask-size: 100% 100%;
}

.surf-forbeginners .surf-forbeginners-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* nested = surf for advanced */

.surfboards-rent-guide .surf-forbAdvanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.surf-forbAdvanced .surf-forAdvanced-img {
    -webkit-mask-box-image-source: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg");
    -webkit-mask-box-image-slice: 50 fill;
    -webkit-mask-box-image-repeat: round;
    /* mask-image: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg"); */
    mask-size: 100% 100%;
}

.surf-forbAdvanced .surf-forAdvanced-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.surf-forbAdvanced .surf-forAdvanced-content h2 {
    font-size: 1.5rem;
}

/* nested = surf long board */

.surfboards-rent-guide .long-surfRental {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}

.long-surfRental-content-img {
    -webkit-mask-box-image-source: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg");
    -webkit-mask-box-image-slice: 50 fill;
    -webkit-mask-box-image-repeat: round;
    /* mask-image: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg"); */
    mask-size: 100% 100%;
}

.long-surfRental-content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* cta rent boards */

.cta-rent-boards {
    background-color: #4777a2;
    padding-block: 3rem;
    margin-top: 5rem;
}

.rental-hardtops,
.rental-wetsuits {
    color: white;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
}

.rental-hardtops .rental-hardtops-content h2,
.rental-wetsuits-content h2 {
    color: white !important;
    font-family: sans-serif;
}

.rental-hardtops .rental-hardtops-content a,
.rental-wetsuits-content a {
    outline: none !important;
    border: none;
    background-color: transparent;
    border: 1px solid white;
    padding-inline: 2rem;
    padding-bottom: 0;
    padding-top: 0.4rem;
    margin: 0 !important;
    display: flex;
    align-items: bottom;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
    color: white;
    transition: 0.3s ease-in-out;
}

.rental-hardtops .rental-hardtops-content a:hover,
.rental-wetsuits-content a:hover {
    background-color: white;
    color: black;
    transition: 0.3s ease-in-out;
}

.rental-hardtops .rental-hardtops-content a:hover span,
.rental-wetsuits-content a:hover span {
    color: black;
    transition: 0.3s ease-in-out;
}

.rental-hardtops .rental-hardtops-content a span,
.rental-wetsuits-content a span {
    color: white;
    font-size: 1.2rem;
    margin-top: 0.08rem;
}

.rental-price-list,
.rental-hardtops-img,
.rental-wetsuits-img {
    -webkit-mask-box-image-source: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg");
    -webkit-mask-box-image-slice: 50 fill;
    -webkit-mask-box-image-repeat: round;
    /* mask-image: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg"); */
    mask-size: 100% 100%;
}

.rental-hardtops-img img,
.rental-wetsuits-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rental-wetsuits {
    margin-top: 3rem;
}

/* rent prices */
.surf-rental-prices {
    margin-block: 4rem;
}

.surf-rental-prices .container {
    width: 55% !important;
    margin: 0 auto;
}

.surf-rental-prices .container h2 {
    font-family: sans-serif;
    text-transform: uppercase;
    color: #4777a2;
    text-align: center;
    margin: 0 !important;
    font-size: 3rem;
}

.surf-rental-prices .price-table {
    margin-top: 3rem;
    background-color: #4777a2;
    padding: 2rem;
    color: white;
}

.surf-rental-prices .price-table h3 {
    color: white;
    font-family: sans-serif;
    margin-top: 2rem;
}

@media only screen and (max-width: 970px) {
    section.surfboards-rent-intro .surf-rent-intro {
        width: 100%;
    }

    .surfboards-rent-guide .container .head {
        margin-top: 3rem;
    }

    .surfboards-rent-guide .rent-content {
        grid-template-columns: 1fr;
        margin: 0 auto;
    }

    .surfboards-rent-guide .surf-forbeginners,
    .surfboards-rent-guide .surf-forbAdvanced,
    .surfboards-rent-guide .long-surfRental {
        grid-template-columns: 1fr;
    }

    .rental-hardtops,
    .rental-wetsuits {
        grid-template-columns: 1fr;
    }

    .surf-rental-prices .container {
        width: 95% !important;
    }
}

/* ----------------------------------- CSS ---------------------------------- */
.explore-button {
    display: flex;
    margin: auto;
    margin-top: 2rem;
    align-items: center;
    background-color: #fff;
    border: 2px solid #67748e;
    box-sizing: border-box;
    color: #67748e;
    cursor: pointer;
    /* display: inline-flex; */
    fill: #67748e;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    letter-spacing: -0.8px;
    line-height: 24px;
    min-width: 140px;
    outline: 0;
    padding: 0 17%;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
}

.explore-button:focus {
    color: #171e29;
}

.explore-button:hover {
    background-color: #4777a2;
    border-color: #4777a2;
    color: white;
    fill: #4777a2;
}

.explore-button:active {
    border-color: #4777a2;
    color: #4777a2;
    fill: #4777a2;
}

@media (min-width: 768px) {
    .explore-button {
        min-width: 170px;
    }
}

.surf-rental-area .img-wrapper {
    height: 500px;
    width: 100%;
}

.surf-rental-area .img-wrapper img {
    background-size: cover;
    height: 100% !important;
}

.surf-rental-area .product-title {
    position: absolute;
    width: 80%;
    bottom: -3rem;
    background-color: hsla(0, 0%, 100%, 0.896);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Inter, sans-serif;
    color: black;
}

.surf-rental-area .product-title h4 {
    color: black;
    line-height: 1.3;
    margin-bottom: 0.1em;
    margin-top: 0.1em;
    font-size: 1rem;
    font-weight: 700;
}

.surfboard_card_pricetag_wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    margin-top: 0;
    display: flex;
}

.price_tag.no_margin {
    opacity: 0.95;
    padding-right: 0;
    font-weight: 500;
    text-decoration: none;
}

.price_tag_addon {
    color: grey;
}

.explore-product {
    display: flex;
    justify-content: center;
    opacity: 0.75;
    color: black !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 3px;
    border-bottom: 1px solid black;
    border-width: 0px;
    position: relative;
}

.explore-product:before {
    content: "";
    display: block;
    height: 1px;
    background-color: grey;
    width: 0;
    transition: width 0.3s ease-out;
    position: absolute;
    bottom: 0;
    left: 0;
}

.explore-product:hover:before {
    width: 100%;
}

.explore-product img {
    width: 30px;
    height: 30px;
    margin-left: 1rem;
    transform: rotate(45deg);
    color: black !important;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(45deg) skew(0deg, 0deg);
    transition: transform 0.3s ease;
}

.explore-product:hover img {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(180deg) rotateY(0deg) rotateZ(45deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.img_product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    background: none;
}

.Individual-products {
    display: flex;
    margin: auto;
    margin-top: 2rem;
    align-items: center;
    background-color: #fff;
    border: 2px solid #67748e;
    box-sizing: border-box;
    color: #67748e;
    cursor: pointer;
    margin-bottom: 2rem;
    fill: #67748e;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    letter-spacing: -0.8px;
    line-height: 24px;
    min-width: 140px;
    outline: 0;
    padding: 0 17%;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
}

.Individual-products:hover {
    background-color: #4777a2;
    border-color: #4777a2;
    color: white;
    fill: #4777a2;
}



/* rent boards page */

section.surfboards-rent-intro {
    margin-top: 8rem;
    background-image: url('https://taghazoutsurfers.com/assets/imgs/gallery/WhatsApp%20Image%202023-12-22%20at%2017.14.20%20(6).jpeg');
    background-size: cover;
    background-position: center;
    height: 30rem;
    padding-top: 1rem;
}

section.surfboards-rent-intro .container {
    width: 85%;
    margin: 0 auto !important;
}

section.surfboards-rent-intro .surf-rent-intro {
    width: 40%;
    background-color: #ffff;
    padding: 1rem 2rem;
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.33);
}

.surfboards-rent-intro .surf-rent-intro h3 {
    font-size: 1rem;
    font-weight: bolder;
    font-family: sans-serif;
}

.surfboards-rent-intro .surf-rent-intro p {
    font-size: 0.9rem;
}

.surfboards-rent-intro .surf-rent-intro ul li {
    text-decoration: underline;
}

/* guid */

.surfboards-rent-guide .container {
    width: 85%;
    margin: 0 auto !important;
}

.surfboards-rent-guide .container .head {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.surfboards-rent-guide .rent-content {
    width: 100%;
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-template-rows: 500px;
    gap: 3rem;
}

.surfboards-rent-guide .rent-content {
    color: black;
    text-align: center;
}

.surfboards-rent-guide .rent-content img {
    width: 25%;
    margin: 0 auto;
    margin-block: 1rem;
}

.rent-content .guide-intro {
    padding: 1.5rem;
    background-color: #AFD3E7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.rent-content .guide-intro-img {
    width: 100%;
}

.rent-content .guide-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
}



/* nested = rent-guide */
.surfboards-rent-guide .rent-guide {
    margin-top: 5rem;
}

.surfboards-rent-guide .rent-guide div {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.078);
    transition: 0.3s ease-in-out;
}

.surfboards-rent-guide .rent-guide div:hover {
    background-color: rgba(67, 174, 190, 0.1);
    transition: 0.3s ease-in-out;
}


/* nested = surf-forbeginners */

.surfboards-rent-guide .surf-forbeginners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-block: 5rem;
}

.surf-forbeginners .surf-forbeginners-content p {
    font-size: 1rem;
}

.surf-forbeginners .surf-forbeginners-img,
.guide-intro-img {
    -webkit-mask-box-image-source: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg");
    -webkit-mask-box-image-slice: 50 fill;
    -webkit-mask-box-image-repeat: round;
    mask-image: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg");
    mask-size: 100% 100%;
}

.surf-forbeginners .surf-forbeginners-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* nested = surf for advanced */

.surfboards-rent-guide .surf-forbAdvanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.surf-forbAdvanced .surf-forAdvanced-img {
    -webkit-mask-box-image-source: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg");
    -webkit-mask-box-image-slice: 50 fill;
    -webkit-mask-box-image-repeat: round;
    mask-image: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg");
    mask-size: 100% 100%;
}

.surf-forbAdvanced .surf-forAdvanced-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.surf-forbAdvanced .surf-forAdvanced-content h2 {
    font-size: 1.5rem;
}


/* nested = surf long board */

.surfboards-rent-guide .long-surfRental {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}

.long-surfRental-content-img {
    -webkit-mask-box-image-source: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg");
    -webkit-mask-box-image-slice: 50 fill;
    -webkit-mask-box-image-repeat: round;
    mask-image: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg");
    mask-size: 100% 100%;
}

.long-surfRental-content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* cta rent boards */

.cta-rent-boards {
    background-color: #4777A2;
    padding-block: 3rem;
    margin-top: 5rem;
}

.rental-hardtops,
.rental-wetsuits {
    color: white;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
}

.rental-hardtops .rental-hardtops-content h2,
.rental-wetsuits-content h2 {
    color: white !important;
    font-family: sans-serif;
}

.rental-hardtops .rental-hardtops-content a,
.rental-wetsuits-content a {
    outline: none !important;
    border: none;
    background-color: transparent;
    border: 1px solid white;
    padding-inline: 2rem;
    padding-bottom: 0;
    padding-top: 0.4rem;
    margin: 0 !important;
    display: flex;
    align-items: bottom;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
    color: white;
    transition: 0.3s ease-in-out;
}

.rental-hardtops .rental-hardtops-content a:hover,
.rental-wetsuits-content a:hover {
    background-color: white;
    color: black;
    transition: 0.3s ease-in-out;
}

.rental-hardtops .rental-hardtops-content a:hover span,
.rental-wetsuits-content a:hover span {
    color: black;
    transition: 0.3s ease-in-out;
}

.rental-hardtops .rental-hardtops-content a span,
.rental-wetsuits-content a span {
    color: white;
    font-size: 1.2rem;
    margin-top: 0.08rem;
}

.rental-hardtops-img,
.rental-wetsuits-img {
    -webkit-mask-box-image-source: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg");
    -webkit-mask-box-image-slice: 50 fill;
    -webkit-mask-box-image-repeat: round;
    mask-image: url("https://www.elementsurf.com/wp-content/themes/yootheme/css/../vendor/assets/uikit-themes/master-trek/images/mask-default-image.svg");
    mask-size: 100% 100%;
}

.rental-hardtops-img img,
.rental-wetsuits-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rental-wetsuits {
    margin-top: 3rem;
}


/* rent prices */
.surf-rental-prices {
    margin-block: 4rem;
}

.surf-rental-prices .container {
    width: 55% !important;
    margin: 0 auto;
}

.surf-rental-prices .container h2 {
    font-family: sans-serif;
    text-transform: uppercase;
    color: #4777A2;
    text-align: center;
    margin: 0 !important;
    font-size: 3rem;
}

.surf-rental-prices .price-table {
    margin-top: 3rem;
    background-color: #4777A2;
    padding: 2rem;
    color: white;
}

.surf-rental-prices .price-table h3 {
    color: white;
    font-family: sans-serif;
    margin-top: 2rem;
}


@media only screen and (max-width: 970px) {
    section.surfboards-rent-intro .surf-rent-intro {
        width: 100%;
    }

    .surfboards-rent-guide .container .head {
        margin-top: 3rem;
    }

    .surfboards-rent-guide .rent-content {
        grid-template-columns: 1fr;
        margin: 0 auto;
    }

    .surfboards-rent-guide .surf-forbeginners,
    .surfboards-rent-guide .surf-forbAdvanced,
    .surfboards-rent-guide .long-surfRental {
        grid-template-columns: 1fr;
    }

    .rental-hardtops,
    .rental-wetsuits {
        grid-template-columns: 1fr;
    }

    .surf-rental-prices .container {
        width: 95% !important;
    }
}

/* Board Shop Styles */
.board-shop {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.shop-header {
    text-align: center;
    margin-bottom: 40px;
}

.shop-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.shop-content {
    display: flex;
    gap: 30px;
}

/* Board Selector Styles */
.board-selector {
    width: 300px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.board-selector h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.filter-group ul {
    list-style: none;
    padding: 0;
}

.filter-group li {
    margin-bottom: 10px;
}

.range-slider {
    padding: 10px 0;
}

.range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 14px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
}

.btn-search,
.btn-clear {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-search {
    background-color: #5783CB;
    color: white;
}

.btn-clear {
    background-color: #e9ecef;
    color: black;
}

/* Board Grid Styles */
.board-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.board-card {
    background: white;
    height: fit-content;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.board-card img {
    width: 100%;
    min-height: 310px;
    max-height: 310px;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

.board-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.board-card .price {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin: 10px 0;
    color: #0e4091;
}

.board-card .description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.view-board {
    background-color: #5783CB;
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.view-board:hover {
    background-color: #fff;
    color: #5783cb;
    border: 1px solid #5783cb;
    transition: 0.3s ease-in-out;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination .page-link {
    width: 40px;
    height: 40px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    color: #333;
}

.pagination .page-link:hover {
    background-color: #5783CB;
    color: white;
    transition: 0.3s ease-in-out;
}

.pagination .page-link.active {
    background-color: #5783CB;
    border-color: #5783CB;
    color: #fff;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .shop-content {
        flex-direction: column;
    }

    .board-selector {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .board-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .shop-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .board-shop {
        padding: 30px 0;
    }

    .board-grid {
        grid-template-columns: 1fr;
    }

    .pagination button {
        width: 35px;
        height: 35px;
    }
}

/* Board Details Styles */
.board-details {
    padding: 40px 0;
    margin-top: 50px;
    background: #fff;
}

.board-header {
    text-align: left;
    margin-bottom: 30px;
}

.board-header h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 5px;
}

.board-header p {
    color: #666;
    font-size: 0.9rem;
}

.board-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: #fff;
}

/* Gallery Styles */
.board-gallery {
    width: 100%;
}

.main-image {
    width: 100%;
    height: 550px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.main-image img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
}

/* Board Info Styles */
.board-info {
    padding: 0;
}

.board-info h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.description,
.dimensions {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Specifications Grid */
.board-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.spec-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.spec-item i {
    font-size: 1.4rem;
    color: #5783CB;
}

.spec-details span {
    display: block;
    color: #666;
    font-size: 0.8rem;
}

.spec-details p {
    color: #333;
    font-size: 0.95rem;
    margin: 0;
}

/* Reservation Section */
.reservation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.reservation-info h3,
.delivery-options h3 {
    font-size: 1.7rem;
    color: #000;
}

.current-price {
    color: #0e4091;
    font-weight: 700;
    margin-bottom: 0 !important;
}

.price-period {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0 !important;
}

.pricing-details {
    margin: 15px 0;
}

.pricing-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0;
}

.reserve-btn {
    width: 100%;
    padding: 12px;
    background: #5783CB;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    background: #4668a3;
    transform: translateY(-2px);
}

/* Delivery Options */
.delivery-options {
    margin-top: 25px;
}

/* .delivery-options h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
} */

.delivery-methods {
    display: grid;
    gap: 12px;
}

.delivery-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.delivery-method i {
    font-size: 1.2rem;
    color: #5783CB;
}

.delivery-method p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .board-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .board-details {
        padding: 30px 0;
    }

    .board-header h1 {
        font-size: 1.75rem;
    }

    .board-specs {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 250px;
    }

    .main-image img {
        max-height: 200px;
    }
}

@media (max-width: 576px) {
    .board-content {
        gap: 20px;
    }

    .board-header {
        margin-bottom: 20px;
    }

    .main-image {
        height: 200px;
    }

    .main-image img {
        max-height: 150px;
    }

    .reserve-btn {
        padding: 10px;
    }
}

/* Checkout Page Styles */
.checkout-header {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 70px;
    text-align: center;
}

.checkout-section {
    padding: 50px 0;
    background-color: #fff;
}

.shopping-cart {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.cart-table {
    margin: 30px 0;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    background-color: #f8f9fa;
    padding: 12px;
    text-align: left;
}

.cart-table td {
    padding: 20px 12px;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
}

.product-info h4 {
    margin-bottom: 10px;
    color: #333;
}

.reservation-info {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.quantity-controls input {
    width: 50px;
    text-align: center;
    border: 1px solid #dee2e6;
    padding: 5px;
}

.cart-summary {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.summary-row.total {
    font-weight: bold;
    font-size: 1.2em;
    border-bottom: none;
}

.coupon-section {
    margin: 30px 0;
}

.coupon-input {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.coupon-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.apply-coupon {
    padding: 10px 20px;
    background: #5783CB;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.continue-shopping,
.checkout-btn {
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
}

.continue-shopping {
    background: #fff;
    border: 1px solid #5783CB;
    color: #5783CB;
}

.checkout-btn {
    background: #5783CB;
    border: none;
    color: white;
}

.checkout-btn:hover {
    background: #fff;
    border: 1px solid #5783CB;
    color: #5783CB;
    transition: 0.3s ease-in-out;
}

.continue-shopping:hover {
    background: #5783CB;
    color: white;
    transition: 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .cart-table {
        overflow-x: auto;
    }

    .cart-actions {
        flex-direction: column;
        gap: 15px;
    }

    .continue-shopping,
    .checkout-btn {
        width: 100%;
    }

    .coupon-input {
        flex-direction: column;
    }
}

/* Payment Page Styles */
.payment-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.login-notice {
    margin-bottom: 30px;
}

.login-notice a {
    color: #5783CB;
    text-decoration: none;
}

.form-section {
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.25rem;
}

.required:after {
    content: " *";
    color: red;
}

.btn-select-method {
    background-color: #ffc107;
    color: #000;
    padding: 12px;
    border: none;
}

.order-summary {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-row,
.total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.grand-total {
    font-weight: bold;
    font-size: 1.1em;
    border-bottom: none;
}

.btn-confirm-order {
    background-color: #ffc107;
    color: #000;
    padding: 15px;
    font-weight: 500;
    margin-top: 20px;
}

.form-check-input:checked {
    background-color: #5783CB;
    border-color: #5783CB;
}

@media (max-width: 768px) {
    .order-summary {
        margin-top: 30px;
    }
}


/*-----------------CART Rent------------------------*/
.remove-item-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 5px;
}

.remove-item-btn:hover {
    color: #bd2130;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.continue-shopping,
.checkout-btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.continue-shopping {
    background-color: #f8f9fa;
    color: #5783CB;
    border: 2px solid #5783CB;
}

.checkout-btn {
    background-color: #5783CB;
    color: white;
    border: none;
}

.cart-summary {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.summary-row.total {
    border-top: 2px solid #dee2e6;
    font-weight: bold;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #5783CB;
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.product-info h4 {
    margin-bottom: 0.5rem;
    color: #5783CB;
}

.reservation-info {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}


/*-----------------CHECKOUT RENT------------------------*/

.checkout-section {
    padding: .7rem 0;
}

.order-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 0.5rem;
}

.form-control:focus {
    border-color: #5783CB;
    box-shadow: 0 0 0 0.2rem rgba(87, 131, 203, .25);
}

.payment-methods {
    background: #fff;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.btn-primary {
    background-color: #5783CB;
    border-color: #5783CB;
}

.btn-primary:hover {
    background-color: #4570b8;
    border-color: #4570b8;
}

.list-group-item {
    border-radius: 0;
}

.badge {
    background-color: #5783CB !important;
}

.checkout-section h4 {
    color: #5783CB;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .order-md-1 {
        order: 2;
    }

    .order-md-2 {
        order: 1;
        margin-bottom: 2rem;
    }
}