:root {
  --first: #00509A
    ;
  --second: #4980FB
    ;
  --text-alt: #FFFFFF
    ; }

:root {
  --display: 3.05187rem;
  --title: 2.44125rem;
  --caption: 1.5625rem;
  --body: 1rem;
  --small: 0.8rem;
  --ebold: 800;
  --bold: 700;
  --regular: 400;
  --light: 300; }

.display {
  font-size: 3.05187rem; }

.title {
  font-size: 2.44125rem; }

.caption {
  font-size: 1.5625rem; }

.body {
  font-size: 1rem; }

.small {
  font-size: 0.8rem; }

.ebold {
  font-weight: 800; }

.bold {
  font-weight: 700; }

.regular {
  font-weight: 400; }

.light {
  font-weight: 300; }

html {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif; }

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

img {
  display: block;
  max-width: 100%; }

.header {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  padding-right: 2.6875rem;
  padding-left: 2.6875rem; }
  .header * {
    color: var(--text-alt); }
  .header__nav {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem; }
  .header__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; }

.menu__link {
  text-decoration: none; }

.hero-image {
  color: var(--text-alt);
  position: relative;
  height: 48rem; }
  .hero-image__content {
    text-align: center;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    z-index: 1; }
  .hero-image__image {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%; }

.contact {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  gap: 2.5rem;
  margin-top: 8rem;
  margin-right: auto;
  margin-bottom: 8rem;
  margin-left: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  max-width: 64rem; }
  @media only screen and (min-width: 768px) {
    .contact {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto; } }
  .contact__child:nth-child(1) {
    margin-right: auto;
    margin-left: auto; }
  .contact__child:nth-child(2) {
    margin-top: auto;
    margin-bottom: auto; }
  .contact__address {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    gap: 0.5rem;
    font-style: normal;
    margin-bottom: 4rem; }
    .contact__address:hover {
      opacity: 0.8; }
    @media only screen and (min-width: 1024px) {
      .contact__address {
        margin-bottom: 8rem; } }
    .contact__address .regular {
      color: var(--second);
      text-decoration: none; }
  .contact .title {
    color: var(--first);
    text-align: center;
    margin-bottom: 2rem; }
    @media only screen and (min-width: 768px) {
      .contact .title {
        text-align: left; } }
    @media only screen and (min-width: 1024px) {
      .contact .title {
        margin-bottom: 4rem; } }

.advertisements {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  list-style: none; }
  @media only screen and (min-width: 568px) {
    .advertisements {
      flex-direction: row; } }
  .advertisements__item:not(:last-child) {
    margin-bottom: 0.5rem; }
    @media only screen and (min-width: 568px) {
      .advertisements__item:not(:last-child) {
        margin-bottom: 0; } }
  .advertisements__link {
    color: var(--second);
    text-decoration: none; }
    .advertisements__link:hover {
      text-decoration: underline; }
