main{
    margin-top: 10vh;
}

h1.section-heading{
    text-align: center;
    padding: 2.5vh 0;
    font-size: 2.5rem;
}

.cell{
    width: 80vw;
    margin: auto;

    padding: 2.5vh 0;
}

.side-by-side > .cell-content{
    padding: 2.5vh 2.5vw;
    padding-left: 5vw;

    flex: 2;
}

.cell-title{
    margin: 1vh 0;
    font-weight: bold;
    font-size: 2.25rem;
}
.cell-bullet, .cell-description{
    font-size: 1.25rem;
}
.cell-bullet::marker{
    color: var(--brand-color);
}

.cell-content{
    text-align: justify;
}
.cell-content > ul{
    line-height: 1.75;
}

.cell-button-container{
    margin: 2.5vh 5vw;
    text-align: center;
}
.cell-button{
    border: 3px solid var(--brand-color);
    border-radius: 10px;
    padding: 1vh 2.5vw;

    font-size: 1.75rem;

    transition: .3s ease-in-out;

    text-decoration: none;
    color: inherit;
}
.cell-button:hover{
    background-color: var(--brand-color);
    color: var(--secondary-font-color);
}

.side-by-side{
    margin: 0;
}

.cell-img > img{
    width: 100%;
    height: auto;
}

/* szkolenia */
#szkolenia{
    background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(47,56,56,1) 85%);
    color: white;

    padding-top: 5vh;
    padding-bottom: 7.5vh;
}

#szkolenia > .cell:nth-child(even) > .side-by-side{
    flex-direction: row-reverse;
}

/* wspieramy */
#doradztwo > h1{
    text-align: initial;

    margin-top: 2.5vh;
    margin-bottom: 2.5vh;
    margin-left: 15vw;
}
#doradztwo .cell-content{
    font-size: 1.25rem;
}

#doradztwo .cell-title{
    text-align: center;
}
#doradztwo .cell-title > span{
    display: block;

    font-size: 4rem;
}

/* klienci */
#klienci{
    width: 60vw;
    margin: auto;
    margin-bottom: 7.5vh;
}
#clients{
    align-items: center;
    justify-content: center;
}
.slide{
    flex: 0 0 30%;

    text-align: center;
}
.slide > img{
    width: 40%;
    height: auto;

    padding: 1vh 1vw;

    transition: .3s ease-in-out;
}
.slide > img:hover{
    scale: 1.03;
}

/* ruszaj-z-nami */
#contact-button-container{
    margin: 15vh auto;
    text-align: center;
}
#contact-button{
    text-decoration: none;
    color: inherit;

    font-size: 1.75rem;
    
    border: 3px solid var(--brand-color);
    border-radius: 10px;

    padding: 1vh 1vw;

    transition: .3s ease-in-out;
}
#contact-button:hover{
    background-color: var(--brand-color);
    color: white;
}

@media screen and (max-width: 1000px) {
    div.section{
        width: 70vw;
    }

    h1.section-heading{
        font-size: 2rem;
    }

    #jak-dzialamy > #work-button-container{
        text-align: center;
        padding: inherit 5vw;
    }

    #doradztwo > h1{
        margin-left: 5vw;
    }
}