.header-top__logo img {
  width: 80px;
  height: auto;
}
.section-video {
  position: relative;
  overflow: hidden;
}

.section-video__video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.section-video__wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}

.section-video {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.section-video__video {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
}
.section-eggs-info {
  padding: 100px 0;
  background: #fffdf8;
}

.section-eggs-info__content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}

.section-eggs-info__text p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.section-eggs-info__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-eggs-info__items .item {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.section-eggs-info__items .item:hover {
  transform: translateY(-4px);
}

.section-eggs-info__items .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff3f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
}

.section-eggs-info__items .icon .egg {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(228, 35, 19, 0.05);
}

.section-eggs-info__items .title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
}

.section-eggs-info__items p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

@media (max-width: 991px) {
  .section-eggs-info {
    padding: 70px 0;
  }

  .section-eggs-info__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .section-eggs-info {
    padding: 50px 0;
  }

  .section-eggs-info__text p {
    font-size: 16px;
  }

  .section-eggs-info__items .title {
    font-size: 20px;
  }

  .section-eggs-info__items .item {
    padding: 22px;
  }
}
.page-404 {
  padding: 120px 20px;
  background: #fffdf8;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.page-404__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-404__egg {
  margin-bottom: 40px;
  animation: eggFloat 4s ease-in-out infinite;
}

.page-404__title {
  font-size: 54px;
  line-height: 1.1;
  color: #1f1f1f;
  margin-bottom: 24px;
  font-weight: 700;
}

.page-404__text {
  font-size: 20px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.page-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 64px;
  padding: 18px 34px;
  background: #e42313;
  color: #fff;
  text-decoration: none;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.page-404__btn:hover {
  background: #c81d10;
  transform: translateY(-3px);
}

@keyframes eggFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 991px) {
  .page-404 {
    padding: 90px 20px;
  }

  .page-404__title {
    font-size: 42px;
  }

  .page-404__text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .page-404 {
    padding: 70px 16px;
  }

  .page-404__egg svg {
    width: 160px;
    height: auto;
  }

  .page-404__title {
    font-size: 32px;
  }

  .page-404__text {
    font-size: 16px;
    line-height: 1.7;
  }

  .page-404__btn {
    width: 100%;
    min-width: 100%;
  }
}
.footer-contacts {
  max-width: 300px;
}

.footer-contacts__title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: #2b2b2b;
  margin-bottom: 22px;
}

.footer-contacts__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #444;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
  transition: 0.3s ease;
}

.footer-contacts__item:hover {
  color: #e42313;
}

.footer-contacts__icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #fff3f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contacts__icon svg {
  display: block;
}

@media (max-width: 991px) {
  .footer-top .wrapper-main {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .footer-contacts {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer-contacts__title {
    font-size: 20px;
  }

  .footer-contacts__item {
    font-size: 14px;
  }
}
