/* This comment is
* several lines long.
* since it uses the CSS comment syntax,
* it will appear in the CSS output. */
:root {
  --table-width: 1120px;
  --design-width: 1366px;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}
a:active, a:focus, a:hover {
  text-decoration: none;
}

/*
IMPORT FONTS
-------------------------------------------- */
body,
input,
select,
button,
textarea {
  font-family: "Ubuntu", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

h2 {
  position: relative;
  padding-left: 38px;
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 640px) {
  h2 {
    padding-left: 28px;
    font-size: 28px;
  }
}
h2 span {
  position: relative;
  z-index: 1;
}
h2:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 90px;
  height: 90px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #62E6EC 0%, #659BFF 100%);
  border-radius: 50%;
}
@media (max-width: 640px) {
  h2:after {
    width: 64px;
    height: 64px;
  }
}
h2.alt::after {
  background: radial-gradient(50% 50%, #FFFFFF 0%, #FFFFFF 50%, #A1E6E6 100%);
}

/*
GLOBAL STYLES
-------------------------------------------- */
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: white;
  -webkit-overflow-scrolling: touch;
}

.wrapper {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .wrapper {
    padding: 0 18px;
  }
}
.wrapper.narrow {
  max-width: 1120px;
}

.button {
  display: inline-block;
  padding: 11px 34px;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #123D73;
  background: radial-gradient(36.8% 127.6% at 50% 50%, #FFFFFF 0%, #FFFFFF 62.07%, #A1E6E6 100%);
  border: none;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 640px) {
  .button {
    padding: 10px 24px;
    font-size: 13px;
    letter-spacing: 1px;
  }
}
.button:hover {
  color: #00AAB4;
}

/* apply a natural box layout model to all elements
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
 } */
/*
|------------------------------------------------------------
| Help Classes
|------------------------------------------------------------
*/
.display-none {
  display: none;
}

.display-block {
  display: block;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-justify {
  text-align: justify;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.fixed {
  position: fixed;
}

/*
|------------------------------------------------------------
| Clearfix
|------------------------------------------------------------
*/
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}

/*
= HEADER AND NAVIGATION
------------------------------------------------------------------------------------- */
header {
  position: absolute;
  left: 50%;
  top: 57px;
  z-index: 100;
  width: calc(100% - 110px);
  max-width: 1325px;
  padding: 13px 50px;
  transform: translateX(-50%);
  background-color: #123D73;
  border-radius: 66px;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  header {
    width: 95%;
  }
}
@media (max-width: 1200px) {
  header {
    top: 30px;
    padding: 10px 24px;
  }
}
@media (max-width: 640px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    padding: 12px 16px;
    border-radius: 0;
  }
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: none;
  padding: 0;
}
header .wrapper .logo {
  width: 173px;
  height: auto;
}
@media (max-width: 640px) {
  header .wrapper .logo {
    width: 130px;
  }
}
header .wrapper .logo img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  header .wrapper nav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 200;
    width: 82%;
    max-width: 360px;
    padding: 78px 24px 40px;
    background-color: #123D73;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-sizing: border-box;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
header .wrapper nav ul.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
}
@media (max-width: 1200px) {
  header .wrapper nav ul.main-nav {
    gap: 18px;
  }
}
@media (max-width: 640px) {
  header .wrapper nav ul.main-nav {
    display: block;
  }
}
header .wrapper nav ul.main-nav > li {
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  header .wrapper nav ul.main-nav > li {
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  header .wrapper nav ul.main-nav > li {
    display: block;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0;
    border-top: #00AAB4 solid 1px;
  }
  header .wrapper nav ul.main-nav > li:last-child {
    border-top: 0;
  }
}
header .wrapper nav ul.main-nav > li > a {
  position: relative;
  display: block;
  color: white;
}
header .wrapper nav ul.main-nav > li > a:hover {
  color: #e6e6e6;
}
@media (max-width: 640px) {
  header .wrapper nav ul.main-nav > li > a {
    padding: 24px 4px;
  }
}
header .wrapper nav ul.main-nav > li.lang {
  position: relative;
}
@media (max-width: 640px) {
  header .wrapper nav ul.main-nav > li.lang {
    display: inline-block;
    margin-top: 12px;
    border-top: 0;
  }
}
header .wrapper nav ul.main-nav > li.lang > a {
  padding: 0 20px 0 10px;
  border: white solid 1px;
  border-radius: 16px;
}
@media (max-width: 640px) {
  header .wrapper nav ul.main-nav > li.lang > a {
    padding: 4px 24px 4px 14px;
  }
}
header .wrapper nav ul.main-nav > li.lang > a:before {
  content: "";
  position: absolute;
  top: 8px;
  right: 6px;
  width: 5px;
  height: 5px;
  border-right: white 1px solid;
  border-bottom: white 1px solid;
  transform: rotate(45deg);
}
@media (max-width: 640px) {
  header .wrapper nav ul.main-nav > li.lang > a:before {
    top: 11px;
    right: 10px;
  }
}
header .wrapper nav ul.main-nav > li.lang > ul {
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  background-color: #123D73;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
header .wrapper nav ul.main-nav > li.lang > ul li {
  font-weight: 400;
  font-size: 14px;
}
header .wrapper nav ul.main-nav > li.lang > ul li a {
  display: block;
  padding: 5px 10px;
  color: white;
  text-align: center;
}
header .wrapper nav ul.main-nav > li.lang > ul li a:hover {
  background-color: #0b2647;
}
header .wrapper nav ul.main-nav > li.lang:hover > ul {
  opacity: 1;
  visibility: visible;
}
header .wrapper nav .btn {
  margin-left: 20px;
}
header .wrapper .header-actions {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (max-width: 640px) {
  header .wrapper .header-actions {
    display: flex;
    position: relative;
    z-index: 300;
  }
}
header .wrapper .header-actions .header-apply {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: white;
}
header .wrapper .header-actions .nav-toggle {
  position: relative;
  width: 34px;
  height: 24px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
header .wrapper .header-actions .nav-toggle span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  margin-top: -1.5px;
  background-color: white;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}
header .wrapper .header-actions .nav-toggle span:before, header .wrapper .header-actions .nav-toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: transform 0.3s ease, top 0.3s ease;
}
header .wrapper .header-actions .nav-toggle span:before {
  top: -9px;
}
header .wrapper .header-actions .nav-toggle span:after {
  top: 9px;
}

body.nav-open {
  overflow: hidden;
}
@media (max-width: 640px) {
  body.nav-open header {
    z-index: 300;
  }
}
@media (max-width: 640px) {
  body.nav-open header nav {
    transform: translateX(0);
  }
}
body.nav-open header .wrapper .header-actions .nav-toggle span {
  background-color: transparent;
}
body.nav-open header .wrapper .header-actions .nav-toggle span:before {
  top: 0;
  transform: rotate(45deg);
}
body.nav-open header .wrapper .header-actions .nav-toggle span:after {
  top: 0;
  transform: rotate(-45deg);
}
body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

.nav-backdrop {
  display: none;
}
@media (max-width: 640px) {
  .nav-backdrop {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(12, 42, 82, 0.6);
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
}

/*
FOOTER
-------------------------------------------- */
/*
HERO SECTION
-------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 194px;
  padding-bottom: 58px;
  background-color: #00AAB4;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .hero {
    background-color: #00AAB4;
  }
}
@media (max-width: 1440px) {
  .hero {
    background-color: #00AAB4;
  }
}
@media (max-width: 1024px) {
  .hero {
    padding-bottom: 0;
    background-color: #00AAB4;
  }
}
@media (max-width: 1200px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 50px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding-top: 130px;
    padding-bottom: 40px;
  }
}
.hero:before {
  display: none;
}
.hero:after {
  display: none;
}
.hero .hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 507px;
}
@media (max-width: 1200px) {
  .hero .hero-content {
    min-height: 440px;
  }
}
@media (max-width: 640px) {
  .hero .hero-content {
    min-height: 0;
  }
}
@media (max-width: 1024px) {
  .hero .hero-content {
    display: block;
  }
}
.hero .hero-content .col {
  flex: 1;
}
.hero .hero-content .col.col-left {
  flex: 0 1 950px;
}
.hero .hero-content .col.col-right {
  position: absolute;
  right: 115px;
  bottom: -4px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .hero .hero-content .col.col-right {
    right: 50px;
    bottom: 0;
  }
}
@media (max-width: 640px) {
  .hero .hero-content .col.col-right {
    position: relative;
    right: auto;
    bottom: auto;
  }
}
.hero .hero-content .col.col-right figure {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .hero .hero-content .col.col-right figure {
    display: none;
  }
}
.hero .hero-content .col.col-right figure img {
  display: block;
  max-width: 400px;
  height: auto;
}
@media (max-width: 1400px) {
  .hero .hero-content .col.col-right figure img {
    max-width: 300px;
  }
}
.hero .hero-content .counter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
@media (max-width: 1200px) {
  .hero .hero-content .counter {
    gap: 14px;
  }
}
@media (max-width: 1024px) {
  .hero .hero-content .counter {
    justify-content: flex-start;
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero .hero-content .counter:after {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: calc(100% + 40px);
    height: 100%;
  }
}
@media (max-width: 640px) {
  .hero .hero-content .counter {
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 30px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
}
.hero .hero-content .counter li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 120px;
  height: 120px;
  background: linear-gradient(90deg, rgba(28, 205, 210, 0.85) 0%, rgba(101, 155, 255, 0.9) 100%);
  border: 0;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .hero .hero-content .counter li {
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 1200px) {
  .hero .hero-content .counter li {
    width: 96px;
    height: 96px;
  }
}
@media (max-width: 640px) {
  .hero .hero-content .counter li {
    width: calc(25% - 8px);
    height: auto;
    aspect-ratio: 1;
  }
}
.hero .hero-content .counter li p {
  font-size: 15px;
  color: white;
  text-align: center;
  line-height: normal;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .hero .hero-content .counter li p {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .hero .hero-content .counter li p {
    font-size: 11px;
  }
}
.hero .hero-content .counter li p strong {
  font-size: 42px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .hero .hero-content .counter li p strong {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .hero .hero-content .counter li p strong {
    font-size: 24px;
  }
}
.hero h1 {
  max-width: 960px;
  margin-bottom: 53px;
  padding-right: 20px;
  font-size: 24px;
  color: #123D73;
  line-height: 145%;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .hero h1 {
    max-width: 680px;
    margin-bottom: 36px;
    font-size: 20px;
  }
}
.hero h1 strong {
  display: inline-block;
  margin-top: 18px;
  margin-right: 26px;
  font-size: 72px;
  color: white;
  line-height: 100%;
  text-transform: none;
  text-shadow: 0 8px 13px rgba(0, 0, 0, 0.18);
  font-weight: 700;
}
@media (max-width: 1200px) {
  .hero h1 strong {
    font-size: 56px;
  }
}
@media (max-width: 640px) {
  .hero h1 strong {
    display: inline-block;
    padding-top: 10px;
  }
}
.hero h1 strong em {
  position: relative;
  display: inline-block;
  font-style: normal;
}
.hero h1 strong em:after {
  content: "";
  position: absolute;
  left: -25%;
  top: -7px;
  width: 150%;
  height: 36px;
  background: url(../img/hero-title-decoration.svg) 50% 50% no-repeat;
  background-size: contain;
}
@media (max-width: 1200px) {
  .hero h1 strong em:after {
    top: -5px;
    height: 28px;
  }
}
@media (max-width: 640px) {
  .hero h1 strong em:after {
    height: 22px;
  }
}
.hero h1 span {
  display: inline-block;
  max-width: 480px;
  margin-top: -16px;
  font-size: 18px;
  line-height: 140%;
  color: white;
  text-transform: none;
  vertical-align: middle;
}
@media (max-width: 1200px) {
  .hero h1 span {
    max-width: 330px;
    margin-top: 8px;
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    padding-right: 0;
    font-size: 24px;
    line-height: 170%;
  }
  .hero h1 strong {
    display: block;
    margin-right: 0;
    font-size: 46px;
  }
  .hero h1 span {
    display: block;
    max-width: 100%;
    margin-top: 14px;
  }
}
.hero .date {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  min-height: 91px;
  padding: 0 35px 0 0;
  margin-bottom: 47px;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .hero .date {
    min-height: 76px;
    margin-bottom: 36px;
  }
}
@media (max-width: 640px) {
  .hero .date {
    gap: 12px;
    min-height: 64px;
    padding-right: 20px;
    margin-bottom: 30px;
  }
}
.hero .date:before {
  content: "";
  position: absolute;
  left: calc((100vw - min(100vw, 1360px)) / -2 - 20px);
  right: 0;
  top: 0;
  z-index: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(86, 232, 229, 0.92) 0%, rgba(97, 165, 255, 0.92) 100%);
  border-radius: 0 100px 100px 0;
}
.hero .date p {
  position: relative;
  z-index: 1;
  font-size: 25px;
  color: white;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .hero .date p {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .hero .date p {
    font-size: 16px;
  }
}
.hero .date img {
  position: relative;
  z-index: 1;
  max-width: 62px;
  height: auto;
}
@media (max-width: 1200px) {
  .hero .date img {
    max-width: 54px;
  }
}
@media (max-width: 640px) {
  .hero .date img {
    max-width: 46px;
  }
}
.hero .info {
  display: flex;
  gap: 60px;
  margin-bottom: 58px;
}
@media (max-width: 1200px) {
  .hero .info {
    gap: 28px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1400px) {
  .hero .info {
    gap: 30px;
  }
}
.hero .info li {
  position: relative;
  padding-left: 26px;
  font-size: 18px;
  color: #123D73;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .hero .info li {
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .hero .info li {
    font-size: 11px;
  }
}
.hero .info li strong {
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1200px) {
  .hero .info li strong {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .hero .info li strong {
    font-size: 16px;
  }
}
.hero .info li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -7px;
  border: #6EDBEF solid 6px;
  border-radius: 50%;
}
.hero .info li:first-child:before {
  border-color: #62E6EC;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .hero-visual {
    display: none;
  }
}
.hero-visual .hero-illustration {
  position: absolute;
  right: 108px;
  top: 359px;
  width: 520px;
  height: auto;
}
@media (max-width: 1200px) {
  .hero-visual .hero-illustration {
    right: 30px;
    top: 330px;
    width: 390px;
  }
}
@media (max-width: 640px) {
  .hero-visual .hero-illustration {
    display: none;
  }
}
.hero-visual .hero-img {
  position: absolute;
  right: -1px;
  top: 158px;
  width: auto;
  height: calc(100% - 158px);
}
@media (max-width: 1200px) {
  .hero-visual .hero-img {
    right: -80px;
    top: 160px;
    height: 460px;
  }
}
@media (max-width: 640px) {
  .hero-visual .hero-img {
    display: none;
  }
}

/*
APPLY SECTION
-------------------------------------------- */
.apply {
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(90deg, #123D73 0%, #0C2A52 52%, #276E8A 100%);
  box-sizing: border-box;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .apply {
    padding: 70px 0;
  }
}
.apply .apply-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 74px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .apply .apply-content {
    display: block;
  }
}
.apply .apply-content figure {
  position: relative;
  flex: 0 1 720px;
  min-height: 600px;
  margin-left: -38px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .apply .apply-content figure {
    display: none;
  }
}
.apply .apply-content figure:before {
  display: none;
}
.apply .apply-content figure:after {
  display: none;
}
@media (max-width: 1200px) {
  .apply .apply-content figure:after {
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .apply .apply-content figure:after {
    display: block;
  }
}
.apply .apply-content figure .content-illustration {
  position: absolute;
  left: -245px;
  top: -42px;
  z-index: 1;
  display: block;
  width: 945px;
  height: auto;
}
@media (max-width: 1200px) {
  .apply .apply-content figure .content-illustration {
    flex-basis: 520px;
    min-height: 440px;
    margin-left: -120px;
  }
}
@media (max-width: 640px) {
  .apply .apply-content figure .content-illustration {
    display: none;
  }
}
@media (max-width: 1200px) {
  .apply .apply-content figure .content-illustration {
    left: -175px;
    top: 0;
    width: 690px;
  }
}
.apply .apply-content figure .content-img {
  position: absolute;
  left: 157px;
  top: 105px;
  z-index: 2;
  display: block;
  width: 362px;
  height: 362px;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 1200px) {
  .apply .apply-content figure .content-img {
    left: 120px;
    top: 112px;
    width: 260px;
    height: 260px;
  }
}
.apply .apply-content .form-outer {
  flex: 0 1 430px;
  margin-right: 104px;
}
@media (max-width: 1200px) {
  .apply .apply-content .form-outer {
    margin-right: 0;
  }
}
@media (max-width: 640px) {
  .apply .apply-content .form-outer {
    width: 100%;
  }
}
.apply .apply-content .form-outer h2 {
  margin-bottom: 14px;
  padding: 0;
  color: #00AAB4;
  font-size: 36px;
}
@media (max-width: 640px) {
  .apply .apply-content .form-outer h2 {
    font-size: 30px;
  }
}
.apply .apply-content .form-outer h2:after {
  display: none;
}
.apply .apply-content .form-outer > p {
  max-width: 450px;
  margin-bottom: 38px;
  font-size: 14px;
  line-height: 140%;
  color: white;
  font-style: italic;
}
@media (max-width: 640px) {
  .apply .apply-content .form-outer > p {
    max-width: 100%;
    margin-bottom: 28px;
  }
}
.apply .apply-content .form-outer .form-fields {
  max-width: 450px;
}
@media (max-width: 640px) {
  .apply .apply-content .form-outer .form-fields {
    max-width: 100%;
  }
}
.apply .apply-content .form-outer .form-fields li {
  margin-bottom: 22px;
}
.apply .apply-content .form-outer .form-fields li input[type=text],
.apply .apply-content .form-outer .form-fields li input[type=email] {
  width: 100%;
  height: 46px;
  padding: 0 35px;
  font-size: 15px;
  color: #123D73;
  background-color: white;
  border: 0;
  border-radius: 25px;
  box-sizing: border-box;
}
.apply .apply-content .form-outer .form-fields li input[type=text]::placeholder,
.apply .apply-content .form-outer .form-fields li input[type=email]::placeholder {
  opacity: 1;
  text-transform: uppercase;
  color: #123D73;
}

/*
ABOUT SECTION
-------------------------------------------- */
.about {
  overflow: hidden;
  position: relative;
  padding: 147px 0 80px;
  background: #00AAB4;
  background-size: 200px auto;
  box-sizing: border-box;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .about {
    padding: 80px 0 70px;
  }
}
@media (max-width: 1200px) {
  .about {
    padding: 100px 0 70px;
  }
}
@media (max-width: 640px) {
  .about {
    padding: 70px 0 60px;
  }
}
.about:before {
  content: "";
  position: absolute;
  right: -164px;
  top: 12px;
  z-index: 1;
  width: 741px;
  height: 741px;
  background: linear-gradient(180deg, #123D73 0%, #276E8A 100%);
  border-radius: 50%;
}
@media (max-width: 1200px) {
  .about:before {
    right: -230px;
    top: 55px;
    width: 560px;
    height: 560px;
  }
}
@media (max-width: 640px) {
  .about:before {
    display: none;
  }
}
.about .about-illustrations {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .about .about-illustrations {
    display: none;
  }
}
.about .about-illustrations .about-illustration {
  position: absolute;
  display: block;
  height: auto;
}
.about .about-illustrations .about-illustration-1 {
  right: 355px;
  top: 28px;
  z-index: 0;
  width: 385px;
}
@media (max-width: 1200px) {
  .about .about-illustrations .about-illustration-1 {
    right: 260px;
    top: 40px;
    width: 300px;
  }
}
@media (max-width: 640px) {
  .about .about-illustrations .about-illustration-1 {
    display: none;
  }
}
.about .about-illustrations .about-illustration-2 {
  right: 165px;
  top: 85px;
  z-index: 2;
  width: 329px;
}
@media (max-width: 1200px) {
  .about .about-illustrations .about-illustration-2 {
    right: 80px;
    top: 115px;
    width: 220px;
  }
}
@media (max-width: 640px) {
  .about .about-illustrations .about-illustration-2 {
    display: none;
  }
}
.about .about-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 1200px) {
  .about .about-content {
    gap: 50px;
  }
}
@media (max-width: 640px) {
  .about .about-content {
    display: block;
  }
}
.about .about-copy {
  flex: 1 1 65%;
}
.about .about-copy h2 {
  margin-bottom: 82px;
  color: white;
}
@media (max-width: 1200px) {
  .about .about-copy h2 {
    margin-bottom: 50px;
  }
}
@media (max-width: 640px) {
  .about .about-copy h2 {
    margin-bottom: 36px;
  }
}
.about .about-copy p {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: 22px;
  line-height: 135%;
  color: white;
}
@media (max-width: 1200px) {
  .about .about-copy p {
    max-width: 620px;
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .about .about-copy p {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.about .event-details {
  flex: 0 1 300px;
  padding-top: 25px;
  text-align: right;
}
@media (max-width: 1200px) {
  .about .event-details {
    flex-basis: 260px;
  }
}
@media (max-width: 640px) {
  .about .event-details {
    margin-top: 34px;
    padding: 28px;
    text-align: left;
    background: linear-gradient(180deg, #123D73 0%, #276E8A 100%);
    border-radius: 24px;
  }
}
.about .event-details div {
  margin-bottom: 34px;
}
@media (max-width: 640px) {
  .about .event-details div {
    margin-bottom: 20px;
  }
}
.about .event-details dt {
  margin-bottom: 6px;
  font-size: 21px;
  color: #00AAB4;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .about .event-details dt {
    font-size: 18px;
  }
}
.about .event-details dd {
  font-size: 21px;
  line-height: 145%;
  color: white;
}
@media (max-width: 1200px) {
  .about .event-details dd {
    font-size: 17px;
  }
}

/*
AGENDA SECTION
-------------------------------------------- */
.agenda {
  overflow: hidden;
  padding: 99px 0 70px;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .agenda {
    padding: 70px 0 50px;
  }
}
.agenda h2 {
  margin-bottom: 60px;
  color: #123D73;
}
@media (max-width: 640px) {
  .agenda h2 {
    margin-bottom: 38px;
  }
}
.agenda .table-outer {
  overflow: hidden;
  width: var(--table-width);
  margin: 0 auto;
  border-radius: 32px 32px 0 0;
}
@media (max-width: 1200px) {
  .agenda .table-outer {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .agenda .table-outer {
    width: calc(100% + 40px);
    margin-left: -20px;
    border-radius: 0;
  }
}
.agenda .table-outer table {
  width: var(--table-width);
  border-collapse: collapse;
  table-layout: fixed;
}
@media (max-width: 1200px) {
  .agenda .table-outer table {
    width: 100%;
  }
}
.agenda .table-outer table tr {
  width: 1120px;
}
@media (max-width: 1200px) {
  .agenda .table-outer table tr {
    width: 100%;
  }
}
.agenda .table-outer table tr td {
  padding: 17px 50px;
  font-size: 18px;
  color: white;
  vertical-align: middle;
  line-height: 145%;
}
@media (max-width: 640px) {
  .agenda .table-outer table tr td {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.agenda .table-outer table tr td strong {
  font-weight: 700;
}
.agenda .table-outer table tr td:first-child {
  width: 150px;
}
@media (max-width: 1200px) {
  .agenda .table-outer table tr td:first-child {
    width: 20%;
  }
}
.agenda .table-outer table tr td:nth-child(2) {
  width: 200px;
}
@media (max-width: 1200px) {
  .agenda .table-outer table tr td:nth-child(2) {
    width: 30%;
  }
}
.agenda .table-outer table tr td:nth-child(3) {
  width: 528px;
}
@media (max-width: 1200px) {
  .agenda .table-outer table tr td:nth-child(3) {
    width: 50%;
  }
}
.agenda .table-outer table thead {
  background-color: #00AAB4;
}
.agenda .table-outer table thead tr td {
  padding-top: 25px;
  padding-bottom: 25px;
  text-transform: uppercase;
  font-size: 24px;
}
@media (max-width: 640px) {
  .agenda .table-outer table thead tr td {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
  }
}
.agenda .table-outer table tbody {
  overflow: auto;
  display: block;
  height: 452px;
  width: var(--table-width);
  background-color: #0C2A52;
}
@media (max-width: 1200px) {
  .agenda .table-outer table tbody {
    display: table-footer-group;
    width: 100%;
    height: auto;
  }
}
.agenda .table-outer table tbody tr td:first-child, .agenda .table-outer table tbody tr td:nth-child(2) {
  border-right: white solid 1px;
}
.agenda .table-outer table tbody tr:nth-child(even) td {
  background-color: #226791;
}

/*
PARTNERS SECTION
-------------------------------------------- */
.partners {
  overflow: hidden;
  padding: 129px 0 57px;
  background: #123D73;
  background-size: 200px auto;
  box-sizing: border-box;
}
.partners .partners-top {
  display: flex;
  margin-bottom: 27px;
}
@media (max-width: 640px) {
  .partners .partners-top {
    flex-direction: column;
    gap: 40px;
  }
}
.partners .partners-top hgroup {
  flex-basis: 38%;
}
.partners .partners-top hgroup h2 {
  color: white;
}
.partners .partners-top figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  background-color: white;
  border-radius: 50%;
}
@media (max-width: 640px) {
  .partners .partners-top figure {
    margin: 0 auto;
  }
}
.partners .partners-top figure img {
  display: block;
  max-width: 220px;
  height: auto;
  max-height: 200px;
  width: auto;
}
.partners .partners-top figure figcaption {
  position: absolute;
  left: 50%;
  bottom: 0;
  padding: 2px 19px;
  transform: translateX(-50%);
  font-size: 18px;
  line-height: 28px;
  color: white;
  text-align: center;
  white-space: nowrap;
  background-color: #00AAB4;
  border-radius: 12px;
}
.partners .partner-list-outer {
  max-width: 1200px;
  padding: 49px 43px 31px;
  margin: 0 auto;
  background-color: white;
  border-radius: 36px;
}
@media (max-width: 1200px) {
  .partners .partner-list-outer {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 640px) {
  .partners .partner-list-outer {
    padding: 20px;
  }
}
.partners .partner-list-outer .partner-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 38px 42px;
}
@media (max-width: 1200px) {
  .partners .partner-list-outer .partner-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .partners .partner-list-outer .partner-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }
}
.partners .partner-list-outer .partner-list li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners .partner-list-outer .partner-list li img {
  display: block;
  max-width: 150px;
  height: auto;
}
@media (max-width: 640px) {
  .partners .partner-list-outer .partner-list li img {
    max-width: 100px;
  }
}
.partners .partner-list-outer .partner-list li span {
  display: block;
  font-size: 28px;
  line-height: 110%;
  color: #23658B;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .partners .partner-list-outer .partner-list li span {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .partners .partner-list-outer .partner-list li span {
    font-size: 18px;
  }
}

/*
CONTACT SECTION
-------------------------------------------- */
.contact {
  overflow: hidden;
  height: 768px;
  padding: 129px 0 90px;
  background: #00AAB4;
  background-size: 400px auto;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .contact {
    height: auto;
    padding: 100px 0 80px;
  }
}
@media (max-width: 640px) {
  .contact {
    padding: 70px 0 60px;
  }
}
.contact .contact-columns {
  display: flex;
  justify-content: space-between;
  gap: 150px;
}
@media (max-width: 1200px) {
  .contact .contact-columns {
    gap: 60px;
  }
}
@media (max-width: 640px) {
  .contact .contact-columns {
    flex-direction: column;
    gap: 60px;
  }
}
.contact .contact-columns .col {
  flex: 1;
}
.contact .contact-columns .col h2 {
  color: white;
}
.contact .contact-columns .col h2:after {
  background: #123D73;
}
.contact .contact-columns .col.contact-info h2 {
  margin-bottom: 93px;
}
@media (max-width: 1200px) {
  .contact .contact-columns .col.contact-info h2 {
    margin-bottom: 60px;
  }
}
@media (max-width: 640px) {
  .contact .contact-columns .col.contact-info h2 {
    margin-bottom: 42px;
  }
}
.contact .contact-columns .col.contact-info p {
  font-size: 28px;
  color: white;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .contact .contact-columns .col.contact-info p {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .contact .contact-columns .col.contact-info p {
    font-size: 18px;
  }
}
.contact .contact-columns .col.contact-info p a {
  color: white;
  font-weight: 700;
}
.contact .contact-columns .col.contact-info p a:hover {
  text-decoration: underline;
}
.contact .contact-columns .col.contact-info hgroup {
  margin-bottom: 40px;
}
.contact .contact-columns .col.contact-info hgroup p {
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}
.contact .contact-columns .col.contact-info hgroup img {
  max-width: 235px;
  height: auto;
}
@media (max-width: 640px) {
  .contact .contact-columns .col.contact-info hgroup img {
    max-width: 190px;
  }
}
.contact .contact-columns .col.contact-info .social-menu {
  display: flex;
  gap: 28px;
  margin-top: 45px;
}
.contact .contact-columns .col.contact-info .social-menu li a img {
  max-width: 42px;
  height: auto;
  transition: opacity 0.3s ease;
}
.contact .contact-columns .col.contact-info .social-menu li a:hover img {
  opacity: 0.8;
}
.contact .contact-columns .col.location-info h2 {
  margin-bottom: 55px;
}
@media (max-width: 640px) {
  .contact .contact-columns .col.location-info h2 {
    margin-bottom: 36px;
  }
}
.contact .contact-columns .col.location-info iframe {
  width: 430px;
  max-width: 100%;
  height: 372px;
  border: 0;
}
@media (max-width: 640px) {
  .contact .contact-columns .col.location-info iframe {
    width: 100%;
    height: 300px;
  }
}

.modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.modal-overlay .modal-overlay-content {
  width: 600px;
  padding: 40px;
  background-color: white;
  border-radius: 25px;
  text-align: center;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .modal-overlay .modal-overlay-content {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 640px) {
  .modal-overlay .modal-overlay-content {
    padding: 30px;
  }
}
.modal-overlay .modal-overlay-content h4 {
  margin-bottom: 40px;
  font-size: 32px;
  color: #123D73;
}
@media (max-width: 640px) {
  .modal-overlay .modal-overlay-content h4 {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.modal-overlay .modal-overlay-content .button {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/*# sourceMappingURL=main.css.map */
