@charset "utf-8";
/* CSS Document */


.navbar{
	background:#020B2E;
    max-height: 70px !important;
}


.navbar-brand{
  margin-left:15px;
	width: 4%;
}

a{
  text-decoration:none ! important;
    
}

#logo{
	width: 100%;
}

.searchDiv {
  width: 100px;
  background: red;
  transition: width 2s;
}

.searchDiv:hover {
  width: 105px;
}

.searchDiv input{
  width: 100px;
  transition: width 0.5s;
  border-radius: 8px;
}
.searchDiv input:hover {
  width: 150px;
}


.fa-angle-down{
 transition: transform 0.5s;	
}

.fa-angle-down:hover{
 font-size: 20px;
  transform: rotate(180deg);	
}



.ddropCover{
	display: flex;
	column-gap: 50px;
}
	
.dshow .rap{
	width: 180px;
	line-height: 45px;
	opacity: 0;
	position: absolute;
	visibility: hidden;
	
}
	
.rap{
  background: white;
  top:60px;
}

.dshow:hover .rap{
	top:40px;
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease;
}


.dshow p{
  font-size: 3vw !important;
}

.rap p{
  font-size: 3vw !important;
}

ul li{
  font-size: 3vw !important;
}

/*For Desktop View*/

@media screen and (min-device-width: 1025px){

  .navbar{
    background:#020B2E;
    max-height: 70px !important;
  }
  
  
  .navbar-brand{
    margin-left:0px;
    width: 10% !important;
  }
  
  #logo{
    width: 50% !important;
  }
  
  .searchDiv{
    margin-top: -10px !important;
    margin-left: -20px !important;
  }


  .dshow p{
    font-size: 1vw !important;
  }
  
  .rap p{
    font-size: 0.9vw !important;
  }
  
  ul li{
    font-size: 1.2vw !important;
  }
  
	
}


	
/* For Tablet Landscape View */
@media only screen and (min-device-width: 641px)
and (max-device-width: 1024px) {
 
  .navbar{
    background:#020B2E;
    max-height: 50px !important;
  }
  
  
  .navbar-brand{
    margin-left:0px;
    width: 10% !important;
    margin-top: -10px !important;
  }
  
  #logo{
    width: 65% !important;
  }

  #mv{
    margin-top: -5px !important;
  }

  .searchDiv{
    margin-top: -10px !important;
    margin-left: -20px !important;
  }

  .ddropCover{
    margin-top: -10px !important;
  }

  .navbar-toggler{
    margin-top: -10px !important;
  }

  
  .dshow p{
    font-size: 1.4vw !important;
  }
  
  .rap p{
    font-size: 1.2vw !important;
  }
  
  ul li{
    font-size: 1.4vw !important;
  }
  
  
}
	
	


/* For Tablet Portrait View */
@media only screen and (min-device-width: 421px)
and (max-device-width: 640px) {
  .navbar{
    background:#020B2E;
    max-height: 50px !important;
  }
  
  
  .navbar-brand{
    margin-left:0px;
    width: 10% !important;
    margin-top: -10px !important;
  }
  
  #logo{
    width: 65% !important;
  }

  #mv{
    margin-top: -10px !important;
  }

  .searchDiv{
    margin-top: -10px !important;
    margin-left: -20px !important;
  }

  .ddropCover{
    margin-top: -10px !important;
  }

  .navbar-toggler{
    margin-top: -10px !important;
  }
	
}
	

@media screen and (max-width:420px){
	
.navbar-brand{
    margin-left:0px;
	width: 16%;
}


#logo{
	width: 100%;
	margin-left: -10px;
}

.searchDiv {
  width: 50px;
  margin-left:-35px; 
  background: red;
  transition: width 2s;
}

.searchDiv:hover {
  width: 105px;
}

input{
  width: 50px;
  
 
  transition: width 0.5s;
}
input:hover {
  width: 105px;
}

.dshow{
  display: none;		
}

}