@import './reset.css';
@import './fonts.css';
html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Mono";
  background-color: #E2F4FC;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 0 auto;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 1439px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 1023px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.title-h1 {
  color: #0C2229;
  font-size: 81px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1439px) {
  .title-h1 {
    font-size: 72px;
  }
}
@media (max-width: 1023px) {
  .title-h1 {
    font-size: 64px;
  }
}
@media (max-width: 767px) {
  .title-h1 {
    font-size: 48px;
  }
}
@media (max-width: 424px) {
  .title-h1 {
    font-size: 36px;
  }
}

.text {
  color: #0C2229;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%; /* 24.8px */
}

.button {
  background: #044157;
  display: inline-flex;
  box-shadow: 4px 4px 15px 0px rgba(69, 140, 162, 0.4);
  padding: 16px 25px;
  color: #E2F4FC;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 424px) {
  .button {
    font-size: 20px;
  }
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}
.image-wrapper__image {
  position: relative;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.title-h2 {
  color: #0C2229;
  font-size: 54px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 1439px) {
  .title-h2 {
    font-size: 48px;
  }
}
@media (max-width: 1023px) {
  .title-h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .title-h2 {
    font-size: 36px;
  }
}

.title-h3 {
  color: #0C2229;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 1023px) {
  .title-h3 {
    font-size: 28px;
  }
}