.container.hero {
    background-color: red;
    background-image: url(../../img/background.jpeg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    min-height: 100vh;
    background-attachment: fixed;
}

.container.hero  > .short-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.logo {
    height: 30px;
}

.main-title {
    font-size: 60px;
    text-transform: uppercase;
}

.main-description {
    font-size: 22px;
}

.section-title {
    font-size: 18px;
    text-transform: uppercase;
}

.section-description {
    font-size: 16px;
}

.section-description > a {
    text-decoration: none;
    color: var(--secondary-color);
}

.section-description > a:hover {
    text-decoration: underline;
}

footer.container {
    padding-top: 0px;
}

footer.container > .row {
    justify-content: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin-bottom: 2em;
    border-bottom: 1px solid #fff;
    position: relative;
}
.row .socials {
    justify-content: center;
    gap: 1em;
    font-size: 20px;
}

.back-to-top {
    background-color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    right: -15px;
    color: #fff;
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    transition: all 0.5s;
}

.back-to-top:hover {
    box-shadow: 0 3px 6px #0005;
}

.socials > a {
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    transition: all 0.5s;
}

.socials > a:hover {
    background-color: #fff;
    color: var(--main-color);
}

.bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fffc;
}

.bottom a {
    color: #fff;
}

.bottom > .logo {
    margin-bottom: 40px;
}

.bottom > .trio {
    display: flex;
    gap: 0 20px;
}
/*
.bottom > .trio > p::before {
    content: '-';
}

.bottom > .trio > p::after {
    content: '!';
}
*/
.bottom > .trio > p {
    position: relative;
}

.bottom > .trio > p + p::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 16px;
    background-color: #fff;
    position: absolute;
    top: 1px;
    left: -11px;
}


@media (max-width: 700px) {
    .main-title {
        font-size: 60px;
    }
    .bottom > .trio {
        flex-direction: column;
        gap: 0px;
    }
    .bottom > .trio > p + p::before {
        display: none;
    }
    
}