


html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
section {
 position: relative !important;
  scroll-margin-top: 145px; /* ensures anchor links clear fixed header */
  /*overflow-x: hidden !important;*/
}
section.no-pad{
  position: relative;
  padding: 0;
  scroll-margin-top: 0;
}
.pb-6 {
  padding-bottom: 6rem !important;
}
.padded-right-2 {
  position: relative !important;
  float: right !important;
  padding-left: 2rem !important;
  width: unset;
  background: transparent;
  height: 300px !important;
}
.row.g-4 > div {
  display: flex;
}
article.h-100 {
  display: flex;
  flex-direction: column;
}
article.h-100 .btn {
  margin-top: auto;
}
article img {
  width: 100%;
  height: 230px !important;
  object-fit: cover;        /* crop evenly */
  object-position: center;  /* keep focus central */
  border-radius: 0.5rem;
  background-color: #f7f7f7; /* subtle placeholder tone */
}

#faq {
  padding: 20px 0 150px 20px;
}

.alert-info-fairbook {
  --bs-alert-color: unset;
  --bs-alert-bg: #fbe7fd;
  --bs-alert-border-color: none;
  --bs-alert-link-color: unset;
}
.alert-info-fairbook a {
  text-decoration: underline;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgb(108, 28, 91) !important;
}
.btn-fairbook {
  color: #fff;
  background-color: #671d5b;
  border: none;
  padding: 8px 16px;
  font-weight: 600;
}
.btn-fairbook:hover {
  color: #fff;  
  background-color: #9d0f58;
}
/* ========== PAGE HERO (Featured Image Banner) ========== */
  .page-hero {
    position: relative;
    overflow: hidden;
  }

  .page-hero img.hero-banner {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: brightness(70%);
  }

  .page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(103, 29, 91, 0.5); /* subtle Fairbook tint */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-hero-overlay h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
  }



/* ========== HEADER ========== */
  header.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: transparent;
    color: #fff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  header .logo img {
    max-width: 68%;
    max-height: 170px;
  }
  .nav-desktop a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  .nav-desktop a:hover {
    color: #5e0349;
  }


  /* Burger button */
  .burger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    z-index: 10000;
  }
  .burger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s ease;
  }

  .burger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
  }


  /* Default: non-service pages */
  header.site-header.scrolled,
  header.site-header.static {
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    background: url('assets/images/hero-lights.png') no-repeat,
                linear-gradient(135deg,#671d5b,#9d0f58);
  }

  button.burger.scrolled span {
    background: #fff;
  }

  header.site-header.scrolled .nav-desktop a {
    color: #fff;
  }

  /* Fairbook service templates */
  header.site-header.fairbook-service {
    background: transparent;
    box-shadow: none;
  }

  header.site-header.fairbook-service.scrolled {
    background: linear-gradient(135deg,#671d5b,#9d0f58);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }

/*
  header.site-header.fairbook-service .nav-desktop a {
    color: #fff;
  }

  button.burger.fairbook-service span,
  button.burger.scrolled.fairbook-service span {
    background: #fff;
  }
*/

/* ========== MOBILE NAV ========== */
  #menu-header-menu {
    list-style: none;
  }
  #main-content {
    margin-top: 98px;
  }

  .nav-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #671d5b;
    padding: 80px 25px 40px;
    box-shadow: 2px 0 15px rgba(0,0,0,0.3);
    transition: left 0.35s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 9999;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;  
  }
  .nav-mobile.active { left: 0; }
  .nav-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-mobile li { margin: 25px 0; }
  .nav-mobile a {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: color 0.2s, transform 0.2s;
  }
  .nav-mobile a:hover {
    color: #ffd1ec;
    transform: translateX(5px);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    z-index: 1;
  }
  .nav-overlay.active { display: block; }

  /* Reset list style */
  li.ls-0 { list-style: none; }

