@media only screen and (min-device-width: 1024px){

    /** GLOBALS **/

    .margins{
        width: 100vw;
        padding-left: 7vw;
        padding-right: 7vw;
    }

    .margins_extra{
        width: 100vw;
        padding-left: 15vw;
        padding-right: 15vw;
    }

    a{
        cursor: pointer;
    }

    p{
        color: black !important;
    }
    

    .inputs{
        padding: 0.3vw;
    }

    .errors{
        color: red;
        display: none;
    }

    .btns_white{
        background-color: white;
    }

    .btns_green{
        background-color: #04488e;
        color: white !important;
        padding-left: 2vw !important;
        padding-right: 2vw !important;
    }


    
    .btns:hover{
        border-radius: 0;
    }

    /** HEADER **/

    #topHeader{
        width: 100vw;
        height: 0.6vw;
        background-color: #04488e;
    }

    #header{
        display: flex;
        justify-content: space-between;
        padding-top: 1vw;
        padding-bottom: 1vw;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        position: relative;
    }

    #header #logo{
        width: 12vw;
        height: auto;
        position: relative;
        top: 0.2vw;
    }

    .menuItems{
        cursor: pointer;
        position: relative;
        top: 1vw;
        width: fit-content;
        height: 100%;
    }

    .menuLines{
        width: 0;
        margin-top: 0.5vw;
        height: 0.05vw;
        background-color: #04488e;
        transition: 1s;
    }

    .menuItems:hover .menuLines{
        width: 100%;
    }

    #diplomasHolder_menu{
        height: 100%;
        z-index: 2;
        background-color: white;
    }

    #submenu{
        position: absolute;
        background-color: white;
        padding: 1vw;
        padding-top: 1.5vw;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        text-align: left !important;
        width: max-content;
        z-index: 1000;
        top: 5.8vw;
        display: none;
        transition: 0.5s;
    }

    #main_diplomasHolder_menu:hover #submenu{
        display: initial;
    }
    

    #submenu_blueLine{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 1%;
        height: 0.1vw;
        background-color: #04488e;
        transition: 1s;
    }
    
    #main_diplomasHolder_menu:hover #submenu_blueLine{
        width: 100%;
    }

    #submenu a:hover{
        text-decoration: underline;
    }

    /** FOOTER **/
    
    #footer{
        background-color: #efefef;
        padding-top: 2.5vw;
        padding-bottom: 2.5vw;
        display: flex;
        justify-content: space-between;
    }

    #footer .columns{
        width: 30%;
    }

    #footerLogo{
        width: 100%;
        height: auto;
    }

    #footer #leftDiv{
        width: 22%;
    }

    #footer #rightDiv{
        width: 65%;
        display: flex;
        justify-content: space-between;
    }

    .footerItems{
        cursor: pointer;
    }
    .footerItems:hover{
        text-decoration: underline;
        color: #04488e;
    }



    /** ALERT **/

    #alert_div{
        background-color: white;
        padding: 2vw;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        position: fixed;
      top: 50% !important;
      left: 50% !important;
      transform: translate(-50%, -50%) !important;
      opacity: 0;
      z-index: 100;
      display: none;
      transition: 1s;
    }

    #blackDiv{
        background-color: black;
        opacity: 0;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
      transition: 1s;
    }

    .btns_white_b{
        background-color: white;
        border-radius: 25px;
        border: 0.2px solid black !important;
    }




}