@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --textColor: #6c6c6c; /* Text color for paragraphs */
  --whiteColor: #ffffff; /* Background of page */
  --blackColor: #121212; /* Just in case, a dark color*/
  --footerBg: #f8f8f8; /* Background color footer */
  --lightGrey: #808080; /* Light Grey */
  --lightGrey10: rgba(128, 128, 128, 0.1);

  --firstColor: #3499fe; /* Blue 10 */
  --secondColor: #04375b; /* Blue 100 */
  --thirdColor: #01466f; /* Blue 80 */
  --fourthColor: #ccecff; /* Blue 00 */
  --fifthColor: #ecf8ff; /* Blue -10 */
  --sixthColor: #5f5f5f; /* Grey */
  --seventhColor: #98c93c; /* Green */
  --eighthColor: #fdcd23; /* Yellow */

  --hoverColor: #242424; /* Blue 10 */
  --hoverBtnColor: #c00815; /* Blue 10 */

  --firstText: "Montserrat", Helvetica, sans-serif;
  --secondText: "Montserrat", Helvetica, sans-serif;
  --thirdText: "Montserrat", Helvetica, sans-serif;
  --fontSizeReg: 14px;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

body {
  background-color: var(--whiteColor);
  color: var(--textColor);
  font-family: var(--firstText);
}

body.root-index,
body.nl-index {
  background-image: url("../img/Lines/Vector 1.png"),
    url("../img/Lines/Vector 2.png");
  background-repeat: no-repeat;
  background-size: 125% 25%, 120%;
  background-position: 65% 65%, 70% 89%;
}

body.nl-index {
  background-size: 124% 25%, 120%;
  background-position: 15% 32%, 70% 83%;
}

h1,
h2,
h3 {
  font-family: var(--firstText);
  margin: 0 2rem 0.5rem;
}

h1 {
  font-size: 2.8125rem;
  font-weight: bold;
  line-height: 1.2;
}

h2 {
  color: var(--secondColor);
}

p {
  font-family: var(--firstText);
  font-size: var(--fontSizeReg);
  color: var(--textColor);
  margin: 0 2rem 0.5rem;
}

ul {
  list-style: circle;
  list-style-position: inside;
}

.table-of-content ul {
  list-style: none;
}

.navigation__buttons ul{
  list-style: none;
}

button {
  padding: 0.7rem 2.5rem;
  background-color: #e50916;
  color: var(--textColor);
  font-family: var(--firstText);
  font-weight: 400;
  border: none;
  border-radius: 0.25rem;
}

a {
  text-decoration: none;
  color: var(--textColor);
}

.not-active {
  display: none;
}

.logo {
  max-width: 14rem;
}

footer .logo {
  max-width: 100%;
}

/* .lines {
    display: none;
} */

/* === INDEX PAGE === */

/* Header */
.header {
  display: flex;
  justify-content: flex-start;
  padding: 0 0 0.5rem 0;
  z-index: 99;
}

.header a {
  color: var(--whiteColor);
  text-decoration: none;
  padding: 0.5rem;
}

.header a:hover:not(.logo-link) {
  /* color: var(--firstColor); */
  border-bottom: 1px solid var(--secondColor);
}

.header .navigation {
  display: none;
}

.header .navigation__buttons.menu-active {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--firstColor);
  color: var(--whiteColor);
}

/* Menu Icon Normal */
.header input[type="checkbox"] + .menu-icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  position: absolute;
  top: 3.4rem;
  right: 1rem;
  width: 2.3rem;
  height: 1.5rem;
}

.header input[type="checkbox"] + .menu-icon .navicon {
  position: relative;
  width: 2.3rem;
  height: 0.25rem;
  border-radius: 5rem;
  background-color: var(--firstColor);
  transition: all 200ms ease;
}

/* not checked  */

.header input[type="checkbox"] + .menu-icon .navicon.line1 {
  transform: rotate(0);
  position: relative;
  top: 0;
}

.header input[type="checkbox"] + .menu-icon .navicon.line2 {
  display: block;
}

