.secondaryBannerTeam{
    background: url("../../images/banners/training.jpg");
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.secondaryBannerTeamLayer{
    background: black;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0.7;
}
.trainTeamsSection{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.trainTeamsWrapper{
    width: 70%;
}
.teamTitle{
    font-size: 35px;
    font-weight: bold;
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--textTitle);
}
.teamDescription{
    text-align: center;
    font-size: 25px;
    margin-top: 30px;
    opacity: 0.8;
}
.trainingContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 100px;
    justify-content: center;
    margin-top: 50px;
    align-items: center;
}
.trainingRightSide{
    width: 60%;
    height: auto;
    border-radius: 7px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    align-items: center;
    column-gap: 50px;
    justify-content: space-between;
}
.trainingLeftDescription{
    width: 60%;
}
.trainingRightIcon img{
    width: 300px;
}
.trainingLeftIcon img{
    width: 300px;
}
.trainingDescription{
    line-height: 30px;
}
.trainingRightDescription{
    width: 60%;
}
.trainingTitle{
    font-size: 22px;
    font-weight: bold;
}
.trainingLeftSide{
    width: 60%;
    height: auto;
    border-radius: 7px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    align-items: center;
    column-gap: 50px;
}

@media only screen and (max-width: 1400px) {
    .trainingLeftSide{
        flex-direction: column;
        row-gap: 20px;
    }
    .trainingRightSide{
        flex-direction: column-reverse;
        row-gap: 20px;
    }
    .trainingLeftIcon img{
        width: 200px;
    }
    .trainingRightIcon img{
        width: 200px;
    }
    .trainingLeftDescription{
        width: 90%;
    }
    .trainingRightDescription{
        width: 90%;
    }
}