/* ========== HERO ========== */
  .hero {
    background: url('assets/images/hero-lights.png') left/cover no-repeat, linear-gradient(135deg,#671d5b,#9d0f58);
    color: #fff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 0;
    overflow: hidden;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(2.5rem,5vw,3rem);
    font-weight: 700;
    line-height: 1;
  }
  .hero p.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 15px;
  }
  .btn-cta {
    background: #fff;
    color: #671d5b;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
  }
  .btn-cta:hover { background:#ccb0c7; color:#fff; }

  .hero-image{
    margin-bottom: -10px;
  }

/* ========== PROBLEMS ========== */
  .problems {
    padding: 100px 20px;
    background: #fdf7fa;
  }
  .problems .section-title {
    color: #82185a;
    font-size: 2rem;
    font-weight: 700;
  }
  .problem-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
    padding: 30px;
    width: 100%;
  }
  .problem-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  }
  .icon-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg,#82185a,#9d0f58);
    display: flex;
    align-items: center; justify-content: center;
    font-size: 2rem; color: #fff;
    margin: 0 auto 20px;
  }
  .btn-link { color:#9d0f58; font-weight:600; text-decoration:none; }
  .btn-link:hover { text-decoration:underline; }

/* ========== WHY ========== */
  .why {
    padding: 60px 0 160px 20px;
    background: #fdf7fa;
  }
  .why h2 {
    color: #82185a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .why-icon {
    font-size: 4rem;
    color: #671d5b;
    margin-bottom: 15px;
    transition: 0.3s;
  }
  .why-icon:hover {
    color: #9d0f58;
    transform: scale(1.2);
  }

/* ========== CONTACT ========== */
  .contact {
    padding: 30px 0 100px 0px;
    background: #fdf7fa;
  }
  .contact h2,
  .contact h4 {
    color: #82185a;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .contact a {
    color: #671d5b;       
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .contact a:hover {
    color: #9d0f58;       
    text-decoration: underline;
  }
  .contact-icon {
    font-size: 1rem;
    color: #671d5b;
  }
  .contact-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
  }
  /* Form fields */
.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 14px 16px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}


  .contact .form-control:focus {
    border-color: #9d0f58;
    box-shadow: 0 0 0 0.2rem rgba(157, 15, 88, 0.25);
    outline: none;
  }

  /* Form heading */
  .contact form h4 {
    font-weight: 700;
    color: #671d5b;
  }

  /* Submit button refinement */
  .btn-submit {
    background: linear-gradient(135deg,#671d5b,#9d0f58);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  .btn-submit:hover {
    background: linear-gradient(135deg,#82185a,#671d5b);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }


/* Fairbook Contact Form Overrides */
.wpcf7 form .wpcf7-response-output {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border: none;
  border-left: 5px solid #82185a; /* brand accent */
  background: #fdf7fa;
  color: #333;
  font-size: 1rem;
  border-radius: 8px;
}

/* Success state */
.wpcf7 form.sent .wpcf7-response-output {
  border-left-color: #2c9b52; /* green success */
  background: #e8f9ee;
  color: #1a4d2e;
}

/* Error state */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-left-color: #dc3232;
  background: #fdecec;
  color: #641414;
}

/* Validation tip under inputs */
.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Input fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 14px 16px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  border-color: #82185a;
  box-shadow: 0 0 0 3px rgba(130, 24, 90, 0.1);
  outline: none;
}

/* Submit button */
.wpcf7 .wpcf7-submit {
  background-color: #82185a;
  border: none;
  border-radius: 50px;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  width: 100%;
  transition: background-color 0.3s ease;
}

.wpcf7 .wpcf7-submit:hover {
  background-color: #9d0f58;
}

/* Spinner (loading indicator) */
.wpcf7-spinner {
  background-color: transparent !important;
  border: 3px solid #ccc;
  border-top-color: #82185a;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

  

/* ========== TEAM ========== */
  .team {
    padding: 140px 0;
    background: #fff;
  }
  .team .section-title {
    color: #82185a;
    font-size: 2rem;
    font-weight: 700;
  }
  .team-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 15px;
    transition: .3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }
  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }
  .team-photo {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 50%;
  }
  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
  }
  .team-photo-lg {
    max-width: 830px;
    height: 386px;
    width: 100%;
  } 
  .team-photo-lg img {
    width: 100%;
    object-fit: cover;
    transition: .3s;
  }  
  .team-card:hover img {
    transform: scale(1.05);
  }
  .team-card h5 {
    color: #671d5b;
    font-weight: 700;
  }
  .team-card p {
    color: #555;
    margin-bottom: 0;
  }
/* ========== TESTIMONIALS ========== */
section.testimonials {
  background: #fdf7fa;
  padding: 100px 20px;
  position: relative;
}

/* === Card layout === */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: flex-start;
  padding: 40px 50px;
  position: relative;
}

.testimonial-icon {
  flex-shrink: 0;
  font-size: 3rem;
  color: #82185a;
  line-height: 1;
  margin-top: 5px;
  opacity: 0.2;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  margin: 0 0 1.5rem 0;
}

.testimonial-card h6 {
  font-weight: 700;
  color: #671d5b;
  margin-bottom: 0.25rem;
}

