@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


*,
*::before,
*::after {
    box-sizing: border-box;
}

/*:root {
    font-size: clamp(1rem, 0.5svw + 0.6em, 1.125rem);
}*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    color: #636363;
    max-width: 1200px;
    padding: 0 0.5em;
    margin: 0 auto;
}

/* BEGIN HEADER/NAVBAR-STYLES */
.navbar {
    position: sticky;
    top: 0;
    max-width: 1200px;
    height: 80px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    box-shadow: 0 1px 1px rgb(0 0 0 / 0.1); 
}

@media (min-width: 800px) {
    .navbar {
        padding: 2rem  0.5rem;
    }
}

/*Hamburger Styles*/

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    /* -webkit-transistion: all 0.3s ease-in-out; */
    transition: all 0.3s ease-in-out;
    background-color: #793e9c;
}

/* Basic Styles for other Elements */

.nav-menu {
    display: flex;
    align-items: flex-start;
    padding: 0 0 0 2em;
    margin: 0;
    }

.nav-item {
    font-size: 0.9em;
    text-transform: uppercase;
    margin-left: 2.8rem;
}

.nav-link {
    color: #150F18;
}

.nav-link:hover {
    color: #793e9c;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #793e9c;
    font-size: 0.8em;
}

@media only screen and (max-width: 880px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 4.6rem;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 0 0 rgba(0, 5, 0, 0.5);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
    }
    
    .hamburger {
        display: block;
        cursor: pointer;
    }
    
    /*Inside Media Query*/
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* >>END HEADER/NAV<< */





info > h1 {
    font-size: 2.6rem;
    text-align: center;
}


h2 {
    font-size: 2rem;
    text-align: left;
    scroll-margin-top: 80px;
}

.testimonial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0.5em
}

@media (max-width: 800px) {
    .testimonial {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 801px) {
    .testimonial {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial h3 {
    font-size: 1.50rem;
    color: #793e9c;
}

video {
    display:block;
    border-radius: 6px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}


.one {
    text-align: left;
    padding: 1em 1em;
}

.onea {
    text-align: center;
    padding: 1em 1em;
}

.one, .two, .three, .four {
    border: thin solid #793E9C;
    border-radius: 6px;
}

.onea {
    margin-top: 40px;
    align-content: center;
    border-bottom: thin solid #793E9C;
    border-top: thin solid #793E9C;
}


/* >>>> End GRID 1 - 2 <<<< */


/* img {
    display: block;
    border-radius: 0.5em;
    margin: 0 auto;
} */

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    padding: 1em;
    background-color: #7A7C7E;
}

.footer-nav > li > a {
    display: block;
    list-style: none;
    color: #fff;
}

.footer-nav a:hover {
    color: #793e9c;
}


.copyright {
    padding: 0 0 0.5em 1em;
}


