/* header */

.header {
  position: fixed;
  top: 10px;
  left: 50%;
  background: #2d3e50;
  width: 348px;
  border-radius: 20px;
  transform: translateX(-50%);
  padding: 9px 0;
  z-index: 9;
}

.navigation {
  display: none;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.header-logo {
  display: block;
  width: 31px;
}

.navigation-list {
  display: flex;
  align-items: center;
}

.svg {
  stroke: #fdf8f4;
}

.navigation-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #fdf8f4;
  transition: border-color 0.3s ease;
}

.navigation-item:hover {
  text-decoration: underline;
}

.modal {
  z-index: 8;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
  height: 100%;
  padding: 15px;
  padding-top: 197px;
  transition: transform 1s ease;
  background: #2d3e50;
}

.modal-navigation-list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.modal-click {
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .header {
    width: 704px;
  }
}

@media screen and (min-width: 1437px) {
  .header {
    width: 1337px;
  }

  .header-container {
    justify-content: space-between;
    padding: 0 16px;
    gap: 20px;
  }

  .header-logo {
    width: 50px;
  }

  .navigation {
    display: block;
  }

  .navigation-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  .navigation-item {
  }

  .open-modal {
    display: none;
  }
}

/* home */

#home {
  padding-top: 140px;
  padding-bottom: 140px;
  background-image: url(../images/black.png), url(../images/hero-background.jpg);
  background-position: center;
  background-size: cover;
}

.home-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #fdf8f4;
  margin-bottom: 12px;
}

.home-text {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fdf8f4;
}

@media screen and (min-width: 1437px) {
  #home {
    padding-top: 280px;
    padding-bottom: 280px;
  }

  .home-title {
    font-size: 34px;
    margin-bottom: 4px;
  }
  .home-text {
    font-size: 24px;
    max-width: 833px;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .home-description {
    font-size: 24px;
    max-width: 901px;
    margin: 0 auto;
    margin-bottom: 104px;
  }

  .hero-link-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 70px;
  }

  .home-link {
    font-size: 24px;
  }
}

/* advice */

.advice-text {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #151515;
  margin-bottom: 33px;
}

.advice-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 18px;

  li {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  img {
    width: 42px;
    flex-shrink: 0;
  }

  p {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 14px;
    color: #151515;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #151515;
  }
}

.advice-desc {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #151515;
}

@media screen and (min-width: 1437px) {
  .advice-text {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .advice-list {
    width: 710px;
    margin: 0 auto;
    margin-bottom: 30px;

    li {
      gap: 40px;
    }

    img {
      width: 55px;
    }

    p,
    span {
      font-size: 24px;
    }
  }

  .advice-desc {
    font-size: 24px;
    max-width: 621px;
    margin: 0 auto;
  }
}

/* about */

.about-slide {
  width: 167px;
  img {
    width: 57px;
    margin: 0 auto;
    margin-bottom: 5px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #151515;
    text-align: center;
  }
}

.about-text {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #151515;
  margin-top: 29px;
}

.about-btn-wrap {
  display: none;
}

@media screen and (min-width: 1437px) {
  .about-container {
    position: relative;
  }

  .about-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: 10px;
    right: 100px;
  }

  .swiper-btn {
    width: 44px;
    transition: opacity 0.3s ease;
  }

  .swiper-btn:hover {
    opacity: 0.7;
  }

  .about-right {
    transform: rotate(180deg);
  }

  .about-slide {
    width: 306px;

    img {
      width: 80px;
      margin-bottom: 13px;
    }

    p {
      font-size: 24px;
    }
  }

  .about-text {
    font-size: 24px;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 30px;
  }
}

/* women */

.women-swiper {
  /* width: 281px; */
}

.women-slide {
  height: 212px;
  border-radius: 30px;
  background: #2d3e50;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 25px;

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #fff;
  }

  h5 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
  }
}

.women-list {
  display: none;
}

.women-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.women-left {
  width: 44px;
  flex-shrink: 0;
}

.women-right {
  width: 44px;
  flex-shrink: 0;
  transform: rotate(180deg);
}

@media screen and (min-width: 1437px) {
  .women-mobile {
    display: none;
  }

  .women-list {
    display: flex;
    justify-content: center;
    gap: 60px;

    li {
      border-radius: 30px;
      width: 322px;
      height: 410px;
      background: #2d3e50;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 36px 23px;
    }

    p {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 24px;
      color: #fff;
    }

    h5 {
      font-family: var(--font-family);
      font-weight: 700;
      font-size: 24px;
      text-transform: capitalize;
      text-align: center;
      color: #fff;
    }
  }
}

/* meet */

.meet-slide {
  height: 325px;
  border-radius: 30px;
  background: #2d3e50;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
  }

  h5 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #fff;
  }

  span {
    font-family: var(--font-family);
    font-style: italic;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
  }
}

.meet-left {
  width: 44px;
  flex-shrink: 0;
}

.meet-right {
  width: 44px;
  flex-shrink: 0;
  transform: rotate(180deg);
}

.meet-list {
  display: none;
}

