.bottom-stuff {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 40px;
    z-index: 100;
    display: flex;
    justify-content: space-between;

    @media screen and (max-width: 767px) {
        justify-content: center;
    }

    @media screen and (max-width: 480px) {
        bottom: 20px;
    }
}
.bottom-stuff .desktop-logo .logo-img {
    height: 56px;
    width: auto;
    @media screen and (max-width: 767px) {
        display: none;
    }
}
.bottom-stuff .desktop-logo .logo-desc {
    @media screen and (max-width: 767px) {
        display: none;
    }
}
.social {
    z-index: 100;
    display: flex;
    gap: 17px;
}
.social a img {
    transition: all 0.3s;
}
.social a.is-inactive img {
    opacity: 0.2;
}
.social.social-top {
    position: absolute;
    top: 30px;
    right: 40px;
    @media screen and (max-width: 767px) {
        display: none;
    }
}

.bottom-stuff .partner-links-bottom {
    display: flex;
    gap: 22px;
    align-items: center;
}
.bottom-stuff .partner-links-bottom a img {
    transition: all 0.3s;

    @media screen and (max-width: 480px) {
        height: 40px;
        width: auto;
    }
}
.bottom-stuff .partner-links-bottom a.is-inactive img {
    opacity: 0.2;
}
.bottom-stuff .partner-links-bottom .social {
    @media screen and (min-width: 768px) {
        display: none;
    }
}
.bottom-stuff .partner-links-bottom .partners {
    display: flex;
    gap: 22px;
    align-items: center;
}

.container-mid .mobile-logo {
    @media screen and (min-width: 768px) {
        opacity: 0 !important;
        visibility: hidden !important;
    }
}

.arrow-wrap.go-down .open-overlay.down-button {
    @media screen and (max-width: 767px) {
        margin-top: -150px;
    }
    @media screen and (max-width: 480px) and (max-height: 680px) {
        margin-top: -200px;
    }
}
.go-down-custom {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 2px solid #fff;
    position: relative;

    @media screen and (min-width: 768px) {
        display: none;
    }
}
.go-down-custom a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.go-down-custom a i:first-child {
    transform: translateY(-300px);
    opacity: 0;
    z-index: 2;
}
.go-down-custom a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 20px;
    height: 20px;
    transition: all 0.3s;
    color: #fff;
}
.go-down-custom a i:last-child {
    z-index: 1;
}
.go-down-custom a:hover i:first-child {
    transform: translateY(-50%) translateX(-50%);
    opacity: 1;
}
.go-down-custom a:hover i:last-child {
    transform: translateY(300px);
    opacity: 0;
}

.container-mid img {
    max-width: 100%;
    height: auto;
}
