@charset "utf-8";
/* CSS Document */
.page-wrapper {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}
body {
    font-family: "Montserrat", serif;
    color: white;
    margin: 0px;
    background-color: darkslategray;
    font-weight: 300;
}
h2, h3 {
    color: #6da6d0;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 20px
}
h1 {
    color: white;
    font-weight: 350;
    text-transform: uppercase;
    letter-spacing: 2px;
}
h5 {
    color: #6da6d0;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 30px
}
p {
    font-family: "Montserrat", serif;
    font-weight: 100;
    letter-spacing: 1px;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.hero {
    width: 100%;
    /*height: 100vh;*/
    position: relative;
}
nav {
    display: flex;
    justify-content: space-between;
    padding: 0px 15px;
    background-color: darkslategray;
    align-items: flex-start;
}
nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    height: 70px;
}
nav a {
    height: 100%;
    padding: 10px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
    font-size: 17px;
    border-radius: 5px;
    transition: 0.2s;
}
nav a:hover {
    color: black;
    background-color: white;
}
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.527);
    box-shadow: -10px 0 10px rgba(255, 255, 255, 0.2);
    display: none;
    flex-direction: column;
    align-items: flex-start;
}
.sidebar li {
    width: 100%;
}
.menu-img {
    margin: 0px 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.x-img {
    margin: 15px 25px;
    cursor: pointer;
}
.menu-img {
    display: none;
}
@media (max-width: 800px) {
    .hide-logo {
        display: none;
    }
    .menu-img {
        display: block;
    }
    .hero-text p {
        font-size: 20px;
    }
}
@media (max-width: 400px) {
    .sidebar {
        width: 100%;
    }
    nav a {
        color: black;
    }
    .responsive {
        width: 40%;
        height: auto;
    }
}