.header input[type="checkbox"] + .menu-icon .navicon.line3 {
  transform: rotate(0);
  position: relative;
  width: 1.5rem;
  top: 0;
}

/* Menu Icon Cross */
/* checked */
.header input[type="checkbox"]:checked + .menu-icon {
  height: 2.3rem;
}

.header input[type="checkbox"]:checked + .menu-icon .navicon {
  background-color: var(--whiteColor);
}

.header input[type="checkbox"]:checked + .menu-icon .navicon.line1 {
  background-color: var(--whiteColor);
  transform: rotate(45deg);
  position: relative;
  top: 0.8rem;
}

.header input[type="checkbox"]:checked + .menu-icon .navicon.line2 {
  display: none;
}

.header input[type="checkbox"]:checked + .menu-icon .navicon.line3 {
  transform: rotate(-45deg);
  position: relative;
  width: 2.3rem;
  top: -1.25rem;
}

/* Menu Mob Not Active */
.header .navigation__buttons .menu {
  display: none;
}

/* Menu Mob Active */
.header .navigation__buttons.menu-active .menu {
  display: flex;
  margin: 9.5rem 5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}

.header .navigation__buttons.menu-active .menu li {
  text-align: center;
  width: 100%;
  margin: 0 2rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header .navigation__buttons.menu-active .menu li:last-of-type {
  border: none;
}

/* Menu Mob Countries Selector */
.header .menu .countries li:nth-of-type(1)::after {
  content: "▼";
  margin: 0 0 0 0.5rem;
  font-size: 12px;
  position: relative;
  top: -0.05rem;
}

.header .menu .countries li:nth-of-type(2),
.header .menu .countries li:nth-of-type(3),
.header .menu .countries li:nth-of-type(4) {
  display: none;
}

/* Menu Mob Countries Selector Active */
.header .menu .countries.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header .menu .countries.active li:nth-of-type(1) {
  margin: 0 0 1rem 0;
}

.header .menu .countries.active li:nth-of-type(1)::after {
  content: "▲";
  top: -0.1rem;
}

.header .menu .countries.active li:nth-of-type(2),
.header .menu .countries.active li:nth-of-type(3),
.header .menu .countries.active li:nth-of-type(4) {
  display: flex;
  align-items: center;
  margin: 0.4rem 0;
}

.header .menu .countries.active li:nth-of-type(2)::before,
.header .menu .countries.active li:nth-of-type(3)::before,
.header .menu .countries.active li:nth-of-type(4)::before {
  display: inline-block;
  content: "";
  width: 22px;
  height: 15px;
  border-radius: 2px;
  margin: 0 12px 0 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.header .menu .countries.active li:nth-of-type(2)::before {
  background-image: url("../img/flags/netherlands.png");
}
.header .menu .countries.active li:nth-of-type(3)::before {
  background-image: url("../img/flags/canada.png");
}

/* Logo */
.header div:first-child a.logo-link:hover {
  background-color: transparent;
}

/* ====== */

/* ROOT PAGE COUNTRY SELECTION */
/* Country Selection */
.countrySelection {
  background-image: url("../img/BG/Mobile_Country_BG.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  width: 100%;
  height: 30vh;
}

.countrySelection .container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.countrySelection .container .flags {
  display: flex;
  width: 75%;
  justify-content: space-around;
}

.countrySelection .container .flags img {
  width: 4rem;
  height: 2.5rem;
  object-fit: cover;
  border-radius: 0.4rem;
  padding: 0;
}

.countrySelection .container p {
  font-family: var(--firstText);
  font-size: 1.2rem;
  max-width: 13rem;
  font-weight: 600;
  color: var(--secondColor);
  text-align: center;
}

/* ====== */

/* Hero Section */
.heroSection {
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgb(255, 255, 255)
    ),
    url("../img/BG/Mobile-Main_BG.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center 40%, 57% 40%;
  width: 100%;
  height: 39rem;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
}

.heroSection div {
  margin: 0 2rem;
}

.heroSection div.heroImages {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0 0 0;
}

.heroSection div.heroImages .logo.root-index {
  max-width: 12rem;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.75));
}

.heroSection div.heroImages .mockup.phone {
  width: 100%;
  margin: 2rem 0;
}

.heroSection h1 {
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--firstColor);
}

