@media (max-width: 1000px) {
    header {
        width: 100%;
        height: 55px;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;

        background: var(--light);
    }

    header .logo {
        height: 100%;
        width: 400px;
        margin-left: 50px;
    }

    header .logo img {
        width: 100%;
    }

    header .menu {
        height: 100%;
        margin-left: 50px;
    }

    header .menu a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        font-size: 16px;
    }

    header .info {
        width: 500px;
        height: 100%;
        margin-left: 50px;
        margin-right: 50px;

        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    header .info .img {
        width: 100%;
        height: 100%;

        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    header .info .img img {
        width: 25px;
        height: 25px;
    }

    header .info .img a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 700;
        font-size: 15px;
    }

    header .info h5 {
        display: none;
    }

    header .button {
        display: none;
    }


    .first {
        height: 40vh;
    }

    .first .info h1 {
        font-size: 60px;
    }

    .first .info h5, .first .info a {
        font-size: 30px;
    }

    .first .button {
        padding: 15px 30px;
    }


    .second h2 {
        font-size: 50px;
    }

    .second .box {
        width: 100%;

        gap: 20px;
    }

    .second .box .one {
        width: 300px;
        gap: 15px;
    }

    .second .box .one img {
        width: 100px;
    }

    .second .box .one h4 {
        font-size: 22px;
    }

    .second .box .one h5 {
        font-size: 16px;
    }


    .third h2 {
        font-size: 50px;
    }

    .third .box {
        width: 100%;
        gap: 20px;
    }

    .third .box .one {
        width: 300px;

        gap: 15px;
    }

    .third .box .one img {
        width: 100%;
    }

    .third .box .one h4 {
        font-size: 22px;
    }

    .third .box .one h5 {
        font-size: 16px;
    }

    .third .button {
        padding: 10px 10px;
    }

    .third .button a {
        padding: 12px 15px;

        font-size: 15px;
    }


    .fourth h2 {
        width: 95%;

        font-size: 30px;
    }

    .fourth .box {
        width: 95%;

        justify-content: left;
        gap: 20px;
    }

    .fourth .box text {
        width: 55%;

        font-size: 10px;
    }

    .fourth .box img {
        width: 350px;
        height: 210px;
    }





    .fifth h2 {
        font-size: 50px;
    }

    .fifth .box {
        width: 98%;
        height: 200px;
        gap: 20px;
    }

    .fifth .box img {
        height: 200px;
    }

    .fifth .left, .fifth .right {
        top: 240px;
        left: 30px;
    }

    .fifth .right {
        right: 30px;
        left: auto;
    }


    .sixth h2 {
        font-size: 50px;
    }

    .sixth .box .one {
        width: 800px;
    }

    .sixth .box .one .plus {
        right: 0;
        top: 10px;
        font-size: 45px;
    }

    .sixth .box .one h5 {
        height: 75px;
        font-size: 22px;
    }

    .sixth .box .one text {
        font-size: 15px;
    }


    .big_img {
        width: 100vw;
        height: 100vh;

        position: fixed;
        z-index: 100;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .big_img .img {
        max-width: 850px;
        max-height: 800px;
    }

    .big_img .left, .big_img .right {
        width: 150px;
        height: 150px;

        position: fixed;
        left: 20px;
        bottom: 150px;

        cursor: pointer;
    }

    .big_img .right {
        left: auto;
        right: 20px;
    }


    .seventh {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .seventh h2 {
        width: 90%;
        margin-left: auto;
        margin-right: auto;

        text-align: left;
        font-weight: 700;
        font-size: 30px;
    }

    .seventh .box {
        width: 90%;
        margin-right: auto;
        margin-left: auto;

        display: flex;
        flex-flow: row;
        justify-content: center;
        align-items: flex-start;
        gap: 50px;
    }

    .seventh .box .info {
        width: 500px;
    }

    .seventh .box .info h5 {
        padding: 15px 0;

        font-size: 16px;
    }

    .seventh .box .info a {
        padding: 25px 0;

        font-size: 16px;
    }

    .seventh .box .form {
        width: 435px;

        gap: 10px;
    }

    .seventh .box .form input[type=text] {
        height: 50px;
        width: calc(100% - 20px);
        padding-left: 20px;

        font-size: 15px;
        font-family: Montserrat, serif;

        outline: none;
        border: 1px solid lightgray;
        border-radius: 5px;
    }

    .seventh .box .form input[type=submit] {
        height: 55px;
        width: calc(100% + 5px);

        display: flex;
        align-items: center;
        justify-content: center;

        color: var(--light);
        font-size: 15px;
        font-weight: 500;
        font-family: Montserrat, serif;

        outline: none;
        border: 1px solid var(--main);
        border-radius: 5px;
        background: var(--main);
    }
}