
.main-content {
    padding: 35px;
}
a:hover{
    color: inherit;
}
/* contact us start */
.contact-container {
    max-width: 1380px;
    padding-right: 20px;
    padding-left: 20px;
    position: relative;
    margin: auto;
}

.contact-main-col-one {
    width: 66%;
}

.contact-main-col-two {
    width: 28%;
}

.contact-main-col-one,
.contact-main-col-one {
    display: flex;
    flex-direction: row;
}

.cu-main {
    padding: 50px 0;
    background: linear-gradient(270deg, #E4F7FF 0%, #B9E6F9 100%);
    position: relative;
    margin-top: 100px;
}

.map iframe {
    width: 100%;
    min-height: 337px;
}

.map {
    display: flex;
    border: 10px solid var(--white);
}

.contact-us {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* flex-wrap: wrap; */
    gap: 50px;
}

.contact .cu-main .map-image {
    position: absolute;
    top: 119px;
    right: -166px;
    z-index: 0;
    width: 900px;
}

.contact-us-col-one,
.contact-us-col-two {
    width: 50%;
    z-index: 99;
}

/* .contact-us-col-three {
    width: 34%;
    z-index: 99;
    padding-left: 50px;
} */

.contact-us-col-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us-col-two h2 {
    color: #000;
    font-family: Arvo;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    background: var(--white);
    padding-left: 20px;
    width: 72%;
}

.contact-us-col-two p {
    color: #000;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 20px;
}

.contact-us-col-two a {
    color: #000;
    font-weight: 700;
    text-decoration-line: underline;
}

.details-one,
.details-two {
    display: flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 1000px;
    background: #C83B4E;
    box-shadow: 4px 4px 7.5px 0px #61000D inset;
    z-index: 99;
    position: relative;
    margin-left: 20px;

}

.details-one {
    width: 364px;
}

.details-two {
    width: 250px;
}


.details-one p,
.details-two p,
.details-two a {
    color: var(--icon-color, #FFF);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    margin: 0;


}

.details-one p,
.details-two p {
    padding-left: 10px;
}

.form-container {
    padding: 20px;
    border-radius: 10px;
    border: 4px solid #A51336;
    background: var(--white);
    box-shadow: 5px 5px 0px 0px #A51336;
    width: 100%;
    margin-top: -120px;
}

.form-container form {
    display: flex;
    flex-direction: column;
    /* padding: 30px; */
    align-items: center;
    gap: 10px;
}

.form-container .form-row {
    display: flex;
    justify-content: space-between;
}

.form-container .form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-container .form-group.half {
    width: 48%;
    /* Adjusting width to fit two fields inline */
}

.form-container label {
    color: #000;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
    display: block;
}

.form-container input,
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.form-container input::placeholder,
.form-container textarea::placeholder {
    color: #7A7A7A;
    font-family: Roboto;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
}

.form-container textarea {
    height: 80px;
}

.form-container .submit-btn {
    display: flex;
    height: 51.667px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: #0C379D;
    color: var(--white);
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
}

.form-container .submit-parent {
    display: flex;
    justify-content: center;
}

/* contact us end */

@media (max-width: 1024px) {
    .contact-main-col-one {
        flex-direction: column;
    }

    .contact-us-col-one,
    .contact-us-col-two {
        width: 100%;
    }

    .contact-us-col-two {
        margin-top: 20px;
    }

    .contact-main-col-one,
    .contact-main-col-two {
        width: 50%;
    }

    .form-container {
        margin-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .contact-us {
        flex-direction: column-reverse;
    }

    .contact-us-col-two h2 {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }

    .contact-us-col-two {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .contact-us-col-two p {
        padding-left: 0;
    }

    .details-one,
    .details-two {
        margin-left: 0;
    }

    .contact-main-col-one,
    .contact-main-col-two {
        width: 100%;
    }

    .form-container {
        width: 100%;
        padding: 15px;
    }

    .form-container .form-row {
        gap: 10px;
    }

    .form-container .form-group.half {
        width: 100%;
    }
}
