.floating {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    transition: transform .3s ease;
    z-index: 999;
}

.floating {
    bottom: 40px; right: 40px;
}

.registBtn {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    text-align: center;
    line-height: 70px;
    color: #fff;
    background: var(--main-color);
    -webkit-animation: pulseAnim 1.3s infinite;
    animation: pulseAnim 1.3s infinite;
    cursor: pointer;
}

.floating:hover {
    transform: scale(1.1);
}

.registBtn i {
    color: #fff;
    font-size: 32px;
    text-shadow: 10px 10px 30px rgba(0, 0, 0, .5);
    -webkit-animation: none;
    animation: none;
}

.youtubeBtn {
    background: #f70000;
    -webkit-animation: pulseAnim 1.3s infinite;
    animation: pulseAnim 1.3s infinite;
}


@keyframes pulseAnim {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
	}
	70% {
		box-shadow: 0 0 0 15px rgb(151 213 229 / 0%);
	}
	100% {
		box-shadow: 0 0 0 0 rgb(151 213 229 / 0%);
	}
}


/*==================================================*/
@media (max-width: 1550px) {
    .floating {
        bottom: 20px; right: 20px;
    }
}


@media (max-width: 768px) {
    .registBtn {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .registBtn i {
        font-size: 25px;
    }
}