@media only screen and (max-device-width: 1023px){

    #wallpaper {
        width: 100vw;
        height: fit-content;
        background: rgb(2,0,36);
        background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(4,72,142,1) 35%);
        background-size: 400% 400%;
        animation: gradient 15s ease infinite;
        position: relative;
    }
    
    @keyframes gradient {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    #wallpaper #blackOpacity{
        position: absolute;
        left: 0;
        width: 100%;
        top: 0;
        height: 100%;
        background-color: black;
        opacity: 0.6;
        z-index: 1;
    }


    #wallpaper_content{
        position: relative;
        z-index: 2;
        padding-top: 8vw;
        padding-bottom: 8vw;
    }

    #wallpaper_content #leftDiv{
        width: 50%;
    }

    #wallpaper_content #video{
        width: 40%;
        height: auto;
        cursor: pointer;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    #section_3_holder{
        width: 100vw;
        padding: 4vw;
        padding-bottom: 7vw;
        background-color: #f8f9fa;
    }

    #section_5_holder{
        width: 100vw;
        padding-top: 7vw;
        padding-bottom: 9vw;
        background-color: #f6f6f6;
    }

    #section_3{
        width: 90% !important;
        position: relative;
        display: initial !important;
        margin-top: 1vw !important;
    }

    #section_3 .divs{
        width: 90%;
        margin-top: 3vw;
        margin-left: auto;
        margin-right: auto;
    }

    .section_4_lines{
        width: 25%;
        height: 0.25vw;
        background-color: #04488e;
    }

    #accreditations_title{
        width: 50%;
    }

    .accreditations{
        margin-top: 5vw;
        width: 100%;
        display: initial !important;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .accreditations .leftDivs{
        width: 20vw;
        height: 20vw;
        overflow: hidden;
        position: relative;
        margin-left: auto;
        margin-right: auto;
        margin-top: 5vw;
    }

    .accreditationsImages{
        height: 100%;
        width: auto;
    }

    .accreditations .rightDivs{
        width: 100%;
        padding: 1vw;
        margin-top: 3vw;
        text-align: center;
    }

    .certificates{
        width: 30%;
        height: auto;
        margin-top: 1vw;
        cursor: pointer;
        position: relative;
        top: 0;
        transition: 0.5s;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .certificates:hover{
        top: -1vw;
    }

    .sec_6_divs{
        width: 100%;
        position: relative;
        margin-top: 7vw;
    }

    .sec_6_images{
        width: 5vw;
        height: 5vw;
    }

    #sec_6_innerHolder{
        justify-content: space-between;
        width: 100%;
    }


    #alertDescription{
        max-height: 50vh;
        overflow-y: auto;
    }





}