@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.heroRow {
    position: relative;
    padding: 0 1.5%;
    margin-bottom: 9vh;
    height: 95vh;
}

.imgHero {
    position: relative;
    z-index: 0;
    height: 100%;
}

.imgHero::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.5);
    border-bottom-left-radius: 65px;
    border-bottom-right-radius: 65px;
}

.imgHero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-bottom-left-radius: 65px;
    border-bottom-right-radius: 65px;
}

.textHero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.textHero h2 {
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 3em;
    color: white;
    margin: 0;
    margin-bottom: 1.5vh;
}

.textHero hr {
    margin: 0;
    background-color: rgb(255, 198, 41);
    border: none;
    width: 100%;
    height: 2px;
    margin-bottom: 1.5vh;
}

.textHero p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1em;
    color: white;
    margin: 0;
}

.buttonHeroRow {
    width: 1.5%;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -160%);
    cursor: pointer;
}

.buttonHeroRow svg {
    width: 100%;
    height: 100%;
}

.firstRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 9.5%;
    height: 17vh;
    margin-bottom: 9vh;
}

.textFirstRow {
    width: 70%;
    height: 100%;
    margin-right: 15%;
}

.textFirstRow hr {
    margin: 0;
    border: none;
    width: 100%;
    height: 2px;
    background-color: rgb(0, 15, 159);
    margin-bottom: 1.5vh;
}

.textFirstRow p {
    margin: 0;
    font-family: 'Open Sans';
    font-weight: 500;
    font-size: 0.9em;
    width: 64%;
}

.imgFirstRow {
    width: 15%;
    height: 100%;
}

.imgFirstRow svg {
    width: 100%;
    height: 100%;
}

.secondRow {
    padding: 0 9.5%;
    margin-bottom: 9vh;
}

.cardsFirstRow, .cardsSecondRow, .cardsThirdRow, .cardsFourthRow {
    display: flex;
    flex-direction: row;
    height: 35vh;
}

.smallCardContent {
    width: 38%;
    position: relative;
}

.bigCardContent {
    width: 62%;
    position: relative;
}

.imgCard {
    width: 100%;
    height: 100%;
    position: relative;
}

.imgCard::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.imgCard img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.textCardContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28.5vw;
}

.textCardContent hr {
    width: 100%;
    height: 2px;
    border: none;
    background-color: rgb(255, 198, 41);
    margin: 0;
}

.textCardContent h3 {
    text-align: center;
    color: white;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 1.3em;
    margin: 0;
    height: 9.5vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textCardContent p {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 0.9em;
    color: white;
    margin: 0;
    padding-top: 1.5vh;
}

.marginRight {
    margin-right: 8px;
}

.cardsFirstRow, .cardsSecondRow, .cardsThirdRow {
    margin-bottom: 8px;
}

.allCardContent {
    width: 100%;
    position: relative;
}