.title {
    justify-self: center;
    margin-top: 25px;
    margin-bottom: 40px;
}

.content-top{
    padding-bottom: 80px;
    padding-left: 90px;
    padding-right: 90px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.content-top iframe{
    border-radius: 10px;
}
.content-top ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.content-top li{
    display: flex;
    gap: 20px;
    align-items: center;
    list-style-type:none;
    padding-left: 0;
}

.content-form{
    background-color: #be1414;
    padding: 0px 90px;
    display: flex;
    padding-top: 10px;
    justify-content: space-around;
}

.content-form img{
    height: 35vw;
    min-height: 400px;
    align-self: flex-end;
}

.content-form form{
    display: flex;
    flex-direction: column;
    color: white;
}

.content-form form button{
    align-self: flex-start; 
    margin-top: 10px; 
    height: 35px; 
    width: 100px; 
    background-color: #FFB349;
    color: white;
    font-weight: bold;
    border-radius: 5px; 
    border: none;
}

.content-form form button:hover{
    background-color: #c18127;
}

.form2{
    display: flex;
    gap: 20px;
}

.form2 div{
    display: flex;
    flex-direction: column;
}

.content-form form input{
    height: 32px;
    padding: 0px 10px;
    border-radius: 5px;
    border: 1px solid #cfcfcf;
}

.form-text{
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-self: flex-start;
    color: white;
}

.form-text p{
    width: 560px;
    line-height: 1.6;
}

.form-area{
    padding: 30px 0px;
    gap: 30px;
}

@media(max-width:900px){
    .content-form img{
        display: none;
    }
    .content-form{
        justify-content: center;
    }
}
@media(max-width:800px){
    .content-top{
        flex-direction: column;
    }
    
}