.contactSecond{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insideContactSecond{
    height: 80%;
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insideContactSecond iframe{
    height: 100%;
    width: 100%;
}

.contactThird{
    padding: 4rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contactThird h2 {
    color: #000000e8;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 3rem;
}

.insideContactThird{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

form{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.insideForm{
    height: 50%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.2rem;
}

form input {
    height: 3.5rem;
    width: 50%;
    margin: 1rem;
    padding: 0.5rem;
    outline: none;
    border: none;
    background: #0000000c;
}

.message {
    height: 12rem;
    width: 96%;
}

button.btn.exo-2 {
    background: #ec2328db;
    border: 1px solid #ec2328db;
    color: #fff;
    padding: 1rem;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease-in;
}

.btn:hover{
    color: #ec2328db !important;
    background-color: #fff !important;
    transition: all 0.4s ease-in;
}

@media screen and (max-width:765px){
    .insideContactThird {
        width: 95%;
    }
    form input {
        margin: 0.5rem;
        }    
        .contactThird {
            padding-top: 1rem;
        }

        .btn{
            margin-top: 1.4rem;
        }
}

@media screen and (max-width:450px){
    button.btn.exo-2 {
        font-size: 14px;
    }    
}