:root {
  --blue: #0398d5;
  --questionBlue: #c7e5f0;
  --questionBorder: #2d96c2;
  --pink: #fd8f87;
  --hoverpink: #db7c75;
  --darkgray: #a7a7a7;
  --background: #fefefe;
  --articleback: #f8f8f8;
  --selectionBack: #e4e4e4;
}

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&family=Roboto:ital,wght@0,500;0,900;1,500&display=swap");

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--background);
  overflow-x: hidden;
  max-width: 100%;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.socialIcons {
  font-size: 2rem;
}
.socialIcons a {
  color: var(--pink);
  text-decoration: none;
}
.socialIcons i {
  margin-left: 1rem;
}
.logo img {
  max-width: 7rem;
}
header {
  height: 7rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1170px;
  margin: 0 auto;
  padding: 2rem 2rem 0 2rem;
}

.mainSection {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  max-width: 1170px;
  min-height: 470px;
  margin: 4rem auto 2rem auto;
  position: relative;
}
.mainSection__text {
  width: 62%;
}
.mainSection__img {
  top: 50%;
  position: absolute;
  right: -8rem;
  transform: translateY(-50%);
  width: 675px;
}
.mainSection__text h1 {
  font-size: 3.75rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  color: var(--blue);
  line-height: 5.1rem;
}
.mainSection__text h1::selection {
  color: var(--pink);
  background-color: var(--selectionBack);
}
.coloredLink {
  color: var(--pink);
  white-space: nowrap;
}
.coloredLink::selection {
  color: var(--blue);
  background-color: var(--selectionBack);
}
.mainSection__text h2 {
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: var(--darkgray);
  font-size: 1.25rem;
}
.mainSection__text h2::selection {
  color: var(--blue);
  background-color: var(--selectionBack);
}
.startButtonWrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 10rem;
}
.startButtonWrap .button {
  width: 100%;
  max-width: 345px;
}
.button {
  background-color: var(--pink);
  color: white;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s all;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
}
.button:focus {
  border: none;
  outline: none;
}
.button:hover {
  background-color: var(--hoverpink);
}
.navigator {
  position: fixed;
  top: 10%;
  right: 2rem;
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 404;
}
.navigator a {
  border-radius: 50px;
  width: 75px;
  height: 75px;
  position: relative;
  cursor: pointer;
  transition: 0.3s all;
  opacity: 1;
  display: none;
}
.navigator a i {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  font-size: 1.25rem;
}
.navigator .navigator__up {
  position: absolute;
  top: 0;
  right: 0;
  background-color: white;
  color: var(--blue);
  border: 3px solid var(--blue);
}
.navigator .navigator__down {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--pink);
  color: white;
  border: 2px solid var(--pink);
}

.articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  background-color: var(--articleback);
  padding: 0 0 5rem 0;
}

.article {
  width: 1100px;
  position: relative;
  padding-top: 4rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.article:nth-child(4n + 1) .article__title {
  width: 60%;
  margin-left: 40%;
}

.article:nth-child(4n + 1) .article__image {
  margin-right: 1rem;
}

.article:nth-child(4n + 3) .article__image {
  order: 1;
  margin-left: 1rem;
}

.article__content::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: white;
  position: absolute;
  top: -1rem;
  left: 0;
}
.article__flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
}
.article__image {
  width: calc(40% - 1rem);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.article__image img {
  width: 100%;
}
.article__content {
  width: 60%;
  position: relative;
}
.article__title {
  width: 100%;
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  color: var(--blue);
  padding-bottom: 2rem;
}
.article__title::selection {
  color: var(--pink);
  background-color: var(--selectionBack);
}
.article__content p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
}
.article__content p::selection {
  color: var(--blue);
  background-color: var(--selectionBack);
}

.article__content blockquote {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.375rem;
  color: var(--pink);
  margin: 1rem 0;
}

.article__content blockquote::selection {
  color: white;
  background-color: var(--pink);
}

