@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --ff: "Montserrat",sans-serif;
}

*{
    padding: 0;
    margin: 0;
    color: #FFFFFF;
    font-family: var(--ff);
}

li.logo img{
    height: 100%;
    width: 100%;
}

li.logo a{
    width: 300px;
}

nav{
    background-color: black;
    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: white;
    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: gray;
}

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;
}

div.background{
    width:100%;
    height: 1200px;
    background: linear-gradient(90deg, rgba(13, 62, 132, 0.5),  rgba(106, 110, 115, 0.26)),url("./images/Background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

div.container{
    width: 100%;
    height: 1200px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
}

div.box{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

h1{
    width:100%;
    position: absolute;
    top:17%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 85px;
    z-index: 1;
    margin-top: 15px ;

}

h1.header{
    font-weight: 300;
}

span.header2{
    font-weight: bold;
}

div.box1{
    width: 50%;
    margin-top: 120px;
    background-color: none;
}

div.box2{
    width: 50%;
    margin-top: 250px;
    background-color: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

img{
    height: 700px;
    width: 520px;
    box-shadow: 0 8px 32px 0  rgba(0,0,0,0.4);
    align-content: center;
}

h2.name {
    text-align: center;
    padding: 15px;
    margin-top: 65px;
    border-top: solid 3px white;
    border-bottom: solid 3px white;
    
}

div.smallcontainer{
    display: flex;
    justify-content: center;

}

div p.description{
    padding: 40px 50px;
    font-size: 23px;
    line-height: 50px;
}


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:450px) {

    .sideBar{
        width: 100%;
    }

}

@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 (max-width:540px) {
    li.logo a{
        width: 220px;
    }

    div.background{
        width:100%;
        height: 1400px;
        background: linear-gradient(90deg, rgba(13, 62, 132, 0.5),  rgba(106, 110, 115, 0.26)),url("./images/Background.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    div.container{
        width: 100%;
        height: 1400px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    div.box{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    
    h1{
        width:100%;
        position: absolute;
        top:17%;
        transform: translateY(-50%);
        text-align: center;
        font-size: 30px;
        z-index: 1;
        margin-top: 15px ;
    
    }
    
    h1.header{
        font-weight: 300;
    }
    
    span.header2{
        font-weight: bold;
    }
    
    div.box1{
        width: 100%;
        margin-top: 60px;
        background-color: none;
    }
    
    div.box2{
        width: 100%;
        margin-top: 40px;
        background-color: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    img{
        height: 350px;
        width: 250px;
        box-shadow: 0 8px 32px 0  rgba(0,0,0,0.4);
        align-content: center;
    }
    
    h2.name {
        text-align: center;
        padding: 15px;
        margin-top: 65px;
        border-top: solid 3px white;
        border-bottom: solid 3px white;
        
    }
    
    div.smallcontainer{
        display: flex;
        justify-content: center;
    
    }
    
    div p.description{
        padding: 40px 30px;
        font-size: 16px;
        line-height: 30px;
    }
}

@media (min-width:768px) and (max-width:1024px) {

    div.background{
        width:100%;
        height: 1900px;
        background: linear-gradient(90deg, rgba(13, 62, 132, 0.5),  rgba(106, 110, 115, 0.26)),url("./images/Background.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    div.container{
        width: 100%;
        height: 1900px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    div.box{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    
    h1{
        width:100%;
        position: absolute;
        top:19%;
        transform: translateY(-50%);
        text-align: center;
        font-size: 65px;
        z-index: 1;
        margin-top: 15px ;
    
    }
    
    h1.header{
        font-weight: 300;
    }
    
    span.header2{
        font-weight: bold;
    }
    
    div.box1{
        width: 100%;
        margin-top: 170px;
        background-color: none;
    }
    
    div.box2{
        width: 100%;
        margin-top: 50px;
        background-color: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    img{
        height: 700px;
        width: 520px;
        box-shadow: 0 8px 32px 0  rgba(0,0,0,0.4);
        align-content: center;
    }
    
    h2.name {
        text-align: center;
        padding: 15px;
        margin-top: 65px;
        border-top: solid 3px white;
        border-bottom: solid 3px white;
        
    }
    
    div.smallcontainer{
        display: flex;
        justify-content: center;
    
    }
    
    div p.description{
        padding: 40px 50px;
        font-size: 23px;
        line-height: 50px;
    }
    
}

@media (min-width:1180px) and (max-width:1180px) {

    div.background{
        width:100%;
        height: 1300px;
        background: linear-gradient(90deg, rgba(13, 62, 132, 0.5),  rgba(106, 110, 115, 0.26)),url("./images/Background.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    div.container{
        width: 100%;
        height: 1300px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    div.box{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
    
    h1{
        width:100%;
        position: absolute;
        top:17%;
        transform: translateY(-50%);
        text-align: center;
        font-size: 85px;
        z-index: 1;
        margin-top: 15px ;
    
    }
    
    h1.header{
        font-weight: 300;
    }
    
    span.header2{
        font-weight: bold;
    }
    
    div.box1{
        width: 50%;
        margin-top: 120px;
        background-color: none;
    }
    
    div.box2{
        width: 50%;
        margin-top: 250px;
        background-color: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    img{
        height: 700px;
        width: 520px;
        box-shadow: 0 8px 32px 0  rgba(0,0,0,0.4);
        align-content: center;
    }
    
    h2.name {
        text-align: center;
        padding: 15px;
        margin-top: 65px;
        border-top: solid 3px white;
        border-bottom: solid 3px white;
        
    }
    
    div.smallcontainer{
        display: flex;
        justify-content: center;
    
    }
    
    div p.description{
        padding: 40px 50px;
        font-size: 23px;
        line-height: 50px;
    }

    
}

@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;
    }
    
}