.heroSection p {
  margin: 0;
  color: var(--textColor);
  font-weight: 300;
}

/* ====== */
/* Welcome Text */

.welcomeText {
  padding: 7rem 2rem 3rem;
  color: var(--secondColor);
}

.welcomeText p,
.welcomeText h2 {
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 1;
}

.welcomeText span {
  font-weight: 600;
}

/* ====== */
/* Benefits List */

.benefitsList {
  padding: 1rem 2rem;
}

.benefitsList li {
  font-family: var(--firstText);
  color: var(--thirdColor);
  font-size: var(--fontSizeReg);
  font-weight: 500;
  margin: 1rem 0;
  display: flex;
  align-items: start;
}

.benefitsList li img {
  width: 1.7rem;
  height: auto;
  margin: 0 1rem 0 0;
}

/* ====== */
/* Best Titles */

.bestTitlesSection {
  margin: 5rem 0;
}

.bestTitlesSection #title--images {
  overflow: scroll;
  display: flex;
  margin: 1.5rem 0 0 0;
  gap: 0 0.5rem;
  max-width: 100vw;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bestTitlesSection #title--images::-webkit-scrollbar {
  display: none;
}

.bestTitlesSection #title--images img {
  width: 100%;
  flex-shrink: 0;
  max-width: 7rem;
}
.bestTitlesSection #title--images img:first-of-type {
  margin: 0 0 0 1rem;
}
.bestTitlesSection #title--images img:last-of-type {
  margin: 0 1rem 0 0;
}

.arrows {
  display: none;
}

.featuresList {
  margin: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featuresList h2 {
  margin: 0;
}

.featuresText {
  background-color: var(--firstColor);
  width: 100%;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.featuresText img {
  width: auto;
  height: 2.5rem;
}

.featuresText p {
  font-size: var(--fontSizeReg);
  color: var(--whiteColor);
  margin: 0;
  width: 100%;
}

/* ====== */
/* FAQ Section Country Index*/

.faq {
  display: grid;
  grid-template-columns: 1fr;
  align-items: baseline;
  margin: 5rem 2rem;
}

.faq div:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.faq div:nth-child(1) .faqText {
  display: flex;
  flex-direction: column;
}

.faq div:nth-child(1) button {
  min-width: fit-content;
}

.faq h2,
.faq p {
  margin: 0 0 1rem 0;
}

.faq a {
  color: var(--firstColor);
  text-decoration: underline;
}

.faq a:visited {
  color: var(--hoverColor);
}

.questions {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 0 0 1rem 0;
  margin-bottom: 2rem !important;
}

.questions.question1 {
  margin: 1rem 0;
}

.questions:last-of-type {
  border: none;
}

/* faq question button */
.accordion {
  display: flex;
  align-items: center;
  font-family: var(--firstText);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  background-color: var(--whiteColor);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  cursor: pointer;
  padding: 1rem 0.4rem;
  width: 100%;
}

.accordion.open {
  box-shadow: none;
  padding: 1rem 0.4rem 0 0.4rem;
  background-color: transparent;
  /* padding: 1rem 0.4rem; */
}

.accordion::before {
  content: url("../img/Icons/+.png");
  color: var(--firstColor);
  float: left;
  margin: 0 0.2rem 0 0;
}

.accordion.open::before {
  content: url("../img/Icons/-.png");
}

.questions:has(.accordion.open) {
  background-color: var(--fifthColor);
}

/* text */
.text-panel {
  display: none;
  overflow: hidden;
}

.text-panel p {
  margin: 1rem 1rem 1rem 3.2rem;
}

/* ====== */
/* CTA PROMO */

.ctaPromo {
  margin: 0 2rem;
}

.ctaPromo div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 1rem;
}

.ctaPromo h2 {
  margin: 0 0 1rem 0;
  color: var(--firstColor);
}

.ctaPromo p,
.ctaPromo a {
  font-family: var(--firstText);
  font-weight: 700;
  margin: 0.5rem 0;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 8px;
  background-color: var(--seventhColor);
  color: var(--whiteColor);
}

.ctaPromo p:nth-of-type(2) {
  background-color: var(--eighthColor);
}

/* ====== */

/* Footer */
footer {
  display: flex;
  justify-content: center;
  background-color: var(--footerBg);
  margin-top: 10rem;
}

footer img {
  max-width: 8rem;
}

footer ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 1.2rem 1rem 1rem;
  padding: 0 2rem;
}