.article__question .question__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: var(--blue);
}
.article__question {
  width: 100%;
  padding: 3rem;
  background-color: var(--questionBlue);
  border: 1px solid var(--questionBorder);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.article__question .learnmore i {
  margin-left: 1rem;
}
.article__question .question__mark {
  color: var(--pink);
  background-color: white;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
.article__question .question__text {
  width: 60%;
  color: var(--blue);
}
.article__question .question__text::selection {
  color: white;
  background-color: transparent;
}
.article__question .button.learnmore {
  height: 50px;
  min-width: 158px;
  padding: 0 1rem;
}
.article__answer {
  background-color: var(--blue);
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
s  transition: 0.3s all;
  height: 0;
  overflow: hidden;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
}
.article__answer .answer__inner p::selection {
  color: white;
  background-color: var(--pink);
}
.articleAnchor {
  position: absolute;
  top: -7rem;
}
.answer__inner {
  max-width: 50%;
  padding: 2rem 0;
}
.answer__inner .closeWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.answer__inner .closeWrap i {
  cursor: pointer;
  color: white;
  font-size: 2rem;
}

footer {
  height: 7rem;
  background-color: var(--questionBlue);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerInner {
  width: 100%;
  height: 100%;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 1rem;
}
footer a {
  text-align: center;
}
.footerInner > * {
  width: 33%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
}
.footerArubaLogo {
  justify-content: flex-start;
}
.footerForbesLogo {
  justify-content: flex-end;
}
.footerArubaLogo a,
.footerForbesLogo a {
  text-decoration: none;
  color: var(--blue);
}
.footerArubaLogo img {
  max-height: 4rem;
}
.footerForbesLogo img {
  max-height: 2.5rem;
  width: 100%;
  max-width: 300px;
}
.footerToTop {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.footerToTop div {
  font-size: 19px;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
}
.footerToTop i {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--blue);
  font-size: 1.5rem;
}
.footerToTop a {
  text-decoration: none;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.article__mobileTitle {
  display: none;
}

@media screen and (max-width: 1200px) {
  .mainSection {
    padding: 0 2rem;
  }
  .mainSection__img {
    width: 740px;
  }
}

@media screen and (max-width: 1000px) {
  header .logo.aruba {
    transform: translateX(20%);
  }
  .mainSection__text {
    width: 100%;
    order: 1;
  }
  .mainSection__img {
    width: 100%;
    position: relative;
    transform: none;
    max-width: 800px;
    margin: 3rem auto 0 auto;
    right: unset;
  }
  .mainSection {
    padding: 1rem;
  }
  .mainSection h1 {
    font-size: 4rem;
    line-height: 4rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
  .mainSection h2 {
    font-size: 1.4rem;
    font-weight: normal;
  }
  .startButtonWrap {
    padding: 0 1rem;
    margin-top: 7rem;
    width: 100%;
  }
  .articles {
    padding: 0;
    background-color: white;
  }
  .article {
    padding: 1rem 1rem 0 1rem;
    background-color: #f8f8f8;
    margin-bottom: 1rem;
  }
  .article__content {
    width: 100%;
  }

  .article .article__title {
    text-align: center;
  }

  .article:nth-child(4n + 1) .article__title {
    width: 100%;
    margin-left: 0;
  }
  .article:nth-child(4n + 3) .article__content {
    order: 1;
  }
  .article__image {
    height: 20rem;
    width: 70%;
    margin: 2rem auto 2rem auto !important;
  }
  .article__content h2 {
    display: none;
  }
  .button {
    width: 100%;
  }
  .article__question {
    justify-content: center;
    padding: 1.5rem;
  }
  .article__question .question__text {
    width: 100%;
  }
  .article__question .question__mark {
    margin-bottom: 2rem;
  }
  .article__question .learnmore {
    max-width: 50%;
    margin-top: 2rem;
    padding: 1rem;
  }
  .navigator {
    height: 80%;
  }
  .article__content::before {
    display: none;
  }
  footer {
    padding: 0;
    height: unset;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
  .footerInner {
    padding: 2rem 0 0 0;
  }
  .footerInner > * {
    padding: 2rem 0;
  }
  .footerArubaLogo {
    width: 100%;
    height: unset;
    order: 1;
    justify-content: center;
  }
  .footerForbesLogo {
    order: 2;
    height: unset;
    width: 100%;
    justify-content: center;
  }
  .footerToTop {
    width: 100%;
    height: unset;
  }
  .footerToTop i {
    top: -1rem;
  }
  .answer__inner {
    max-width: 80%;
  }
}

@media screen and (max-width: 550px) {
  .mainSection {
    margin-top: 0;
    padding-top: 0;
  }
  .mainSection h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
    line-height: 2.5rem;
  }
  .mainSection__img {
    margin: 0 auto;
  }
  .article__title {
    font-size: 2rem;
  }
  .article__image {
    width: 100%;
  }
  header {
    padding: 1rem 1rem 0 1rem;
  }
  .logo img {
    max-width: 5rem;
  }
  .socialIcons {
    font-size: 2rem;
  }
  .socialIcons i {
    font-size: 2rem;
  }
  header .logo.aruba {
    top: 5rem;
  }
  .navigator {
    height: 87.5%;
    flex-direction: row;
    align-items: flex-end;
    opacity: 0.9;
  }
  .navigator .navigator__up,
  .navigator .navigator__down {
    position: relative;
  }
  .navigator .navigator__down {
    margin-left: 2rem;
  }
  .footerForbesLogo img {
    width: 80%;
    margin: 0 auto;
  }
  .article__question .learnmore i {
    margin-left: 0.5rem;
  }
  .startButtonWrap {
    margin-bottom: 4rem;
    margin-top: 2rem;
  }
  .article__question .button.learnmore{
    height: unset;
    padding: 1rem;
    max-width: unset;
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .navigator {
    height: 87.5%;
    flex-direction: row;
    align-items: flex-end;
    opacity: 0.9;
    right: 1rem;
  }
  .navigator .navigator__up,
  .navigator .navigator__down {
    position: relative;
    width: 50px;
    height: 50px;
  }
  .navigator .navigator__down {
    margin-left: 1rem;
  }
  .logo img {
    max-width: 4.5rem;
  }
  .socialIcons {
    font-size: 1.5rem;
  }
  .socialIcons i {
    font-size: 1.5rem;
  }
}
