div.section > p.content{
    font-size: 1.1rem;
    text-align: justify;
}

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

    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--brand-color);
}

/* Nota */
#nota > h1{
    text-align: end;
    margin-right: 25vw;
}
#nota-opis{
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.5;

    margin-bottom: 5vh;
}
#nota-certs{
    padding-bottom: 10vh;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: space-around;
}
#nota-certs > img{
    margin: 1vh 2.5vw;

    width: 15%;
    height: auto;
}
#images{
    text-align: center;
}
#pawel-image{
    width: 75%;
    height: auto;
}

/* Nasz zespół */

#kadra{
    padding: 5vh 0;
    background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(47,56,56,1) 85%);
    color: var(--secondary-font-color);

    transform: translateY(-1vh);
}
#kadra > h1{
    margin-left: 12.5vw;
}
#kadra-opis{
    font-size: 1.1rem;
    text-align: justify;
    line-height: 1.75;
}
#kadra-opis > b{
    color: var(--brand-color);
}

.tile-grid{
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;

    padding: 1vh 1vw;
}

.tile{
    flex: none;
    margin: 0;
    padding: 0 1vw;

    text-align: center;
}
.tile > .tile-image{
    width: 200px;
    height: 300px;
}
.tile-title{
    font-size: 1.25rem;
    background-color: var(--brand-color);
}

/* Klienci */
#klienci{
    width: 60vw;
    margin: 5vh auto;
}
#clients{
    align-items: center;
}
.slide{
    flex: 1 30%;

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

    padding: 1vh 1vw;

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


#contact-button-container{
    margin: 7.5vh 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: 1400px){
    .tile-title{
        transform: translateY(-1vh);
    }

    .side-by-side > div{
        padding: 1vh 1vw;
    }

    #nota-opis{
        flex: 3;
    }
    #images{
        flex: 2;
        align-self: flex-end;
    }
    #images > #nota-certs{
        flex-direction: row;
        flex-wrap: wrap;
    }
    #images > #nota-certs > img{
        width: 25%;
    }

    #kadra-opis{
        flex: 5;
    }
    #kadra-carousel{
        flex: 2;
    }

    .slide > img{
        width: 40%;
    }
}

@media screen and (max-width: 1000px){
    #nota > h1{
        padding-top: 2.5vh;
        text-align: center;
    }
    #nota-certs > img{
        width: 30%;
    }

    #klienci{
        width: 80vw;
    }
    #klienci-carousel{
        display: block !important;
    }

    #clients{
        flex-direction: column;
    }
    .slide > img{
        width: 40%;
    }
}