@media (min-width: 800px) {
  #team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1600px) {
  .team-intro {
    width: 80%;
  }
}

@media (min-width: 1150px) {
  #team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-section {
    padding: 9rem 0 5rem;
  }
}

@media (min-width: 1550px) {
  #team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-section {
    padding: 12rem 0 5rem;
  }
}

@media (max-width: 1440px) {
  .hero-text_container {
    padding-right: 40px;
  }

  .hero-text_text {
    font-size: 48px;
  }

  .about-headline {
    width: 75%;
  }
}

@media (max-width: 1366px) {
  .hero-text_text {
    font-size: 28px;
    width: 80%;
  }

  .projects-label {
    font-size: 14px;
  }

  .projects-headline {
    font-size: 30px;
  }

  .projects-description {
    font-size: 18px;
  }

  .projects-features_list {
    font-size: 18px;
  }

  .project-card_info {
    padding: 0 20px 20px 20px;
  }

  .project-card_icons {
    height: 36px;
  }

  .project-card_button {
    height: 36px;
    font-size: 12px;
  }

  .footer-socials {
    height: 48px;
    padding: 0.3rem 0.6rem;
  }

  .footer-contact_button,
  .footer-careers {
    height: 48px;
    padding: 10px 20px;
  }

  .footer-connect_form {
    height: 48px;
  }

  .footer-bottom_left,
  .footer-bottom_right a {
    font-size: 14px;
  }

  .partner-section {
    height: 100px;
  }

  .partner-list_partner {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 1280px) {
  .project-card_title {
    font-size: 26px;
  }

  .project-card_icons {
    width: 45%;
    padding: 0 0.5rem;
  }

  .project-card_icons a,
  .project-card_icons a svg {
    width: 20px;
    height: 20px;
  }

  .team-headline {
    font-size: 32px;
  }

  .team-member_bio {
    font-size: 13px;
  }

  .footer-logo_text,
  .footer-connect_title {
    font-size: 26px;
  }

  .footer-left_description,
  .footer-connect_description {
    font-size: 16px;
  }

  .footer-logo_img {
    width: 66px;
  }

  .footer-contact_button,
  .footer-careers {
    font-size: 16px;
  }
}

@media (max-width: 1250px) {
  .team-intro {
    width: 100%;
  }

  .footer-connect_form-email {
    font-size: 16px;
  }
}

@media (max-width: 1150px) {
  .team-section {
    padding: 8rem 0 5rem;
  }
}

@media (max-width: 1024px) {
  .footer-main {
    padding: 2rem 3rem;
  }

  .footer-custom_divider {
    bottom: -9px;
  }

  .footer-marked-buttons {
    gap: 1rem;
  }

  .footer-contact_button,
  .footer-careers {
    font-size: 14px;
    height: 41px;
  }

  .footer-socials_icon {
    width: 20px;
    height: 20px;
  }

  .footer-socials {
    height: 41px;
  }

  .footer-connect_form {
    height: 41px;
    padding: 5px 3px;
  }

  .footer-connect_form-wrapper {
    right: 8px;
    padding: 4px 16px;
  }

  .footer-bottom {
    margin: 0 3rem;
  }

  .footer-bottom_left,
  .footer-bottom_right a {
    font-size: 11px;
  }

  .project-card_title {
    font-size: 20px;
  }

  .project-card_description {
    font-size: 12px;
  }

  .project-card_icons a,
  .project-card_icons a svg {
    width: 16px;
    height: 16px;
  }

  .project-card_icons,
  .project-card_button {
    height: 28px;
  }

  .project-card_button {
    padding: 3px 6px;
    font-size: 10px;
  }

  .about-headline {
    font-size: 32px;
  }

  .about-description {
    font-size: 18px;
  }

  .about-card_title {
    font-size: 20px;
  }

  .about-card_description {
    font-size: 13px;
  }

  .projects-container {
    padding: 6rem 6rem 8rem;
  }

  .about-container {
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {
  .projects-headline {
    font-size: 18px;
  }

  .projects-description {
    font-size: 14px;
  }

  .projects-features_list {
    font-size: 14px;
  }
  
  .app-header {
      height: auto;
  }

  .app-header_content {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .app-header_hamburger {
    display: block;
    position: absolute;
    right: 36px;
    top: 28px;
  }

  .app-header_links {
    width: 100%;
    transition: max-height 0.4s ease, opacity 0.35s ease;
    background: #031927;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }

  .app-header_links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: auto;
    opacity: 1;
    transition: max-height 0.4s ease, opacity 0.35s ease;
  }

  .app-header_links-list {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .app-header_button {
    align-self: center;
    margin-top: 1rem;
  }

  .app-header_button {
    display: none;
  }

  .projects-container {
    flex-direction: column;
  }

  .projects-grid {
    width: 90%;
  }

  .about-container {
    width: 90%;
  }

  .about-grid {
    gap: 3rem;
  }

  .footer-custom_divider {
    display: none;
  }

  .footer-left, .footer-connect {
    width: 45%;
  }

  .footer-logo_text, .footer-connect_title {
    font-size: 22px;
  }

  .footer-logo_img {
    height: 48px;
  }

  .footer-bottom_left, .footer-bottom_right a {
    font-size: 9px;
  }

  .footer-bottom_right {
    gap: 1.5rem;
  }

  .footer-bottom {
    margin: 0 1.5rem;
  }

  .footer-connect_form-email {
    font-size: 12px;
  }

  .footer-connect_form-submit {
    font-size: 12px;
  }

  .footer-connect_form-icon {
    width: 20px;
    height: 20px;
  }

  .footer-marked-buttons {
    gap: 0.5rem;
  }

  .footer-contact_button, .footer-careers {
    font-size: 12px;
    padding: 10px 12px;
  }

  .projects-intro {
    width: 80%;
  }

  .project-card_icons {
    width: 50%;
  }

  .home-hero_darkener {
    width: 100%;
  }
  
  .home-hero_divider {
      transform: translateX(-50%) scale(1.1);
      left: 33%;
  }
}

@media (max-width: 750px) {
    #team-grid {
        display: flex;
        overflow-x: scroll;
        padding: 1.5rem;
        gap: 3rem;
    }
}

@media (max-width: 601px) {
  .hero-text_text {
    font-size: 20px;
  }

  .hero-team_button {
    width: 180px;
    height: 40px;
    font-size: 16px;
  }

  .partner-section {
    height: 80px;
  }

  .partner-list_partner {
    width: 60px;
    height: 60px;
  }

  .project-section {
    flex-direction: column;
  }

  .projects-container {
    padding: 2rem 2rem 4rem;
  }

  .projects-intro {
    width: 80%;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .footer-left, .footer-connect {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    height: 100%;
    padding: 1rem;
    gap: 1rem;
  }

  .footer-bottom_left, .footer-bottom_right a {
    font-size: 12px;
    text-align: center;
  }

  .footer-bottom_left, .footer-bottom_right {
    width: 75%;
    flex-direction: column;
    gap: 1rem;
  }

  .about-intro {
    width: 90%;
  }

  .about-headline {
    width: 100%;
  }

  .about-description {
    width: 90%;
  }

  .team-headline {
    width: 90%;
  }

  .about-grid {
    flex-direction: column;
  }

  .about-card {
    width: 100%;
  }

  .about-card_description {
    font-size: 16px;
  }

  .about-card_title {
    font-size: 24px;
  }

  .projects-grid {
    gap: 2rem;
  }
  
  .hero-text_container {
      transform: translateY(-60%);
      width: 64%;
  }
  
  .hero-text_text {
      margin: 0 0 20px;
      width: 100%;
  }
  
  .footer-logo,
  .footer-connect_title {
      justify-content: center;
  }
  
  .footer-left_description,
  .footer-connect_description {
      text-align: center;
  }
}

@media (min-width: 2300px) {
  .team-section {
    padding: 15rem 0 5rem;
  }
}

@media (max-width: 500px) {
    .projects-grid {
        flex-direction: column;
    }

    .project-card_description {
        font-size: 16px;
    }
    .project-card_title {
        font-size: 24px;
    }

    .project-card_button {
        height: 36px;
        font-size: 12px;
        padding: 4px 12px;
    }

    .project-card_icons {
        height: 36px;
    }

    .project-card_icons a, .project-card_icons a svg {
        height: 24px;
        width: 24px;
    }
}

@media (max-width: 375px) {
    .footer-connect_title {
        font-size: 20px;
    }

    .footer-left_description, .footer-connect_description {
        font-size: 14px;
    }
    .hero-text_container {
        padding-right: 12.5px;
    }
}