@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --ff: "Montserrat",sans-serif;
}

*{
    margin:0;
    padding:0;
}

li.logo img{
    height: 100%;
    width: 100%;
}

li.logo a{
    width: 300px;
}

nav{
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

nav li{
    height: 70px;
}

nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #aaa;
    font-family: var(--ff);
    font-weight: 600;
}

nav a:hover{
    color: rgb(110, 108, 108);
}

nav li.logo:last-child{
    margin-left: auto;
}

.sideBar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    z-index: 999;
    background-color: rgba(135, 194, 253, 0.385);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sideBar li{
    width: 100%;
}

.sideBar a{
    width: 100%;
}

.sideBar a:hover{
    color: white;
}

.sideBar li:hover{
    background-color: rgba(33, 127, 222, 0.385);
}

li.close:hover{
    background-color: transparent;
    
}

li.close a:hover{
    cursor: default;
}

li.close svg:hover{
    cursor: pointer;
    fill: white;
}

li.menu svg:hover{
    cursor: pointer;
    fill: rgb(76, 76, 76);
}

.menu{
    display: none;
}

h1{
    color: #FFFFFF;
    font-weight: lighter;
    font-size: 120px;
    line-height: normal;
    font-family: var(--ff);
    letter-spacing: 20px;
    margin-top: 80px;
    padding-bottom: 140px;
    text-align: center;
}


a#button{
    text-decoration: none;
    font-weight: normal;
    font-size: 30px;
    background: none;
    color: #FFFFFF;
    font-family: var(--ff);
    border: solid 3px #0F93D1;
    padding: 15px 15px;
    border-radius: 20px;
    text-align: center;
    position: relative;

}

span{
    background: #0F93D1;
    height: 100%;
    width: 0;
    border-radius:20px ;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.3s;
}

a#button:hover span{
    width: 100%;
}

a#button:hover{
    border: none;
}

div.mesh{
    width:100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url("./images/front.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nav ul li.hideMobile a{
    position: relative;
}

.nav ul li.hideMobile a::after{
    content: '';
    height: 3px;
    width:0%;
    background: #0F93D1;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.5s;

}

.nav ul li.hideMobile a:hover::after{
    width: 100%;
}


.welcome{
    width:100%;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    text-align: center;
}

footer{
    background-color: #292727;
    padding-top: 25px;
}

footer div{
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.footerpages{
    text-decoration: none;
    color: #FFFFFF;
    font-family: var(--ff);
    font-size: 20px;
}

div.links ul li{
    list-style: none;
    display: inline-block;
    margin: 0px 30px;
    
}

div.links ul{
    text-align: center;
}

h2{
    color: #FFFFFF;
    font-family: var(--ff);
    font-weight: 500;
}

.links ul li a:hover{
    color: #aaa;
}

.socials li{
    list-style: none;
    display: inline-block;
    margin: 25px 43px;
}

i{
    color: #FFFFFF;
    font-size: 50px;
}

div.socials li a i{
    text-align: center;
}
div.socials li a i:hover{
    color: #aaa;
}
div.bottom{
    background-color: #3c3b3b;
    margin-top: 20px;
}

.bottom p{
    color: #FFFFFF;
}

@media (max-width: 1180px) {
    .hideMobile{
        display: none;
    }
    
    .menu{
        display: block;
    }
}
  

@media (max-width:820px) {

    li.logo a{
        width: 220px;
    }

    .nav ul li a:hover::after{
        width: 0;
    }

    *{
        padding: 0;
        margin: 0;
    }

    h1{
        color: #FFFFFF;
        font-weight: lighter;
        font-size: 35px;
        font-family: var(--ff);
        letter-spacing: 10px;
        margin-top: 80px;
        padding-bottom: 140px;
        text-align: center;
    }
    
    
    a#button{
        text-decoration: none;
        font-weight: normal;
        font-size: 20px;
        background: none;
        color: #FFFFFF;
        font-family: var(--ff);
        border: solid 3px #0F93D1;
        padding: 15px 15px;
        border-radius: 20px;
        text-align: center;
    
    }
    
    div.mesh{
        max-width: 100%;
        height: 100vh;
        background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url("./images/front.JPG");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .welcome{
        max-width: 100%;
        text-align: center;
        top: 40%;
    }
    
    footer{
        background-color: #292727;
        padding-top: 25px;
    }
    
    footer div{
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: start;
    }
    
    .footerpages{
        text-decoration: none;
        color: #FFFFFF;
        font-family: var(--ff);
        font-size: 20px;
    }
    
    div.links ul li{
        list-style: none;
        display: flex;
        flex-direction: column;
        margin: 10px 30px;
        
    }
    
    div.links ul{
        text-align: start;
    }
    
    h2{
        color: #FFFFFF;
        font-family: var(--ff);
        font-weight: 700;
        margin: 0 30px;
        font-size: 20px;
    }
    
    .links ul li a:hover{
        color: #aaa;
    }
    
    .socials li{
        list-style: none;
        display: inline-block;
        margin: 25px 20px;
    }
    
    i{
        color: #FFFFFF;
        font-size: 20px;
    }
    
    div.socials li a i{
        text-align: center;
    }
    div.socials li a i:hover{
        color: #aaa;
    }
    div.bottom{
        background-color: #3c3b3b;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .bottom p{
        color: #FFFFFF;
        font-size: 15px;

    }
}

@media (max-width:450px) {

    .sideBar{
        width: 100%;
    }

}

@media (max-width:1180px) {

    .hideMobile{
        display: none;
    }
    
    .menu{
        display: block;
    }

    .nav ul li a:hover::after{
        width: 0;
    }
    
}

@media (max-width:1024px) {

    footer{
        background-color: #292727;
        padding-top: 25px;
    }
    
    footer div{
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: start;
    }
    
    .footerpages{
        text-decoration: none;
        color: #FFFFFF;
        font-family: var(--ff);
        font-size: 20px;
    }
    
    div.links ul li{
        list-style: none;
        display: flex;
        flex-direction: column;
        margin: 10px 30px;
        
    }
    
    div.links ul{
        text-align: start;
    }
    
    h2{
        color: #FFFFFF;
        font-family: var(--ff);
        font-weight: 700;
        margin: 0 30px;
        font-size: 20px;
    }
    
    .links ul li a:hover{
        color: #aaa;
    }
    
    .socials li{
        list-style: none;
        display: inline-block;
        margin: 25px 20px;
    }
    
    i{
        color: #FFFFFF;
        font-size: 20px;
    }
    
    div.socials li a i{
        text-align: center;
    }
    div.socials li a i:hover{
        color: #aaa;
    }
    div.bottom{
        background-color: #3c3b3b;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .bottom p{
        color: #FFFFFF;
        font-size: 15px;

    }
    
}

@media (min-width:1025px) {

    nav a{
        height: 100%;
        padding: 0 20px;
        text-decoration: none;
        display: flex;
        align-items: center;
        color: #aaa;
        font-family: var(--ff);
        font-weight: 600;
    }

    .nav ul li.hideMobile a:hover::after{
        width: 0;
    }
    
}