@charset "UTF-8";

.title {
    position: absolute;
    top: 15%;
    left: 4%;
    width: fit-content;
}

.title img {
    width: 22vw;
    min-width: 360px;
}

main {
    background-image: url(../img/bg.png);
    background-size: cover;
    background-repeat: repeat-y;
}


#contact {
    padding: 100px 0;
}

#contact .wrap {
    width: 90%;
    max-width: 848px;
    margin: auto;
    font-size: 0.9em;
}

#contact label {
    display: block;
    margin: 40px 0 10px;
}

#contact select {
    border: none;
    width: 460px;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 21px;
    text-align: center;
}


#contact textarea {
    border: none;
    width: 806px;
    height: 160px;
    padding: 21px;
}

#contact input {
    border: none;
    width: 460px;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 21px;
}

#contact .submit-button {
    margin: 40px 0 10px;
}

#contact .submit-button input {
    border: none;
    width: 115px;
    height: 46px;
    font-size: 1rem;
    color: #fff;
    background-color: #000;
    border-radius: 23px;
    display: flex;
    align-items: center;
    padding: 0;
    text-align: center;
    cursor: pointer;
}

footer {
    margin: 0;
}


@media screen and (max-width:1024px) {


    .title {
        position: absolute;
        top: 2%;
        left: 3%;
        width: fit-content;
    }

    .title img {
        width: 42vw;
        min-width: 275px;
    }

    main {
        background-image: url(../img/bg.png);
        background-size: cover;
        background-repeat: repeat-y;
    }


    #contact {
        padding: 100px 0;
    }

    #contact .wrap {
        width: 80%;
        font-size: 1em;
    }

    #contact label {
        display: block;
        margin: 50px 0 10px;
    }

    #contact select {
        width: 100%;
        font-size: 1rem;
    }


    #contact textarea {
        width: calc(100% - 42px);
        font-size: 1rem;
    }

    #contact input {
        width: calc(100% - 42px);
        font-size: 1rem;
    }

    #contact .submit-button {
        margin: 60px 0 10px;
    }

    #contact .submit-button input {
        border: none;
        width: 115px;
        height: 46px;
        font-size: 1rem;
        color: #fff;
        background-color: #000;
        border-radius: 23px;
        display: flex;
        align-items: center;
        padding: 0;
        text-align: center;
        cursor: pointer;
    }

    footer {
        margin: 0;
    }


}

@media screen and (max-width:700px) {
    #contact {
        padding: 0 0 100px;
    }

    #contact .wrap {
        width: 95%;
        font-size: 1em;
    }

    #contact label {
        display: block;
        margin: 30px 0 10px;
    }

}

@media screen and (max-width:400px) {}