.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #EAEAEA;
  height: 60px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  z-index: 10000;
}
@media (min-width: 1000px) {
  .header {
    width: 970px;
    left: calc(50% - 485px);
    right: auto;
    top: 30px;
    height: 80px;
    display: flex;
  }
}
.header__logo {
  background: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  z-index: 1000;
  position: relative;
  padding-inline: 15px;
}
.header__logo a {
  width: 100%;
}
@media (min-width: 1000px) {
  .header__logo {
    height: 80px;
    width: 170px;
  }
}
.header__logo img {
  width: 100%;
}
.header__toggle {
  position: absolute;
  left: -100%;
  top: -100%;
}
@media (min-width: 1000px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle:focus ~ .header__toggle-container .header__hamburguer {
  box-shadow: 0 0 0 8px rgb(255, 255, 255), inset 0 0 0 20px rgb(255, 255, 255);
}
.header__toggle:checked ~ .header__toggle-container .header__hamburguer {
  box-shadow: 0 0 0 8px rgb(255, 255, 255), inset 0 0 0 20px rgb(255, 255, 255);
}
.header__toggle:checked ~ .header__toggle-container .header__hamburguer:before {
  transform: translateY(-50%) rotate(45deg) scale(1);
}
.header__toggle:checked ~ .header__toggle-container .header__hamburguer:after {
  transform: translateY(-50%) rotate(-45deg) scale(1);
}
.header__toggle:checked ~ .header__toggle-container::before {
  top: 60px;
  left: 0;
  bottom: 50%;
  backdrop-filter: blur(5px);
}
.header__toggle:checked ~ .header__nav {
  margin-bottom: 50px;
  pointer-events: auto;
  transform: translate(-50px, 80px);
}
.header__toggle:checked ~ .header__nav .header__nav-item {
  color: #878787;
  letter-spacing: 0;
  height: 40px;
  line-height: 40px;
  margin-top: 0;
  opacity: 1;
  transform: scaleY(1);
  transition: 0.5s, opacity 0.1s;
  margin-bottom: 10px;
}
.header__toggle:checked ~ .header__nav .header__nav-item span {
  color: #055881;
}
.header__toggle:checked ~ .header__nav .header__nav-item--btn {
  background: #055881;
  color: #fff;
  line-height: 2;
}
.header__toggle:checked ~ .header__nav .header__nav-item:nth-child(1) {
  transition-delay: 0.2s;
}
.header__toggle:checked ~ .header__nav .header__nav-item:nth-child(1):before {
  transition-delay: 0.2s;
}
.header__toggle:checked ~ .header__nav .header__nav-item:nth-child(2) {
  transition-delay: 0.15s;
}
.header__toggle:checked ~ .header__nav .header__nav-item:nth-child(2):before {
  transition-delay: 0.15s;
}
.header__toggle:checked ~ .header__nav .header__nav-item:nth-child(3) {
  transition-delay: 0.1s;
}
.header__toggle:checked ~ .header__nav .header__nav-item:nth-child(3):before {
  transition-delay: 0.1s;
}
.header__toggle:checked ~ .header__nav .header__nav-item:nth-child(4) {
  transition-delay: 0.05s;
}
.header__toggle:checked ~ .header__nav .header__nav-item:nth-child(4):before {
  transition-delay: 0.05s;
}
.header__toggle:checked ~ .header__nav .header__nav-item:nth-child(5) {
  transition-delay: 0s;
}
.header__toggle:checked ~ .header__nav .header__nav-item:nth-child(5):before {
  transition-delay: 0s;
}
.header__toggle:checked ~ .header__nav .header__nav-item:before {
  opacity: 0;
}
.header__hamburguer {
  position: absolute;
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  border-radius: 100%;
  transition: 0.6s;
  right: 20px;
  top: 16px;
}
@media (min-width: 1000px) {
  .header__hamburguer {
    display: none;
  }
}
.header__hamburguer:hover {
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1), inset 0 0 0 20px rgba(255, 255, 255, 0.1);
}
.header__hamburguer:before, .header__hamburguer:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #055881;
  border-radius: 5px;
  transition: 0.5s;
}
.header__hamburguer:before {
  transform: translateY(-50%) rotate(45deg) scale(0);
}
.header__hamburguer:after {
  transform: translateY(-50%) rotate(-45deg) scale(0);
}
.header__nav {
  display: inline-block;
  pointer-events: none;
  transition: 0.5s;
  position: absolute;
  top: 19px;
  right: 20px;
}
@media (min-width: 1000px) {
  .header__nav {
    position: static;
    pointer-events: all;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 2;
    padding-inline: 60px;
  }
}
@media (min-width: 1000px) {
  .header__toggle-container {
    display: none;
  }
}
.header__toggle-container::before {
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  left: 100%;
  right: 0;
  content: "";
  display: block;
  top: 0;
  bottom: 100%;
}
.header__nav-item {
  position: relative;
  float: right;
  clear: both;
  color: transparent;
  font-size: 14px;
  letter-spacing: -7.2px;
  height: 7px;
  line-height: 7px;
  text-transform: uppercase;
  white-space: nowrap;
  transform: scaleY(0.2);
  transition: 0.5s, opacity 1s;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 1000px) {
  .header__nav-item {
    float: none;
    letter-spacing: 0 !important;
    transform: none;
    opacity: 1 !important;
    height: auto;
    line-height: 1;
    color: #878787;
    font-size: 13px;
  }
}
.header__nav-item span {
  color: #055881;
  margin-right: 3px;
  display: inline-block;
}
.header__nav-item--btn {
  background: transparent;
  padding: 7px 20px;
  color: #fff;
  text-transform: none;
}
@media (min-width: 1000px) {
  .header__nav-item--btn {
    transform: translateY(3px);
    height: auto;
    background: #055881;
  }
}
.header__nav-item:nth-child(1) {
  transition-delay: 0s;
}
.header__nav-item:nth-child(1):before {
  transition-delay: 0s;
}
.header__nav-item:nth-child(2) {
  transition-delay: 0.05s;
}
.header__nav-item:nth-child(2):before {
  transition-delay: 0.05s;
}
.header__nav-item:nth-child(3) {
  transition-delay: 0.1s;
}
.header__nav-item:nth-child(3):before {
  transition-delay: 0.1s;
}
.header__nav-item:nth-child(4) {
  transition-delay: 0.15s;
}
.header__nav-item:nth-child(4):before {
  transition-delay: 0.15s;
}
.header__nav-item:nth-child(5) {
  transition-delay: 0.2s;
}
.header__nav-item:nth-child(5):before {
  transition-delay: 0.2s;
}
.header__nav-item:nth-child(1) {
  letter-spacing: -7px;
}
.header__nav-item:nth-child(2) {
  letter-spacing: -7px;
}
.header__nav-item:nth-child(n+4) {
  letter-spacing: -9px;
  margin-top: -7px;
  opacity: 0;
}
.header__nav-item:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #055881;
  transform: translateY(-50%) scaleY(5);
  transition: 0.5s;
}
@media (min-width: 1000px) {
  .header__nav-item:before {
    display: none;
  }
}.footer {
  background: #4c4c4c;
  position: relative;
  z-index: 10;
  font-size: 13px;
  color: #fff;
}
.footer__logo {
  height: 14px;
  margin-bottom: 50px;
}
.footer__logo:after {
  bottom: -25px;
}
.footer__logo img {
  height: 90%;
}
.footer:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%234c4c4c' viewBox='0 0 100 20'%3E%3Cpath d='m50,0C34.5,0,14.5,17.5,0,20h100C85.5,17.5,65.5,0,50,0Z'/%3E%3C/svg%3E");
  position: absolute;
  bottom: 100%;
  left: calc(50% - 50px);
  width: 100px;
  height: 20px;
}
.footer:after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg);
  position: absolute;
  left: calc(50% - 3px);
  bottom: 100%;
}
.footer__top {
  border-bottom: 1px solid #878787;
  padding-block: 60px;
  padding-inline: 15px;
}
.footer__container {
  max-width: 970px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  margin-inline: auto;
}
@media (min-width: 1000px) {
  .footer__container {
    grid-template-columns: 1.75fr 1fr 1fr;
  }
}
.footer__title {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 45px;
}
.footer__title:after {
  bottom: -20px;
}
.footer__list li, .footer__list a, .footer__copy li, .footer__copy a {
  display: flex;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  align-items: center;
}
.footer__list li:not(:last-child), .footer__copy li:not(:last-child) {
  margin-bottom: 10px;
}
.footer__list svg, .footer__copy svg {
  width: 15px;
}
.footer__orono {
  grid-column: 1/3;
  text-align: center;
  padding-top: 40px;
}
@media (min-width: 1000px) {
  .footer__orono {
    grid-column: 3;
  }
}
.footer__orono img {
  width: 160px;
}
.footer__bottom {
  padding: 15px;
}
.footer__copy li, .footer__copy a {
  justify-content: center;
}
@media (min-width: 1000px) {
  .footer__copy li, .footer__copy a {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1000px) {
  .footer__copy {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 970px;
    margin-inline: auto;
  }
}@keyframes fade {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}
.hero {
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero__slide {
  object-fit: cover;
  opacity: 0;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.hero__slide.js-active {
  opacity: 1;
}
.hero__indicators {
  position: absolute;
  right: 30px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  top: 50%;
}
.hero__indicator {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  cursor: pointer;
}
.hero__indicator.js-active {
  background: #fff;
}
.hero__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}