@media screen and (max-width: 1300px) {
    .places {
        display: flex;
        flex-direction: column;
    }
    .description {
        width: 500px;
        height: 200px;
    }
}

@media screen and (max-width: 800px) {
    .text2 {
        font-size: 35px;
    }
    .box2 {
        flex-direction: column;
        gap: 100px;
        align-items: center;

    }
    .social-medias {
        flex-direction: column;
        gap: 50px;
    }
    .send-btn {
        width: 230px;
        height: 50px;
    }
    .form {
        width: 230px;
        height: 50px; 
    }
    .email {
        justify-content: center;
    }
}

@media screen and (max-width: 572px) {
    .description {
        width: 350px;
        height: 150px;
    }
    .box {
        padding-top: 100px;
    }
}

@media screen and (max-width: 350px) {
    .description {
        width: 150px;
        height: 150px;
    }
    .send-btn {
        width: 150px;
        height: 50px;
    }
    .form {
        width: 150px;
        height: 50px; 
    }
    .text2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 250px) {
    .logo {
        display: none;
    }
    .text1 {
         display: none;
    }
    .header {
        z-index: 10;
    }
}