*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    color: #2F3542;
    text-decoration: none;
    transition: 0.5s;
}
::-webkit-scrollbar{
    width:20px;
    display: none;
}
body{
    max-width: 10000px;
}

nav{
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 2;
}
.logo{
    display: flex;
}
.logo h1{
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    font-size: 32px;
    line-height: 48px;
}
span{
    color: #2ED573;
}
.logo h2{
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    align-items: center;
    padding: 10px 30px;
}

/*menu list*/
.menu-icon{
    width: 40px;
    display: none;
}
.menu ul{
    display: flex;
    margin-top: -10px;
    transition: 2s;
}
.menu ul li{
    list-style: none;
}
.menu ul li a{
    text-decoration: none;
    padding: 0 30px;
    transition: 0.5s;
}
.menu ul li a:hover{
    color: #2ED573;
}
#active{
    color: #2ED573;
}



.image-container{
    width: 67%;
    height: 98%;
    display: flex;
    padding: 50px;
    margin: 0 auto;
}
.small-img-row{
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}
.col{
    align-items: center;
    justify-content: center;
    flex-basis: 100%;
    margin: 0 20px;
}
.col img{
    width: 100%;
}
.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}
.small-img-col img{
    width: 100%;
    height: 100%;
}
.col h1{
    font-size: 30px;
    padding-top: 60px;  
}
.col h1,p,ul{
    padding-left: 30px;
    
}
.col-2{
    display: none;
}

/**footer**/

.footer{
    background-color: rgb(48, 48, 48);
    display: flex;
    flex-direction: row;
    padding: 50px;
}
.f-col{
    width: 50%;
    margin:0 5%;
}
h5{
    font-size: 20px;
    color: white;
    margin-bottom: 30px;
    position: relative;

}
h5::before{
    content:'';
    width: 70px;
    height: 3px;
    background-color: #2ED573;
    position: absolute;
    left: 0;
    bottom: -10px;
}
.f-col ul li{
    font-size: 14px;
    list-style: none;
    color: #bbbbbb;
    font-weight: 300;
    padding: 10px 0;

}
.f-col ul li:hover{
    color: #2ED573  ;
}
.fa-solid{
    color: #2ED573;
    padding-right: 13px;
}
.social a{
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 10px 10px 0;
    background-color: #bbbbbb;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
}
.social a:hover{
    background-color: #2ED573;
}
.copy{
    background-color: #252525;
    color: #ffffff;
    padding: 8px 0;
    align-items: center;
    display: flex;
    justify-content: center;
}
.copy ul li{
    list-style: none;
    color: #ababab;
}



@media  (max-width:1007px){
    body{
        overflow-x: hidden;
        width: 100%;
        height: 100%;
    }
    nav{
        position: sticky;
        top: 0;
        background-color: #ffffff;
        padding: 10px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
        z-index: 2;
    }

    .logo h1{
        font-size: 40px;
        font-style: normal;
        font-weight: 800;
        font-size: 22px;
        line-height: 48px;
    }
    span{
        color: #2ED573;
    }
    .logo h2{
        font-weight: 600;
        font-size: 15px;
        line-height: 30px;
        align-items: center;
        padding: 10px 10px;
    }
    .menu ul{
        width:100%;
        background:linear-gradient(#2F3542,#2F3542);
        position:absolute;
        top:69px;
        right:0;
        z-index:2;
    }
    .menu ul{
        display: block;
    }
    .menu ul li{
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .menu ul li a{
        color: white;

    }
    .menu-icon{
        width: 40px;
        display: flex;
    }
    #menulist{
        overflow:hidden;
        transition:0.5s;
    }


    .image-container{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 10px;
    }
    .col h1,p,ul{
        padding-left: 0px;
        
    }

    .footer{
        width: 100%;
        height: 100%;
        background-color: rgb(48, 48, 48);
        display: flex;
        flex-direction: column;
        padding: 10px;
    }
    .f-col{
        width: 100%;
        margin:0;
        padding-left: 20px;
        
    }
    .copy ul li{
        list-style: none;
        color: #ababab;
        font-size: 5px;
    }
    .f-col ul li {
        font-size: 10px;
    }
}