html.isHome, body.isHome, body.isHome .body_wrapper {
    height: 100%;
}
#main-content {
    padding: 50px 15px;
    width: 100%;
    transition: .3s all ease-in-out;
    height: calc(100% - 100px);
    overflow: auto;
}
#main-content .logo_wrapper img {
    width: 100%;
    max-width: 100px;
    margin: 0 0 40px;
    display: block;
    height: auto;
    aspect-ratio: 250 / 216;
}

.front-links {
    width: 100%;
    height: 100%;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-transform: uppercase;
    flex-wrap: nowrap;
}
@media screen and (min-width: 1192px) {
    #main-content {
        padding: 100px;
    }
    #main-content .logo_wrapper img {
        width: 400px;
        max-width: unset;
        margin: 100px auto;
    }
    .front-links {
        /* flex-direction: row; */
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
}
/* .front-links .home-photo {
    width: 350px;
    display: block;
    background-color: rgba(255,255,255,.1);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .1s;
    height: 400px;
    -webkit-text-fill-color: transparent;
    clip-path: url(#clawsClip);
    transform: translateX(-40%) scale(2.1);
    position: absolute;
    right: 10%;
}
.front-links .home-photo svg {
    height: 100%;
    width: 100%;
} */
.front-links ul {
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 550px;
}
@media screen and (min-width: 1192px) {
    .front-links ul {
        text-align: left;
    }
}
.front-links ul li a {
    font-size: clamp(55px, 7.7vw, 112px);
    color: white;
    text-decoration: none;
    line-height: .95;
    letter-spacing: 3px;
    opacity: .55;
    transition: .1s all ease-in-out;
    display: block;
}
.front-links ul li a:hover,
.front-links ul li a:focus {
    opacity: 1;
}

@media screen and (min-width: 1192px) {
    .front-links ul li a span::before {
        content:"";
        display: block;
        height: 2px;
        width: 0px;
        background-color: #f7964e;
        margin: 43px 30px 0 0;
        transition: .1s all ease-in-out;
        float: left;
    }
    .front-links ul li a:hover span::before,
    .front-links ul li a:focus span::before {
        width: 50px;
    }
}