/* ===============================
   FONTS
   =============================== */

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Book.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham-medium";
  src: url("../fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham-Bold";
  src: url("../fonts/Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: bold;
  font-display: swap;
}

/* ===============================
   RESET / GLOBAL
   =============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* smooth scroll for menu anchors */
html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  min-height: 100%;
  background: #f5f5f5;
  font-family: "Gotham", sans-serif;
  overflow-x: clip;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

h1 {
  color: #47144b;
}

/*HONEYPOT*/
.honeypot-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===============================
   MAIN LAYOUT
   sidebar left / content right
   =============================== */

.layout {
  display: flex;
  min-height: 100vh;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* right content wrapper */
.content {
  flex: 1;
  background: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* this makes footer stay at the bottom */
main {
  flex: 1;
}

/* ===============================
   SIDEBAR
   stays sticky on desktop
   =============================== */

.sidebar {
  width: 100%;
  max-width: 280px;
  padding: 40px 30px;
  display: flex;
  justify-content: center;
  background: #4d144a;
}

.menu {
  width: 100%;
  list-style: none;
  position: sticky;
  top: 40px;
  align-self: flex-start;
}

.menu li {
  margin: 15px 0;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
}

.menu a:hover,
.menu a.active {
  color: #e2231a;
  padding-left: 1px;
}
.menu li.active a {
  color: #e2231a;
  padding-left: 5px;
}

.guide-grid-buyer-guide .guide-image {
  align-self: start;
}

.guide-grid-buyer-guide .guide-image img {
  margin-top: 0;
}

/* hover 
.menu a:hover {
    color: #e2231a;
    padding-left: 5px;
}
*/
/* selected
.menu ul li a.active {
    color: #e2231a;
    font-weight: 700;
}
 */

/* ===============================
   LINES / DIVIDERS
   =============================== */

.line {
  height: 1px;
  border: none;
  background: #e2231a;
}

.line-purple {
  width: 100%;
  height: 2px;
  margin: 5px 0 35px;
  border: none;
  background: #4d144a;
}

/* ===============================
   HERO
   =============================== */

.hero-image {
  width: 100%;
  height: 100vh;
  max-height: 600px;
  position: relative;
  background: url("../img/banner_img_1.jpg") center center / cover no-repeat;
}

.overlay-text {
  position: absolute;
  top: 6%;
  left: 4%;
  width: 48%;
  color: #fff;
}

.overlay-text h1 {
  color: #42144c;
  font-family: "Gotham-Bold";
  /* font-size: 61px; */
  font-size: clamp(34px, 9vw, 61px);
  font-style: normal;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 60px;
}

.overlay-text p {
  font-size: 20px;
  color: #42144c;
  width: 400px;
  max-width: inherit;
  font-weight: 600;
  line-height: 25px;
}

/* ===============================
   LOGOS / ICONS
   =============================== */

#icon-logos {
  position: absolute;
  bottom: 40px;
  left: 4%;
  width: clamp(
    250px,
    40vw,
    550px
  ); /* Adapts proportionally between 250px and 550px */
  line-height: 0;
}

#icon-logos img {
  width: 87%;
  height: auto;
  display: block;
}

#icon-logos-footer {
  position: absolute;
  bottom: 12%; /* Bottom of hero-image */
  left: 4%;
  width: 92%;
  max-width: 550px;
  line-height: 0;
}
#icon-logos-footer img {
  width: 80%;
}

.Lenovo-icon {
  position: absolute;
  top: 8%;
  right: 0;
}
.lenovo-icon-modal {
  position: absolute;
  top: 7%;
  right: -10px;
}
.lenovo-icon-modal svg {
  width: 80%;
}

.Lenovo-icon-footer {
  position: absolute;
  right: 0;
  bottom: 11%;
}

.Intel-icon {
  position: absolute;
  bottom: 5%;
  left: 4%;
  color: #fff;
  width: clamp(150px, 22vw, 264px);
}

