/*новая главная страница*/
.new-main-container {
    min-height: 90vh;
    height: 100%;
    background-image: url("new-main-hero-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    margin-block: auto;
    text-align: center;
    padding: 0 102px 42px 102px;
}

.new-main-title {
    color: #01030D;
    font-family: 'GraphikLCG-Regular', sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    width: 100%;
    max-width: 850px;
    margin-bottom: 24px;
}

.new-main-desc {
    color: #444C4F;
    font-size: 20px;
    font-style: normal;
    font-family: 'GraphikLCG-Light', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    width: 100%;
    max-width: 506px;
    margin-bottom: 41px;
}

.new-main-title span {
    color: #FF3291;
}

.new-main-button {
    cursor: pointer;
    transition: background .2s ease-in-out;
    border-radius: 100px;
    background: #FF3291;
    display: flex;
    width: 396px;
    padding: 16px 156px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: 'GraphikLCG-Light', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
}

.new-main-button:hover {
	background: #FF53A3;
	color: #ffffff !important;
}


@media (max-width: 525px) {
    .new-main-container {
        min-height: 90vh;
        padding: 0 15px 0 15px;
    }

    .new-main-title {
        font-size: 24px;
        max-width: 290px;
        margin-bottom: 24px;
    }

    .new-main-desc {
        font-size: 14px;
        max-width: 290px;
        margin-bottom: 32px;
    }

    .new-main-button {
        border-radius: 100px;
        width: 290px;
        padding: 16px 156px;
        font-size: 16px;
    }
}