footer ul li {
  color: var(--thirdColor);
}

footer a {
  color: var(--lightGrey);
  font-family: var(--thirdText);
  text-decoration: none;
}

footer .devider {
  color: var(--lightGrey);
  opacity: 0.25;
}

footer div {
  width: 100%;
  font-size: 12px;
}

footer #footerWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-bottom: none;
}

footer #footerWrapper > a {
  padding: 1.5rem;
  width: 100%;
  border-bottom: 1px solid var(--lightGrey10);
  display: flex;
  justify-content: center;
}

footer div.helpdesk,
footer div.copyright {
  padding: 2rem 2rem 3rem;
  text-align: center;
  color: var(--lightGrey);
  font-family: var(--thirdText);
}

.helpdesk footer {
  margin-top: 7rem;
}

/* ====== */

/* === Terms, Privacy & Contact Pages === */

.privacy main,
.terms main,
.helpdesk main,
.contact main {
  display: flex;
  flex-direction: column;
  margin: 0 2rem;
}

.contact,
.helpdesk {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.privacy h1,
.terms h1,
.helpdesk h1,
.contact h1 {
  font-size: 1.5rem;
  font-weight: 500;
  align-self: center;
  margin: 4rem 0;
  color: var(--thirdColor);
}

.privacy h2,
.terms h2,
.helpdesk h2,
.contact h2 {
  font-family: var(--secondText);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--thirdColor);
  max-width: 30rem;
}

.helpdesk h2,
.helpdesk p {
  align-self: center;
}

.privacy p,
.terms p,
.helpdesk p,
.contact p {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0.5rem 0 0 0;
  color: var(--thirdColor);
}

.helpdesk p {
  width: 100%;
}

.privacy a:not(footer a, header a),
.terms a:not(footer a, header a),
.helpdesk a:not(footer a, header a) .contact a:not(footer a, header a) {
  color: var(--thirdColor);
  text-decoration: underline;
}

.privacy li,
.terms li,
.helpdesk li,
.contact li {
  font-family: var(--secondText);
  font-size: 0.875rem;
  font-weight: normal;
  color: var(--thirdColor);
  margin: 0.75rem 0 0 0;
}

.helpdesk footer,
.contact footer {
  width: 100%;
}
.pricepoint {
  margin: 0;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
#form {
  display: flex;
  flex-direction: column;
  max-width: 360px;
  margin: 1em auto;
}
#form .button {
  font-family: var(--firstText);
  font-weight: 700;
  margin: 0.5rem 0;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 8px;
  background-color: var(--seventhColor);
  color: var(--whiteColor);
  font-size: 0.875rem;
  text-transform: uppercase;
}
input,
textarea {
  font-family: var(--firstText);
  border: 2px solid var(--firstColor);
  min-height: 45px;
  margin-bottom: 1em;
  padding-left: 10px;
  font-size: 0.875rem;
}
textarea#message {
  padding-top: 10px;
}

