@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}
body{
  background: #ecf0f3;
}
nav{
  width: 100%;
  /*padding: 10px 0;*/
  background: #0f273e;
  /*box-shadow: -3px -3px 7px #ffffff,
             3px 3px 5px #ceced1,
             inset -3px -3px 7px #ffffff,
             inset 3px 3px 5px #ceced1;*/
}
nav .menu{
  max-width: 1270px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu .logo a{
  font-size: 28px;
  font-weight: 600;
  text-decoration: none;
  color: #31344b;
}
.menu ul{
  list-style: none;
  display: flex;
}
.menu ul a{
  margin:0 2px;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    font-style: normal;
  font-weight: 400;
	padding: 2px 18px;
  display: inline-flex;
  /*padding: 10px 12px;*/
/* box-shadow: -3px -3px 7px #ffffff,
            3px 3px 5px #ceced1;*/
  position: relative;
  transition: all 0.3s ease;
}
.menu ul a:hover:before{
  /*content: '';*/
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset -3px -3px 7px #ffffff,
              inset 3px 3px 5px #ceced1;
}
.center{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.upper{
  font-size: 40px;
  font-weight: 600;
  color: #31344b;
}
.lower{
  font-size: 40px;
  font-weight: 600;
  color: #31344b;
}
.menu ul a:hover{
  color: #ffffff;
    background-color: #000a56;
}
nav label.btn{
  color: #31344b;
  font-size: 18px;
  cursor: pointer;
  display: none;
	margin: 6px;
}
nav label.cancel{
  position: absolute;
  top: 15px;
  right: 25px;
}
#check{
  display: none;
}
.menucenter{
text-align:center;}
@media (max-width:940px) {
  .menu ul{
    display: block;
    position: fixed;
    top: 0;
    left: -111%;
    width: 100%;
    max-width: 400px;
    padding-top: 10px;
    height: 100%;
    background: #003054;
    /*box-shadow: 0 5px 10px #b0b0b5;*/
    z-index: 12;
    transition: all 0.3s ease;
  }
  .menu ul a{
   display: block;
   font-size: 14px;
   width: 100%;
   margin-top: 14px;
   box-shadow: none;
 /*  text-align: center;*/
  }
  .menu ul a:hover:before{
    box-shadow: none;
  }
  nav label.bars{
    display: block;
		margin-left: 50%;
    margin-right: 50%;
  }
  #check:checked ~ label.bars{
    display: none;
  }
  #check:checked ~ ul label.cancel{
    display: block;
  }
  #check:checked ~ ul{
    left: -30px;
		    z-index: 1001;
  }
}

.slider_main{
 width: 100%;
 height:auto;
 margin: 0px  !important;
    padding: 0px  !important;
}
