.bannerTop{
    height: 360px;
}
.rowContact{
    margin-top: 280px;
    width: 75%;
    display: flex;
    justify-content: center;
}
.colContact{
    width: 100%;
    margin-left: 18px;
    margin-right: 18px;
    font-family: "Open Sans";
}
.titleContact{
    color: #232323;
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 25px;
}
.textContact{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
}
.iframe{
    width: 100%;
    height: 420px;
}
.iframe iframe{
    width: 100%;
    height: 100%;
}

.form{
    margin-top: 48px;
    width: 40%;
}
.titleForm{
    color: #232323;
    font-size: 25px;
}
.inputForm{
    margin-top: 18px;
    width: 100%;
}
.inputForm input{
    width: 100%;
    height: 38px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding-left: 18px;
    padding-right: 18px;
}
.inputForm input:focus{
    outline: none;
}
.inputForm textarea{
    width: 100%;
    height: 190px;
    resize: none;
    font-family: "Open Sans";
    box-sizing: border-box;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.inputForm textarea:focus{
    outline: none;
}
.btnForm{
    margin-top: 18px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.btnForm button{
    width: 120px;
    height: 48px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: 0px;
    border-radius: 28px;
    background-color: #ff0000;
    cursor: pointer;
}

@media screen and (max-width: 980px){
    .bannerTop{
        height: 880px;
    }
    .rowContact{
        margin-top: 178px;
        width: 90%;
        flex-direction: column;
    }
    .colContact{
        margin: 0px;
        margin-top: 24px;
        margin-bottom: 24px;
    }
    .titleContact{
        font-size: 64px;
        margin-bottom: 68px;
        line-height: 78px;
    }
    .textContact{
        font-size: 44px;
        line-height: 58px;
        margin-bottom: 58px;
    }
    .iframe{
        height: 720px;
    }

    .form{
        margin-top: 98px;
        width: 80%;
    }
    .titleForm{
        font-size: 54px;
    }
    .inputForm{
        margin-top: 28px;
    }
    .inputForm input{
        height: 78px;
        font-size: 34px;
        padding-left: 28px;
        padding-right: 28px;
    }
    .inputForm textarea{
        padding: 28px;
        font-size: 34px;
        height: 280px;
    }
    .btnForm{
        margin-top: 28px;
    }
    .btnForm button{
        width: 250px;
        height: 86px;
        font-size: 36px;
        border-radius: 38px;
    }
}