.Intel-icon img {
  display: block;
  width: 200px;
}

.Intel-icon-Footer {
  position: absolute;
  bottom: 5%;
  left: 5%;
  color: #fff;
  width: clamp(150px, 22vw, 264px);
}

.Intel-icon-Footer img {
  display: block;
  width: 190px;
}

.Datacom-icon {
  position: absolute;
  bottom: 4%;
  left: 28%;
  width: clamp(150px, 18vw, 220px);
  color: #fff;
}

.Datacom-icon svg {
  width: 190px;
}

.Datacom-icon-footer {
  position: absolute;
  bottom: 5%;
  left: 33%;
  width: clamp(150px, 18vw, 220px);
  color: #fff;
}

/* ===============================
   GENERAL CARDS
   =============================== */

.info-card {
  margin: 5px;
  padding: 60px 40px;
  background: #fff;
}

.title-card {
  max-width: 685px;
  margin-bottom: 20px;
  font-size: 50px;
  color: var(--Deep-Purple-1, #4d144a);
  font-family: "Gotham-Bold";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.first-p {
  margin-bottom: 25px;
  color: var(--Black, #1e0013);
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  line-height: 36px;
}

.span-text {
  display: block;
  margin-bottom: 25px;
  font-size: 18px;
  color: var(--Black, #1e0013);
  font-family: "Gotham";
  font-weight: 400;
  line-height: 26px;
}

.Thrive,
.Evolve {
  color: var(--Black, #1e0013);
  font-size: 18px;
  font-family: "Gotham-medium";
  font-weight: 700;
  line-height: 26px;
}

.last-p {
  font-size: 18px;
}

/* ===============================
   GUIDE SECTION
   =============================== */

.guide-section-buyer-guide,
.guide-section-ebook-section,
.guide-section-infographic-section {
  max-width: 1163px;
  margin: 0 5px 62px 0;
  padding: 0px 40px;
  position: relative;
  overflow: hidden;
}

/* CAROUSEL TRACKS (Disabled on desktop) */
.carousel-track-ebooks,
.carousel-track-infographics {
  display: block;
}

.guide-grid-ebook-section,
.guide-grid-infographic-section {
  margin-top: 40px;
}

/* BUYER GUIDE ONLY */
.guide-grid-buyer-guide {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 1px;
}

.guide-grid-buyer-guide .guide-desc {
  margin: 50px 0 30px 0;
}

/* EACH CARD INSIDE EBOOK / INFOGRAPHIC */
.guide-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* desktop order */

.guide-grid-ebook-section .guide-card .guide-content {
  order: 1;
  margin: 40px 0;
}
.guide-grid-infographic-section .guide-card .guide-content {
  order: 1;
  margin: 0px;
}

.guide-image {
  order: 2;
}

.guide-content h4 {
  margin: 10px 0 0 0;
  color: #e1251b;
  font-size: 22px;
  font-family: "Gotham-Bold";
}

.guide-desc {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.5;
}

.guide-format {
  margin-bottom: 42px;
  font-size: 18px;
}

.guide-image img {
  display: block;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
}

.guide-image .infographic-guide-image {
  width: 434px;
  height: 635px;
  aspect-ratio: 54 / 79;
}

.infographic-guide-image img {
  display: block;
  width: 434px;
  height: 635px;
  margin-left: auto;
}

.ebook-buttons,
.infographic-buttons {
  display: none;
  margin: 55px 0;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.ebook-buttons span,
.infographic-buttons span {
  color: var(--Deep-Purple-1, #4d144a);
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 28px;
}

.ebook-buttons hr,
.infographic-buttons hr {
  flex: 1;
  height: 1px;
  border: none;
  margin: 0;
  background-color: #4d144a;
}

.ebook-prev-btn,
.ebook-next-btn,
.infographic-prev-btn,
.infographic-next-btn {
  background-color: #fff;
  color: var(--Deep-Purple-1, #4d144a);
  padding: 10px 12px;
  stroke-width: 1px;
  border: 1px solid var(--Deep-Purple-1, #4d144a);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.ebook-prev-btn:hover,
.ebook-next-btn:hover,
.infographic-prev-btn:hover,
.infographic-next-btn:hover {
  background-color: var(--Deep-Purple-1, #4d144a);
  color: #fff;
}

/* ===============================
   SMALL IMAGE BLOCKS
   =============================== */

.info-image img {
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
  border-radius: 15px;
}

/* ===============================
   BUTTONS
   =============================== */

.download-btn,
.BookConsulation-btn {
  display: inline-block;
  padding: 14px 34px;
  border: none;
  border-radius: 28px;
  background: var(--Signature-Red, #e1251b);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

#dropdown {
  display: none;
}

.dropdown-LetsBegin-btn {
  display: none;
}

/* ===============================
   FOOTER
   stable at the bottom
   =============================== */

footer {
  margin-top: auto;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 1212px;
  min-height: 584px;
  background: url("../img/footer-background.jpg") center center / cover
    no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.footer-content {
  width: 100%;
  max-width: 672px;
  margin-top: 1px;
  padding: 0 40px;
}

.footer-content p {
  margin-bottom: 38px;
  color: var(--Black, #1e0013);
  font-size: 23px;
  font-weight: 700;
  line-height: 36px;
}

.line-purple-footer {
  width: 95%;
  height: 2px;
  max-width: 1143px;
  align-self: center;
  margin: 90px 0 35px;
  border: none;
  background: #4d144a;
}

/* ===============================
   MODAL BACKGROUND
   =============================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  box-sizing: border-box;
  padding: clamp(12px, 2vw, 24px);

  display: none;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.72);
  overflow: hidden;
}

.modal.active {
  display: flex;
}

/* ===============================
   MODAL BOX
   =============================== */

.modal-content {
  position: relative;
  max-height: calc(100dvh - 32px);
  width: min(95vw, 1200px);
  /* max-width: 1200px; */
  display: grid;
  grid-template-columns: minmax(280px, 48%) minmax(0, 52%);
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
}

/* close button */
.debug-modal-close {
  position: absolute;
  top: 7px;
  right: 18px;
  z-index: 10;
  background: none;
  font-size: 34px;
  cursor: pointer;
  border: 1px solid #cccccc6e;
  width: 23px;
  font-size: 20px;
  font-weight: bold;
}

.modal-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#div-form {
  min-width: 0;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* ===============================
   MODAL FORM
   =============================== */

.modal-form {
  /* padding: clamp(18px, 2.5vw, 42px); 
     padding: 70px 70px 40px 70px;*/
  padding: clamp(18px, 2.5vw, 50px) clamp(56px, 2.5vw, 42px)
    clamp(40px, 2.5vw, 42px) clamp(56px, 2.5vw, 42px);
}

.modal-form.none {
  display: none;
}

.modal-form h3 {
  max-width: 520px;
  font-family: "GOTHAM-BOLD";
  margin-bottom: clamp(12px, 1.5vw, 20px);
  color: #d52b1e;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
}
.modal-logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  margin: 0 0 clamp(14px, 2.5vw, 25px) 0;
  gap: clamp(18px, 6vw, 90px);
  padding: 0 clamp(18px, 2.5vw, 42px);
}

.modal-logos img {
  width: clamp(180px, 82%, 450px);
  height: auto;
  display: block;
}

#group-logos {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* form message */
#modalFormSubmittedMessage {
  width: auto;
  max-width: 450px;
  display: none;
  align-content: center;
  text-align: center;
  height: 400px;
  padding: 0 10px;
}
#modalFormSubmittedMessage h2 {
  color: var(--Signature-Red, #e1251b);
  font-family: "Gotham-Bold";
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}
#modalFormSubmittedMessage p {
  color: var(--Deep-Purple-1, #4d144a);
  font-family: Gotham;
  font-size: 33.6px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
}
#modalFormSubmittedMessage.show {
  display: block;
  margin: 0 auto;
}

.form-row.two {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}

.form-group {
  margin-bottom: clamp(10px, 1.35vw, 10px);
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--Black, #1e0013);
  font-size: clamp(15px, 1.45vw, 15px);
  font-family: "Gotham-Bold";
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

.form-group label span,
.checkbox-row span {
  color: #d52b1e;
}

.form-group input,
.form-group select {
  width: 100%;
  height: clamp(40px, 4.2vw, 40px);
  padding: 0 14px;
  border: 1px solid #888;
  border-radius: 4px;
  outline: none;
  color: #151515;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #e1251b;
}

/* checkbox area */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: clamp(16px, 2vw, 26px);
  margin-bottom: clamp(16px, 2vw, 26px);
}

.checkbox-row input {
  flex: 0 0 28px;
  width: 28px;
  height: 20px;
  border-radius: 8px;
  margin-top: 2px;
}

.checkbox-row label {
  color: #1e0013;
  font-family: "Gotham";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

/* modal bottom row */
.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.submit-btn {
  padding: 16px 34px;
  border: none;
  border-radius: 40px;
  background: #d52b1e;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.mandatory {
  color: #444;
  font-size: 12px;
}

/* ===============================
   MOBILE
   =============================== */

/* Tablets */
@media (max-width: 1100px) {
  /* main */
  .layout {
    flex-wrap: nowrap;
  }

  .sidebar {
    width: 18%;
    min-width: 190px;
    padding: 30px 20px;
  }

  .content {
    width: 82%;
  }

  .menu a {
    font-size: 17px;
  }

  .guide-image .infographic-guide-image {
    width: 100%;
    height: auto;
  }

  .modal-form {
    /* padding: clamp(18px, 2.4vw, 28px); 
           padding: 70px;*/
    padding: clamp(30px, 2.4vw, 28px) clamp(56px, 2.4vw, 28px);
  }

  .modal-logos {
    margin: 0 0 18px 0;
    gap: clamp(18px, 5vw, 50px);
  }

  .Datacom-icon-footer {
    left: 38%;
  }
  .Datacom-icon {
    left: 29%;
    bottom: 5%;
  }
  .Datacom-icon svg {
    width: 90%;
  }
  .Intel-icon img {
    width: 80%;
  }
  .overlay-text h1 {
    font-size: 51px;
  }
  .overlay-text p {
    width: 100%;
    max-width: 365px;
  }
  .guide-grid-buyer-guide .guide-desc {
    margin: 11px 0 30px 0;
  }
  .guide-card {
    grid-template-columns: 272px 1fr;
    gap: 15px;
  }
  .guide-grid-ebook-section .guide-card .guide-content {
    margin: clamp(12px, 2vw, 24px);
  }
  .guide-grid-ebook-section .guide-image img {
    width: 35vw;
  }
  .guide-grid-buyer-guide {
    grid-template-columns: 272px 1fr;
    gap: 15px;
  }
  .guide-grid-buyer-guide .guide-image img {
    width: 35vw;
  }
}

/* tablets */

@media (max-width: 900px) {
  .modal-content {
    display: block;
    width: min(95vw, 640px);
    max-height: calc(100dvh - 24px);
    overflow: hidden;
    border-radius: 16px;
  }

  .modal-image {
    display: none;
  }

  #div-form {
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }
  #icon-logos img {
    width: 85%;
  }
  .lenovo-icon-modal {
    top: 5.5%;
  }
  .guide-card {
    /* align-items: center; */
  }
  .guide-grid-ebook-section .guide-card .guide-content {
    margin: 29px 0;
  }
  .guide-content h4 {
    margin: 0;
  }
  .modal-form h3 {
    max-width: 500px;
  }
  .form-group {
    margin-bottom: clamp(10px, 1.35vw, 10px);
  }
  .form-group label {
    margin: clamp(3px, 1vw, 3px);
  }
}

/* mobile responsive */
@media (max-width: 768px) {
  /* stack the page */
  .layout {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  /* hide sidebar on mobile */
  .sidebar {
    display: none;
    position: static;
    width: 100%;
    min-width: 100%;
    height: auto;
    padding: 20px;
  }

  .menu a {
    font-size: 16px;
  }

  .content {
    min-height: 100vh;
    width: 100%;
  }

  /* mobile hero image */
  .hero-image {
    width: 100%;
    margin-bottom: 480px;
    background: url("../img/masthead_2.png") 25% 40% / cover no-repeat;
  }

  /* text block under the mobile hero */
  .overlay-text {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 437px;
    padding: 20px;
    background: url("../img/footer-background.jpg") lightgray 50% / cover
      no-repeat;
    color: #fff;
  }

  .overlay-content {
    width: 100%;
    max-width: 380px;
  }

  .overlay-text h1 {
    color: #4d144a;
    font-size: clamp(34px, 10vw, 40px);
    font-weight: 700;
    line-height: 1.18;
    margin: 0 0 16px 0;
    overflow-wrap: anywhere;
  }

  .overlay-text p {
    font-size: 15px;
    width: 100%;
    max-width: none;
    margin: 0 0 25px 0;
    line-height: 18px;
  }

  #icon-logos {
    position: absolute;
    /* bottom: -430px;  */
    /* Positions it at the bottom of the mobile overlay-text */
    left: 4%;
    transform: translateY(450px);
  }
  #icon-logos img {
    /* width: clamp(160px, 45vw, 92%); */
    width: 100%;
    height: auto;
  }
  .Intel-icon {
    position: absolute;
    bottom: 0px;
    left: 25px;
  }

  .Intel-icon img {
    width: 100%;
    max-width: 250px;
  }
  .Datacom-icon {
    position: absolute;
    bottom: 0px;
    left: 53vw;
  }

  .Datacom-icon svg {
    width: 150px;
  }

  .title-card {
    font-size: 34px;
    margin-bottom: 0;
  }

  #welcome > div > h1 {
    margin-bottom: 20px;
  }

  .first-p,
  .last-p {
    font-size: 24px;
    line-height: 29px;
    font-style: normal;
  }

  .span-text {
    color: var(--Black, #1e0013);
    font-family: "Gotham";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
  }

  .Thrive {
    display: inherit;
    font-size: 20px;
  }

  .Evolve,
  .That {
    font-size: 20px;
  }

  /* guide becomes one column */
  .guide-section-buyer-guide,
  .guide-section-ebook-section,
  .guide-section-infographic-section {
    padding: 40px 20px;
  }

  .guide-grid-buyer-guide {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* carousel wrapper */
  .carousel-track-ebooks,
  .carousel-track-infographics {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    gap: 20px;
  }

  .guide-grid-ebook-section,
  .guide-grid-infographic-section {
    flex: 0 0 100%;
    min-width: 100%;
    margin-top: 20px;
  }
  .guide-grid-ebook-section .guide-image img {
    width: 100%;
  }

  .guide-grid-buyer-guide .guide-image img {
    width: 100%;
  }

  /* ebooks carousel  */
  .guide-section-ebook-section {
    padding: 0px 20px;
  }
  /* ebooks carousel   end*/
  .modal-logos {
    margin: 4px 0 18px 0;
    gap: 20px;
    padding: 0 18px;
  }

  .modal-logos #intel_logo_modal {
    width: clamp(92px, 28vw, 118px);
  }
  .modal-logos #datacom_logo_modal {
    width: clamp(84px, 26vw, 108px);
  }
  /* ebooks carousel   end*/

  /* infographic carousel  */
  .guide-section-infographic-section {
    padding: 0px 20px;
  }
  /* infographic carousel  end */

  /* carousel  buttons */
  .ebook-buttons,
  .infographic-buttons {
    display: flex;
    margin: 40px 0;
  }
  /* carousel buttons */

  /* one full card per slide */
  .guide-card {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    scroll-snap-align: start;
    margin-bottom: 0;
  }

  .guide-grid-buyer-guide .guide-content,
  .guide-grid-infographic-section .guide-card .guide-content,
  .guide-grid-ebook-section .guide-card .guide-content {
    order: 2;
    margin: 0px auto;
  }

  .guide-grid-buyer-guide .guide-content {
    width: 100%;
  }

  .guide-content h4 {
    margin: 12px 0;
  }

  .guide-image {
    order: 1;
  }

  .guide-image img {
    margin: 30px auto 0;
  }

  .guide-image .infographic-guide-image {
    width: 312px;
    height: 457px;
    aspect-ratio: 71 / 104;
  }

  .download-btn {
    width: 100%;
    text-align: center;
  }

  /* Dropdown LetsBegin button */
  #dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-LetsBegin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 34px;
    border: none;
    border-radius: 40px;
    background: #e2231a;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
  }
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 88%;
    left: 9px;
    min-width: 143px;
    margin: 0px 0 0 1px;
    padding: 8px 0;
    list-style: none;
    background: #e2231a;
    border-radius: 3px;
    z-index: 10;
    text-align: center;
    line-height: 2;
  }
  .dropdown-menu li {
    color: white;
    text-decoration: none;
    font-weight: 700;
  }

  .dropdown-menu li a {
    color: #fff;
    text-decoration: none;
  }

  .dropdown-menu li a:hover {
    background: #4d144a;
    color: #fff;
    text-decoration: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  .btn-arrow {
    width: 15.133px;
    height: 7px;
    display: block;
    flex-shrink: 0;
  }

  .btn-arrow path {
    fill: none;
    stroke: #fff;
    stroke-width: 1px;
    stroke-linecap: square;
    stroke-linejoin: miter;
  }
  /* LetsBegin button end */

  .info-card {
    margin: 0px auto;
    padding: 60px 40px 0 40px;
  }

  /* footer mobile */
  footer {
    min-height: 626px;
  }
  .Lenovo-icon-footer {
    bottom: 19.9%;
  }

  #icon-logos-footer {
    bottom: 20%;
  }

  .line-purple-footer {
    margin: 60px 0 35px;
  }
  .Datacom-icon-footer {
    left: auto;
    right: 17%;
    /* top: 90%; */
    bottom: 12%;
    width: clamp(120px, 32vw, 170px);
  }
  .Datacom-icon-footer svg {
    display: block;
    width: 100%;
  }
  .Intel-icon-Footer {
    /* top: 86%; */
    bottom: 12%;
    left: 7%;
    width: clamp(130px, 36vw, 190px);
  }
  .Intel-icon-Footer img {
    width: 100%;
  }

  /* modal mobile */
  .modal {
    align-items: flex-start;
    padding: max(8px, env(safe-area-inset-top)) 8px
      max(8px, env(safe-area-inset-bottom));
    overflow: hidden;
  }

  .modal-content {
    display: block;
    width: 100%;
    max-width: 400px;
    min-height: auto;
    max-height: calc(100dvh - 16px);
    overflow: hidden;
    border-radius: 12px;
  }

  .modal-image {
    display: none;
  }

  #div-form {
    max-height: calc(100dvh - 16px);
  }

  .modal-form {
    padding: clamp(65px, 5vw, 60px) clamp(55px, 5vw, 60px) 20px;
  }

  .modal-form h3 {
    margin-bottom: 12px;
    font-size: clamp(22px, 6.4vw, 26px);
    color: var(--Signature-Red, #e1251b);
    font-family: "Gotham-bold";
    font-style: normal;
    font-weight: 700;
    line-height: 1.15;
  }

  .modal-logos {
    margin: 20px 0 40px 0;
    gap: clamp(14px, 5vw, 24px);
    padding: 0 18px;
  }
  .modal-logos img {
    width: 79%;
  }
  #group-logos {
    max-width: 310px;
  }

  .form-row.two {
    display: block;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group label {
    margin-bottom: 5px;
    color: var(--Black, #1e0013);
    font-size: 13px;
    font-family: "Gotham-bold";
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
  }

  .form-group input,
  .form-group select {
    height: clamp(35px, 1.2vw, 38px);
    border-radius: 4px;
    font-size: 15px;
  }

  .checkbox-row {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    margin-top: clamp(16px, 2vw, 26px);
    margin-bottom: clamp(16px, 2vw, 26px);
  }

  .checkbox-row input {
    width: 28px;
    height: 20px;
  }

  .checkbox-row label {
    font-size: 11px;
    line-height: 1.35;
  }

  .bottom-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 0 0;
  }

  .submit-btn {
    width: auto;
    padding: 13px 24px;
    border-radius: 40px;
    font-size: 14px;
  }

  .mandatory {
    font-size: 11px;
  }

  .debug-modal-close {
    top: 12px;
    right: 16px;
    border: 1px solid #ccc;
    width: 23px;
    font-size: 20px;
    font-weight: bold;
  }

  #modalFormSubmittedMessage {
    width: 90%;
    max-width: 400px;
    min-height: min(420px, calc(100dvh - 80px));
    height: auto;
    max-height: calc(100dvh - 32px);
    padding: 0 10px;
  }

  #modalFormSubmittedMessage h2 {
    font-size: clamp(26px, 7vw, 30px);
  }
  #modalFormSubmittedMessage p {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.35;
  }
  .guide-section-buyer-guide,
  .guide-section-ebook-section,
  .guide-section-infographic-section {
    padding: 40px 20px;
    margin: 0 auto;
    width: 80%;
  }
}

@media (max-width: 768px) and (max-height: 760px) {
  .modal-form h3 {
    margin-bottom: 10px;
    font-size: clamp(20px, 5.8vw, 24px);
  }

  .form-group {
    margin-bottom: 9px;
  }

  .form-group input,
  .form-group select {
    height: 38px;
  }

  .checkbox-row {
    margin-top: 8px;
    margin-bottom: 10px;
  }

  .checkbox-row label {
    font-size: 11px;
    line-height: 1.25;
  }

  .modal-logos {
    margin: 34px 0 33px 51px;
    max-width: 250px;
  }
}

@media screen and (max-width: 480px) {
  .modal-form h3 {
    padding-right: 35px;
    font-size: 1.3rem;
    /* Optional: slightly smaller font for mobile */
  }

  .debug-modal-close {
    top: 10px;
    /* Pulling it slightly higher to save space */
    right: 12px;
  }
  .lenovo-icon-modal {
    position: absolute;
    top: 6%;
    /* right: 0px; */
    right: -9px;
  }

  .guide-section-buyer-guide,
  .guide-section-ebook-section,
  .guide-section-infographic-section {
    width: 100%;
  }
  .modal-form {
    padding: clamp(5px, 5vw, 58px) clamp(47px, 5vw, 60px) 20px;
  }
  .modal-logos img {
    width: 100%;
  }

  .modal-logos {
    margin: 0px 0 33px 22px;
    max-width: 298px;
  }
  #icon-logos img {
    /* width: clamp(160px, 45vw, 92%); */
    width: 100%;
  }
}

@media only screen and (max-width: 375px) {
  .modal-logos {
    margin: 25px 0 33px 51px;
  }
  .lenovo-icon-modal {
    position: absolute;
    top: 10%;
    right: 5px;
  }
  .debug-modal-close {
    top: 20px;
    right: 13px;
  }
  .modal-logos img {
    width: 100%;
  }
  .modal-form {
    padding: clamp(65px, 5vw, 50px) clamp(55px, 5vw, 60px) 20px;
  }
  .form-group input,
  .form-group select {
    height: clamp(35px, 1.2vw, 38px);
  }
}
