/* about us section */
.about-usSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #6a6668;
    row-gap: 3rem;
    padding: 2rem 0 4rem 0;
}

.about-usHeading {
    font-size: 5rem;
    margin-bottom: 0;
    color: #eee;
}

.about-usParagraph {
    width: 80%;
    font-size: 2rem;
    line-height: 1.6;
    text-align: left;
    margin-top: 0;
    color: #eee;
}

.fillerImg {
    width: 100dvw;
    height: 90dvh;
    object-fit: cover;
    object-position: left top;
}

/* service Section css */
.serviceSection,
.whySection {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
}

.whySection {
    background-color: #004aad;
    color: #fff;
    padding: 3rem 0 6rem 0;
}

.serviceMainHeading,
.whyMainHeading {
    font-size: 4rem;
    margin-bottom: 0;
    /* color: #1c1b64; */
}

.line {
    width: 10%;
    border: 1px solid #fff;
    margin-top: 0;
}

.serviceSectionParagraph,
.whySectionParagraph {
    width: 65%;
    font-size: 1.8rem;
    line-height: 1.6;
    /* text-align: center; */
    margin-top: 0;
}

.serviceRow {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 1rem 0;
}

.ipu-serviceRow {
    width: 100dvw;
    height: 70dvh;
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background-color: #ffffffad;
    width: 80%;
    padding: 6rem 4rem;
}

.ipu-serviceHeading {
    width: 100%;
    /* background-color: green; */
    font-size: 5rem;
    margin-bottom: 0;
    color: #1c1b64;
}

.ipu-serviceBlock {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.ipu-serviceImage {
    object-fit: contain;
}

.reverse {
    flex-direction: row-reverse;
    background-color: #eee;
}

.serviceBlock {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.serviceHeading {
    font-size: 3rem;
    margin-bottom: 0;
    color: #1c1b64;
}

.serviceParagraph {
    font-size: 2rem;
    line-height: 1.4;
    text-align: left;
}

.serviceParagraph ul,
.whySectionParagraph ul {
    text-align: left;
}

.serviceParagraph ul li {
    padding: .5rem 0;
}

.serviceImage {
    object-fit: cover;
    width: 300px;
    height: 400px;
}

.rm-link {
    background-color: #1c1b64;
    text-decoration: none;
    color: #f10302;
    padding: 1rem 2rem;
    border-radius: 10px;
}