@media only screen and (max-device-width: 1023px){

    /** GLOBALS **/

    .margins{
        width: 100vw;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .margins_extra{
        width: 100vw;
        padding-left: 15vw;
        padding-right: 15vw;
    }

    a{
        cursor: pointer;
    }

    .w_100{
        width: 100% !important;
    }

    .text_xl_mob{
        font-size: 3.5vw !important;
    }
    

    .inputs{
        padding: 0.3vw;
    }

    .errors{
        color: red;
        display: none;
    }

    .btns_white{
        background-color: white;
    }

    .btns_green{
        background-color: #04488e;
        color: white !important;
    }
    
    .btns:hover{
        border-radius: 0;
    }

    /** HEADER **/

    #topHeader{
        width: 100vw;
        height: 2vw;
        background-color: #04488e;
    }

    #header{
        padding-top: 1vw;
        padding-bottom: 1vw;
        height: 9vh;
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    #menuItemsHolder{
        width: 100%;
        justify-content: space-between;
    }

    #header #logo{
        width: 25vw;
        height: auto;
        margin-top: 2vw;
        margin-bottom: 1vw;
    }

    .menuItems{
        cursor: pointer;
        position: relative;
        top: 0.5vw;
    }

    .menuLines{
        width: 0;
        margin-top: 0.5vw;
        height: 0.05vw;
        background-color: #04488e;
        transition: 1s;
    }

    .menuItems:hover .menuLines{
        width: 100%;
    }

    #socialIconsHolder{
        position: absolute;
        right: 5vw;
        top: 3vw;
    }

    .socialIcons{
        width: 4vw;
        height: 4vw;
    }

    #submenu{
        position: absolute;
        background-color: white;
        padding: 3vw;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        text-align: left !important;
        width: max-content;
        z-index: 1000;
        top: 9vh;
        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: 5vw;
        padding-bottom: 5vw;
        padding-left: 10vw;
        padding-right: 10vw;
        display: flex;
        justify-content: space-between;
    }

    #footer .columns{
        width: 30%;
    }

    #footerLogo{
        width: 100%;
        height: auto;
    }

    #footer #leftDiv{
        width: 40%;
    }

    #footer #rightDiv{
        width: 30%;
    }

    #footer .mt_2{
        margin-top: 6vw !important;
    }

    #footer a{
        font-size: 2.3vw !important;
    }
    #footer p{
        font-size: 2.4vw !important;
    }

    .footerItems{
        text-align: right;
        width: 100%;
    }
    .footerItems:hover{
        text-decoration: underline;
        color: #04488e;
    }


    /** ALERT **/

    #alert_div{
        background-color: white;
        padding: 2vw;
        width: 80vw;
        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.5px solid black !important;
    }


}