/* VARS */

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-yellow: #FBF599;
  --color-red: #EE2D48;
}

/* RESET */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.gs-page {
  color: var(--color-white);
  font-family: "proxima-nova", sans-serif !important;
  font-weight: 400;
}

.gs-page a {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  text-decoration: none;
}

.gs-page a:hover {
  text-decoration: underline;
}

.contnr {
  max-width: 1260px;
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  height: auto;
}

.h1 {
  font-size: clamp(40px, 5vw, 90px);
}

.h2 {
  font-size: clamp(36px, 5vw, 70px);
}

.h3 {
  font-size: clamp(32px, 5vw, 63px);
}

.h4 {
  font-size: clamp(28px, 5vw, 46px);
}

.body-text {
  font-size: clamp(20px, 5vw, 28px);
  letter-spacing: 1px;
  line-height: 130%;
}

.fw-900 {
  font-family: "proxima-nova",sans-serif;
  font-weight: 700 !important;
}

.fw-700 {
  font-family: "proxima-nova",sans-serif;
  font-weight: 500 !important;
}

strong {
  font-family: "proxima-nova",sans-serif;
  font-weight: 700 !important;
}

.highlight-yellow {
  color: var(--color-yellow);
}

/* STYLES */

.gs-page {
  background-image: url(../images/bg.webp);
  background-repeat: repeat;
  padding: 14em 0;
}

.gs-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero-images {
  display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    row-gap: 5em;
    left: 0;
    right: 0;
    top: -6em;
    bottom: 0;
    padding: 0 clamp(20px, 8vw, 150px);
}

.hero-img-wrapper {
  display: flex;
  flex-basis: 50%;
}

.hero-img-wrapper:nth-child(even) {
  justify-content: flex-end;
}

.hero-img-wrapper.mobile img {
  margin-left: 5em;
}

.gs-hero-heading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9;
  text-align: center;
}

.gs-hero-heading-wrapper h1 {
    display: flex;
    flex-direction: column;
}

.hero-title {
  color: var(--color-white);
}

.hero-subtitle {
  color: var(--color-red);
}

.loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px 0;
  z-index: 9;
}

.loading-text {
  font-style: italic;
  letter-spacing: 2px;
}

.form-section.contnr {
  margin: 10em auto;
}

.form-intro-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.form-intro-title {
  color: var(--color-red);
}

.form-intro-sub-text {
  padding: 60px 0;
}

.categories-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categories-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 27px;
  row-gap: 33px;
  justify-content: center;
  padding: 90px 0 200px;
}

.categories-pre-text {
  width: 50%;
  text-align: center;
}

.cat-item-wrapper {
  flex-basis: calc(25% - 27px);
  min-height: 270px;
}

.cat-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--color-red);
  border-radius: 38px;
  height: 100%;
  text-align: center;
}

.cat-link-item:hover {
  background: var(--color-red);
  text-decoration: none !important;
}

.category-text {
  font-size: clamp(16px, 5vw, 20px);
  width: 50%;
}

.guarantee-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.guarantee-title {
  color: var(--color-yellow);
}

.guarantee-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-top: 80px;
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guarantee-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1;
  text-decoration: none !important;
}

.guarantee-item a:hover {
  text-decoration: none !important;
}

.guarantee-text {
  font-size: 20px;
  line-height: 140%;
}

.faq-intro-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 150px 0 125px;
}

.faq-intro-title {
  color: var(--color-red);
}

.faq-subtitle {
  color: var(--color-yellow);
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.faq-title {
  display: flex;
  justify-content: space-between;
  color: var(--color-yellow);
  cursor: pointer;
}

.faq-title::after {
  content: "+";
  display: inline-block;
  height: 16px;
  width: 16px;
}

.faq-title.open::after {
  content: "-";
  display: inline-block;
  height: 16px;
  width: 16px;
}

.faq-text {
  display: none;
  transition: all 0.3s ease;
}

/* FORM */

#mc_embed_signup {
  background: none !important;
  width: 100% !important;
}

div#mc_embed_signup_scroll div:last-child {
  flex: 1 0 100% !important;
}

div#mc_embed_signup_scroll {
  display: flex !important;
  flex-wrap: wrap !important;
  flex-direction: row !important;
  gap: 20px !important;
  justify-content: center !important;
}

