.container.hero {
    min-height: 100vh;
    background-color: red;
    background-image: url(../../img/background.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    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: 65px;
    text-transform: uppercase;
}

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

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

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

.subscribe {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    grid-template-areas:
        "email"
        "subscribe";
}

.subscribe div:nth-child(1) {
    grid-area: email;
}
.subscribe div:nth-child(2) {
    grid-area: subscribe;
}

.subscribe > div > input {
    background-color: transparent;
    border-color: #fffe;
    color: #fff;
}
.subscribe input:focus {
    outline-color: #fff;
}

.subscribe > div > input::placeholder {
    color: #fff;
}

.subscribe .btn {
    text-transform: capitalize;
}

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

footer.container {
    padding-top: 0;
}

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

.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);
}

.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;
}
.bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fffc;
    gap: 20px;
}

.bottom > .logo {
    margin-bottom: 40px;
}
.bottom > .trio {
    display: flex;
    gap: 0 20px;
}
.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;
}

.bottom a {
    color: #fff;
}

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