.tour-container {
    display: flex;
    height: 42vw;
    width: 100%;
    max-width: 1440px;
    max-height: 620px;
    background-image: url('/views/images/3d-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {
    .tour-container {
        height: 183vw;
        background-image: url('/views/images/3d-background-mob.png');
    }
}

.tour-container .circle-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 468px;
    height: 468px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
}

@media (max-width: 600px) {
    .tour-container .circle-block {
        width: 343px;
        height: 343px;
    }
}

.tour-container .circle-block .next-circle-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 418px;
    height: 418px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .tour-container .circle-block .next-circle-block {
        width: 306px;
        height: 306px;
    }
}

.tour-container .circle-block .next-circle-block .central-block {
    position: relative;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 368px;
    height: 368px;
    border: 2px solid #FFFFFF;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

@media (max-width: 600px) {
    .tour-container .circle-block .next-circle-block .central-block {
        width: 270px;
        height: 270px;
    }
}

.tour-container .circle-block .next-circle-block .central-block h1 {
    position: relative;
    margin: 0;
    font-family: e-Ukraine;
font-weight: 500;
font-size: 34px;
line-height: 136%;
letter-spacing: 2%;
text-align: center;
text-transform: uppercase;
color: #FFFFFF;
}

@media (max-width: 600px) {
    .tour-container .circle-block .next-circle-block .central-block h1 {
        font-size: 24px;
    }
}

.tour-container .circle-block .next-circle-block .central-block .beginning-tour-btn {
    position: relative;
    display: flex;
    min-width: 208px;
    height: 60px;
    border-radius: 30px;
    align-items: center;
    gap: 20px;
    padding: 8px 8px 8px 28px;
    background: #FFFFFF;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 148%;
    letter-spacing: 0%;
}

@media (max-width: 600px) {
    .tour-container .circle-block .next-circle-block .central-block .beginning-tour-btn {
        height: 52px;
    }
}

.tour-container .circle-block .next-circle-block .central-block .beginning-tour-btn:hover {
    background-color: #FBF8F4;
}

.tour-container .circle-block .next-circle-block .central-block .beginning-tour-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    background-image: url('/views/images/icon/tour-play.svg');
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    height: 44px;
    width: 44px;
    transform: translate(0, -50%);
}

@media (max-width: 600px) {
    .tour-container .circle-block .next-circle-block .central-block .beginning-tour-btn::before {
        height: 36px;
        width: 36px;
    }
}