* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  position: relative;
  background-color: #f7f7f7;
}

.img {
  width: 100%;
}

.button {
  width: 160px;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  border: none;
  background: #0A344E;
  color: #FFF;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
  text-align: center;
}

.content {
  width: 1110px;
  max-width: 90%;
  margin: 0 auto;
  font-family: 'Catamaran', sans-serif;
}

.section-wave {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: calc(100% - 10px);
}

.section-wave.section-wave-bottom {
  top: calc(100% - 10px);
  max-height: 250px;
}

.main-header {
  position: relative;
}

.main-header iframe {
  width: 100%;
}

.main-header .gallery-item  {
  position: relative;
}

.main-header .text {
  position: absolute;
  color: #0A344E;
  top: 50%;
  left: 50%;
  transform: translateX(-60%);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.1;
  z-index: 1;
  width: 531px;
  max-width: 80%;
  white-space: normal;
}

.main-header .text h2 {
  font-size: 56px;
  margin-bottom: 12px;
  line-height: 1.1;
  font-family: 'Catamaran', sans-serif;
}

.main-header .text p {
  font-family: 'Poppins', sans-serif;
}

.main-header img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.main-header .glide__bullets {
  bottom: 80px;
}

.main-nav > ul {
  display: flex;
  justify-content: space-around;
  background-color: #FFF;
  list-style-type: none;
  margin: 0 auto;
  position: relative;
  top: -40px;
  height: 112px;
  border-radius: 14px;
  align-items: center;
}

.main-nav > ul > li {
  width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}

.main-nav > ul > li > a {
  display: flex;
  color: gray;
  text-decoration: none;
  font-weight: bold;
  border-right: 2px solid rgba(196, 196, 196, 0.3);
  width: 100%;
  height: 88px;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}

.main-nav > ul > li:last-child > a {
  border-right: none;
}

.main-nav > ul > li:nth-child(1) > a {
  padding-top: 4px;
}

.main-nav > ul > li:nth-child(2) > a {
  padding-top: 6px;
}

.main-nav > ul > li:nth-child(3) > a {
  padding-top: 14px;
}

.main-nav > ul > li:nth-child(4) > a {
  padding-top: 12px;
}

.main-nav > ul > li > a > p {
  height: 33px;
  line-height: 33px;
  font-weight: 500;
}

.section-title {
  font-family: 'Catamaran', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 38px;
  line-height: 48px;
  color: #0A344E;
}

.section-title.white {
  color: #fff;
}

.skeleton {
  position: absolute;
  bottom: -90px;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 800px) {
  .skeleton {
    display: none;
  }

  .main-header .text {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.glide__bullets {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.glide__bullet:hover,
.glide__bullet:focus {
    background-color: #6EACDA; 
    color: #021526;
}

.glide__bullet--active {
    background-color: #0e364f;
    color: #E2E2B6; 
}

@media (max-width: 480px) {
    .glide__bullet {
        padding: 12px 12px;
        font-size: 0.9rem;
        color: #0a334d !important;
        transform: translateY(-2rem);
    }
}