*{
    padding: 0;
    margin: 0;
}


.image img{
    width: 100%;
    height: 400px;
}

.custom-nav{
    display: flex;
    justify-content: space-around;
    text-align: center;
    align-items: center;
    margin: 2em;
}

.nav-1{
    display: flex;
    flex-direction: row;
    
}

.nav-item{
    margin: 1em;
    margin-top: 0;
    
    font-size: 1.3em;
    width: auto;
    border-bottom: 5px transparent solid;
    cursor: pointer;

}

.current{
   color: blue;
}

.nav-item:hover{
  color: lightgreen;
  border-bottom: 5px lightgreen solid;
}

.footer{
    height:200px;
    background-color: lightgreen;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}
.footer2{
    margin: 1em;

}

.footer2 i{
    font-size: 20px;
    margin: 10px;
}
.title{
    display: flex;
    font-size: 1.6em;
    margin-top: 1em;
    margin-bottom: 1em;
text-align: center;
align-items: center;
justify-content: center;
}

.top-logo img{
    width:300px;
}

.top-logo{
    display: flex;
    justify-content: center;
    
}

.content{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin: 5em 4em 5em 4em;
}

.center-content{
    width:600px;
}

h1{
    margin:1em;
}
.conatiner-item{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 5px;
    border: 3px black solid;
    margin: 40px;
}
.conatiner-item img{
width: 250px;
height: 400px;
position: relative;
filter: brightness(70%);
}

.conatiner-item button{
    position: absolute;
  margin-top: 300px;
  margin-left: 80px;
  height: 30px;
  width: 100px;
  border-radius: 30px;
  background-color: lightgreen;
  border: 0;
  filter: brightness(70%);
}

.conatiner{
    display: flex;
    justify-content: center;
    align-items: center; 
}

.conatiner-item:hover img{
    filter: brightness(100%);
    transition-delay: 100ms;
    transition-timing-function: linear;
}

.conatiner-item:hover{
    transform: translate(-15px, -15px);
    transition-delay: 100ms;
    transition-timing-function: linear;
    box-shadow: 5px 5px;
}

.conatiner-item:hover button{
    filter: brightness(100%);
    transition-delay: 100ms;
    border-radius: 0;
    background-color: lawngreen;
   
}
.middle-container{
    display: flex;
    flex-direction: row;
}

.secretnav img{
    width: 40px;

}

.secnav-items img{
    width: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255,0.2);
    border-radius: 5px;

}
.secretnav{
    display: none;
}

.secnav-items{
    background-color: rgba(0, 0, 0, 0.9);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	display: none;
	align-items: center;
    justify-content: center;
    color: white;
    font-size: 2em;
    text-align: center;
    
	
}
.secnav-items1{
width:8em;
}

.secitem{
margin: 0.5em;
}

.about-us{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
    background-color: rgb(234, 228, 228);
}

.about-us1{
    width: 90%;
    display: flex;
    text-align: left;
  
    background-color: white;
    margin: 1em;
}

.about-us1 .about1-inside{
    margin-top: 3em;
}

.about-us1 .about1-inside .h1{
    margin-bottom: 1em;
}

.about-us1 .about1-inside p{
    margin-right: 2em;
    margin-bottom: 1em;
}
.about-us1 img{
    height: 300px;
    width: 400px;
    margin: 1em;

}

.about-us1 .h1{
    font-size: 30px;
    font-weight: bold;
}

.icons{
    display: flex;
}
.icons i{
    margin: 10px;
    font-size: 20px;
}

.about-us2{
    width: 90%;
    display: flex;
    flex-direction: row;
    text-align: left;
    background-color: white;
    margin: 1em;
}

.about2-inside{
    margin: 3em;
}
.about2-inside .about2-title{
    margin-bottom: 1em;
    font-size: 30px;
}

.about2-inside p{
    text-align: justify;
}

@media only screen and (max-width: 768px) {

    


}


@media only screen and (max-width: 600px) {
    .about-us1 img{
        display: none;
    }

    .center-content p{
        text-align: justify;
    }

    .about-us1 .about1-inside{
        margin-left: 2em;
        text-align: justify;
        margin-bottom: 1em;
    }

    .about-us2{
        flex-direction: column;
    }
    .custom-nav{
        display: none;
    }
    .secretnav{
        display: block;
    }
    .secretnav img{
       margin: 10px;
    }
    .middle-container{
        display: flex;
        flex-direction: column;
    }
    
    .center-content{
        width:300px;
    }

    .conatiner-item img{
        filter: brightness(100%);
        transition-delay: 100ms;
        transition-timing-function: linear;
    }
    
    .conatiner-item{
        transform: translate(-15px, -15px);
        transition-delay: 100ms;
        transition-timing-function: linear;
        box-shadow: 5px 5px;
    }
    
    .conatiner-item button{
        filter: brightness(100%);
        transition-delay: 100ms;
        border-radius: 0;
        background-color: lawngreen;
       
    }



}