.blackLogo{
    display:none;
}


.content {
    height: 100dvh;
    position: relative;
    max-height: 100dvh;
}

.backgroundImage::after {
    content: '';
    top: 0;
    left: 0;
    background-color: rgba(25, 22, 22, 0.60);
    position: absolute;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.heroRow {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}
.backgroundImage {
    position: relative;
    z-index: -1;
}
.backgroundImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fakeFooter {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    background-color: rgba(25, 22, 22, 0.57);
}

.heroRow p {
    color: #F4F4F4;
    font-family: 'Satoshi';
    font-weight: 400;
    font-size: 1.6em;
}

.heroRow h1 {
    font-family: 'Satoshi';
    font-weight: 800;
    color: #f4f4f4;
    font-size: 4.5em;
    line-height: 1.1em;
    margin: 0.4em 0em;
}

.backgroundImage {
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
}
body, html {
    overflow-y: hidden;
}

.heroRow h2 {
    font-family: 'Satoshi';
    font-weight: 100;
    color: #f4f4f4;
    font-size: 1.4em;
    margin-bottom: 3em;
}

.heroRow a {
    background-color: #547F3F;
    font-family: 'Satoshi';
    color: #f4f4f4;
    font-weight: 800;
    text-decoration: none;
    padding: 0.5em 4em;
    font-size: 1.5em;
    border-radius: 9px;
    letter-spacing: 0.1em;
    position: relative;
}


.fakeFooter>a {
    font-family: 'Satoshi';
    font-weight: 400;
    color: #f4f4f4;
    text-decoration: unset;
    text-transform: uppercase;
    font-size: 0.8em;
    display: block;
    width: fit-content;
    margin-left: 5vw;
}

.socials {
    flex-direction: row;
    height: fit-content;
    justify-content: center;
}

.fakeFooter {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    background-color: rgba(25, 22, 22, 0.57);
    height: 10vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.socials a {
    display: block;
    width: 100%;
    height: 100%;
}

.socials img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.linkedIn {
    margin-right: 0.2em;
}

.whatsapp {
    margin-left: 0.2em;
}

.fakeFooter p {
    font-family: 'Satoshi';
    font-weight: 400;
    color: #f4f4f4;
    text-decoration: unset;
    text-transform: uppercase;
    font-size: 0.8em;
    width: fit-content;
    height: fit-content;
    justify-content: flex-end;
    margin-right: 5vw;
}

.fakeFooter>* {
    display: flex;
    flex: 1;
}

.socials>* {
    width: 30px;
    height: 30px;
}



@media only screen and (max-width:1600px){
    html .heroRow h1 {
        font-size: 3.6em;
    }
    html .heroRow h2 {
        font-size: 1.2em;
    }
    html .heroRow p {
        font-size: 1.4em;
    }
   
}


@media only screen and (max-width:1200px){
    html .heroRow h1 {
        font-size: 2.6em;
    }
    html .heroRow {
        left: 50%;
        width: 80%;
        transform: translateX(-50%)translateY(-50%);
    }

    html .heroRow p {
        font-size: 1em;
    }
    html .heroRow h2 {
        font-size: 1em;
    }
    html .heroRow a{
        font-size:1.2em;
    }
    html .socials>* {
        width: 25px;
        height: 25px;
    }
    html .fakeFooter>a{
        font-size:0.6em
    }
    html .fakeFooter p {
        font-size: 0.7em;
    }
}

@media only screen and (max-width:600px){
    html .heroRow p {
        font-size: 0.9em;
        text-align: center;
    }
    html .heroRow h1 {
        font-size: 1.5em;
        text-align: center;
    }
    html .heroRow h2 {
        font-size: 0.9em;
        text-align: center;
    }
    html .heroRow a {
        font-size: 1.2em;
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    html body .fakeFooter {
        flex-direction: column;
        height: 16vh;
    }
    .fakeFooter>* {
        display: flex;
        flex: unset;
    }
    html .fakeFooter p {
        font-size: 0.8em;
        margin: 0.4em 0;
    }
    html .fakeFooter>a {
        font-size: 0.8em;
        margin: 0.4em 0;
    }
    html body .socials>* {
        width: 30px;
        height: 30px;
    }

    html body .whatsapp {
        margin-left: 0.4em;
    }
    html body .linkedIn {
        margin-right: 0.4em;
    }
}