.container  {
    width: 100%;
    margin-top: 170px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: left;
}

.container_2  {
    width: 100%;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.Items_2    {
    font-family: avenir-next-world, sans-serif;
    color: white;
    font-size: 20px;
}

.Items_2 p  {
    font-size: 35px;
    font-weight: 999;
}

a {
    color: white;
    text-decoration: none;
}

.Items  {
    padding: 40px;
}

.Items h1  {
    letter-spacing: 3px;
    font-family: Impact, Haettenschweiler;
    font-weight: 100;
    font-size: 180px;
    margin: auto;
    width: 100%;
    text-align: left;
    color: white;
    margin-bottom: -80px;
    margin-top: -90px;
}

@media screen and (max-width:850px) {
    .Items h1   {
        font-size: 100px;
    }
}

.Items-2    {
    font-size: 50px;
    text-align: center;
    width: 100%;
    font-family: Impact, Haettenschweiler;
    font-weight: 100;
    color: white;
    letter-spacing:4px;
    margin-top: -50px;
}

h2  {
    font-family: avenir-next-world, sans-serif;
    color: white;
    
}

.Items h2   {
    width: 300px;
    padding: 20px;
    margin-bottom: -20px;
}

body    {
    background-color: blue;
    background-attachment: fixed;
    background-position: center;
}


/* Header container */

.header {
    align-content: right;
  position: fixed;
  height: 0;
    padding: 0 25px;
    border-radius: 10px;
margin-top: -125px;
  display: flex;
  align-items: center;
}

.lines {
  width: 32px;
  cursor: pointer;
  position: relative;
}

.lines span {
  display: block;
  height: 4px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

.dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100vw;
  background-color: blue;
    border-radius: 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 25px;
}

.dropdown li {
  padding: 8px 0;
}

.dropdown a {
  color: #fff;
    font-family: avenir-next-world, sans-serif;
  text-decoration: none;
  font-size: 20px;
    transition: 0.3s;
}

.dropdown a:hover {
    font-size: 25px;
}

.lines:hover .dropdown {
  max-height: 300px;
}

.lines:hover span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.lines:hover span:nth-child(2) {
  opacity: 0;
}
.lines:hover span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/*Footer*/

.footer {
  background: #001475;
  color: #ffffff;
  padding: 40px 20px 20px;
  border-radius: 20px;
    margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  font-family: avenir-next-world, sans-serif;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section ul {
  font-family: avenir-next-world, sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  color: #0007ff;
}

.footer-bottom {
    font-family: avenir-next-world, sans-serif;
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #ffffff;
}