body.overflow{
    overflow: hidden;
}
.modalWindow { 
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.4); 
    overflow-y: scroll; 
    padding: 15px; 
}
.modal-contentWindow { 
    margin: 0 auto; 
    max-width: 800px; 
    position: relative; 
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(107.08deg, #071947 0%, #380D5B 100.03%);
    border-radius: 32px;
    padding: 24px;
}
.close { 
    position: absolute; 
    right: 30px; 
    top: 30px; 
    z-index: 10; 
    cursor: pointer;
    width: 12px;
    height: 12px;
}
.close img {
    display: block;
}
.close img:hover{
    opacity: 0.8;
}
.form-content__title{
    font-family: 'RocknRoll One';
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase;
    color: #F8CA00;
}
.form-content__text{
    margin-top: 24px;
}
.form-content__text p{
    font-family: 'Roboto Condensed';
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    color: #FAFBFC;
    margin-bottom: 0;
}
.form-content__text p:not(:first-child){
    margin-top: 8px;
}
.form-content__items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;

    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    grid-auto-columns: 240px !important;
    grid-auto-flow: column;
    overflow-x: auto;
}
.form-content__item{
    background: #012677;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}
.form-content__item-image img{
    border-radius: 24px;
    display: block;
}
.form-content__item-content{
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.form-content__item-name{
    font-family: 'RocknRoll One';
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #F8CA00;
}
.form-content__item-description{
    font-family: 'Roboto Condensed';
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    text-align: center;
    color: #FAFBFC;
    margin-top: 8px;
    margin-bottom: 16px;
}
.form-content__item-button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    background: #F8CA00;
    border-radius: 40px;
    font-family: 'RocknRoll One';
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #492B14 !important;
    margin-top: auto;
}
.form-content__item-button:hover{
    filter: brightness(.9) contrast(1.2);
}

@media(max-width: 1024px){
    .form-content__items{
        grid-template-columns: none;
        cursor: grab;
    }
    .modal-contentWindow{
        top: 0;
        transform: none;
        padding: 16px;
    }
}