/* Universal box-sizing for consistent behavior */
* {
  box-sizing: border-box;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  background-image: url('../assets/hero-image.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Butler Ultra Light', sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--black);
  top: -10px;
  z-index: 999;
}

.logo img {
  width: 250px;
  height: auto;
}

/* HERO TEXT STYLES */
.hero-text {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1.4;
  padding: 0 20px;
  max-width: 1400px;
  width: 1400px;
}

.hero-text strong {
  font-weight: 600;
}

.hero-text em {
  font-style: italic;
  font-weight: 400;
}

/* STRATEGY SECTION */
.strategy-section {
  background-color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.strategy-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--black);
}

.strategy-section h4 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--black);
}

.strategy-section p {
  font-size: 1.2rem;
  color: var(--black);
  line-height: 1.6;
}

/* MISSION SECTION */
.mission-section {
  background-color: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-image {
  flex: 1;
  .keepitreal-content h3 {
    margin-bottom: 24px !important;
  }
  .keepitreal-content h1 {
    margin-bottom: 32px !important;
  }
}

.mission-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-text {
  flex: 1;
  text-align: left;
  padding-top: 40px;
  margin-top: 16px;
}

.mission-text h1 {
  font-size: 3rem;
  margin-bottom: 50px;
  color: var(--black);
}

.mission-text h4 {
  font-size: 1.3rem;
  margin-bottom: 45px;
  color: var(--black);
  line-height: 1.5;
}

.mission-text p {
  font-size: 1.1rem;
  color: var(--black);
  line-height: 1.6;
}

/* STORY SECTION */
.story-section {
  background-color: var(--white);
  padding: 100px 0;
  position: relative;
}

.story-images {
  display: none; /* Hide on desktop, we'll use story-images-desktop instead */
}

.story-images-mobile {
  display: none;
}

.story-images-desktop {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0 50px 0;
}

.profile-1 {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: auto;
  border: 3px solid var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-1:hover {
  transform: scale(1.05);
  opacity: 1;
}

.profile-2 {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: auto;
  border: 3px solid var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-2:hover {
  transform: scale(1.05);
  opacity: 1;
}

.story-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.story-content h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  color: var(--black);
  letter-spacing: 0.1em;
}

.story-content h4 {
  font-size: 1.4rem;
  margin-bottom: 50px;
  color: var(--black);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.story-text {
  margin-bottom: 50px;
}

.story-text p {
  font-size: 1.1rem;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: left;
}

.story-content h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--black);
  font-style: italic;
}

.story-content .btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border: 2px solid var(--black);
  background-color: transparent;
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.story-content .btn:hover {
  background-color: var(--black);
  color: var(--white);
}

/* IMAGE OVERLAY SECTION */
  .keepitreal-content {
    display: none;
  }
.image-overlay-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--black);
}

.section-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.white-overlay-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 70%;
    background-color: var(--white);
    border-top: 1px solid var(--black);
    border-left: 1px solid var(--black);
    border-right: 1px solid var(--black);
    z-index: 2;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.white-overlay-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.underline {
  width: 60px;
  height: 2px;
  background-color: var(--black);
  margin-bottom: 30px;
}

.white-overlay-box h1 {
  font-size: 2.2rem;
  color: var(--black);
  margin-bottom: 25px;
  line-height: 1.3;
}

.white-overlay-box p {
  font-size: 1rem;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 30px;
}

.white-overlay-box .btn {
  align-self: flex-start;
}

/* FOOTER */
.footer {
  background-color: var(--white);
  padding: 80px 0 40px;
  border-top: 1px solid var(--black);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--beige);
}

.footer-logo img {
  width: 180px;
  height: auto;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 50px;
}

.footer-section {
  padding: 30px 20px;
  border-right: 1px solid var(--beige);
}

.footer-section:last-child {
  border-right: none;
}

.footer-section h4 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200, 184, 149, 0.3);
}

.footer-section ul li:last-child {
  border-bottom: none;
}

.footer-section ul li a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer-section ul li a:hover {
  color: var(--beige);
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--black);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--black);
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--beige);
  transform: scale(1.1);
  border-color: var(--beige);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--black);
}

