/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 20px 0;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid #f9f9f9;
}

.header__ven__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__ven__logo {
  font-family: var(--third-family);
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  -webkit-text-stroke: 1px #d4ff00;
}

.header__ven__logo:hover {
  text-shadow: 2px 2px 10px #d4ff00;
}

.navigation {
  display: none;
}

.modal-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg {
  fill: none;
  stroke: #d4ff00;
  transition: stroke 0.3s ease;
}

.navigation__ven__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.navigation__ven__item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #f9f9f9;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.navigation__ven__item:hover,
.navigation__ven__item:focus {
  text-shadow: 2px 2px 10px #d4ff00;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background: #1f1f1f;
  padding: 40px;
  padding-top: 100px;
  transform: translateX(100%);
  transition: transform 1s ease;
  z-index: 8;
}

.modal-navigation__ven__list {
  flex-direction: column;
  gap: 30px;

  li {
    width: 100%;
  }

  .navigation__ven__item {
    padding: 9px 30px;
    border-radius: 12px;

    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #1f1f1f;
    display: block;
    text-align: center;
    background: #f6f7f8;
  }
}

.modal-click {
  transform: translateX(0);
}

@media screen and (min-width: 1437px) {
  .header {
    padding: 27px 0;
  }

  .header__ven__logo {
    width: 208px;
  }

  .navigation {
    display: block;
  }

  .open-modal {
    display: none;
  }
}

/* home */

#home {
  padding-top: 290px;
  padding-bottom: 184px;
  background-image: url(../images/home-bg.png);
  background-size: cover;
  background-position: bottom left;
}

.home__ven__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  color: #f9f9f9;
  margin-bottom: 24px;
}

.home__ven__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #f9f9f9;
  margin-bottom: 42px;
}

.home__ven__link {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #1f1f1f;
  border-radius: 10px;
  padding: 16px;
  background-color: #d4ff00;
  background-image: linear-gradient(
    319deg,
    rgba(255, 255, 255, 0.8) 10%,
    rgba(255, 255, 255, 0) 34%,
    rgba(255, 255, 255, 0) 60.06%,
    #fff 83%
  );
  transition: border-color 0.3s ease;
}

.home__ven__link:hover {
  box-shadow: 2px 2px 10px #d4ff00;
}

@media screen and (min-width: 1437px) {
  #home {
    padding-top: 410px;
    padding-bottom: 338px;
  }

  .home__ven__title {
    font-size: 56px;
    width: 660px;
    margin-bottom: 24px;
  }

  .home__ven__text {
    font-size: 24px;
    width: 927px;
    margin-bottom: 42px;
  }

  .home__ven__link {
    width: 411px;
  }
}

/* built */

.desctop {
  display: none;
}

.mobile {
  margin: 0 auto;
  margin-bottom: 16px;
}

.built__ven__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #f9f9f9;
}

@media screen and (min-width: 1437px) {
  #built {
    padding-top: 253px;
    padding-bottom: 320px;

    .title {
      max-width: 587px;
    }
  }

  .built__ven__text {
    font-size: 20px;
    text-align: start;
    max-width: 587px;
  }

  .desctop {
    display: block;
    position: absolute;
    top: 65%;
    right: 40px;
    transform: translateY(-50%);
  }

  .mobile {
    display: none;
  }

  .built__ven__container {
    position: relative;
  }
}

/* practice */

#practice {
  background-image: url(../images/practice.png);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

.built__ven__slide {
  width: 335px;
  max-width: 100%;
  padding: 32px;
  padding-top: 309px;
  position: relative;
  overflow: hidden;

  p {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    color: #f9f9f9;
    padding: 16px;
    border: 3px solid #f9f9f9;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.pagination {
  text-align: center;
  margin-top: 44px;
}

.swiper-pagination-bullet {
  display: inline-block;
  border-radius: 8px;
  width: 12px;
  height: 12px;
  background: #505050;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 22px;
  background: #d4ff00;
}

@media screen and (min-width: 1437px) {
  #practice {
    background-size: contain;
  }

  .built__ven__swiper {
    margin-top: 66px;
  }

  .built__ven__slide {
    width: calc((100% - 96px) / 4);
  }
}

/* learn */

#learn {
  background-image: url(../images/network.png);
  background-size: cover;
  background-position: bottom center;

  .title {
    text-align: start;
  }
}

.learn__ven__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #f9f9f9;
  margin-bottom: 16px;
}

.learn__ven__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 544px;
  max-width: 100%;
  margin: 0 auto;

  li {
    border: 3px solid #d4ff00;
    padding: 16px;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #f9f9f9;
  }
}

