.right-menu {
    position: fixed;
    margin-top: 40px;
    top: 40%;
    right: 1%;
    transform: translateY(-50%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icons {
    display: flex;
    flex-direction: column;
}

.social-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icon-wrapper:hover {
    transform: scale(1.1);
}

.social-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 55px;
    max-height: 55px;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.social-bg-normal {
    opacity: 1;
}

.social-bg-hover {
    opacity: 0;
}

.social-icon-wrapper:hover .social-bg-normal {
    opacity: 0;
}

.social-icon-wrapper:hover .social-bg-hover {
    opacity: 1;
}

.social-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 34px;
    max-height: 25px;
    width: 50%;
    height: 50%;
    object-fit: contain;
    z-index: 1;
}

.right-menu-guide,
.right-menu-download {
    max-width: 65px;
    max-height: 233px;
    width: auto;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 5px;
}

.right-menu-guide:hover,
.right-menu-download:hover {
    transform: scale(1.05);
}

@media only screen and (max-width: 2048px) and (max-height: 1152px) {
    .right-menu {
        top: 40%;
    }

    .social-icon-wrapper {
        width: 65px;
        height: 65px;
    }

    .right-menu-guide,
    .right-menu-download {
        height: 260px;
    }
}

@media only screen and (max-width: 1920px) and (max-height: 1200px) {
    .right-menu {
        top: 35%;
    }

    .social-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .right-menu-guide,
    .right-menu-download {
        height: 240px;
    }
}

@media only screen and (max-width: 1920px) and (max-height: 1080px) {
    .right-menu {
        top: 40%;
    }
}

@media only screen and (max-width: 1600px) and (max-height: 1200px) {
    .social-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .right-menu-guide,
    .right-menu-download {
        height: 220px;
    }
}

@media only screen and (max-width: 1600px) and (max-height: 768px) {
    .social-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .right-menu-guide,
    .right-menu-download {
        height: 180px;
    }
}

@media only screen and (max-height:600px) {
    .social-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .right-menu-guide,
    .right-menu-download {
        height: 160px;
    }
}

@media only screen and (max-width: 640px) {
    .right-menu {
        width: 10%;
        right: 1%;
        top: 30%;
    }

    .social-icon-wrapper {
        width: 45px;
        height: 45px;
        margin: 0 5px;
    }

    .right-menu-guide,
    .right-menu-download {
        width: 100%;
        margin: 5px 0;
    }
}

@media only screen and (max-width: 480px) {
    .section-3-social-icon {
        width: 30px;
        height: 30px;
    }

    .right-menu {
        width: 10%;
        right: 1%;
        top: 35%;
    }

    .social-icon-wrapper {
        width: 45px;
        height: 45px;
        margin: 0 5px;
    }

    .right-menu-guide,
    .right-menu-download {
        height: 150px;
        margin: 5px 0;
    }
}