/* START hero */

.hero {
    display: flex;
    align-items: center;
    min-height: 60vh;
    padding-top: 3em;
}

.hero .uniformSpacing {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.hero img {
    position: absolute;
    right: 0;
    width: auto;
    object-fit: cover;
    bottom: 0;
    max-height: 100%;
    height: 100%;
    min-width: 100%;
}

@media screen and (max-width: 1250px) {
    .hero img {
        opacity: .9;
    }
}

/* END hero */

/* START listingBlogs */

.listingBlogs > * {
    position: relative;
    z-index: 10;
}

.listingBlogs .blogs {
    position: relative;
    z-index: 10;
    padding-right: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5em;
}


.listingBlogs .blogs a {
    width: calc((100% - 2.5em * 2) / 3);
    display: flex;
    flex-direction: column;
    gap: 1em;
    border-radius: var(--smallRadius);
    padding: 1em;
    box-shadow: 0px 0px 20px #00000029;
}

.listingBlogs .blogs a img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--smallRadius);
}

.listingBlogs .blogs a hr {
    width: 30%;
    height: 5px;
    background-color: var(--basicColor4);
    border: none
}

@media screen and (max-width: 900px) {
    .listingBlogs .blogs a{
        width: calc((100% - 2.5em ) / 2);
    }
}

@media screen and (max-width: 650px) {
    .listingBlogs .blogs a {
        width: 100%;
    }
}

/* END listingBlogs */


/* START bigImgText */

.bigImgText .uniformSpacing {
    display: flex;
    gap: 5em;
}

.bigImgText .uniformSpacing .introText {
    width: 45%;
}

.bigImgText .containerImg {
    width: 45%;
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
}

.bigImgText .containerImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 900px) {
    .bigImgText .uniformSpacing {
        flex-direction: column;
    }

    .bigImgText .containerImg {
        position: initial;
    }

    .bigImgText .uniformSpacing .introText,
    .bigImgText .containerImg{
        width: 100%;
    }
}


/* END bigImgText */