.footer-bottom p {
  color: var(--black);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

/* RESPONSIVE MEDIA QUERIES */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .story-images {
    display: none;
  }
  .story-images-desktop {
    display: none !important;
  }
  .story-images-mobile {
    display: flex !important;
  }
  
  .hero-text {
    font-size: 2.2rem;
    max-width: 900px;
    width: 90%;
  }
  
  .logo img {
    width: 200px;
  }
  
  .mission-content {
    gap: 60px;
    max-width: 1000px;
  }
  
  .story-content {
    max-width: 700px;
    padding: 0 20px;
  }
  
  .story-content h1 {
    font-size: 3rem;
    margin-bottom: 40px;
  }
  
  .story-images-mobile {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .profile-1 {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 150px;
    height: 150px;
    border: 3px solid var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  .profile-2 {
    position: relative;
    bottom: auto;
    right: auto;
    transform: none;
    width: 150px;
    height: 150px;
    border: 3px solid var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  .white-overlay-box {
    width: 90vw;
    max-width: 98vw;
    min-height: 220px;
    padding: 32px 18px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
  }
  
  .white-overlay-box h1 {
    font-size: 2rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .image-overlay-section .section-image {
    display: none;
  }
  .keepitreal-cta {
    display: block;
    margin: 30px auto 0 auto !important;
    text-align: center;
  }
  .hero {
    background-size: cover;
    background-position: center center;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-attachment: scroll;
    min-width: 100vw;
  }
  
  .hamburger {
    right: 30px;
    top: 30px;
    width: 50px;
    height: 50px;
  }
  
  .hamburger div {
    width: 25px;
  }
  
  .hero-text {
    font-size: 1.8rem;
    width: 95%;
    padding: 0 15px;
  }
  
  .logo img {
    width: 180px;
  }
  
  .scroll-arrow {
    width: 40px;
    height: 40px;
    bottom: 20px;
  }
  
  .scroll-arrow span {
    font-size: 1.2rem;
  }
  
  /* Strategy Section */
  .strategy-section {
    padding: 80px 0;
  }
  
  .strategy-section h2 {
    font-size: 2.5rem;
  }
  
  .strategy-section h4 {
    font-size: 1.3rem;
  }
  
  .strategy-section p {
    font-size: 1.1rem;
  }
  
  /* Mission Section */
  .mission-section {
    padding: 80px 0;
  }
  
  .mission-content {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  
  .mission-text h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .mission-text h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }
  
  /* Story Section */
  .story-section {
    padding: 80px 0;
  }
  
  .story-content {
    padding: 0 20px;
  }
  
  .story-content h1 {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
  
  .story-content h4 {
    font-size: 1.2rem;
  }
  
  .story-images-desktop {
    display: none; /* Hide desktop images on tablet */
  }
  
  .story-images-mobile {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
  }
  
  .story-images-mobile .profile-1,
  .story-images-mobile .profile-2 {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    transform: none;
    width: 130px;
    height: 130px;
    border: 3px solid var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Image Overlay Section */
  .image-overlay-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 400px;
    max-height: 100vh;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
  }
  .section-image img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
  }
  .white-overlay-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
    max-width: 98vw;
    min-height: 80vh;
    height: auto;
    margin: 0;
    z-index: 3;
    padding: 7vh 4vw 7vh 4vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .white-overlay-box h1 {
    font-size: 1.8rem;
    margin-top: 50px;
    text-align: center;
  }
  .white-overlay-box h3 {
    font-size: 1.1rem;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .hero {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    background-attachment: scroll;
    position: relative;
  }
  
  .hamburger {
    right: 20px;
    top: 20px;
    width: 45px;
    height: 45px;
  }
  
  .hamburger div {
    width: 22px;
    height: 1.5px;
  }
  
  .hero-text {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .logo {
    top: -20px;
  }
  
  .logo img {
    width: 150px;
  }
  
  /* Navigation Menu */
  .nav-menu {
    width: 100%;
    right: -100%;
  }
  
  .nav-content {
    padding: 80px 20px 20px;
  }
  
  .nav-links a {
    font-size: 1.3rem;
    padding: 15px 0;
  }
  
  /* Strategy Section */
  .strategy-section {
    padding: 60px 0;
  }
  
  .strategy-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .strategy-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .strategy-section p {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  /* Mission Section */
  .mission-section {
    padding: 60px 0;
    position: relative;
  }

  .mission-content {
    padding: 0 15px;
    flex-direction: column;
    gap: 0;
  }

  .mission-text {
    margin-top: 32px;
  }

  .mission-text h1 {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .mission-text h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .mission-text p {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 40px;
    padding-top: 0;
    padding-bottom: 0;
    border-top: none;
  }
  
  /* Story Section */
  .story-section {
    padding: 60px 0;
  }
  
  .story-content {
    padding: 0 15px;
  }
  
  .story-content h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
  }
  
  .story-content h4 {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .story-images-desktop {
    display: none; /* Hide desktop images on mobile */
  }
  
  .story-images-mobile {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .story-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .story-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .story-images-mobile .profile-1,
  .story-images-mobile .profile-2 {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    transform: none;
    width: 110px;
    height: 110px;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Image Overlay Section */
  .image-overlay-section {
    height: 60vh;
    margin-top: 60px;
  }
  
  .white-overlay-box {
    padding: 30px 15px;
    margin-top: 0;
  }
  
  .white-overlay-box h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .underline {
    width: 40px;
    margin-bottom: 20px;
  }
  
  .white-overlay-box h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .white-overlay-box p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/* Mobile devices */
@media (max-width: 500px) {
  .footer-sections {
    grid-template-columns: 1fr;
  }
  .footer-section {
    border-right: none;
  }
  .keepitreal-content {
    display: block !important;
    padding: 50px 32px 48px 32px;
    background: var(--white);
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    margin-bottom: 32px !important;
  }
  .keepitreal-content h3 {
    margin-bottom: 24px !important;
  }
  .keepitreal-content h1 {
    margin-bottom: 32px !important;
  }
  .white-overlay-box {
    display: none !important;
  }
  .image-overlay-section {
    background: var(--white) !important;
    position: relative;
    height: auto !important;
    min-height: 0 !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    border-top: none !important;
    overflow: visible;
  }
  .image-overlay-section .section-image {
    display: none !important;
  }
  .keepitreal-content .underline {
    display: none !important;
  }
}

/* Responsive box for .keepitreal-content between 501px and 900px */
@media (min-width: 501px) and (max-width: 900px) {
  .keepitreal-content {
    display: block !important;
    max-width: 700px;
    margin: 40px auto 32px auto !important;
    padding: 48px 40px 48px 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .keepitreal-content h3 {
    margin-bottom: 24px !important;
  }
  .keepitreal-content h1 {
    margin-bottom: 32px !important;
  }
  .image-overlay-section .section-image {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    min-height: 300px;
    max-width: 100vw;
    z-index: 1;
    overflow: hidden;
  }
  .image-overlay-section .section-image img {
    width: 100vw;
    height: auto;
    object-fit: cover;
    display: block;
  }
}

/* Responsive box for .keepitreal-content between 901px and 1400px */
@media (min-width: 901px) and (max-width: 1400px) {
  .keepitreal-content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    max-width: 700px;
    flex-shrink: 1;
    flex-grow: 1;
    margin: 60px auto 40px auto !important;
    padding: 40px 32px 40px 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    box-sizing: border-box;
  }
  .keepitreal-content h3 {
    margin-bottom: 24px !important;
    font-size: 0.9rem !important;
    margin-top: 0 !important;
    width: 100%;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .keepitreal-content h1 {
    margin-bottom: 32px !important;
    font-size: 1.2rem !important;
    word-break: break-word;
    hyphens: auto;
    margin-top: 0 !important;
    width: 100%;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .keepitreal-content .btn {
    font-size: 0.8rem !important;
    padding: 10px 20px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .image-overlay-section .section-image {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    min-height: 400px;
    max-width: 100vw;
    z-index: 1;
    overflow: hidden;
  }
  .image-overlay-section .section-image img {
    width: 100vw;
    height: auto;
    object-fit: cover;
    display: block;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .hero {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    background-attachment: scroll;
    position: relative;
  }
  
  .hero-text {
    font-size: 1.3rem;
  }
  
  .logo img {
    width: 130px;
  }
  
  .strategy-section h2 {
    font-size: 1.8rem;
  }
  
  .mission-text h1 {
    font-size: 1.8rem;
  }
  
  .story-content h1 {
    font-size: 2rem;
  }
  
  .white-overlay-box h1 {
    font-size: 1.3rem;
  }
  
  .profile-1 {
    width: 100px;
    height: 100px;
  }
  
  .profile-2 {
    width: 100px;
    height: 100px;
  }
}

/* iPhone SE and similar very small screens */
@media (max-width: 320px) {
  * {
    box-sizing: border-box;
  }
  
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .hero {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    left: 0;
    right: 0;
    background-attachment: scroll;
    position: relative;
    box-sizing: border-box;
  }
  
  .hero-text {
    font-size: 1.2rem;
  }
  
  .logo img {
    width: 120px;
    height: auto;
  }
  
  .hamburger {
    width: 35px;
    height: 35px;
  }
  
  .hamburger span {
    width: 16px;
    height: 1.5px;
  }
}

/* Landscape orientation for small screens */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    background-attachment: scroll;
    position: relative;
    box-sizing: border-box;
  }
}
