@font-face {
    font-family: "BlackJack";
    src: url("fonts/BlackJack.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Antiqua";
    src: url("fonts/GlassAntiqua-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.ac_btn {
    color: #fff;
    background: #cc8e49;
    font-weight: 600;
    font-size: 20px;
    padding: 2px;
    text-align: center;
    border-radius: 10px;
    margin-top: 5px;
    transition: all 0.3s;
}
.ac_btn.green {
    background: #0E4726;
    cursor: pointer;
}
.ac_btn.active {
    cursor: pointer;
}
.ac_btn.active:hover {
    background: #871223;
}
.ac_btn.disabled {
    background: #B3B3B3;
    cursor: no-drop;
}
.ac_cont .stars_bg {
    position: relative;
    z-index: 2;
    background-image: url(../img/ac_stars_bg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    margin-top: -400px;
}
.ac_cont .ac_top_bg {
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
.ac_cont .ac_top_bg img {
    width: 100%;
    margin-top: -130px;
}
.ac_cont .ac_bottom_bg {
    margin-top: -300px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
    /* Маска для плавного исчезновения к низу */
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to top, black 70%, transparent 100%);
}

.ac_cont .ac_font1 {
    font-weight: 700;
    font-size: 56px;
    color: #CC8E49;
    text-align: center;
}

.ac_cont .ac_font2 {
    padding-top: 30px;
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    color: #000000;
}
.ac_font3 {
    padding-top: 30px;
    display: flex;
    align-items: center;
    font-family: "Antiqua";
    font-weight: 400;
    font-size: 50px;
    color: #000000;
}
.ac_font4 {
    font-family: "BlackJack";
    font-weight: 400;
    font-size: 50px;
    color: #871223;
}
.advent_cont {
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}
.advent_cont .item {
    text-align: center;
    width: 14.5%;
    border-radius: 10px;
    padding: 5px;
    border: 3px solid #CC8E49;
    background: #fff;
}

.advent_cont .item:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.advent_cont .item img {
    height: 80px;
}
.advent_cont .item .name {
    color: #000;
    font-family: "BlackJack", sans-serif;
    font-size: 30px;
}
.tour_video_icon {
    display: none;
}
@media screen and (max-width: 1052px) {
    .advent_cont .item {
        width: 22.3%;
    }
    .ac_cont .stars_bg {
        margin-top: -150px;
        background:none;
    }
    .advent_cont .item img {
        width: 60px;
    }
    .ac_cont .ac_bottom_bg {
        margin-top: -100px;
    }
    .ac_cont .ac_top_bg img {
        margin-top: 0px;
    }
}
@media screen and (max-width: 840px) {
    .advent_cont .item {
        width: 31.1%;
    }
    .advent_cont {
        gap: 10px;
    }
    .advent_cont .item img {
        height: 50px;
    }
    .advent_cont .item .name {
        font-size: 18px;
    }
    .ac_btn {
        font-size: 15px;
    }
    .ac_cont .ac_font1 {
        font-size: 35px;
    }
    .ac_cont .ac_font2 {
        font-size: 18px;
        padding-top: 15px;
    }
    .ac_cont .stars_bg {
        margin-top: -80px;
    }
}
@media screen and (max-width: 390px) {
    .advent_cont .item .name {
        font-size: 16px;
    }
}

