/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 11 2025 | 13:51:23 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --all-transition: 1s ease;
    --opacity-transition: .3s ease;
}

body{
    background: #3674be;
    min-height: 100vh;
    overflow: hidden;
    transition: var(--all-transition);
}

body::before{
    content: '';
    position: absolute;
    left: 3.5%;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: rgba(255,255,255,.8);
    border-radius: 50%;
    filter: blur(200px);

}

.img-box{
    left: -72%;
    position: absolute;
    top : 50%;
    transform: translateY(-50%);
    width: 1300px;
    height: 1300px;
}

.img-box .img-list{
    height: inherit;
    transform: rotate(-120deg);
}

.img-list .img-slider{
    height: inherit;
    transition: var(--all-transition);
}

.img-slider .img-item{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(calc(-360deg / 6 * var(--i))) scale(.8);
    transform-origin:  650px;
    transition: var(--all-transition);
}

.img-slider .img-item.active{
    transform: translateY(-50%) rotate(calc(-360deg / 6 * var(--i))) scale(0.9) translateX(-65%);
    z-index: 1;
}

.img-item .item{
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--all-transition);
}

.img-item .item img{
    transform:  rotate(calc(360deg / 6 * var(--i))) rotate(120deg);
    filter: blur(8px);
    transition: var(--all-transition);
}

.img-item.active .item img{
    filter: blur(0);
}

.info-box{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
}

.info-box .info-item{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 40px 0 0 40px;
    padding: 0 70px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    opacity: 0;
    box-shadow: none;
    transition: transform var(--all-transition),opacity var(--opacity-transition), box-shaow var(--all-transition);
}

.info-box .info-item.active{
    transform: translateX(0);
    opacity: 1;
    box-shadow: 0 0 30px rgba(0,0,0,.2);
}

.info-item h2{
    font-size: 30px;
}

.info-item h2:nth-child(2){
    margin: 20px 0;
}

.colors span{
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 10px;
}

.colors span.active{
    outline: 3px solid #fff;
}

.colors span:nth-child(1){
    background: #3674be;
}

.colors span:nth-child(2){
    background: #d26181;
}

.colors span:nth-child(3){
    background: #ceb13d;
}

.colors span:nth-child(4){
    background: #c6414c;
}

.colors span:nth-child(5){
    background: #171f2b;
}

.colors span:nth-child(6){
    background: #50aa61;
}

.info-item p{
    font-size: 16px;
    margin: 20px 0 25px;
}

.info-item .btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 47px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.navigation{
    position: absolute;
    left: 23%;
    bottom: 7%;
    width: 150px;
    display: flex;
    justify-content: space-between;
    z-index: 100;
}

.navigation span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    color: #fff;
}


