@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;
    width: 100%;
    height: 100%;
}

.imgHero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    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 {
    margin: 0;
    font-family: 'Open Sans';
    font-size: 3em;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5vh;
}

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

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

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

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

.firstRow {
    padding: 6vh 2%;
    width: 81%;
    border-radius: 51px;
    box-shadow: 4px 4px 19px rgba(15, 0, 0, 0.5);
    display: flex;
    box-sizing: border-box;
    margin: 0 auto;
    margin-bottom: 9vh;
}

.textRow {
    width: 75%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: 8%;
}

.imgRow {
    width: 25%;
}

.textContent {
    width: calc(50% - 4%);
    position: relative;
}

.textContent:is(:nth-of-type(1), :nth-of-type(3)) {
    margin-right: 8%;
}

.textContent:is(:nth-of-type(1), :nth-of-type(2)) {
    margin-bottom: 6.5vh;
}

.titleBlock {
    display: flex;
    flex-direction: row;
    margin-bottom: 1.5vh;
}

.titleBlock hr {
    margin: 0;
    border: none;
    width: 3px;
    height: auto;
    background-color: rgb(255, 198, 41);
    margin-right: 8px;
}

.titleBlock h2 {
    margin: 0;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 1.5em;
    color: rgb(0, 15, 159);
}

.textBlock p {
    margin: 0;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 1em;
}

.imgRow img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50px;
    object-position: 68% 0%;
}

.buttonContact {
    position: absolute;
    top: 100%;
    left: 100%;
    transform: translate(-100%, -100%);
    width: 200px;
    background-color: rgb(0, 15, 159);
    border-radius: 50px;
    padding: 0.8vh 2%;
}

.buttonContact a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'OPEN SANS';
    font-weight: 500;
    font-size: 0.8em;
}

.buttonContact a span {
    margin-right: 20px;
    line-height: 100%;
}

.buttonContact svg {
    width: 10%;
}