body{
    background-color: #fffdee;
}
main{
    position: relative;
}
.bgc{
    width: 100%;
}
.bgc div{
    width: 100%;
    height: 300px;
}
.bgc .bg2{
    height: 370px;
    background-color: #00481e;
}
.contact{
    position: absolute;
    width: 1138px;
    height: 540px;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #000000;
}
.contact h1{
    font-size: 66px;
    padding-left: 60px;
    color: #00481e;
}
form{
    margin-top: 28px;
    padding-left: 120px;
}
form>div{
    display: flex;
    margin-top: 15px;
}
form span{
    width: 140px;
    text-align: right;
    line-height: 48px;
    margin-right: 30px;
    letter-spacing: 3px;
    font-size: 26px;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    color: #00481e;
}
form input{
    width: 350px;
    height: 48px;
    border: 0;
    background-color: #Ffe1e1;
    padding-left: 9px;
    font-size: 22px;
}
textarea{
    width: 550px;
    height: 170px;
    border: 0;
    background-color: #Ffe1e1;
}
.btn{
    margin-left: 15px;
    height: 170px;
    display: flex;
    align-items: flex-end;
}
.btn a{
    width: 130px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 15px;
    background-color: #00481e;
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
}
.btn a:hover{
    background-color: transparent;
    color: #00481e;
    border: 2px solid #00481e;
    box-sizing: border-box;
}

@media (max-width: 760px) {
    .bgc{
        display: none;
    }
    .contact{
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        transform: translateX(0);
    }
    .contact h1{
        font-size: 50px;
        padding: 0 5%;
    }
    form{
        padding: 0 5%;
        padding-bottom: 60px;
    }
    form>div{
        flex-wrap: wrap;
    }
    form span{
        width: 20%;
        margin-right: 5px;
    }
    form input{
        width: 65%;
    }
    textarea{
        width: 65%;
        height: 150px;
    }

    .btn{
        padding-left: 20%;
        height: 70px;
    }
}