/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 24px 24px;

  padding: 0 24px;
  background: #004787;
  z-index: 9;
}

.header-logo {
  width: 139px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navigation {
  display: none;
}

.svg {
  stroke: #fff;
}

.navigation-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.navigation-item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  border-radius: 38px;
  padding: 5px 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navigation-item:hover {
  background: #d7d7d7;
  color: #000;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 8;
  padding: 16px;
  padding-top: 72px;
  transform: translateX(100%);
  transition: transform 1s ease;
  z-index: 8;
  border-radius: 0 0 24px 24px;

  background: #004787;
}

.modal-navigation-list {
  flex-direction: column;
}

.modal-click {
  transform: translateX(0);
}

@media screen and (min-width: 1437px) {
  .header {
    padding: 17px 0;
    border-radius: 0 0 34px 34px;
  }

  .navigation-item {
    font-size: 22px;
  }

  .navigation {
    display: block;
  }

  .open-modal {
    display: none;
  }
}

/* home */

#home {
  background-image: url(../images/home.jpg);
  background-position: center;
  background-size: cover;
  padding-top: 500px;
  padding-bottom: 0;
}

.home-wrapper {
  background: #004787;
}

.home-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #f8f8ff;
  margin-bottom: 21px;
}

.home-text {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: #f8f8ff;
  margin-bottom: 21px;
}

.hero-link-wrap {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.hero-link {
  border: 1px solid #f8f8ff;
  border-radius: 40px;
  background: #120083;
  padding: 7px 9px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #f8f8ff;
  transition: background-color 0.3s ease;
}

.hero-link:hover {
  background: #004787;
}

@media screen and (min-width: 1437px) {
  .home-wrapper {
    border-radius: 67px 0 0 0;
    padding: 22px;
    padding-bottom: 41px;
    /* margin-left: 763px; */
    margin-left: 50%;

    .container {
      width: 681px;
      max-width: 100%;
      margin: 0;
      padding: 0;
    }
  }

  .home-title {
    font-size: 34px;
    text-align: start;
    margin-bottom: 22px;
  }
  .home-text {
    font-size: 24px;
    margin-bottom: 118px;
  }

  .hero-link-wrap {
    gap: 40px;
  }

  .hero-link {
    font-size: 24px;
    padding: 18px 28px;
  }
}

/* sound */

.sound-img {
  margin: 0 auto;
  margin-bottom: 17px;
}

.sound-text {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: #f8f8ff;
}

@media screen and (min-width: 1437px) {
  .sound-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 64px;
  }

  .sound-img {
    margin: 0;
    flex-shrink: 0;
  }

  .sound-text {
    font-size: 24px;
  }
}

/* services */

.services-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;

  li {
    border-radius: 27px;
    width: 306px;
    max-width: 100%;
    min-height: 216px;
    padding: 10px;
    padding-top: 0;
    background: #120083;
  }

  img {
    margin: 0 auto;
    transform: translateY(-25px);
  }

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #f8f8ff;
    margin-bottom: 22px;
  }

  span {
    font-family: var(--second-family);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    color: #f8f8ff;
  }
}

@media screen and (min-width: 768px) {
  .services-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: normal;
    justify-content: center;
    gap: 50px 30px;
  }
}

@media screen and (min-width: 1437px) {
  .services-list {
    margin-top: 80px;

    li {
      width: calc((100% - 60px) / 3);
    }

    p {
      font-size: 26px;
    }

    span {
      font-size: 24px;
    }
  }
}

/* players */

.players-list {
  display: flex;
  flex-direction: column;
  gap: 20px;

  li {
    display: flex;
    align-items: center;
    gap: 9px;

    font-family: var(--second-family);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    color: #f8f8ff;
  }

  img {
    width: 50px;
  }
}

.players-text {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #f8f8ff;
  margin-top: 26px;
}

@media screen and (min-width: 768px) {
  .players-list {
    width: 410px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1437px) {
  .players-list {
    width: 767px;
    margin: 0 auto;
    gap: 41px;

    li {
      gap: 15px;
      font-size: 30px;
    }

    img {
      width: 100px;
    }
  }

  .players-text {
    font-size: 24px;
    max-width: 620px;
    margin: 0 auto;
    margin-top: 31px;
  }
}

/* designed */

.designed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;

  li {
    border-radius: 40px;
    background: #0b1a84;
    display: flex;
    align-items: center;
    gap: 11px;

    font-family: var(--second-family);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    color: #f8f8ff;
  }
}

.designed-link {
  display: block;
  text-align: center;
  width: 258px;
  margin: 0 auto;
  max-width: 100%;
  margin-top: 40px;
}

@media screen and (min-width: 1437px) {
  .designed-list {
    width: 1017px;
    margin: 0 auto;

    li {
      padding: 13px;
      font-size: 30px;
    }
  }

  .designed-link {
    width: 429px;
  }
}

/* pipeline */

