.slug {
    padding: 20px 70px;
}
h1 {
    font-size: 28px;
    line-height: 32px;
}
h2 {
    font-size: 24px;
    line-height: 28px;
}

.slug section {
    display: flex;
    align-items:center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.slug .big_block {
    flex-direction: column;
    align-items: flex-start;
}

.slug_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-contrast);
    width: 300px;
    max-width: 100%;
    height: 42px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 18px;
    line-height: 18px;
    margin-top: 30px;
} 
.slug_btn:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-contrast);
}

.slug p,
.slug li,
.slug span {
    font-size: 18px;
    line-height: 24px;
}

.slug p {
    margin-bottom: 12px;
}

.slug ul, .slug ol{
    text-align: left;
    padding-left: 20px;
}
.slug li {
    margin-bottom: 12px;
}

.slug section h1,
.slug section h2 {
    width: 100%;
    margin-bottom: 20px;
}
.slug section h3 {
    margin: 30px 0px 16px;
    font-size: 22px;
    line-height: 26px;
}

.slug section div {
    width: 44%;
    padding: 0px 20px;
}

.slug  section img {
    width: 52%;
    height: 400px;
    border-radius: 20px;
    object-fit: contain;
    background-color: white;
}

.slug .big_block img {
    width: 100%;
}

.slug .big_block h2 {
    margin-top: 40px;
}
.slug .big_block h3 {
    margin-top: 20px;
}

@media screen and (max-width: 985px){
    .slug {
        padding: 10px 20px;
    }
    h1 {
        font-size: 24px;
        line-height: 28px;
    }
    h2 {
        font-size: 20px;
        line-height: 24px;
    }
    
    .slug section {
        margin-bottom: 30px;
    }
    
    .slug_btn {
        width: 200px;
        height: 34px;
        font-size: 16px;
        line-height: 16px;
        margin-top: 20px;
    } 
    
    .slug p,
    .slug li,
    .slug span {
        font-size: 16px;
        line-height: 20px;
    }
    
    .slug section h1,
    .slug section h2 {
        width: 100%;
        margin-bottom: 20px;
    }
    .slug section h3 {
        margin: 20px 0px 14px;
        font-size: 18px;
        line-height: 22px;
    }
    
    .slug section div {
        width: 58%;
        padding: 0px 0px;
    }
    
    .slug  section img {
        width: 40%;
        height: 250px;
    }
    
    .slug .big_block h2 {
        margin-top: 30px;
    }
    .slug .big_block h3 {
        margin-top: 20px;
    }
    
}


@media screen and (max-width: 570px){
    .slug {
        padding: 10px 20px;
    }
    h1 {
        font-size: 22px;
        line-height: 26px;
    }
    h2 {
        font-size: 20px;
        line-height: 24px;
    }
    
    .slug section {
        margin-bottom: 30px;
        flex-direction: column;
    }

    .slug_btn {
        margin: 20px auto 0px;
    } 

    .slug section h1,
    .slug section h2 {
        width: 100%;
        margin: 20px 0px;
    }
    .slug section h3 {
        margin: 20px 0px 14px;
    }
    
    .slug section div {
        width: 100%;
        order: 2;
        text-align: center;
    }
    
    .slug  section img {
        width: 100%;
        height: 250px;
        order: 1;
    }
    
    .slug .big_block h2 {
        margin-top: 30px;
    }
    .slug .big_block h3 {
        margin-top: 20px;
    }

    .slug li, ol {
        text-align: center;
        list-style: none;
    }
    

    .big_block p,
    .big_block h3,
    .big_block h2 {
        order: 2;
    }

    .big_block img {
        order: 1;
    }

}