.top{
    background: url("/wp-content/uploads/2025/09/dsc07147-2-1.webp") center/cover, #272624;
    padding: 110px;
    color: white;
}
.top_title{
    color: inherit;
    text-transform: uppercase;
    font-size: clamp(20px, calc(10px + 2vw), 38px);
    font-weight: 600;
    line-height: 1.18em;
    max-width: 830px;
}
.top_txt{
    margin: 50px 0 0 0;
    font-size: 24px;
    line-height: 1.1em;
}
.top_cta-btn{
    margin: 95px 0 0 0;
    font-size: 17px;
    font-weight: 600;
    padding: 1em 5.3em;
}
.top_advantage-list{
    margin: 85px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
}
.top-advantage{
    background: var(--black);
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.95);
    padding: 10px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 15px;
    font-size: 16px;
    line-height: 1.1em;
    text-decoration: none;
    color: inherit;
}
.top-advantage_img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.catalog_subtitle{
    margin: 1em auto 0 auto;
    font-size: 20px;
    text-align: center;
    max-width: 815px;
    color: black;
    line-height: 1em;
}
.catalog_list{
    margin: 75px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
}
.service-card{
    padding: 30px;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 125px 1fr;
    text-decoration: none;
    color: black;
    border-radius: 17px;
}
.service-card:hover{
    background: linear-gradient(180deg, #FFFFFF 0%, var(--orange) 100%);
}
.service-card_img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-card_title{
    margin: 30px 0 0 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1em;
}
.catalog_advantage-list{
    margin: 85px 0 0 0;
    padding: 85px 0 0 0;
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
    &:before{
        content: '';
        width: 100%;
        max-width: 800px;
        height: 1px;
        background: black;
        position: absolute;
        top: 0;
        justify-self: center;
    }
}
.catalog-advantage_img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}
.catalog-advantage_title{
    margin: 1em 0 0 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1em;
    color: black;
}
.catalog_txt{
    margin: 90px auto 0 auto;
    font-size: 19px;
    text-align: center;
    max-width: 955px;
    line-height: 1.45em;
    color: black;
}
.memories{
    background: var(--black);
    padding: 60px 0;
    color: white;
}
.memories_title{
    color: inherit;
}
.memories_gallery{
    margin: 55px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    gap: 10px;
}
.memory_img{
    width: 100%;
    height: 275px;
    object-fit: cover;
}
.party{
    background: var(--black);
    padding: 60px 0;
    color: white;
    .container{
        display: grid;
        grid-template-columns: 550px 1fr;
        column-gap: 10px;
        row-gap: 55px;
        grid-template-areas: 'title title' 'img txt';
        align-items: flex-start;
    }
}
.party_title{
    grid-area: title;
    color: inherit;
}
.party_img{
    grid-area: img;
    width: 100%;
    object-fit: cover;
}
.party_txt{
    grid-area: txt;
    font-size: 15px;
}
.faq{
    background: var(--black);
    color: white;
}
.faq_title{
    color: inherit;
}
.faq-item_question{
    --marker-color: white;
}
.cta{
    padding: 120px 0;
    background: url("/wp-content/uploads/2025/09/dirt-bike-rider-with-his-motorcycle-racing-circuits-adventure-scaled-1.webp") center/cover;
    color: white;
    position: relative;
    &:before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.83);
        z-index: 1;
    }
    .container{
        z-index: 2;
        position: relative;
    }
}
.cta_title{
    margin: 0 auto;
    color: inherit;
    text-align: center;
    max-width: 840px;
}
.cta_btn{
    margin: 70px auto 0 auto;
    padding: 1em 5em;
    font-size: 16px;
}
.cta_txt{
    margin: 65px auto 0 auto;
    max-width: 840px;
    text-align: center;
    font-size: 20px;
    line-height: 1em;
}
@media(max-width: 1140px){
    .top{
        padding: 100px 0 30px 0;
    }
    .top_title{
        text-align: center;
    }
    .top_txt{
        margin: 40px 0 0 0;
        text-align: center;
        font-size: 16px;
    }
    .top_cta-btn{
        margin: 45px auto 0 auto;
        padding: 1em 2em;
        font-size: 16px;
    }
    .top_advantage-list{
        margin: 40px 0 0 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    .top-advantage{
        grid-template-columns: 65px 1fr;
        gap: 10px;
    }
    .catalog_txt{
        font-size: 14px;
    }
    .catalog_list{
        margin: 50px 0 0 0;
    }
    .party .container{
        grid-template-columns: 100%;
        row-gap: 0;
        grid-template-areas: 'title' 'img' 'txt';
    }
    .party_img{
        margin: 50px 0 0 0;
    }
    .party_txt{
        margin: 20px 0 0 0;
    }
    .cta_txt{
        font-size: 14px;
    }
}