*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    scroll-behavior: smooth;
}

#container{
    width: 100%;
    height: auto;
    background-image: url(media/background.svg);
    background-size: cover;
    padding: 0 8% 2% 8%;
}

nav{
    display: flex;
    justify-content: space-between;
    padding: 5% 0;
    width: 100%;
}

.logo{
    margin-right: 30%;
}

#sideNav{
    display: flex;
    width: 80%;
    justify-content: space-between;
}

nav ul li{
    display: inline-block;
    list-style-type: none;
    margin-left: 20px;
    padding-top: 10px;
}

nav ul li a{
    color: #6a994e;
    font-size: 17px;
    text-decoration: none;
}

nav ul li a::after{
    content: '';
    width: 0;
    height: 2px;
    display: block;
    margin: auto;
    background: #39ff14;
    transition: 0.3s;
}

nav ul li a:hover::after{
    width: 100%;
}

.icon{
    display: block;
}

nav #collapse img{
    display: none;
    position: fixed;
    cursor: pointer;
    top: 15px;
    right: 20px;
    z-index: 3;
    width: 25px;
}

.icon i{
    background: #6a994e;
    padding: 6px 12px;
    border-radius: 7px;
    margin: 6px 3px;
    cursor: pointer;
    transition: 0.3s;
    color: #000;
}

.icon i:hover{
    transform: translateY(-5px);
    background: #39ff14;
}

.icon a{
    text-decoration: none;
}

.col{
    display: flex;
    justify-content: space-between;
    color: #6a994e;
    margin: 90px 0 70px 0;
}

.col-1 h1{
    font-size: 80px;
    font-family: 'Rubik Moonrocks', cursive;
    margin: 7 px 0 0 -5px ;
}

.col p{
    font-size: 20px;
}

.col-1 h1 + p{
    line-height: 30px;
    margin-bottom: 20px;
}

.slang{
    background: #22333b;
    color: #6a994e;
    width: max-content;
    padding: 8px 35px;
    text-align: center;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.slang:hover{
    color: #39ff14;
}

.slang + p{
    margin: 10px 0 0 15px;
}

.fa-solid{
    color: #39ff14;
    margin: 4px;
}

.col-2 img{
    width: 300px;
    border: solid #a7c957 2px;
    border-radius: 10px;
    margin-top: 20px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    color: #b0fa03;
    background-color: #023f02;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    padding: 5px 8px;
    font-size: 25px;
}

#myBtn:hover {
    color: rgb(46, 45, 45);
    background-color: #a7c957;
}

#info{
    width: 100%;
    height: auto;
    background: #6a994e;
    padding: 4% 8% 1% 8%;
    text-align: center;
}

#info h2{
    background: #22333b;
    width: max-content;
    margin: auto;
    padding: 4px 25px;
    border-radius: 7px;
    font-size: 20px;
    border: solid 1px #b0fa03;
    color: #fff;
    font-weight: lighter;
}

#info p{
    margin: 30px 0;
    color: #fff;
    font-weight: lighter;
}

#info p + p{
    color: #b0fa03;
    font-size: 20px;
}

#main{
    background: #101415;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 2% 10%;
}

#main h2{
    color: #6a994e;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.founder{
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
}

.founder-1{
    flex-basis: 20%;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
}

.founder-1 img{
    width: 100%;
    border-radius: 50%;
}

.overlay{
    width: 100%;
    height: 97%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5),#39ff14);
    opacity: 0;
    transition: 1s;
    cursor: pointer;
}

.founder-1:hover .overlay{
    opacity: 1;
}

.founder-name {
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 1s;
    font-size: 19px;
    cursor: pointer;
}

.founder-name a{
    text-decoration: none;
    color: #000;
}

.founder-1:hover .founder-name{
    bottom: 40%;
    opacity: 1;
}

.buzz-list{
    color: #6a994e;
}

.buzz-list p{
    margin-bottom: 2px;
    animation: color-change 1.5s infinite;
}

