/* =========================
   MOBILE
========================= */

@media (max-width: 1200px) {

    h1 {
        font-size: 56px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        height: 550px;
    }
}

@media (max-width: 992px) {

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 40px;
    }

    .services-grid,
    .projects-grid,
    .advantages-grid,
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .nav {
        display: none;
    }
}

@media (max-width:700px){

    .toast{

        left:15px;
        right:15px;

        width:auto;

        bottom:15px;

    }
}

@media (max-width: 768px) {

    section {
        padding: 70px 0;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

    .services-grid,
    .projects-grid,
    .advantages-grid,
    .reviews-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
    }

    .header-phone {
        display: none;
    }

    .hero-image img {
        height: 380px;
    }

    .price-table th,
    .price-table td {
        padding: 14px;
    }

    .form-input {
        width: 100%;
        padding: 18px;
        border: none;
        border-radius: 14px;
        font-size: 16px;
        font-family: inherit;
        background: #fff;
    }
}