
@charset "UTF-8";
.facebook {
    position: fixed;
    left: 0;
    bottom: 20px;
    translate: 0;
    width: fit-content;
    height: fit-content;
    z-index: 1;
    opacity: 0;
    transition: opacity .3s;
}
.facebook.active {
    opacity: 1;
}
.facebook.active.footPos {
    opacity: 0;
}
@media screen and (min-width: 769px) {
    .facebook {
        left: auto;
        right: 0;
        top: 50%;
        bottom: auto;
        translate: 0 -50%;
    }
}

.facebook_link {
    width: 110px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: #496740;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
@media screen and (min-width: 769px) {
    .facebook_link {
        width: 40px;
        height: 150px;
        font-size: 12px;
        writing-mode: vertical-rl;
        border-radius: 0px;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        transition: width .3s ease;
    }
    .facebook_link:hover {
        width: 50px;
    }
}

.facebook_link svg {
    width: 18px;
    height: auto;
}

.youtube {
    width: 100%;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 20vh;
}

@media screen and (min-width: 769px) {
    .youtube {
        padding-inline: 21.78218%;
        margin-top: 0;
        margin-bottom: 30vh;
    }
}

.youtube * {
    font-weight: 400;
}

.youtube p {
    font-size: 5vw;
    margin-bottom: 24px;
}

.youtube p .dib {
    display: inline-block;
}

@media screen and (min-width: 769px) {
    .youtube p {
        font-size: 19px;
        margin-bottom: 24px;
    }
}

.youtube_frame {
    width: 100%;
}

.youtube_frame a:hover img {
    transform: none;
}

.youtube_frame a {
    display: block;
    position: relative;
}

.youtube_frame a .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 64px;
    height: auto;
}