@media (max-width: 432px) {
    .wrap {
        max-width: 100%;
        padding: 0 15px;
        width: 100%;
    }

    /* Header ----------------------------------- */

    header {
        background: white;
        position: absolute;
    }

    header .cta {
        display: none;
    }

    header .phone {
        display: none;
    }

    header .hamburger {
        align-items: center;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 6px;
        height: 24px;
        justify-content: center;
        position: absolute;
        right: 24px;
        top: 44px;
        width: 32px;
        z-index: 60;
    }

    header .bars {
        background: #000;
        border-radius: 2px;
        height: 4px;
        transform-origin: center;
        transition: all .3s ease;
        width: 100%;
    }

    header .hamburger.active .bars:nth-child(1) {
        transform: rotate(45deg) translateY(15px);
    }

    header .hamburger.active .bars:nth-child(2) {
        opacity: 0;
    }

    header .hamburger.active .bars:nth-child(3) {
        transform: rotate(-45deg) translateY(-13px);
    }

    header nav {
        align-items: center;
        background: white;
        flex-direction: column;
        height: 100vh;
        justify-content: center;
        left: 100%;
        position: fixed;
        top: 0;
        transition: all .3s linear;
        width: 100vw;
        z-index: 50;
    }

    header nav.active {
        left: 0;
    }

    /* Banner ----------------------------------- */

    main .banner {
        height: 50vh;
        margin-top: 110px;
    }

    main .banner h1 {
        font-size: 40px;
    }

    main .banner p {
        font-size: 18px;
    }

    /* Stats ----------------------------------- */

    main .stats .item .number {
        color: #2c3038;
        font-family: 'Lora', serif;
        font-size: 20px;
    }

    main .stats .item .label {
        font-size: 16px;
    }

    .budget {
        display: none;
    }

    main .services {
        flex-direction: column;
    }
    main .services img {
        width: 100%;
    }
    main .differentials {
        grid-template-columns: repeat(1, 1fr);
    }
    main .product {
        flex-direction: column;
    }
    main .product img {
        width: 100%;
    }
    main .segments .list {
        grid-template-columns: repeat(1, 1fr);
    }

    main .contact {
        flex-direction: column;
    }

    main .contact form {
        height: auto;
        width: 100%;
    }

    main .contact form .form-inputs {
        grid-template-columns: repeat(1, 1fr);
    }

    main .contact form .form-inputs textarea {
        grid-column: auto;
    }
}
