body,
html {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    user-select: none;
    background-image: url("../assets/images/bg2.jpg");
    /* background-repeat: repeat; */
    background-size: cover;
}

div {
    margin: 0;
    padding: 0;
}

.page {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}


.page video {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: auto;
    z-index: -1;
}

.title {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.2vw;
    font-weight: bold;
    line-height: normal;
    text-align: center;
    color: rgb(175, 220, 235);
    text-shadow:
        1px 1px 0 rgba(0, 62, 116, 0.5),
        2px 2px 0 rgba(0, 62, 116, 0.4),
        3px 3px 0 rgba(0, 62, 116, 0.3),
        4px 4px 0 rgba(0, 62, 116, 0.2),
        5px 5px 5px rgba(0, 62, 116, 0.2),
        0 0 10px lightblue,
        0 0 15px lightblue;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item_box {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-item {
    position: absolute;
    width: 220px;
    height: 220px;
    /* background-color: rgba(255, 255, 255, 0.8); */
    border-radius: 110px;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.center-item:hover {
    transform: scale(1.1);
    z-index: 3;
}

.orbit-items {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbit-items .item {
    position: absolute;
    width: 180px;
    height: 180px;
    /* background-color: rgba(255, 255, 255, 0.6); */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 90px;
    transform-origin: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.orbit-items .item {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(250px) rotate(calc(-1 * var(--angle)));
}
.orbit-items .item:hover {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(250px) rotate(calc(-1 * var(--angle))) scale(1.1);
    z-index: 1;
}

.center-item,
.orbit-items .item {
    text-decoration: none;
    color: #ffffff;
}


.orbit-items .item span {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    /* margin-top: 10px; */
}

.center-item img{
    height: 120px;
    width: 120px;
    border-radius: 50px;
}
.orbit-items .item img {
    height: 100px;
    width: 100px;
    border-radius: 40px;
}

.center-item span{
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .item_box {
        width: 400px;
        height: 400px;
    }
    
    .orbit-items .item {
        width: 180px;
        height: 180px;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(180px) rotate(calc(-1 * var(--angle)));
    }
    
    .center-item {
        width: 220px;
        height: 220px;
    }
    
    .center-item img,
    .orbit-items .item img {
        height: 60px;
        width: 60px;
    }
    
    .center-item span,
    .orbit-items .item span {
        font-size: 0.9rem;
    }
}

/* .item:hover {
    translate: 0 0.225em;
    box-shadow: inset 0 0.03em 0 0 #f4f4f4, 0 0.03em 0 0 #efefef,
        0 0.0625em 0 0 #ececec, 0 0.125em 0 0 #e0e0e0, 0 0.125em 0 0 #dedede,
        0 0.2em 0 0 #dcdcdc, 0 0.225em 0 0 #cacaca, 0 0.225em 0.375em 0 #cecece;
} */