@charset "UTF-8";
/* --------------------------------------------------------------------------------------------------------- */
/* --- VARIABLES ------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
:root {
  scroll-behavior: unset;
}

p.columns {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 991px) {
  p.columns {
    -moz-columns: 1;
         columns: 1;
  }
}

.row {
  row-gap: 20px;
}

/* ---------------------------------------------------------------------------------------------------- */
/* ASPECT RATIO --------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.aspect-ratio-1-1 {
  position: relative;
}
.aspect-ratio-1-1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
.aspect-ratio-1-1 img,
.aspect-ratio-1-1 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-3-1 {
  position: relative;
}
.aspect-ratio-3-1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 33.3333333333%;
}
.aspect-ratio-3-1 img,
.aspect-ratio-3-1 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-3-2 {
  position: relative;
}
.aspect-ratio-3-2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 66.6666666667%;
}
.aspect-ratio-3-2 img,
.aspect-ratio-3-2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-16-9 {
  position: relative;
}
.aspect-ratio-16-9:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.aspect-ratio-16-9 img,
.aspect-ratio-16-9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-4-3 {
  position: relative;
}
.aspect-ratio-4-3:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 75%;
}
.aspect-ratio-4-3 img,
.aspect-ratio-4-3 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-2-1 {
  position: relative;
}
.aspect-ratio-2-1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 50%;
}
.aspect-ratio-2-1 img,
.aspect-ratio-2-1 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* --------------------------------------------------------------------------------------------------------- */
/* --- MIXINS ---------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
/* --- MAIN STYLES ----------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
body {
  font-family: "Poppins", sans-serif;
  color: #5c616b;
  font-size: 18px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}

a {
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.logo-placeholder {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding: 10px 30px;
  background-color: #FFFFFF;
  color: #1c3e92 !important;
  border-radius: 12px;
  margin-bottom: 60px;
}
.logo-placeholder span {
  font-weight: 400;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style: none;
}
ul li {
  position: relative;
  padding: 0 0 0 24px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}
ul li:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  font-size: 1rem;
  transform: translateY(3px);
  color: #1c3e92;
}
ul.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin-top: 10px;
}
ul.contact li {
  padding: 0;
}
ul.contact li:before {
  display: none;
}
ul.contact li a {
  color: #f6a321;
}
ul.contact li a:hover {
  color: #1c3e92;
}
ul.contact li a:hover i {
  background-color: #1c3e92;
}
ul.contact li i {
  width: 40px;
  height: 40px;
  background-color: #f6a321;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #FFFFFF;
  border-radius: 4px;
  transition: 0.2s ease-in-out;
}

/* --------------------------------------------------------------------------------------------------------- */
/* --- BUTTONS --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
.btn-container {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .btn-container {
    flex-direction: column;
  }
  .btn-container .btn-container__btn {
    width: 100%;
  }
}
.btn-container__btn {
  border: 2px solid #FFFFFF;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.btn-container__btn--primary {
  background-color: #f6a321;
  border-color: #f6a321;
  color: #FFFFFF;
}
.btn-container__btn--primary:hover, .btn-container__btn--primary:focus, .btn-container__btn--primary:active {
  background-color: #FFFFFF;
  color: #f6a321;
}
.btn-container__btn--primary-outline {
  color: #f6a321;
  border-color: #f6a321;
}
.btn-container__btn--primary-outline:hover, .btn-container__btn--primary-outline:focus, .btn-container__btn--primary-outline:active {
  background-color: #f6a321;
  color: #FFFFFF;
}
.btn-container__btn--white {
  background-color: #FFFFFF;
  color: #f6a321;
}
.btn-container__btn--white:hover, .btn-container__btn--white:focus, .btn-container__btn--white:active {
  background-color: #f6a321;
  border-color: #f6a321;
  color: #FFFFFF;
}
.btn-container__btn--white-outline {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn-container__btn--white-outline:hover, .btn-container__btn--white-outline:focus, .btn-container__btn--white-outline:active {
  background-color: #FFFFFF;
  color: #f6a321;
}

/* --------------------------------------------------------------------------------------------------------- */
/* --- SECTION --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
section {
  position: relative;
  padding: 120px 0;
  background-color: #FFFFFF;
}
@media (max-width: 1199px) {
  section {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  section {
    padding: 60px 0;
  }
}
section.second-last {
  background-color: #f7f7f7;
  padding-bottom: 240px;
}
@media (max-width: 1199px) {
  section.second-last {
    padding-bottom: 160px;
  }
}
@media (max-width: 991px) {
  section.second-last {
    padding-bottom: 120px;
  }
}
section.border-top {
  border-top: 10px solid #F7F7F7 !important;
}

/* --------------------------------------------------------------------------------------------------------- */
/* --- HEADINGS -------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Poppins", sans-serif;
  color: #1c3e92;
  margin-bottom: 20px;
  line-height: 1.3;
}

h1,
.h1 {
  font-size: 2.488rem;
}

h2 {
  font-size: 2.074rem;
}

h3 {
  font-size: 1.728rem;
}

h4 {
  font-size: 1.44rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

@media (min-width: 48em) {
  h1,
.h1 {
    font-size: calc(2.488rem + (1vw - 0.48rem) * 0.7833);
    min-height: 0vw;
  }

  h2 {
    font-size: calc(2.074rem + (1vw - 0.48rem) * 0.5097);
    min-height: 0vw;
  }

  h3 {
    font-size: calc(1.728rem + (1vw - 0.48rem) * 0.3125);
    min-height: 0vw;
  }

  h4 {
    font-size: calc(1.44rem + (1vw - 0.48rem) * 0.1708);
    min-height: 0vw;
  }

  h5 {
    font-size: calc(1.2rem + (1vw - 0.48rem) * 0.0694);
    min-height: 0vw;
  }

  h6 {
    font-size: calc(1rem + (1vw - 0.48rem) * 0);
    min-height: 0vw;
  }
}
@media (min-width: 120em) {
  h1,
.h1 {
    font-size: 3.052rem;
  }

  h2 {
    font-size: 2.441rem;
  }

  h3 {
    font-size: 1.953rem;
  }

  h4 {
    font-size: 1.563rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1rem;
  }
}
/* --------------------------------------------------------------------------------------------------------- */
/* --- HERO ------------------------------------------------------------------------------------------------ */
/* --------------------------------------------------------------------------------------------------------- */
.hero {
  padding: 120px 0 240px;
  background-color: transparent !important;
}
.hero:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .hero {
    padding: 60px 0;
  }
}
.hero__background-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  opacity: 1;
}
.hero .logo {
  width: 280px;
  max-width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .hero .logo {
    width: 250px;
  }
}
.hero .btn-container__btn--primary:hover, .hero .btn-container__btn--primary:focus, .hero .btn-container__btn--primary:active {
  border-color: #FFFFFF;
}
@media (max-width: 767px) {
  .hero div,
.hero h1, .hero .h1, .hero h2, .hero .h2, .hero h3, .hero .h3, .hero h4, .hero .h4, .hero h5, .hero .h5, .hero h6, .hero .h6,
.hero p {
    align-items: flex-start !important;
    text-align: left;
  }
}

