* {
    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;
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 18px;
    padding-right: 10px;
}

nav .logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: black;
}

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: black;
    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: #000000;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: rgb(0, 0, 0);
}


.slide-left {
    transform: translatex(-90px);
    transition: 0.5s
}

.slide-left.show {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    transform: translatex(90px);
    transition: 0.5s
}

.slide-right.show {
    opacity: 1;
    transform: translateX(0);
}






.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;
}

div {
    margin-top: 15px;
}
.image-section {
    flex-direction: row;
    display: flex;
    justify-content: center;
    
    border-radius: 100%;
}


p {
    margin-top: 15px;
    
}
.img1 {
    width: 60%;
    border-radius: 100%;
}






#teamTitle {
    opacity: 0;
    animation: pop-in 0.5s forwards;
    transform: scale(0);
    animation-delay: 0.5s;
    background: linear-gradient(#8800ff, #540699);
    -webkit-background-clip: text;
    color: transparent;
}



@keyframes pop-in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}








@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }
    .image-section {
        flex-direction: column;
    }
    #teamTitle {
        margin-bottom: 20%;
    }
}

html {
    overflow-x: hidden;
}

.container {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    html {
        overflow-x: hidden;
    }

}









.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;
    
    opacity: 1;
    animation: up 0.5s forwards;
    
}



@keyframes up {
    0% {
        opacity: 0;
        transform: translateY(90px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
