#trainers {
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url("./../assets/bruce-mars-HHXdPG_eTIQ-unsplash.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

#trainers-shapes {
    width: 40%;
    height: 100vh;
    position: absolute;
    right: 0;
    align-items: center;
}

#trainers-shapes div {
    width: 100%;
    height: 100%;
    background-color: var(--shape-background);
}

#trainers-info {
    position: absolute;
    right: 7.5%;
    width: 25%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1vw 0 0;
}

#trainers-info-contain p {
    color: var(--main-text-color);
    font-family: var(--font-family);
    font-size: 1.2rem;
    margin: 3vh 0;
}

#trainers-info-contain input {
    position: absolute;
    right: 0;
}

@media screen and (min-width: 2000px) {

}

@media screen and (max-width: 2000px) {
    
}

@media screen and (max-width: 1440px) {

}

@media screen and (max-width: 1000px) {
    #trainers-info-contain p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 500px) {
    #trainers-shapes {
        width: 50%;
    }
    #trainers-info{
        width: 30%;
    }
    #trainers-info-contain p {
        font-size: .9rem;
    }
}

@media screen and (max-width: 400px) {
    #trainers-info{
        width: 35%;
    }
    #trainers-info-contain p {
        font-size: .8rem;
    }
}