.pipeline-list {
  display: flex;
  flex-direction: column;
  gap: 20px;

  li {
    display: flex;
    align-items: center;
    gap: 17px;
  }

  span {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 42px;
    color: #fff;
  }

  p {
    font-family: var(--second-family);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    color: #f8f8ff;
  }
}

@media screen and (min-width: 1437px) {
  .pipeline-list {
    width: 764px;
    margin: 0 auto;
    gap: 71px;

    li {
      gap: 81px;
    }

    span {
      font-size: 82px;
    }

    p {
      font-size: 24px;
    }
  }
  .item1 {
    transform: translateX(-45px);
  }

  .item2 {
    transform: translateX(-15px);
  }
  .item3 {
    transform: translateX(15px);
  }
  .item4 {
    transform: translateX(45px);
  }
}

/* difference */

.difference-list {
  display: none;
}

.difference-item {
  width: 276px;
  max-width: 100%;
  min-height: 424px;
  padding: 23px;
  padding-top: 52px;
  border-radius: 26px;
  background-color: #08022f;

  img {
    margin: 0 auto;
    margin-bottom: 80px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 26px;
    text-align: center;
    color: #f8f8ff;
    margin-bottom: 23px;
  }

  span {
    font-family: var(--second-family);
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    color: #f8f8ff;
  }
}

.difference-link {
  width: 207px;
}

@media screen and (min-width: 1437px) {
  .difference-swiper {
    display: none;
  }

  .difference-list {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .difference-link {
    width: 370px;
  }
}

/* team */

.team-list {
  display: flex;
  flex-direction: column;
  gap: 20px;

  div {
    padding: 16px 8px;
    border-radius: 20px;
    background: #0b1a84;
    min-height: 337px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #fff;
    margin-bottom: 18px;
  }

  span {
    font-family: var(--second-family);
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .team-list {
    align-items: center;

    div {
      width: 530px;
      min-height: 454px;
    }

    p {
      font-size: 24px;
      margin-bottom: 24px;
    }

    span {
      font-size: 22px;
    }
  }
}

@media screen and (min-width: 1437px) {
  .team-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 50px;
    width: 1110px;
    margin: 0 auto;

    div {
      width: calc((100% - 50px) / 2);
    }
  }
}

/* blog */

.blog-item {
  width: 315px;
  max-width: 100%;
  min-height: 282px;
  border-radius: 27px;
  background: #0b1a84;
  overflow: hidden;

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #f8f8ff;
    margin-top: 12px;
    padding: 0 8px;
  }
}

.blog-list {
  display: none;
}

.blog-link {
  width: 114px;
  margin: 0;
  margin-left: auto;
  margin-top: 22px;
}

@media screen and (min-width: 1437px) {
  .blog-list {
    display: flex;
    justify-content: center;
    gap: 30px;

    li {
      width: calc((100% - 60px) / 3);
      min-height: 418px;
    }

    p {
      font-size: 26px;
      margin-top: 18px;
    }
  }

  .blog-swiper {
    display: none;
  }

  .blog-link {
    width: 219px;
    margin-top: 32px;
  }
}

/* contact */

.contact-text {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: #f8f8ff;

  a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 1437px) {
  .contact-text {
    max-width: 737px;
    margin: 0 auto;
    font-size: 24px;
  }
}

/* footer */

.footer {
  padding: 10px 0;
}

.footer-container {
  padding: 0 10px;
}

.footer-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 10px;
  color: #fff;
  margin-bottom: 20px;
}

.social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 40px;

  li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    color: #fff;
  }
  a:hover {
    text-decoration: underline;
  }
}

.footer-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    color: #fff;
  }

  a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 1437px) {
  .footer {
    padding: 28px 0;
  }

  .footer-container {
    padding: 0 80px;
  }

  .footer-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }

  .footer-description {
    font-size: 20px;
    margin: 0;
  }

  .social-list {
    margin: 0;
    gap: 10px;

    li {
      font-size: 20px;
    }
  }

  .footer-list {
    gap: 10px;

    li {
      font-size: 20px;
    }
  }
}

/* cookie popup */

.popup {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px 30px 0 0;
  padding: 18px;
  background: #004787;
  transition: transform 0.5s ease;
}

.popup-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.popup-text {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  margin-bottom: 26px;
}

.popup-btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #fff;

  border-radius: 12px;
  padding: 5px;

  border: 1px solid #fff;
  border-radius: 16px;
  background: #120083;
  transition: color 0.3s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  background: #004787;
}

.popup-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.popup-click {
  transform: translateY(120%) translateX(-50%);
}

@media screen and (min-width: 1437px) {
  .popup {
    padding: 12px 50px;
  }

  .popup-title {
    font-size: 50px;
    text-align: start;
  }

  .popup-text {
    font-size: 28px;
    margin: 0;
  }

  .popup-cover {
    display: flex;
    justify-content: space-between;
    gap: 380px;
  }

  .popup-wrap {
    flex-direction: column;
    gap: 25px;
    flex-shrink: 0;
  }

  .popup-btn {
    font-size: 24px;
    padding: 14px 40px;
    align-items: normal;
  }
}