.testimonial-card small {
  color: #777;
}

/* === Carousel behaviour === */
.carousel-item {
  display: flex;
  justify-content: center;
}

.carousel.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.7s;
}

.carousel.carousel-fade .carousel-item.active,
.carousel.carousel-fade .carousel-item-next.carousel-item-start,
.carousel.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
  z-index: 1;
}

.carousel.carousel-fade .active.carousel-item-start,
.carousel.carousel-fade .active.carousel-item-end {
  opacity: 0;
  z-index: 0;
}

/* === Carousel controls and indicators === */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(35%) sepia(60%) saturate(600%) hue-rotate(290deg);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-indicators [data-bs-target] {
  background-color: #671d5b;
  width: 10px;
  height: 10px;
}

.carousel-indicators {
  position: static;
  margin-top: 2rem;
}

/* === Responsive adjustments === */
@media (max-width: 768px) {
  #faq {
    padding: 20px 10px 160px;
  }
  .why {
    padding: 20px 10px 90px;
  }  
  section.testimonials {
    padding: 60px 0;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .testimonial-icon {
    margin: 0 auto 1rem;
    font-size: 2rem;
    opacity: 0.3;
  }

  .testimonial-card p {
    font-size: 0.95rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none; /* hide arrows on mobile */
  }

  .carousel-indicators {
    margin-top: 1.5rem;
  }
}

/* === Tiny devices (≤400px) === */
@media (max-width: 400px) {
  .testimonial-card {
    padding: 1.25rem;
  }
  .testimonial-card p {
    font-size: 0.9rem;
  }
}



