/* Get In touch section */
.gettouch {
    background-color: #96A1AC;
    padding: 20px 0;
    height: 700px;
    overflow: hidden;
}

.gettouch h1 {
    text-align: center;
    color: white;
    margin: 20px;
    margin-bottom: 30px;
    font-size: 35px;
}

.get-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: white;
    border-radius: 10px;
    position: relative;
    top: -417px;
    display: inline-block;
}
.g-recaptcha{ display: flex;}
.g-recaptcha > div{height: 20px;}
.err{text-align: left;
    color: red;
    font-size: 12px;}
.contact-box-animation {
    animation: contacttop 3s ease forwards;
}

.get-container h2 {
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left;
    font-size: 25px;
}

/* .form-group {
    margin-bottom: 15px;
} */

.name-group,
.contact-group {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 1vh;
}

.subject-group,
.message-group {
    margin-bottom: 1vh;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

textarea {
    width: 100%;
    max-width: 100%;
    height: 80px;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.send-btn {
    background-color: #3197a8;
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 150px;
    float: left;
    position: relative;
    z-index: 1040;
    margin-top: 11px;
}



@media only screen and (max-width: 768px) {
    .get-container {
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 5px;
        text-align: center;
        top: -465px;
        animation: none;
    }

    .get-container h2 {
        text-align: center;
        font-size: 20px;
    }

    input {
        width: 100%;
        font-size: 16px;
        padding: 8px;
    }

    .name-group,
    .contact-group {
        gap: 2px;
        flex-direction: column;
        justify-content: center;
    }

    .send-btn {
        width: 100%;
        float: none;
        padding: 10px;
    }

    .gettouch {
        height: 800px;
    }
}

@keyframes contacttop {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}