@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
@font-face{
	font-family: bnazanin;
	src: url("B-NAZANIN.TTF");
}
 @keyframes slideIn {
            from {
                transform: translateX(-100%);
            }
            to {
                transform: translateX(0);
            }
        }
  @keyframes slideInLeft {
            from {
                transform: translateX(-100%);
            }
            to {
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }
 @keyframes enterFromTop {
      to {
        top: 50px; /* Adjust this value as needed */
      }
    }
@media screen and (max-width:600px){
	.text {
  color: white;
  font-size: 12px;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
	.nicoologo{
	position: relative;
	top: 0;
	left: 5px;
	width: 100px;
	height: auto;
	
}
.nicoologo img{
	width: 90px;
	height: auto;
	margin: auto;
}
	.dropdown {
  position: relative;
  display: inline-block;
	float: right;
	margin-right: 10px;
	margin-top: 30px;
	
}
}
@media screen and (min-width: 601px){
	.dropdown {
  position: relative;
  display: inline-block;
	float: right;
	margin-right: 30px;
	margin-top: 30px;
	
}
	.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
	.nicoologo{
	position: relative;
	top: 0;
	left: 5px;
	width: 120px;
	height: auto;
	
}
.nicoologo img{
	width: 150px;
	height: auto;
	margin: auto;
}
}
body{
	margin: 0;
	padding: 0;
}

.container {
  position: relative;
  width: 100%;
	height: 300px;
}

.image {
  display: block;
  width: 100%;
  height:300px;
}

.overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
	background: linear-gradient(to bottom,#02173d,#2a3b57,#515f75);
  overflow: hidden;
  width: 100%;
  height:0;
  transition: .5s ease;
}
.overlay.slide-in {
    bottom: 0;
    height: 100%;
    transition: .5s ease;
}

.dropbtn {
z-index: 2000;
 
  padding: 16px;
  font-size: 16px;
  border: none;
}



/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
 border-radius: 7px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
	text-align: center;
	transform: translate(-17%)
	
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #463F3F;
  padding: 20px 18px;
  text-decoration: none;
  display: block;
}



/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */



  .img-container {
            display: flex;
            overflow: hidden;
	 
        }

.choco1{ width: 50%;
            height: 500px;
            border: 1px solid silver;
           display: flex;
            position: relative;
	animation: slideInLeft 1s ease-out;
}
.choco2{ width: 50%;
            height: 500px;
            border: 1px solid silver;
           display: flex;
            position: relative;
	animation: slideInRight 1s ease-out;
}

          .choco1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.choco2 img{
	width: 100%;
            height: 100%;
            object-fit: cover;
}
        .choco1 a {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: inherit;
            position: relative;
        }
.choco2 a{
	  display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: inherit;
            position: relative;
}


        .choco1 .text1 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color:#FFFFFF;
            text-align: center;
			  border-radius: 8px;
        font-size: 23px;
         padding: 20px;
         width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
			
        }
.choco1 span{
	cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.choco1 span:after{
	content: '\00AB';
  position: absolute;
  opacity: 0;
  top: 0;
  left: -20px;
  transition: 0.5s;
}
.choco1:hover span{
	  padding-left: 25px;
}
.choco1:hover span:after{
	 opacity: 1;
  left: 0;
}
  .choco2 .text2 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color:#fff;
           
            text-align: center;
			  border-radius: 8px;
  font-size: 23px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
			
	    
        }
.choco2 span{
	cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.choco2 span:after{
	content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.choco2:hover span{
	  padding-right: 25px;
}
.choco2:hover span:after{
	 opacity: 1;
  right: 0;
}

footer{
	background: linear-gradient(to top,#02173d,#2a3b57,#515f75);
	width: 100%;
	height: 150px;
	margin: 0;
	padding: 0;
	

}
.footp{
	float: left;
	direction: rtl;
	color: white;
	padding-top: 110px;
}
.majazi{
	float: right;
	display: inline-block;
	padding-right: 25px;
	padding-top: 25px;

}
li{
	display: inline-block;
	margin: 5px;
	
}

