@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.header {
  background-color: white;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}
.header__logo {
  max-width: 230px;
  height: auto;
  margin-left: 30px;
}

.content-wrapper {
  background-color: #f9f9f9;
  padding: 40px 0;
}
.content-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .content-container {
    flex-direction: column;
    padding: 0 16px;
  }
}
.content-column {
  flex: 1;
}
.content-column p {
  color: #572778;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .content-column p {
    font-size: 14px;
    line-height: 1.3;
  }
}

.yellow-card-info {
  margin: 0;
  padding: 0;
}
.yellow-card-info p {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #572778;
}
.yellow-card-info p:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #572778;
  font-size: 16px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .yellow-card-info p {
    font-size: 14px;
  }
}
.yellow-card-info a {
  color: #572778;
  text-decoration: underline;
}
.yellow-card-info a:hover {
  text-decoration: none;
}

.content-column > p {
  margin-bottom: 20px;
}

.yellow-card-info p:before {
  display: inline-block;
  vertical-align: baseline;
}

/**
* Create a mixin that works for
* media queries in the following breakpoints:
*           xs
*           sm
*           md
*           lg
*           xl
*           xxl
*
* This project follow the logic of responsive-design
*/
* {
  padding: 0;
  margin: 0;
}

.btn-download {
  color: #FFF;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  background-color: #572778;
  padding: 16px 20px;
  border: 1px solid #FFF;
  border-radius: 8px;
}
.btn-download:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #572778;
}
.btn-download::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  color: #FFF;
  margin-left: 10px;
  margin-bottom: -5px;
  background: url("./images/download-icon.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.h1 {
  font-size: 130px;
  line-height: 120px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .h1 {
    font-size: 56px;
    line-height: 68px;
  }
}

.h2 {
  font-size: 40px;
  line-height: 48px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .h2 {
    font-size: 24px;
    line-height: 28px;
  }
}

.h3 {
  font-size: 34px;
  line-height: 40px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .h3 {
    font-size: 22px;
    line-height: 30px;
  }
}

.h4 {
  font-size: 28px;
  line-height: 32px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .h4 {
    font-size: 20px;
    line-height: 28px;
  }
}

.h5 {
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .h5 {
    font-size: 18px;
  }
}

.p {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .p {
    font-size: 12px;
  }
}

.p-small {
  font-size: 18px;
  line-height: 24px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .p-small {
    font-size: 12px;
    line-height: 18px;
  }
}

.body {
  font-size: 22px;
  line-height: 32px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .body {
    font-size: 18px;
    line-height: 24px;
  }
}

.footnote {
  font-size: 18px;
  line-height: 24px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .footnote {
    font-size: 12px;
    line-height: 24px;
  }
}

.link {
  text-decoration: underline;
}

.link-just-mobile {
  color: inherit;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .link-just-mobile {
    text-decoration: underline;
  }
}

.link-no-style {
  text-decoration: none;
  color: inherit;
}

.list-no-style {
  list-style: none;
}