@media screen and (min-width: 1437px) {
  .learn__ven__text {
    font-size: 20px;
    max-width: 587px;
  }

  .learn__ven__list {
    li {
      font-size: 20px;
    }
  }
}

/* training */

.training__ven__list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  li {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  div {
    border: 1px solid #000;
    padding: 16px;
    background: #fff;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #000;
    margin-bottom: 8px;
  }

  h5 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #000;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000;
  }
}

@media screen and (min-width: 1437px) {
  .training__ven__list {
    width: 1280px;
    margin: 0 auto;
    gap: 32px;

    li {
      flex-direction: row;
      gap: 32px;
      align-items: center;
    }

    img {
      flex-shrink: 0;
    }

    div {
      padding: 32px;
    }

    p {
      margin-bottom: 14px;
    }

    .training__ven__item {
      flex-direction: row-reverse;
    }
  }
}

/* founder */

#founder {
  background-image: url(../images/pricing.png);
  background-size: cover;
  background-position: center;
}

.founder__ven__list {
  display: flex;
  flex-direction: column;
  gap: 8px;

  li {
    border: 1px solid #000;
    padding: 16px;
    background: #d4ff00;
  }

  p {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #000;
    margin-bottom: 8px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    color: #000;
    margin-bottom: 16px;
  }

  div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000;
  }
}

@media screen and (min-width: 1437px) {
  #founder {
    background-size: contain;
  }
  .founder__ven__list {
    width: 1280px;
    margin: 0 auto;
    margin-top: 100px;
    flex-direction: row;
    gap: 32px;

    li {
      width: calc((100% - 64px) / 3);
    }
  }
}

/* talk */

#talk {
  background-image: url(../images/contact.png);
  background-position: center;
  background-size: cover;
}

.mail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  div {
    display: flex;
    align-items: center;
    gap: 8px;

    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #f9f9f9;
    transition: text-shadow 0.3s ease;
  }

  img {
    flex-shrink: 0;
  }

  a:hover {
    text-shadow: 2px 2px 10px #d4ff00;
  }
}

@media screen and (min-width: 1437px) {
  .mail-list {
    gap: 40px;

    div {
      gap: 16px;
      font-size: 24px;
    }
  }
}

/* footer */

.footer {
  padding: 40px 0;
  background: #d4ff00;
}

.footer__ven__logo {
  display: block;
  font-family: var(--third-family);
  font-weight: 900;
  font-size: 32px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 24px;
  color: #d4ff00;
  -webkit-text-stroke: 1px #000;
}

.footer__ven__logo:hover {
  text-shadow: 2px 2px 10px #000;
}

.footer__ven__list {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #000;

  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  text-decoration-skip-ink: none;
  color: #000;

  a:hover {
    text-decoration: underline;
  }
}

.footer__ven__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 45px;

  a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-decoration-skip-ink: none;
    color: #000;
    text-decoration-skip-ink: none;
  }

  a:hover {
    text-decoration: underline;
  }
}

.footer__ven__description {
  font-family: var(--font3);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  text-align: center;
}

@media screen and (min-width: 1437px) {
  .footer {
    padding: 80px 0;
  }

  .footer__ven__logo {
    margin-bottom: 32px;
  }

  .footer__ven__list {
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    padding-bottom: 62px;
    border-bottom: 1px solid #000;
    margin-bottom: 62px;
  }

  .footer__ven__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .footer__ven__mail {
    margin: 0;

    a {
      font-size: 24px;
    }
  }

  .footer__ven__description {
    font-size: 24px;
  }
}

/* cookie popup */

.popup {
  position: fixed;
  z-index: 10;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 32px 24px;
  background: #141414;
  transition: transform 0.5s ease;
}

.popup-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 20px;
  line-height: 150%;
  color: #f9f9f9;
  margin-bottom: 24px;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #f9f9f9;
  margin-bottom: 24px;
}

.popup-close {
  position: absolute;
  top: 32px;
  right: 24px;
}

.popup-btn {
  border: 1px solid #d4ff00;
  padding: 12px 24px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #f9f9f9;
  text-transform: capitalize;

  transition: color 0.3s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  background: #d4ff00;
  color: #000;
}

.popup-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.popup-click {
  transform: translateY(150%) translateX(-50%);
}

@media screen and (min-width: 1437px) {
  .popup {
    bottom: 8px;
    left: 8px;
    transform: translateX(0);
    padding: 32px 48px;
  }

  .popup-title {
    font-size: 24px;
    margin-bottom: 2px;
  }

  .popup-text {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .popup-btn {
    font-size: 16px;
  }

  .popup-wrap {
    flex-direction: row;
    gap: 16px;
  }

  .popup-click {
    transform: translateY(120%);
  }
}