/* === MEDIA QUERIES === */
@media screen and (min-width: 550px) {
  /* === INDEX PAGE === */

  /* Country Selection */
  .countrySelection {
    background-size: cover;
  }

  .countrySelection .container .flags {
    width: 50%;
    max-width: 20rem;
  }

  .countrySelection .container p {
    font-size: 1.3rem;
    width: 22.5rem;
  }

  /* Hero Section */
  .heroSection h1 {
    max-width: 30rem;
    font-size: 2rem;
  }
  .heroSection p {
    max-width: 30rem;
  }

  .heroSection div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Welcome Text */

  .welcomeText {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Main - Contact, Privacy, Terms */
  .privacy main,
  .terms main,
  .helpdesk main,
  .contact main {
    margin: 0 15vw;
  }

  .helpdesk main p,
  .contact main p {
    max-width: 30rem;
  }

  /* Footer */
  footer #footerWrapper {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
  }

  footer #footerWrapper > a {
    margin: 0;
    padding: 0;
    border-bottom: none;
  }

  footer #footerWrapper .helpdesk,
  footer #footerWrapper .copyright {
    margin: 0;
    padding: 0;
    text-align: right;
    border-bottom: none;
  }

  footer ul {
    margin-top: 0;
    grid-column: span 2;
    gap: 5px;
  }
}

@media screen and (min-width: 700px) {
  body.root-index,
  body.nl-index {
    background-image: url("../img/Lines/Line.png");
    background-repeat: no-repeat;
    background-size: 140%;
    background-position: 85% 100%;
  }

  /* ROOT PAGE COUNTRY SELECTION */
  /* Country Selection */
  .countrySelection {
    background-image: url("../img/BG/Desktop_Country_BG.jpg");
  }

  .heroSection {
    background-image: url("../img/Lines/Line-1.png"),
      url("../img/BG/Desktop_Main_BG.jpg");
    background-size: 140%, cover;
    background-position: 0% 100%, 55% 50%;
    flex-direction: row;
    align-items: flex-start;
  }

  .heroSection div {
    max-width: 26rem;
    margin-top: 9rem;
  }

  .heroSection div.heroImages .logo,
  .heroSection div.heroImages .mockup.phone {
    display: none;
  }

  .welcomeText {
    display: flex;
    justify-content: center;
    position: relative;
  }

  .welcomeText div {
    max-width: 40rem;
  }

  .welcomeText .not-active.line {
    display: block;
    position: absolute;
    bottom: -23rem;
    left: 0;
  }

  .welcomeText .not-active.line img {
    max-width: 100vw;
  }

  /* Benefit list */

  .benefitsList {
    display: flex;
    justify-content: center;
  }

  .benefitsList ul {
    max-width: 30rem;
  }

  /* Best Titles + Img Carousel */
  .bestTitlesSection #sliderContainer div:first-child {
    display: flex;
    flex-direction: column;
    align-content: center;
  }

  .bestTitlesSection #sliderContainer h2 {
    max-width: 50rem;
  }

  .bestTitlesSection #title--images {
    position: relative;
  }

  .bestTitlesSection #title--images img {
    max-width: 10rem;
  }

  /* Features List Grid */

  .sectionFeaturesList {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 6rem 0;
  }

  .featuresList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: fit-content 1fr 1fr;
    max-width: 50rem;
  }

  .featuresList h2 {
    grid-column: span 2;
  }

  .featuresText {
    padding: 2rem 2.5rem;
  }

  .featuresText p {
    font-size: 1rem;
  }

  /* Main - Contact, Privacy, Terms */
  .privacy main,
  .terms main,
  .helpdesk main,
  .contact main {
    margin: 0 20vw;
  }

  .contact main {
    align-items: center;
  }

  .helpdesk main {
    align-items: flex-start;
  }

  footer ul {
    max-width: 30rem;
    grid-row: 2;
    grid-column: 2;
    gap: 1rem;
  }

  footer #footerWrapper {
    gap: 0 2rem;
  }

  footer #footerWrapper .logo-link {
    display: inline;
  }

  footer #footerWrapper .copyright {
    grid-row: 2;
    text-align: left;
    margin: 0 0 0 1rem;
  }
}

