:root {
    --font-body-family: 'Lato', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-bold: 800;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-dark: #262628;
    --color-blue: #6fd4e4;
    --color-blue-dark: #5fc5d5;
    --color-blue-hover: #6fdcf8;
    --color-gray-handsom: #534842;
}

html {
    height: 100%;
    box-sizing: border-box
}

html *,
html *:before,
html *:after {
    box-sizing: inherit
}

html,
body {
    height: 100%;
    min-height: 100%;
    margin: 0;
    font-family: var(--font-body-family);
    font-weight: var(--font-weight-regular);
    display: flex;
    flex-direction: column;
    color: var(--color-gray-handsom);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: 650px;
    padding: 3rem;
    color: var(--color-white);
}

.hero .title {
    font-weight: var(--font-weight-light);
    font-size: 1.5rem;
    text-align: center;
}

.hero .title span {
    font-weight: var(--font-weight-bold);
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    padding: 3rem;
}

.content .block {
    line-height: 1.5rem;
    margin-bottom: 2rem;
}

.content .block .title {
    font-size: 1rem;
    font-weight: var(--font-weight-light);
    margin: 0;
}

.content .title span {
    font-weight: var(--font-weight-regular);
}

.content .block .info {
    font-weight: var(--font-weight-light);
    color: var(--color-gray-handsom);
    margin: 0;
}
.content .block .info a {
    font-weight: var(--font-weight-light);
    color: var(--color-gray-handsom);
    margin: 0;
    text-decoration: none;
}

.hero .logo{
    margin-top:1%;
}

.mt-10{
    margin-top: 10px !important;
}

@media (max-width: 991.98px) {
    .hero {
        height: 350px;
        padding: 2rem;
    }

    .hero .logo {
        width: 75%;
    }

    .hero .title {
        font-size: 1rem;
    }

    .content {
        flex-direction: column;
    }
}