@keyframes color-change {
    0% {
        color: #6a994e;
    }

    50% {
        color: #39ff14;
        font-size: 20px;
    }

    100% {
        color: r#6a994eed;
    }
}
.footer{
    background:#6a994e;
    color: #fff;
    width: 100%;
    height: auto;
    padding: 4% 10%;
    display: flex;
    justify-content: space-between;
}

.footer-1 img{
    width: 100px;
}

.footer-2{
    margin-top: 35px;
}

.footer-2 i{
    text-align: center;
    font-size: 20px;
    width: 25px;
    color: #fff;
    transition: 0.2s;
}

.footer-2 a{
    text-decoration: none;
}
.footer-2 i:hover{
    transform: translateY(7px);
}

.footer-3{
    margin-top: 50px;
}

@media screen and (max-width: 1100px){
    .founder-name{
        font-size: 18px;
    }
}

@media screen and (max-width: 850px) {
    .logo {
        margin-right: 15%;
    }
}
@media screen and (max-width: 760px) {
    #container {
        padding: 0;
    }

    nav {
        padding: 3% 7%;
    }

    nav img{
        width: 90px;
    }

    #sideNav{
        position: fixed;
        display: block;
        width: 250px;
        height: 100vh;
        background: #6a994ec5;
        top: 0;
        right: -250px;
        z-index: 2;
        text-align: center;
        transition: all .5s;
    }

    #sideNav ul{
        margin-top: 50px;
    }

    #sideNav li{
        display: block;
        line-height: 50px;
    }

    nav ul li a{
        color: #fff;
        font-size: 20px;
        text-decoration: none;
    }

    .icon i{
        font-size: 25px;
        color: #1b4332;
        background: #fff;
    }

    nav ul li a:hover{
        color: #012401;
        font-weight: 1000;
    }

    nav ul li a:hover::after{
        width: 0;
    }

    nav #collapse img{
        display: block;
    }
    

    .icon i {
        padding: 4px 10px;
        border-radius: 7px;
        margin: 9px 2px;
    }

    .col {
        display: block;
        text-align: center;
        margin: 30px 0 0 0;
    }
    
    .col-1 h1 {
        font-size: 50px;
    }
    
    .col-1 h1+p {
        line-height: 25px;
    }
    
    .slang {
        margin:15px auto;
    }
    
    .slang + p{
        margin-left: 0;
    }
    .col-2 img {
        margin: 60px 0;
    }
    
    #info p {
        margin: 10px 0;
        font-size: 13px;
    }
    
    #main{
        height: auto;
    }
    #main h2 {
        margin: 20px 0;
    }
    
    .founder {
        display: block;
        width: 45%;
    }

    .founder-1 {
        flex-basis: 100%;
        margin-bottom: 25px;
    }

    .overlay{
        height: 98%;
    }

    .footer {
        height: 55vh;
        padding: 5%;
        display: block;
        text-align: center;
    }

    .footer-1 img {
        width: 50px;
        margin-bottom: 10px;
    }

    .footer-2 {
        margin-top: 25px;
    }

    .footer-2 i {
        text-align: center;
        font-size: 20px;
        width: 25px;
    }

    .footer-3 {
        margin-top: 15px;
    }
}

@media screen and (max-width: 900px) {
    #main{
        padding: 2% 7%;
    }
     
    .founder-name{
        font-size: 15px;
    }

    .footer{
        padding: 3%;
    }
}

@media screen and (max-width: 280px) {
    .col-2 img{
        width: 200px;
    }
}

@media screen and (min-height: 1000px) {
    #container{
        height: 600px;
    }

    #info{
        height: 350px;
    }

    #main{
        height: 555px;
    }

    #main h1{
        padding-bottom: 20px;
    }

    .footer{
        height: 689px;
    }
    }

@media screen and (min-height: 1300px) {
    .footer{
        height: 700px;
    }
}