.meet-btn {
  width: 34px;
  position: absolute;
  top: 40px;
  right: 0;
  transition: opacity 0.3s ease;
}

.meet-btn:hover {
  opacity: 0.7;
}

.filter-menu {
  background: #fcf7f3;
  padding: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.filter-item {
  font-size: 16px;
  padding: 6px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;

  img {
    width: 24px;
    transform: rotate(-90deg);
  }
}

.filter-item:hover {
  p {
    text-decoration: underline;
  }
}

.hidden {
  display: none;
}

@media screen and (min-width: 768px) {
  .meet-btn {
    top: 0;
  }
}

@media screen and (min-width: 1437px) {
  .meet-list {
    display: flex;
    justify-content: center;
    gap: 30px;

    li {
      width: 322px;
      height: 429px;
    }

    p {
      font-size: 24px;
    }

    h5 {
      font-size: 20px;
    }

    span {
      font-size: 14px;
    }
  }

  .meet-btn {
    top: 20px;
    right: 80px;
    width: 54px;
  }
}

/* want */

.want-text {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.want-list {
  list-style: disc;
  padding-left: 20px;
  width: 275px;
  margin: 0 auto;
  margin-bottom: 20px;

  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}

.want-desc {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 1437px) {
  .want-text,
  .want-list,
  .want-desc {
    font-size: 24px;
  }

  .want-list {
    width: 475px;
  }

  .want-text {
    margin-bottom: 50px;
  }
}

/* starrt  */

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;

  input,
  select,
  textarea,
  button {
    width: 100%;
    padding: 7px 14px;
    border: none;
    border-radius: 20px;
    background: #2d3e50;

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: rgba(252, 247, 243, 0.5);
  }

  input::placeholder,
  textarea::placeholder {
    color: rgba(252, 247, 243, 0.5);
  }

  textarea {
    resize: none;
  }

  input {
    width: 60%;
  }

  select {
    cursor: pointer;
    appearance: none;
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    margin-top: 10px;
  }

  button {
    background-color: #2d3e50;
    cursor: pointer;
    font-weight: bold;
  }

  button:hover {
    background-color: #2c5784;
  }
}

.start-text {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #151515;
  margin-top: 20px;

  a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 1437px) {
  .form {
    width: 856px;
    margin: 0 auto;
    gap: 20px;

    input,
    select,
    textarea,
    button {
      padding: 17px 24px;
      font-size: 20px;
    }

    input {
      width: 100%;
    }

    select {
      margin: 0;
      width: 473px;
      flex-shrink: 0;
    }
  }

  .form-flex {
    display: flex;
    gap: 20px;
  }

  .start-text {
    font-size: 24px;
    margin-top: 25px;
  }
}

/* platform */

.platform-list {
  padding-left: 20px;
  list-style: disc;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  color: #151515;
  width: 295px;
  margin: 0 auto;
}

.platform-text {
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #151515;
  width: 295px;
  margin: 0 auto;
  margin-top: 20px;
}

@media screen and (min-width: 1437px) {
  .platform-list {
    width: 534px;
    font-size: 24px;
  }

  .platform-text {
    width: 534px;
    font-size: 24px;
    margin-top: 25px;
  }
}

/* footer */

.footer {
  padding: 25px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.footer-description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #2d3e50;

  a:hover {
    text-decoration: underline;
  }
}

.footer-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;

  font-family: var(--second-family);
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #2d3e50;

  a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 1437px) {
  .footer {
    padding-top: 60px;
  }

  .footer-list {
    font-size: 20px;
  }

  .footer-description {
    font-size: 20px;
  }
  .footer-wrap {
    margin-bottom: 33px;
  }
}

/* cookie popup */

.popup {
  position: fixed;
  z-index: 10;
  top: 50%;
  left: 50%;
  background: #fdf8f4;
  border-radius: 50px;
  transform: translateX(-50%) translateY(-50%);
  transition: transform 0.5s ease;
  padding: 16px;
}

.cookie-img {
  width: 76px;
  margin: 0 auto;
  margin-bottom: 19px;
}

.popup-text {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.04em;
  color: #2d3e50;
  margin-bottom: 19px;
}

.popup-btn {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #2d3e50;
  text-transform: uppercase;

  width: 252px;
  padding: 10px;
  text-align: center;
  border: 2px solid #d36f5e;
  border-radius: 30px;

  transition: color 0.3s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  background: #d36f5e;
}

.popup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

.popup-click {
  /* transform: translateY(120%) translateX(-50%); */
  display: none;
}

@media screen and (min-width: 1437px) {
  .popup {
    width: 928px;
    padding: 53px 85px;
  }

  .cookie-img {
    margin: 0;
    width: 136px;
    flex-shrink: 0;
  }

  .popup-cover {
    display: flex;
    align-items: flex-start;
    gap: 57px;
    margin-bottom: 111px;
  }

  .popup-text {
    font-size: 34px;
    margin: 0;
  }

  .popup-wrap {
    flex-direction: row;
    gap: 80px;
  }

  .popup-btn {
    width: 339px;
    font-size: 24px;
  }
}
