.contato {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}
.contato-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: minmax(300px, 400px) minmax(300px, 400px);
    align-items: center;
    justify-content: center;
    padding-right: 10px;
    padding-left: 10px;
}
.contato h3 {
    color: #282828;
    text-align: center;
    font-weight: 700;
    font-size: 2.22rem;
}
.contato h3::after {
    content: url(/img/point.svg);
}
.contato-content {
    display: grid;
    grid-gap: 25px;
    border-right: 3px solid #282828;
    justify-items: end;
}
.contato-content p {
    font-family: 'Thasadith', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #282828;
    transition: .3s;
    text-align: right;
}
.contato-content a > p:hover {
    color: #753d2e;
}
.contato-content img {
    margin-left: auto;
    transition: .5s;
}
.contato-content a:hover img {
    transform: rotateZ(10deg);
}
.contato-content > a, .contato-content > div {
    margin-right: 40px;
}
.contato-content a p {
    text-align: right;
}

.contato-form button:hover{
    background-color: #f3cd33;
    box-shadow: 0px 0px 10px #f3cd33;
    color: #282828;
    cursor: pointer;
}

.contato-form input{
    border-radius: 5px;
    height: 40px;
    border: none;
    background-color: #F2F2F2;
    margin-left: auto;
    margin-right: auto;
    outline-color: #A25641;
    padding: 5px;
    text-indent: 5px;
}

.contato-form textarea{
    border-radius: 5px;
    height: 130px;
    border: none;
    background-color: #F2F2F2;
    padding: 10px 5px;
    text-indent: 5px;
    outline-color: #A25641;
}

.contato-form label {
    font-family: 'Thasadith', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #282828;
}
.contato-form input + label {
    margin-top: 10px;
}

.contato-form button {
    margin-top: 10px;
    font-weight: 500;
    font-size: 1rem;
    background-color: #A25641;
    color: #fff;
    width: 100%;
    border-radius: 30px;
    padding: 10px;
    transition: .3s;
}

.contato-form > form{
    margin-left: 40px;
    margin-right: auto;
    border-radius: 20px;
    max-width: 100%;
    display: grid;
}
.contato-form > form input::placeholder, .contato-form textarea::placeholder{
    font-style: italic;
    font-weight: 300;
    opacity: .5;
    font-size: 0.875rem;
}

.contato-bg1 {
    position: absolute;
    right: 0;
    z-index: -11;
}
.contato-bg2 {
    position: absolute;
    left: 100px;
    top: 350px;
    z-index: -11;
}
.contato-bg3 {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 200px;
    z-index: -11;
}

@media only screen and (max-width: 720px) {
    .contato-grid {
        grid-template-columns: minmax(200px, 500px);
        grid-gap: 60px;
    }

    .contato-content {
        border-right: none;
        justify-items: center;
    }

    .contato-content a img, .contato-content div img{
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 5px;
    }
    .contato-form > form{
        margin-left: 0px;
    }
    
    .contato-content p {
        text-align: center;
    }
    .contato-content a p {
        text-align: center;
    }
    .contato-content > a, .contato-content > div {
        margin-right: 0px;
    }
}