/* ========== FOOTER ========== */
  footer.footer {
    padding: 80px;
    text-align: center;
  }
  footer strong { color:#671d5b; }

  footer.footer nav {
    justify-content: center;
    margin-bottom: 15px;
  }
  footer.footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  footer.footer nav a {
    text-decoration: none;
    color: #671d5b;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-right: 3rem;
  }
  footer.footer nav a:hover {
    color: #9d0f58;
  }


  /* --- Social links --- */
  footer.footer .social-link i {
    font-size: 1.75rem;
    color: #671d5b;
    transition: color 0.3s ease, transform 0.2s ease;
  }
  footer.footer .social-link:hover i {
    color: #9d0f58;
    transform: scale(1.1);
  }
  footer.footer .social-link.facebook:hover i { color: #1877f2; }
  footer.footer .social-link.twitter:hover i { color: #1da1f2; }
  footer.footer .social-link.linkedin:hover i { color: #0a66c2; }

  /* --- Newsletter form --- */
  footer.footer .footer-newsletter form {
    max-width: 600px;
    margin: 0 auto;
  }
  footer.footer .footer-newsletter input[type="email"] {
    border: 2px solid #671d5b;
    border-radius: 6px;
    padding: 8px 12px;
    flex: 1 1 auto;
    min-width: 180px;
  }
  footer.footer .footer-newsletter .btn {
    background-color: #671d5b;
    border: none;
    padding: 8px 16px;
    font-weight: 600;
  }
  footer.footer .footer-newsletter .btn:hover {
    background-color: #9d0f58;
  }

  footer.footer .footer-credits {
    color: #666;
  }

  footer.footer .footer-credits a.designer-link {
    color: #671d5b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  footer.footer .footer-credits a.designer-link:hover {
    color: #9d0f58;
    text-decoration: underline;
  }

  footer.footer .footer-credits .mobile-div {
    display: inline-block;
    vertical-align: middle;
  }


  footer.footer .footer-credits .mobile-div img {
    max-height: 60px;
    width: auto;
  }

  @media (max-width: 768px) {
    footer.footer {
      padding: 20px;
      text-align: center;
    }    
    footer.footer nav ul {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    footer.footer nav a {
      display: block;
      margin-right: 0;
    }    
    footer.footer .footer-credits .mobile-div {
      display: block;
      margin: 0 auto 1rem;
    }
  }


  /* --- Address link --- */
  footer.footer .footer-address a {
    color: #671d5b;
  }
  footer.footer .footer-address a:hover {
    color: #9d0f58;
    text-decoration: underline;
  }

  /* --- Responsive --- */
  @media (max-width: 768px) {
    footer.footer nav ul {
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    footer.footer .footer-newsletter form {
      flex-direction: column;
      gap: 0.5rem;
    }
  }



/* ========== WAVES ========== */
  .wave-divider-single {
    position: relative;
    left: 0; right: 0;
    bottom: -1px;
    line-height: 0;
  }

  .wave-divider-single svg {
    display: block;
    width: 100%;
    height: 120px;
    transform: rotate(180deg);
  }
  .wave-divider-single.flip svg path {
    transform: scaleY(-1);
    transform-origin: center;
  }



  .wave-divider {
    position: absolute;
    left: 0; right: 0;
    bottom: -1px;
    line-height: 0;
  }
  .wave-divider svg {
    display: block;
    width: 100%;
    height: 120px;
    transform: rotate(180deg);
  }
  .wave-divider.flip svg path {
    transform: scaleY(-1);
    transform-origin: center;
  }


/* ========== PAGINATION ========== */
  .pagination,
  .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .page-numbers {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
  }

  .page-numbers:hover {
    background-color: #82185a;
    color: #fff;
    border-color: #82185a;
  }

  .page-numbers.current {
    background-color: #82185a;
    color: #fff;
    border-color: #82185a;
    cursor: default;
  }

  .page-numbers.prev,
  .page-numbers.next {
    font-weight: 600;
  }












/* =========================================================
RESPONSIVE ADJUSTMENTS
Desktop / Tablet / Mobile
========================================================= */

  /* --- Large Desktop (1200px and up) --- */ 
  @media (min-width: 1200px) {
    /* Ideal for 27"+ displays */

    .main-image {
      position: relative;
      bottom: -100px;
      width: 600px;
    }


    .hero-image {
      margin-bottom: -100px;
      margin-left: 0;
      position: relative;
      z-index: 0;
    }
    
    .hero-circle {
      position: absolute;
      z-index: 0;
    } 
    
  }

  /* --- Desktop / Laptop (992px – 1199px) --- */
  @media (min-width: 992px) and (max-width: 1199.98px) {

    .main-image {
      position: relative;
      bottom: -100px;
      width: 600px;
    }


    .hero-image {
      margin-bottom: -150px;
      margin-left: -30px;
      z-index: 1;
      position: relative;
    }
    .hero-circle {
      position: absolute;
      right: -240px;
      bottom: -70px;
      z-index: 0;
      max-width: 80%  !important;    
    }     

  }

  /* --- Tablet (768px – 991px) --- */
  @media (min-width: 768px) and (max-width: 991.98px) {
    
    .main-image {
      position: relative;
      bottom: 0px;
      width: auto;
    }


    #main-content {
      margin-top: 90px; 
    }

    .hero-image {
      margin-bottom: -150px;
      margin-left: -30px;
      z-index: 1;
      position: relative;
    }
    .hero-circle {
      position: absolute;
      right: 13%;
      top: 400px;
      z-index: 0;
      max-width: 70% !important;
    }    

    .hero { padding: 200px 0 0; }
    .hero h1 { font-size: 2rem; }
    .hero p.lead { font-size: 1rem; }
    header .logo img { max-height: 110px; }
    .hero-photo img { max-height: 300px; margin-top: 20px; }
    .problem-box { padding: 20px; }

  }

  /* --- Mobile (up to 767px) --- */
  @media (max-width: 767.98px) {
    html, body {
      overflow-x: hidden;
      width: 100%;
    }
    .hero h1 { font-size: 2rem; }
    #main-content {
      margin-top: 20px; 
    }    
    header.site-header.fairbook-service,
    header.site-header {
      position: relative;
      top: 0;
      width: 100%;
      background: #82185a;
      box-shadow: 0 2px 6px rgba(0,0,0,.05);
    }
    .hero {
      position: relative;
      padding: 70px 0 0;
    }   
    .hero-image {
      margin-bottom: 0px;
      margin-left: -30%;
    }
    .hero-circle {
      display: none;
    }    

  }
  
  /* --- Mobile (up to 421px) legacy phones (iphone 5/6)--- */
/* Phones portrait (Honor 90, iPhone, Galaxy, etc.) */
@media (max-width: 575.98px) {
    .footer-logo img {
      width: 180px;
      margin: 0 auto;
    }
    .hero img {
      width: 100%;
      height: auto;
    }
    #main-content {
      margin-top: 0px; 
    }    
    .hero-image {
      margin-bottom: 0px;
      margin-right: auto;
      margin-left: auto;
      width: 100%;
    }
  }

  /* --- iPad fine-tuning (portrait + landscape) --- */
  @media only screen
    and (min-device-width: 768px)
    and (max-device-width: 1024px)
    and (-webkit-min-device-pixel-ratio: 1) {


  }