/* --------------------------------------------------------------------------------------------------------- */
/* --- SECTION HEADER -------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
.section-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header:after {
  content: "";
  width: 80px;
  height: 6px;
  display: block;
  background: #f6a321;
  opacity: 0.2;
  margin-bottom: 80px;
}
.section-header h1, .section-header .h1, .section-header h2, .section-header .h2, .section-header h3, .section-header .h3, .section-header h4, .section-header .h4, .section-header h5, .section-header .h5, .section-header h6, .section-header .h6 {
  color: #f6a321;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------------------------------------- */
/* --- INTRODUCTION ---------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
#introduction {
  padding: 0;
  background-color: #f7f7f7;
}
@media (max-width: 991px) {
  #introduction {
    padding: 120px 0;
  }
}
#introduction .introduction-container {
  background: #FFFFFF;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
  padding: 60px;
  border-radius: 24px;
  transform: translateY(-120px);
}
@media (max-width: 1199px) {
  #introduction .introduction-container {
    transform: translateY(0px);
  }
}
@media (max-width: 991px) {
  #introduction .introduction-container {
    padding: 0px;
    background: transparent;
    box-shadow: none;
  }
}
#introduction img {
  border-radius: 24px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  #introduction img {
    background-color: #FFFFFF;
  }
}

/* --------------------------------------------------------------------------------------------------------- */
/* --- LOGO CONTAINER -------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
.logos .logo-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.logos .logo-container > div {
  background-color: #FFFFFF;
  border-radius: 24px;
}
.logos .logo-container img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  padding: 20px;
  transition: 0.2s ease-in-out;
}

/* --------------------------------------------------------------------------------------------------------- */
/* --- HEADER ---------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
header {
  background-color: #FFFFFF;
  height: 80px;
}
header img {
  height: 60px;
}

/* --------------------------------------------------------------------------------------------------------- */
/* --- CONTENT BLOCK --------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
.content-block {
  padding: 60px;
  border-radius: 24px;
  background-color: #FFFFFF;
}
.content-block.neutral {
  background-color: #f7f7f7;
}

/* --------------------------------------------------------------------------------------------------------- */
/* --- CONTACT --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */
.contact {
  padding-bottom: 40px;
}
.contact #contact {
  position: absolute;
}
.contact .contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  margin-top: -240px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199px) {
  .contact .contact-block {
    margin-top: -160px;
  }
}
@media (max-width: 991px) {
  .contact .contact-block {
    margin-top: -120px;
    grid-template-columns: 1fr;
  }
}
.contact .contact-block img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.contact .contact-block__content {
  background-color: #FFFFFF;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact .contact-block__content > *:last-child {
  margin-bottom: 0;
}
.contact .copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
}/*# sourceMappingURL=styles.css.map */