* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    
}



.header {
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 1rem;
    color: black;
}


.learnMore {
    width: 50%;
    height: 35px;
    border-radius: 20px;
    background-color: rgb(107, 19, 107);
    border-width: 1px;
    transition: 0.4s;
    color: white;
}




.footer-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    
}

.wave {
    display: block;
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
}

.footer {
    color: whitesmoke;
    background-color: rgb(0, 0, 103);
    padding: 2%;
    flex-direction: row;
    display: inline-flex;
    height: auto;
    width: 100%;
    position: relative;
}

.footer-content {
    padding-left: 2%;
}

.footer h4, .footer h5, .footer a {
    margin-bottom: 10px;
}









nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
}

nav .logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

nav .logo img {
    width: 70px;
    margin-right: 10px;
}

nav ul {
    display: flex;
}

nav ul li {
    list-style: none;
    margin: 10px 20px;
}

nav ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 500;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: rgb(0, 0, 0);
    margin: 4px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 5px;
    position: relative;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: -5px;
    position: relative;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 107);
    overflow-x: hidden;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.overlay-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.overlay-content a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: white;
    display: block;
    transition: 0.3s;
}

.overlay-content a:hover, .overlay-content a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

.main-content {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    padding: 0 9%;
}

.content {
    color: white;
    max-width: 500px;
    opacity: 0;
    transform: scale(0.5);
    animation: pop-in 0.5s forwards;
}



@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .main-content {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 20px;
    }

    .content {
        margin-right: 20px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .btn {
        padding: 8px 30px;
    }

    .feature-img {
        width: 30%;
        height: auto;
        position: static;
        margin-left: 10px;
    }
    .second-img {
        width: 50%;

    }
}

@media (min-width: 769px) {
    .feature-img {
        width: 300px;
        position: absolute;
        bottom: 40px;
        right: 5%;
    }
    .second-img {
        width: 40%;

        
    }
}
div {
    border-width: 0;
}


.headingTeam {
    background: linear-gradient(rgb(184, 0, 156), rgba(123, 219, 248, 0.769));
    width: 95%;
    height: 140px;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    font-size: 120%;
    color: whitesmoke;
    
}
