html{
    scroll-behavior: smooth;
}
/*
.section-sell{
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
*/
.side-menu-coach{
    padding-top: 3rem;
    width: 20vw;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    transition: 300ms;
}

.sticky {
    position: fixed;
    padding-top: 10rem;
  }

.side-menu-coach a {
    padding: 6px 6px 6px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
  }

.side-menu-coach a:hover{
    color: #f1f1f1;
}


.section-sell .contain{
    /*margin-left: 20vw;*/
    padding: 2rem;
    margin: auto;
    max-width: 1000px;
}

.contain .section-experience{
    margin: 2rem;
}
.contain .section-experience h1{
    padding: 2rem;
    text-align: center;
}

.contain .overview{
    position: relative;
    width: 95%;
    margin: 2rem;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: 200px;
    grid-gap: 40px;
}
.overview .card{
    position: relative;
    background: #000;
    overflow: hidden;
    transition: 0.5s;
}

#Sean{
    background: url("../img/sean.jfif") no-repeat center;
    background-size: cover;
}
#Neil{
    background: url("../img/neil.jpg") no-repeat center;
    background-size: cover;
}
#Greg{
    background: url("../img/greg.jpg") no-repeat center;
    background-size: cover;
}

.overview .card .img-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition:0.5s;
}

.overview .card:hover{
    cursor: pointer;
}

 .overview .card:hover .img-box{
    filter: brightness(0.5);
    transform: scale(1.1);
}

.overview .card .img-box img{
    display: block;
    margin: auto;
    width: 100%;
    object-fit: cover;
}

.overview .card .content{
    position: absolute;
    color: #fff;
    width: 100%;
    height: 80%;
    bottom: -100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: 0.5s;
}

.overview .card:hover .content{
    bottom: 0;
}

.section-coaches .sean,
.section-coaches .neil,
.section-coaches .greg{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

@media screen and (max-width: 768px){
    .section-a .contain h2{
        font-size: 3rem;
    }

    .side-menu-coach{
        display: none;
    }

    .section-sell .contain{
        margin: 0;
    }

    .section-coaches .sean,
    .section-coaches .neil,
    .section-coaches .greg{
        grid-template-columns: 1fr;
    }

    .section-coaches .neil div:first-child{
        order: 2;
    }
    .section-coaches .sean div:first-child{
        order: 2;
    }
}

