.contact {
    margin-top: 60px;
    padding-top: 80px;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 60px;
    display: flex;
}

.contact-content-1 {
    width: 50%;
}

.contact-content-2 {
    width: 50%;
}

.contact-content-1>p:nth-of-type(1) {
    border: solid 3px var(--deepblue);
    color: black;
    font-family: var(--font-default);
    font-weight: 800;
    width: fit-content;
    border-radius: 6px;
    font-size: 21px;
    padding: 5px 12px;
    transform: rotate(-4deg);
    transition: all 0.3s;
}

.grecaptcha-badge {
    display: none;
}

.contact-title-1>span {
    position: relative;
    transition: all 0.3s;
}

.contact-title-2>span {
    position: relative;
    transition: all 0.3s;
}

.contact-content-1>p:nth-of-type(2) {
    color: black;
    width: fit-content;
    border-radius: 6px;
    font-weight: 800;
    line-height: normal;
    font-size: 91px;
}

.contact-content-1>p:nth-of-type(3) {
    color: #78c212;
    width: fit-content;
    border-radius: 6px;
    font-weight: 800;
    line-height: 30px;
    font-size: 91px;
    position: relative;
}

.contact-content-1>p:nth-of-type(3)>svg {
    position: absolute;
    right: -180px;
    bottom: -35px;
}

.contact-content-1>p:nth-of-type(4) {
    color: black;
    width: fit-content;
    font-weight: 400;
    font-size: 17px;
    margin-top: 40px;
    width: 600px;
}

.contact-social-medias {
    display: flex;
    gap: 10px;
}

.contact-social-medias>a {
    color: black;
    border: solid 2px gray;
    padding: 6px;
    margin-top: 16px;
    font-size: 24px;
    border-radius: 60px;
}

.contact-social-medias>a:hover {
    color: var(--darkdeepblue);
    border: solid 2px var(--deepblue);
    padding: 6px;
    margin-top: 16px;
    font-size: 24px;
    border-radius: 60px;
}

.contact-content-2>p {
    color: black;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (min-width: 1750px) {
    .contact {
        height: 80vh;
        align-items: center;
    }
}

/* Contact Screen Adjustments */
@media (max-width: 1490px) {
    .contact-content-1>p:nth-of-type(3)>svg {
        right: -120px;
    }
}

@media (max-width: 1390px) {
    .contact-content-1>p:nth-of-type(2) {
        font-size: 60px;
    }

    .contact-content-1>p:nth-of-type(3) {
        font-size: 60px;
    }

    .contact-content-1>p:nth-of-type(3)>svg {
        width: 80px !important;
        height: 80px !important;
        bottom: -22px;
        right: -80px
    }

    .contact-content-1>p:nth-of-type(4) {
        width: 100%;
        padding-right: 30px;
    }
}

@media (max-width: 950px) {
    .contact {
        flex-direction: column;
        gap: 40px;
        margin-top: 30px;
        padding-top: 80px;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 50px;

    }

    .contact>div {
        width: 100%;
    }

    .form-group-2:nth-of-type(3) {
        flex-direction: column;
        width: 100%;
    }

    .form-group-2:nth-of-type(3)>div {
        width: 100%;
    }

    .form-group-2:nth-of-type(4) {
        flex-direction: column;
        width: 100%;
    }

    .form-group-2:nth-of-type(4)>div {
        width: 100%;
    }
}

@media (max-width: 450px) {
    .contact-content-1>p:nth-of-type(2) {
        font-size: 50px;
    }

    .contact-content-1>p:nth-of-type(3) {
        font-size: 50px;
    }

    .contact-content-1>p:nth-of-type(3)>svg {
        width: 50px !important;
        height: 50px !important;
        bottom: -10px;
        right: -60px;
    }
}

@media (min-width: 2000px) {
    .contact {
        width: 2000px !important;
        margin-left: auto;
        margin-right: auto;
    }
}