/* header */

.header {
  position: fixed;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  background: #151515;
  border-radius: 50px;
}

.header-container {
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}

.navigation {
  display: none;
}

.modal-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg {
  stroke: #fff;
}

.navigation-list {
  display: flex;
  align-items: center;
  gap: 70px;
}

.navigation-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  transition: border-color 0.3s ease;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  padding-top: 134px;
  z-index: 8;
  width: 100%;
  background: #151515;
  height: 100%;
  display: none;
}

.modal-navigation-list {
  flex-direction: column;
  gap: 43px;
}

.modal-click {
  display: block;
}

@media screen and (min-width: 1437px) {
  .header {
    top: 10px;
    padding: 8px 0;
  }

  .header-logo {
    width: 65px;
  }

  .navigation {
    display: block;
  }

  .open-modal {
    display: none;
  }
}

/* home */

#home {
  padding-top: 57px;
}

.home-container {
  padding: 0;
}

.home-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 28px;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}

.home-img {
  /* width: 303px; */
  margin: 0 auto;
  margin-bottom: 7px;
}

.home-sub-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  text-transform: lowercase;
  color: #fff;
  text-align: center;
  margin-bottom: 35px;
}

.home-text {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding: 0 50px;
  margin-bottom: 30px;
}

.home-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #fff;

  border-radius: 60px;
  padding: 11px;
  width: 281px;
  display: block;
  max-width: 100%;
  text-align: center;
  background: #151515;
  margin: 0 auto;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.home-link:hover {
  background: #242121;
  /* border: 2px solid #fff; */
}

@media screen and (min-width: 1437px) {
  #home {
    padding: 125px 22px;
    padding-bottom: 143px;
  }

  .home-title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .home-sub-title {
    font-size: 28px;
  }

  .home-text {
    font-size: 24px;
    margin-bottom: 90px;
  }

  .home-link {
    font-size: 30px;
    width: 505px;
  }

  .home-wrap {
    width: 713px;
    margin-left: auto;
  }

  .home-container {
    position: relative;
    /* overflow: hidden; */
  }

  .home-img {
    margin: 0;
    position: absolute;
    top: -125px;
    left: 0;
  }
}

/* services */

.services-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 18px;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 291px;
  margin: 0 auto;
  max-width: 100%;

  li {
    display: flex;
    align-items: center;
    gap: 41px;

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
  }

  img {
    width: 39px;
  }
}

@media screen and (min-width: 1437px) {
  .services-text {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .services-title {
    font-size: 40px;
    margin-bottom: 50px;
  }

  .services-list {
    width: 545px;

    li {
      gap: 134px;
      font-size: 24px;
    }

    img {
      width: auto;
    }
  }
}

/* about */

.about-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
  }

  img {
    width: 89px;
  }
}

@media screen and (min-width: 1437px) {
  .about-list {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 101px 207px;

    li {
      width: calc((100% - 414px) / 3);
      font-size: 24px;
    }

    img {
      width: auto;
    }
  }
}

/* toolkit */

.table {
  width: 1220px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  border-radius: 40px;
  overflow: hidden;

  th,
  td {
    padding: 20px;
    text-align: left;
    vertical-align: top;
    border-right: 1px solid rgba(255, 255, 255, 0.5);

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #fff;
  }

  th {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }

  tr:not(:last-child) td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }

  td:last-child,
  th:last-child {
    border-right: none;
  }
}

@media screen and (min-width: 1437px) {
  #toolkit {
    .title {
      margin-bottom: 50px;
    }
  }

  .table {
    margin-bottom: 50px;

    th {
      font-size: 20px;
    }

    td {
      font-size: 25px;
    }
  }
}

/* clients */

.clients-item {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  width: 281px;
  max-width: 100%;
  min-height: 212px;
  position: relative;
  background: #152944;
  padding: 22px;

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 22px;
    left: 22px;
    display: block;
  }
}

.clients-cover {
  display: flex;
  align-items: center;
}

.clients-left {
  transform: rotate(-90deg);
}

.clients-right {
  transform: rotate(90deg);
}

.clients-list {
  display: none;
}

@media screen and (min-width: 768px) {
  .clients-item {
    width: 301px;
  }
}

@media screen and (min-width: 1437px) {
  .clients-cover {
    display: none;
  }

  .clients-list {
    display: flex;
    gap: 30px;
  }

  .clients-item {
    width: calc((100% - 90px) / 4);
    height: 410px;

    p,
    span {
      font-size: 24px;
    }
  }
}

/* vibe */

.vibe-list {
  width: 320px;
  margin-bottom: 30px;

  li {
    gap: 19px;
  }

  img {
    width: 24px;
  }
}

@media screen and (min-width: 1437px) {
  .vibe-list {
    width: 520px;
    margin-bottom: 56px;

    li {
      gap: 55px;
    }

    img {
      width: auto;
    }
  }
}

/* wins */

.wins-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.wins-item {
  width: 435px;
  max-width: 100%;
  min-height: 376px;
  border-radius: 50px;
  background: #152944;
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;

  div {
    padding: 9px;
    padding-top: 29px;
  }

  h4 {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 20px;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .wins-item {
    div {
      padding: 24px;
      padding-top: 29px;
    }
  }
}

@media screen and (min-width: 1437px) {
  .wins-list {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    align-items: normal;
  }

  .wins-item {
    min-height: 446px;

    div {
      padding: 15px;
    }

    h4 {
      font-size: 24px;
      margin-bottom: 15px;
    }

    p {
      font-size: 24px;
    }
  }
}

/* contact */

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 43px;
  margin-bottom: 30px;

  img {
    width: 39px;
  }

  a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #fff;
  }
}

.contact-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-bottom: 43px;
}

.contact-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 22px;

  img {
    width: 28px;
  }
}

@media screen and (min-width: 1437px) {
  .contact-link {
    gap: 28px;
    margin-bottom: 40px;

    img {
      width: auto;
    }

    a {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 24px;
      color: #fff;
    }
  }

  .contact-title {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .contact-list {
    gap: 70px;
    margin-bottom: 38px;

    img {
      width: auto;
    }
  }
}

/* footer */

.footer {
  padding-top: 50px;
}

.footer-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-link {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .footer-list {
    justify-content: center;
    gap: 84px;
  }
}

@media screen and (min-width: 1437px) {
  .footer {
    padding-top: 60px;
  }

  .footer-link {
    font-size: 20px;
  }

  .footer-description {
    font-size: 24px;
    margin-top: 49px;
  }
}

/* cookie popup */

.popup {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  padding-top: 42px;
  border-radius: 30px 30px 0 0;
  background: #151515;
  transition: transform 0.5s ease;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 38px;
}

.popup-btn {
  border: 3px solid #fff;
  border-radius: 19px;
  padding: 9px;

  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;

  transition: color 0.3s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  background: #0b1f3a;
  border-color: transparent;
}

.popup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 23px;
}

.popup-click {
  transform: translateY(100%);
}

@media screen and (min-width: 768px) {
  .popup-text {
    text-align: center;
  }
}

@media screen and (min-width: 1437px) {
  .popup {
    padding: 59px;
  }

  .popup-text {
    font-size: 24px;
    margin-bottom: 70px;
    text-align: center;
  }

  .popup-wrap {
    gap: 105px;
    justify-content: center;
    flex-direction: row;
  }

  .popup-btn {
    font-size: 30px;
  }
}