#mc_embed_signup h2 {
  display: none !important;
}

#mc_embed_signup .indicates-required {
  margin: 40px 0 0 !important;
  font-weight: bold !important;
}

#mc_embed_signup .mc-field-group {
  flex: 1 0 calc(50% - 20px) !important;
  max-width: 420px !important;
  padding-bottom: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

#mc_embed_signup .mc-field-group label {
  text-align: left !important;
}

#mc_embed_signup_scroll .mc-field-group.hidden {
  display: none !important;
}

#mc_embed_signup .mc-field-group input {
  color: #fff !important;
  width: 100% !important;
  padding: 19px 10px !important;
  background: rgba(255, 255, 255, 5%) !important;
  border: 1px solid #FFF !important;
  border-radius: 9px !important;
}

div#mce-responses {
  flex: 1 0 100% !important;
  display: flex !important;
  justify-content: center !important;
  max-width: 50% !important;
}

#mc_embed_signup .button {
  border: 0 none !important;
  border-radius: 5px !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  font-size: 15px !important;
  height: 50px !important;
  width: 190px !important;
  margin: 0 !important;
  background: #EE2D48 !important;
  font-weight: bold !important;
  line-height: 100% !important;
  padding: 18px 0 !important;
}

.afterform {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  background: none !important;
  height: auto !important;
  flex: auto !important;
}

#mc_embed_signup #mce-success-response {
  color: #FFF !important;
}


/* ATG CHANGES */

.form-section.contnr {
    margin: 10em auto 0;
    padding-bottom: 0;
}

#mc_embed_signup {
    background: none !important;
    width: 100% !important;
    max-width: 1260px;
    margin: 0 auto;
    padding: 40px 0;
    width: 100%;
    height: auto;
}

.cat-item-wrapper {
    flex-basis: calc(25% - 27px);
    min-height: 270px;
    display: flex;
    flex-direction: column;
    border: 1px solid red;
    border-radius: 38px;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cat-item-wrapper:hover {
    background: var(--color-red);
    text-decoration: none !important;
}

.cat-link-item {
    border: none;
}


/* MEDIA QUERIES */

@media (max-width: 1600px) {

  .hero-images {
    padding: 0 clamp(20px, 6vw, 150px);
  }

  .hero-img-wrapper img {
    width: 180px;
  }
 
}

@media (max-width: 1400px) {

  .hero-img-wrapper.mobile img {
    margin-left: 0;
  }
 
}

@media (max-width: 1200px) {

  .contnr {
    padding: 40px 20px;
  }
 
}

@media (max-width: 992px) {

  .cat-item-wrapper {
    flex-basis: calc(50% - 27px);
  }

  .guarantee-wrapper {
    flex-wrap: wrap;
  }

  .guarantee-item a {
    flex: auto;
  }

  .categories-pre-text {
    width: auto;
    text-align: center;
  }

  .hero-images {
    padding: 0 clamp(20px, 3vw, 150px);
  }

  .hero-img-wrapper img {
    width: 150px;
  }

  .loader-wrapper img {
    max-width: 75%;
  }

}

@media (max-width: 768px) {

  .hero-images {
    left: 0;
    right: 0;
    top: -16em;
    bottom: -14em;
    padding: 0 clamp(20px, 8vw, 150px);
  }
  
  .hero-img-wrapper img {
    width: 125px;
  }

  .faq-intro-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 100px 0 60px;
  }

  .guarantee-section.contnr {
    padding: 0;
    }

  .guarantee-title-wrapper {
    padding: 40px 20px 0;
  }

  .guarantee-wrapper {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    white-space: normal;
  }

  .guarantee-wrapper::-webkit-scrollbar {
    display: none;
  }

  .guarantee-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 calc(25% - 0px);
  }

  .categories-wrapper {
    padding: 60px 0;
  }

}

@media (max-width: 576px) { 

  .cat-item-wrapper {
    min-height: auto;
    max-width: calc(50% - 27px);
  }

  .category-text {
    width: 100%; 
  }

  .guarantee-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 197px;
  }

  .cat-link-item {
    padding: 28px;
  }

  .hero-images {
    top: -18em;
    bottom: -15em;
  }

  div#mc_embed_signup_scroll {
    flex-direction: column !important;
  }

  #mc_embed_signup .mc-field-group {
    max-width: 100% !important;
}

}