.footer {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 30px 40px;
  background-image: url("./images/footer-background-yellow.png");
  background-repeat: no-repeat;
  background-position: left;
  background-size: 40% 100%;
  background-color: #f9f9f9;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 0 16px 60px 16px;
    background-size: 90% 100%;
  }
}
.footer__copy {
  position: absolute;
  left: 3%;
  bottom: 20%;
  color: #000;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}
@media only screen and (max-width: 767px) {
  .footer__copy {
    width: 90%;
    left: 2%;
    text-align: left;
    font-size: 12px;
  }
}
.footer__outlook-logo {
  width: 270px;
  height: 83px;
}
@media only screen and (max-width: 767px) {
  .footer__outlook-logo {
    width: 172px;
    height: 53px;
  }
}

.nav {
  padding: 32px 40px;
}
@media only screen and (max-width: 767px) {
  .nav {
    padding: 16px;
  }
}
.nav__logo {
  width: 305px;
  height: 68px;
}
@media only screen and (max-width: 767px) {
  .nav__logo {
    width: 180px;
    height: 40px;
  }
}

.home {
  background: linear-gradient(to left bottom, rgba(248, 246, 246, 0.5), rgba(192, 190, 189, 0.1));
}
.home__background {
  background-image: url("./images/background-main.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 90%;
}
@media only screen and (max-width: 1199px) {
  .home__background {
    background-image: url("./images/background-mobile.png");
    background-size: 100% 65%;
  }
}
.home__container-title {
  width: 60%;
  padding: 160px 0 40px 0;
  margin: auto;
}
@media only screen and (max-width: 1499px) {
  .home__container-title {
    width: 80%;
  }
}
@media only screen and (max-width: 1199px) {
  .home__container-title {
    width: 90%;
  }
}
@media only screen and (max-width: 991px) {
  .home__container-title {
    width: 95%;
  }
}
@media only screen and (max-width: 767px) {
  .home__container-title {
    width: auto;
    padding: 64px 16px;
  }
}
.home__title {
  position: relative;
  color: transparent;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #DDC76B, #C7A30D);
  -webkit-background-clip: text;
  background-color: text;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .home__title {
    margin-bottom: 16px;
  }
}
.home__title::after {
  content: "";
  position: absolute;
  width: 43px;
  height: 50px;
  top: 16%;
  left: 610px;
  background: url("./images/black-triangle.svg") no-repeat;
}
@media only screen and (max-width: 767px) {
  .home__title::after {
    width: 22px;
    height: 17px;
    top: 23%;
    left: 260px;
    background-size: 22px 17px;
  }
}
.home__sub-title {
  color: #FFF;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .home__sub-title {
    margin-bottom: 16px;
  }
}
.home__paragraph {
  color: #FFF;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .home__paragraph {
    margin-bottom: 24px;
  }
}
.home__paragraph-icon {
  width: 15px;
  height: 15px;
}
@media only screen and (max-width: 767px) {
  .home__paragraph-icon {
    width: 10px;
    height: 9px;
  }
}
.home__line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .home__line {
    margin-bottom: 24px;
  }
}
.home__description {
  color: #FFF;
}
.home__description-sup {
  position: relative;
  font-size: 13px;
}
@media only screen and (max-width: 767px) {
  .home__description-sup {
    font-size: 10px;
  }
}
.home__container-video {
  width: 60%;
  padding: 80px 0;
  margin: auto;
}
@media only screen and (max-width: 1499px) {
  .home__container-video {
    width: 80%;
  }
}
@media only screen and (max-width: 1199px) {
  .home__container-video {
    width: 90%;
  }
}
@media only screen and (max-width: 991px) {
  .home__container-video {
    width: 95%;
  }
}
@media only screen and (max-width: 767px) {
  .home__container-video {
    width: auto;
    padding: 32px 16px 64px 16px;
  }
}
.home__video-title {
  color: #FFF;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .home__video-title {
    margin-bottom: 24px;
  }
}
.home__video-title-sup {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .home__video-title-sup {
    font-size: 12px;
  }
}
.home__video-description {
  color: #FFF;
  line-height: 32px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .home__video-description {
    line-height: 20px;
    margin-bottom: 32px;
  }
}
.home__video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #FFF;
  margin-bottom: 40px;
  border: 2px solid #FFF;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .home__video-wrapper {
    margin-bottom: 32px;
  }
}
.home__video-preview {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 8;
  cursor: pointer;
}
.home__video-play-icon {
  position: absolute;
  width: 96px;
  height: 96px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .home__video-play-icon {
    width: 63px;
    height: 63px;
  }
}
.home__video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}
.home__video-transcript-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .home__video-transcript-wrapper {
    padding: 0 16px;
    align-items: center;
    flex-direction: column;
  }
}
.home__video-transcript-container-content {
  width: 70%;
}
@media only screen and (max-width: 991px) {
  .home__video-transcript-container-content {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .home__video-transcript-container-content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 24px;
  }
}
.home__video-transcrit-content {
  color: #1F1F1F;
}
.home__video-transcript-content-sup {
  font-size: 11px;
}
@media only screen and (max-width: 767px) {
  .home__video-transcript-content-sup {
    font-size: 9px;
  }
}
.home__video-transcript-container-button {
  width: 35%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .home__video-transcript-container-button {
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .home__video-transcript-container-button {
    width: 100%;
    justify-content: flex-start;
    margin-left: -10px;
    margin-bottom: 10px;
  }
}
.home__container-cards {
  width: 60%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 80px;
  margin: 80px auto;
}
@media only screen and (max-width: 1499px) {
  .home__container-cards {
    width: 80%;
  }
}
@media only screen and (max-width: 1199px) {
  .home__container-cards {
    width: 90%;
  }
}
@media only screen and (max-width: 991px) {
  .home__container-cards {
    width: 95%;
  }
}
@media only screen and (max-width: 767px) {
  .home__container-cards {
    width: auto;
    flex-direction: column;
    column-gap: 0;
    row-gap: 64px;
    padding: 64px 16px;
    margin: 0 auto;
  }
}
.home__container-card {
  width: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .home__container-card {
    width: 100%;
  }
}
.home__container-card-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .home__container-card-image {
    margin-bottom: 24px;
  }
}
.home__card-image {
  width: 100%;
  height: 100%;
}
.home__container-card-button {
  height: 60px;
}
.home__card-btn {
  position: absolute;
}
.home__section {
  padding: 80px 0 54px 0;
  background-color: #f9f9f9;
}
@media only screen and (max-width: 767px) {
  .home__section {
    padding: 0;
  }
}
.home__container-info {
  width: 60%;
  color: #572778;
  margin: auto;
}
@media only screen and (max-width: 1499px) {
  .home__container-info {
    width: 80%;
  }
}
@media only screen and (max-width: 1199px) {
  .home__container-info {
    width: 90%;
  }
}
@media only screen and (max-width: 991px) {
  .home__container-info {
    width: 95%;
  }
}
@media only screen and (max-width: 767px) {
  .home__container-info {
    width: auto;
    padding: 64px 16px;
  }
}
.home__p-info {
  margin-bottom: 24px;
}
.home__p-content {
  line-height: 24px;
}
@media only screen and (max-width: 767px) {
  .home__p-content {
    line-height: 18px;
  }
}

/*# sourceMappingURL=main.css.map */
