@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');


:root {
    font-size: 16px;
    font-family: "Orbitron", sans-serif;
    --bg--primary: #D9D4D2;
    --bg--secondary: #0D0D0D;
    --transition--speed: 600ms;
}

.logoDiv {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    top: 0;
    background-color: #040336;
    z-index: 1;
    opacity: 1;
    height: 10vh;
}

.bodyContent {
    margin-top: 4rem;
}

.logoHref {
    margin-right: 2.5%;
    align-items: center;
    justify-content: center;
    height: 90%;
    text-decoration: none;
}

.logo {
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 1.5rem;
}

body {
    color: black;
    background-color: #e1e0ec;
    margin: 0;
    padding: 0;
}

body::-webkit-scrollbar {
    width: 0.5rem;
}

body::-webkit-scrollbar-track {
    background: #D9D9D9;
}

body::-webkit-scrollbar-thumb {
    background: #9778c3;
}

#mainContent h1 {
    font-size: 4rem;
    margin-left: 5%;
}

#mainContent h3 {
    font-size: 3rem;
    margin-left: 5%;
}

#mainContent p {
    font-size: 1rem;
    margin-left: 5%;
    color: #404040;
}

#mainContent {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 91.8vw;
    display: flex;
    z-index: -1;
    flex-direction: column;
    color: #A6A6A6;
}

#mainContent {
    justify-content: center;
}

main {
    margin-left: 5rem;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.navbar {
    width: 5rem;
    height: 100%;
    position: fixed;
    background-color: #31047e;
    z-index: 2;
    top: 0;
    transition: width 250ms ease;
}

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.nav-item {
    width: 100%;
    text-align: center;
}

.nav-item:last-child {
    margin-top: auto;
}

.nav-link {
    display: flex;
    align-items: center;
    height: 5rem;
    color: var(--bg--primary);
    text-decoration: none;
    filter: grayscale(100%) opacity(0.65);
    transition: var(--transition--speed);
}

.nav-link:hover {
    filter: grayscale(0%) opacity(1);
}

.active {
    filter: grayscale(0%) opacity(1);
}

.link-text {
    display: none;
    margin-left: 1rem;
}

.nav-link img {
    min-width: 2rem;
    margin: 0 1.5rem;
}

.navbar:hover .link-text {
    display: block;
}

.navbar:hover {
    width: 16.5rem;
}

.testimonial-container {
    text-align: center;
    display: flex;
    overflow: hidden;
    min-width: 85%;
    margin: 50px auto;
    align-items: center;
    margin-top: 20rem;
    /* margin-left: 9rem; */
    max-width: 50rem;
}

.navigation{
    transform: translateY(7rem);
    filter: invert(100%);
}

.testimonial {
    text-align: center;
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.testimonial img {
    border-radius: 50%;
}

.testimonial img:hover{
    width: 10.5rem;
    transition-duration: 0.3s;
    height: auto;
}

.testimonial p {
    font-size: 16px;
    margin: 20px 0;
}

.navigation{
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.navigation button {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transform: translateY(-12rem);
}

.navigation button:focus {
    outline: none;
}

#testimonial-heading{
    text-align: center;
    transform: translateY(14rem);
    
}

.testimonial img{
    width: 10rem;
    height: auto;
}

#menuToggle {
    display: none;
}

@media (max-width: 800px) {
    

    .navbar {
        display: none;
    }

    .logoDiv {
        position: relative;
        z-index: 2;
    }

    main {
        margin-left: 0;
    }

    #menuToggle {
        display: block;
        position: absolute;
        top: 3.2%;
        left: 3.2%;
        z-index: 3;
    }
    
    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
    }
    
    #menuToggle span {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: #cdcdcd;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
    }
    
    #menu {
        position: absolute;
        width: 300px;
        margin: -100px 0 0 -50px;
        padding: 50px;
        padding-top: 125px;
        background: #ededed;
        list-style-type: none;
        transform-origin: 0% 0%;
        transform: translate(-100%, 0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        min-height: 50vh;
    }

    #menu a {
        text-decoration: none;
        color: #0D0D0D;
        transition: 600ms ease;
    }

    #menu a li img {
        fill: #0D0D0D;
    }

    #menu li {
        padding: 10px 0;
        font-size: 22px;
    }

    #menu a li {
        text-decoration: none;
        color: #0D0D0D;
        transition: 600ms ease;
        display: flex;
        align-items: center;
        font-size: 1rem;
    }

    #menu a li:hover {
        opacity: 1;
        transition: 600ms ease;
    }
    
    #menuToggle input:checked ~ ul {
        transform: none;
    }
}