@media screen and (min-width: 950px) {
  /* Header */

  .header {
    display: flex;
    justify-content: center;
    border-bottom: none;
  }

  .header div {
    display: flex;
    justify-content: space-between;
    width: 80%;
  }

  .header .navigation {
    display: flex;
    /* gap: 2rem; */
    list-style: none;
    /* margin: 3rem 2rem 3rem 0; */
    align-items: center;
  }

  .header .navigation a {
    color: var(--secondColor);
    text-decoration: none;
  }

  .header a.active {
    border-bottom: 1px solid var(--secondColor);
  }

  .header .navigation li:nth-of-type(4) {
    position: relative;
  }

  .header .navigation .countries__desktop {
    position: absolute;
  }

  .header .navigation .countries__desktop li {
    cursor: pointer;
  }

  .header .navigation .countries__desktop li:nth-of-type(1) {
    width: 4.3rem;
  }

  .header .navigation .countries__desktop li:nth-of-type(1)::after {
    content: "▾";
  }
  .header .navigation .countries__desktop.active li:nth-of-type(1)::after {
    content: "▴";
    top: -0.1rem;
  }

  .header .navigation .countries__desktop.active li a {
    width: 100%;
  }

  .header .navigation .countries__desktop li:nth-of-type(2),
  .header .navigation .countries__desktop li:nth-of-type(3),
  .header .navigation .countries__desktop li:nth-of-type(4) {
    display: none;
  }

  .header .navigation .countries__desktop.active li:nth-of-type(2),
  .header .navigation .countries__desktop.active li:nth-of-type(3),
  .header .navigation .countries__desktop.active li:nth-of-type(4) {
    display: block;
    position: relative;
    top: 1rem;
    right: 5.5rem;
  }

  .header .navigation .countries__desktop.active li:nth-of-type(2) a,
  .header .navigation .countries__desktop.active li:nth-of-type(3) a,
  .header .navigation .countries__desktop.active li:nth-of-type(4) a {
    display: block;
    padding: 0.8rem 1rem;
    min-width: 10rem;
  }

  .header .navigation .countries__desktop.active li:nth-of-type(2) a:hover,
  .header .navigation .countries__desktop.active li:nth-of-type(2) a:active,
  .header .navigation .countries__desktop.active li:nth-of-type(3) a:hover,
  .header .navigation .countries__desktop.active li:nth-of-type(3) a:active,
  .header .navigation .countries__desktop.active li:nth-of-type(4) a:hover,
  .header .navigation .countries__desktop.active li:nth-of-type(4) a:active {
    background-color: var(--thirdColor);
    cursor: pointer;
  }

  .header .navigation .countries__desktop li:nth-of-type(2) a::before,
  .header .navigation .countries__desktop li:nth-of-type(3) a::before,
  .header .navigation .countries__desktop li:nth-of-type(4) a::before {
    display: inline-block;
    content: "";
    width: 22px;
    height: 15px;
    border-radius: 2px;
    margin: 0 12px 0 0;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .header .navigation .countries__desktop.active li:nth-of-type(2) a::before {
    background-image: url("../img/flags/south-africa.png");
  }
  .header .navigation .countries__desktop.active li:nth-of-type(3) a::before {
    background-image: url("../img/flags/netherlands.png");
  }
  .header .navigation .countries__desktop.active li:nth-of-type(4) a::before {
    background-image: url("../img/flags/germany.png");
  }

  .header .navigation__buttons {
    display: none;
  }

  .logo {
    max-width: 10rem;
    margin: 1rem 2rem;
  }

  /* Hero Section */
  .heroSection {
    padding: 0 10%;
    background-size: cover;
    background-position: 50% 50%;
    height: 43.125rem;
  }

  /* .heroSection {
        padding: 0 10%;
        background-size: cover;
        background-position: 50% 50%;
        height: 53.125rem;
    } */

  .heroSection div {
    max-width: 35rem;
    margin-top: 10rem;
    align-items: flex-start;
    /* word-break: break-all; */
  }

  .heroSection p {
    line-height: 1.3;
  }

  .heroSection h1 {
    font-size: 250%;
    max-width: 45rem;
  }

  /* Welcome Text */

  .welcomeText {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 5rem;
  }

  .welcomeText p {
    max-width: 50rem;
  }

  .welcomeText .not-active.line {
    bottom: -30rem;
  }

  .welcomeText .not-active.line img {
    max-height: 60rem;
    width: 100vw;
  }

  .welcomeText div .not-active.welcometext {
    display: block;
    width: 40vw;
    max-width: 35rem;
    margin-top: 0.5rem;
  }

  .welcomeText div:first-child {
    display: flex;
    flex-direction: column;
  }

  /* Benefits list */

  .benefitsList {
    display: block;
    padding: 0;
  }

  /* Best Title section */

  .bestTitlesSection {
    margin-bottom: 3rem;
  }

  .bestTitlesSection #title--images {
    overflow: hidden;
  }

  .arrows {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
  }

  .arrows span {
    cursor: pointer;
    padding: 0 1rem;
  }

  /* ====== */
  /* FAQ Section Country Index*/

  .faq {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, max-content);
    align-items: flex-start;
    margin: 5rem 10vw;
    gap: 0 5rem;
  }

  .faq p {
    max-width: none;
    margin-right: 1rem;
  }

  .faq div:nth-child(1) {
    grid-column-start: span 2;
    margin: 0 0 2rem 0;
    flex-direction: row;
    justify-content: space-between;
  }

  .faq img.not-active.faq-img {
    display: block;
    grid-column: 2;
    grid-row: 2 / last-line;
    max-width: 40vw;
  }

  .faq div:nth-child(1) button {
    margin: 2rem 0 0 0;
    cursor: pointer;
  }

  .faq div:nth-child(1) button:hover {
    background-color: var(--hoverBtnColor);
  }

  .questions {
    margin: 0 1rem;
    align-self: stretch;
    justify-content: center;
    min-height: 110px;
  }

  .questions.question1 {
    margin: 0 1rem;
  }

  .questions:nth-last-of-type(1),
  .questions:nth-last-of-type(2) {
    border: none;
  }

  /* ====== */
  /* CTA PROMO */

  .ctaPromo {
    margin: 0 10vw;
  }

  .ctaPromo div {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    grid-template-rows: repeat(3, min-content);
    gap: 0 3rem;
    padding: 2rem 5rem;
    justify-content: center;
    justify-items: end;
    text-align: left;
    border: 3px solid var(--firstColor);
    border-radius: 20px;
    background-color: var(--whiteColor);
  }

  .ctaPromo div img {
    grid-column: 1 / 1;
    grid-row: 1 / last-line;
    max-width: 15rem;
  }

  .ctaPromo div h2 {
    margin: 0;
    font-size: 1.8rem;
    grid-column-start: 2;
    max-width: 22rem;
  }

  .ctaPromo div p {
    grid-column-start: 2;
    max-width: none;
    margin: 1rem 0 0 0;
  }

  .ctaPromo div p:nth-child(1) {
    grid-row: 2 / 3;
  }

  .ctaPromo div p:nth-child(2) {
    grid-row: 3 / 4;
  }

  /* Main - Contact, Privacy, Terms */
  .privacy main,
  .terms main,
  .helpdesk main,
  .contact main {
    margin: 0 22vw;
  }

  .privacy main p,
  .terms main p,
  .privacy main li,
  .terms main li {
    max-width: 50rem;
  }

  .privacy main li,
  .terms main li {
    margin: 0.75rem 0rem 0 0rem;
  }

  .privacy h2,
  .terms h2 {
    margin: 1.5rem 0 0.75rem;
  }

  footer #footerWrapper {
    margin: 0 10vw;
  }

  footer #footerWrapper .logo {
    margin: 1rem;
  }

  footer #footerWrapper .copyright {
    margin: 0 0 0 2rem;
  }

  /* ====== */
  .pricepoint {
    padding: 0.5rem 10.5rem;
  }
}
@media screen and (max-width: 480px) {
  footer ul {
    flex-direction: column;
    align-items: center;
  }
  footer .devider {
    color: #fff;
    opacity: 0;
    height: 6px;
  }
  footer div.helpdesk,
  footer div.copyright {
    padding: 2rem 2rem 0;
  }
}
