.top {
    padding-bottom: 160px;
}
.top__title {
    font-weight: bold;
    font-size: 60px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 124px;
}
.top__title span {
    color: #f6c150;
}
.top__inner {
    width: 100%;
    margin: 0 auto;
}
.top__content {
    display: flex;
    justify-content: center;
    gap: 0 8%;
    flex-wrap: wrap;
}
.top__item {
    width: 318px;
    height: 318px;
    border: 1px solid #F7CA60;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 70px;
    position: relative;
    cursor: pointer;
}
.top__item-img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -34px;
    /* display: none; */
}
.top__item-name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
    font-weight: 600;
    font-size: 30px;
    line-height: 122%;
    text-align: center;
    letter-spacing: 0.02em;
    color: #f7c85c;
    /* display: none; */
}
.top__item-fact {
    display: flex;
    align-items: center;
    margin-bottom: 25px;    
}
.top__item-fact img {
    display: block;
}
.top__item-fact span {
    font-weight: 600;
    font-size: 16px;
    line-height: 122%;
    letter-spacing: 0.02em;
    color: #f7c85c;
    margin-left: 12px;
}
.top__item-list {
    padding-top: 36px;
    padding-left: 29px;
    background: #22221F;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: none;
}
.top__item:hover .top__item-img {
    display: none;
}
.top__item:hover .top__item-name {
    display: none;
}
.top__item:hover .top__item-list {
    display: block;
}
.top__btn {
    width: 480px;
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    background: linear-gradient(293.89deg, #f6c150 35.44%, #fded9b 94.34%);
    border-radius: 100px;
    box-shadow: 0px 4px 50px #ffd57a;
    border: none;
    margin: 0 auto;
    z-index: 1;
    cursor: pointer;
    border-bottom: 3px solid #c49028;
    margin-top: 30px;
}
.top-mob {
    display: none;
}

@media (max-width: 576px) {
    .top {
        display: none;
    }
    .top__btn {
        width: 100%;
        box-shadow: 0px 4px 30px rgba(255, 213, 122, 0.5);
        height: 62px;
        font-size: 14px;
        line-height: 17px;
        margin-top: 60px;
    }
    .top__inner {
        width: 280px;
    }
    .top__title {
        font-size: 26px;
    }
    .top-mob {
        display: block;
        padding-bottom: 80px;
        overflow-x: hidden;
    }
    .top-mob__title {
        font-weight: bold;
        font-size: 30px;
        line-height: 120%;
        text-align: center;
        color: #FFFFFF;
        margin-bottom: 14px;
    }
    .top-mob__subtitle {
        font-weight: 500;
        font-size: 16px;
        line-height: 120%;
        text-align: center;
        color: #CCCCCC;
        margin-bottom: 137px;
    }
    .top-mob__inner {
        width: 280px;
        margin: 0 auto;
    }
    .top-mob__item {
        width: 260px !important;
        height: 270px;
        border: 1px solid #F7CA60;
        border-radius: 10px;
        position: relative;
    }
    .top-mob__slider {
        width: 260px !important;
        position: relative;
        margin: 0 auto;
    }
    .top-mob__img {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -84px;
    }
    .top-mob__name {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: #f7c85c;
        bottom: 20px;
        font-weight: 600;
        font-size: 30px;
        line-height: 122%;
        text-align: center;
        letter-spacing: 0.02em;
    }
    .top__item-list {
        display: none;
    }
    .top__item-fact span {
        font-size: 13px;
    }
    .top-mob__item:hover .top__item-list {
        display: block;
    }
    .top-mob__item:hover .top-mob__name {
        display: none;
    }
    .top-mob__item:hover .top-mob__img {
        display: none;
    }
    .top__item-list {
        padding-top: 26px;
        padding-left: 25px;
    }
}