#videos {
    margin-bottom: 100px;

    .heading {
        position: relative;
    }

    @media screen and (max-width: 600px) {
        .heading {
            display: none;
        }
    }

    .mobileHeading {
        display: none;
        position: relative;
    }
    @media screen and (max-width: 600px) {
        .mobileHeading {
            display: block;
        }
    }

    .heading h1
  {
        position: absolute;
        color: white;
        top: 40%;
        left: 10%;
    }

    .mobileHeading h1 
    {
        position: absolute;
        color: white;
        top: 20%;
        left: 10%;
    }

    .heading img,
    .mobileHeading img {
        width: 100%;
    }

    .gallery .titreContainer  {
      background-color: #004a99;
      margin-top: -4px;
      padding: 100px 0 100px 0;
    }

    .gallery .titreContainer h2 {
        color: white;
    }

    .gallery .titreContainer p {
        color: white;
        margin-top: 20px;
        width: 80%;
        font-size: 20px;
    }


    @media screen and (max-width: 600px) {
        .gallery .titreContainer p {
            width: 100%;
        }
    }

    .accordion {
        cursor: pointer;
        width: 100%;
        text-align: left;
        border: none;
        outline: none;
        transition: 0.4s;
        background-color: white;
        margin-top: 50px;
    }

    .accordion:after {
        content: '\02795';
        font-size: 18px;
        float: right;
        color: #004a99;
    }

    .active:after {
        content: "\2796";
    }

    button {
        font-size: 26px;
        font-weight: bold;
        color: #004a99;
    }




    .panel {
        background-color: white;
        color: #004a99;
        display: none;
        overflow: hidden;
        padding-bottom: 100px;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        column-gap: 40px;
    }



    .videoContainer {
        padding: 25px 0;
        max-width: 85%;
    }

    .videoContainer h3 {
        min-height: 60px;
    }


   
}