.contactUs-sec {
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    /* padding: 25px; */
    /* border: 1px solid black; */
    margin: 20px 0;
    padding: 25px;
}

.img-sec {
    width: 50%;
    height: fit-content;
    /* border: 1px solid blue; */

}

.img-sec > .imgCon {
    aspect-ratio: 1 / 1;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.img-sec > .imgCon > img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 102%;
}



.text-sec {
    width: 50%;
    /* border: 1px solid blue; */
    padding: 80px 0 80px 80px;
}

.text-sec > .textCon > .titleCon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.text-sec > .textCon > .titleCon > h1 {
    font-weight: 600;
}

.text-sec > .textCon > .titleCon > .emailIconCon {
    aspect-ratio: 1 / 1;
    width: 40px;
    height: 40px;
    position: relative;
}

.text-sec > .textCon > .titleCon > .emailIconCon > svg {
    position: absolute;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
}


.text-sec > .textCon > p {
    line-height: 1.5;
}
.text-sec > .textCon > a {
    line-height: 1.5;
}

@media only screen and (max-width: 1056px) {
    .contactUs-sec {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .img-sec {
        width: 100%;
        height: fit-content;
    }

    .img-sec > .imgCon {
        aspect-ratio: none;
        width: 100%;
        height: 330px;
    }

    .text-sec {
        width: 100%;
        padding: 60px 20px 60px 20px;
    }


}

footer {
    background-color: white;
}