@media (max-width: 680px) {

  * {
    /* border: 1px solid #808080; */
    scroll-behavior: smooth;
  }
  body, html {
    overflow-x: hidden;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* presets */
  section {
    padding-top: 50px;
    padding-bottom: 20px;
    min-height: fit-content;
  }
  .section-heading {
    font-size: 16px;
  }
  .section-tag {
    font-size: 22px;
    margin-bottom: 20px;
  }

  /* header */
  .header {
    padding: 20px;
  }
  .header .logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0px;
  }
  .header .nav {
    display: none;
  }
  .header .menu-icon {
    display: block;
    width: fit-content;
  }
  .header.sticky .menu-icon {
    color: var(--color-primary);
  }
  
  .header .menu-dropdown {
    display: none;
    width: 0%;
    background: var(--color-white);
    gap: 10px;
    text-align: center;
    top: 0;
    left: 0;
    z-index: 99999;
  }
  .header .menu-dropdown a {
    display: block;
    background: transparent;
    padding: 20px;
  }
  .header .menu-dropdown a:hover {
    background: #00000031;
  }
  .header .menu-dropdown.active {
    display: block;
    width: 100%;
  }

  /* hero */
  .hero {
    min-height: 100vh;
  }
  /* about */
  .about .content {
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .about .content .image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
  }
  .about .content .text {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
  .swipe-display {
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    letter-spacing: 10px;
  }

  /* services */
  .services .brief {
    flex-direction: column-reverse;
    gap: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .services .brief .text {
    width: 100%;
    font-size: 24px;
    text-align: center;
    line-height: 32px;
    padding: 20px;
  }
  .services .brief .text::before {
    top: 20px;
    left: 3%;
    font-size: 50px;
  }
  .services .brief .text::after {
    bottom: 0px;
    right: 3%;
    font-size: 50px;
  }
  .services .brief .image {
    width: 100%;
    border-radius: 15px;
    height: 300px;
  }
  .services .explore {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    border-top: 1px solid #00000031;
    border-bottom: 1px solid #00000031;
    padding: 10px 0;
  }
  .services .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }

  /* lookbook */
  .gallery .gallery-grid {
    padding: 0px;
    margin-bottom: 10px;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 10px;
  }
  .gallery .gallery-grid .gallery-card {
    height: 200px;
    object-fit: contain;
  }

  /* reviews */
  .reviews {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .reviews .swiper {
    width: calc(100vw - 50px);
    margin-top: 20px;
  }
  .reviews .review-slider {
    padding-top: 20px;
    margin-left: 10px;
  }
  .reviews .review-slider .customer-reviews {
    min-width: calc(100vw - 52px);
    max-width: calc(100vw - 52px);
  }
  .reviews .review-slider .customer-reviews .message {
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    padding: 0 30px;
    margin-bottom: 5px;
    margin-left: 5px;
  }
  .reviews .review-slider .customer-reviews .message::before {
    top: -20px;
    left: 3%;
    font-size: 40px;
  }
  .reviews .review-slider .customer-reviews .message::after {
    bottom: -30px;
    right: 4%;
    font-size: 40px;
  }
  .reviews .review-slider .customer-reviews .profile {
    gap: 10px;
    margin-left: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
  }
  .reviews .review-slider .customer-reviews .profile .image {
    width: 30px;
    height: 30px;
  }
  .reviews .review-slider .customer-reviews .profile .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .reviews .review-slider .customer-reviews .profile p {
    font-size: 14px;
  }

  /* location */
  .location {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .location .wrap {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 20px;
  }
  .location .wrap .text,
  .location .wrap .map {
    width: 100%;
    height: auto;
  }
  .location .wrap .text .state {
    font-size: 28px;
    line-height: 32px;
  }
  .location .wrap .map iframe {
    height: 300px;
  }

  /* booking */
  .booking-form {
    max-width: 100%;
    min-width: 100%;
    margin: 10px auto;
    padding: 0px;
  }
  .booking .steps {
    margin-bottom: 10px;
  }
  .booking .booking-form .step {
    border-radius: 10px;
    padding: 10px;
  }
  .booking .booking-form .step h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  /* footer */
  .footer {
    gap: 20px;
    text-align: left;
    flex-direction: column;
  }
  .footer .company-info,
  .footer .quick-links,
  .footer .services-links,
  .footer .contact-links {
    width: 100%;
  }
  .footer .company-info .brief {
    width: 100%;
  }
  .copyright {
    width: 100%;
    padding: 20px;
    font-size: 11px;
    text-align: center;
  }
  .overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000000e6;
  }
  .overlay.active {
    display: block;
  }
}

@media (min-width: 680px) and (max-width: 1023px) {
  * {
    /* border: 1px solid #808080; */
    scroll-behavior: smooth;
  }
  body, html {
    overflow-x: hidden;
  }
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
  
  section {
    padding-top: 50px;
    padding-bottom: 20px;
    min-height: fit-content;
  }

  /* header */
  .header {
    width: 100%;
    padding: 20px 60px;
  }
  .header .nav {
    display: none;
  }
  .header .menu-icon {
    display: block;
  }
  .header.sticky .menu-icon {
    color: var(--color-primary);
  }
  .header .menu-dropdown {
    display: none;
    width: 0%;
    background: var(--color-white);
    gap: 10px;
    text-align: center;
    top: 0;
    left: 0;
    z-index: 99999;
  }
  .header .menu-dropdown a {
    display: block;
    background: transparent;
    padding: 20px;
  }
  .header .menu-dropdown a:hover {
    background: #00000031;
  }
  .header .menu-dropdown.active {
    display: block;
    width: 100%;
  }

  /* hero */
  .hero {
    min-height: 100vh;
  }
  /* about */
  .about .content {
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .about .content .image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
  }
  .about .content .text {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
  }
  .swipe-display {
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    letter-spacing: 10px;
  }

  /* services */
  .services .brief {
    flex-direction: column-reverse;
    gap: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .services .brief .text {
    width: 100%;
    font-size: 24px;
    text-align: center;
    line-height: 32px;
    padding: 20px;
  }
  .services .brief .text::before {
    top: 20px;
    left: 3%;
    font-size: 50px;
  }
  .services .brief .text::after {
    bottom: 0px;
    right: 3%;
    font-size: 50px;
  }
  .services .brief .image {
    width: 100%;
    border-radius: 15px;
    height: 300px;
  }
  .services .explore {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    border-top: 1px solid #00000031;
    border-bottom: 1px solid #00000031;
    padding: 10px 0;
  }
  .services .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }

  /* lookbook */
  .gallery .gallery-grid {
    padding: 0px;
    margin-bottom: 10px;
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    gap: 20px;
  }
  .gallery .gallery-grid .gallery-card {
    height: 250px;
    object-fit: contain;
  }

  /* review */
  .reviews {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .reviews .swiper {
    width: calc(100vw - 120px);
    margin-top: 20px;
  }
  .reviews .review-slider {
    padding-top: 20px;
    margin-left: 10px;
  }
  .reviews .review-slider .customer-reviews {
    min-width: calc(100vw - 124px);
    max-width: calc(100vw - 124px);
  }
  .reviews .review-slider .customer-reviews .message {
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    padding: 0 30px;
    margin-bottom: 5px;
    margin-left: 5px;
  }
  .reviews .review-slider .customer-reviews .message::before {
    top: -20px;
    left: 3%;
    font-size: 40px;
  }
  .reviews .review-slider .customer-reviews .message::after {
    bottom: -30px;
    right: 4%;
    font-size: 40px;
  }
  /* location */
  .location {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .location .wrap {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 20px;
  }
  .location .wrap .text,
  .location .wrap .map {
    width: 100%;
    height: auto;
  }
  .location .wrap .text .state {
    font-size: 28px;
    line-height: 32px;
  }
  .location .wrap .map iframe {
    height: 400px;
  }

  /* footer */
  .footer {
    gap: 20px;
    text-align: left;
    flex-direction: column;
  }
  .footer .company-info,
  .footer .quick-links,
  .footer .services-links,
  .footer .contact-links {
    width: 100%;
  }
  .footer .company-info .brief {
    width: 100%;
  }
  .copyright {
    width: 100%;
    padding: 20px;
    font-size: 11px;
    text-align: center;
  }
  .overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000000e6;
  }
  .overlay.active {
    display: block;
  }
}