* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 8%;
  box-shadow: 0 5px 10px #587ae8;
  position: fixed;
  width: 100%;
  height: 110px;
  top: 0;
  z-index: 1;
  background-color: black;
}

nav {
  display: flex;
  align-items: center;
}

.logo {
  width: 150px;
  height: 150px;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 10px;
}
.nav-links a:hover{
  color: rgb(231, 218, 218);
  font-size: 20px;
  transition: all 0.4s ease;
}
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: all 0.3s ease;
}


@media screen and (max-width: 1000px) {
  header{
    padding: 0px 4%;
  }
  nav{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    position: fixed;
    right: 0px;
    height: 80vh;
    top: 110px;
    background-color: white;
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 20px;
    align-content: flex-start;
    width: 60%;
    transform: translateX(-200%);
    transition: transform 0.5s ease-in;
  }

  .nav-links li {
    margin-top: 50px;
    opacity: 0;
    width: 100%;
  }
  .nav-links #name{
    padding: 0px 10px;
    color: #587ae8;
    font-weight: 600;
    font-size: 25px;
  }
  .nav-links li a{
    color: black;
  }
  .nav-links a:active{
    color: #587ae8;
  }

  .hamburger {
    display: block;
    justify-self: flex-end;
  }

  .nav-active {
    transform: translateX(-67%);
  }

  .nav-links li {
    opacity: 1;
    transition: opacity 0.5s ease-in;
  }
  .logo{
    justify-self: flex-start;
  }
}

@media screen and (min-width: 1000px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    width: auto;
  }

  .nav-links li {
    margin: 0 10px;
  }
}
@media screen and (max-width: 450px){
  .nav-links li a{
    font-size: 14px;
  }
}



/* Background Image */
.background {
  margin-top: 90px;
}

.background img {
  width: 100%;
}

/* Section */
.content_section {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 4rem;
  justify-items: center;
  align-items: center;
  background-color: white;
}

.content_section .first {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
  justify-items: center;
  align-items: center;
}

.content_section .first .heading {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
}

.content_section .first .image img {
  width: 100%;
  height: 140px;
}

.content_section .first .dhl img {
  width: 100%;
  height: 110px;
}

@media screen and (max-width: 900px) {
  .content_section .first .heading {
    font-size: 30px;
  }

  .content_section .first .image img {
    height: 130px;
  }

  .content_section .first .dhl img {
    width: 100%;
    height: 105px;
  }
}

@media screen and (max-width: 600px) {
  .content_section .first {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }

  .content_section .first .image img {
    height: 120px;
  }

  .content_section .first .dhl img {
    height: 80px;
  }
}

.content_section .second_section {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  width: 90%;
}

.content_section .second_section #language_name {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
}

.content_section .second_section #language_name .language_name {
  font-size: 40px;
}

.content_section .second_section .part {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}

.content_section .second_section hr {
  background-color: rgb(0, 0, 0);
  height: 5px;
}

.content_section .second_section .part .language {
  background-color: #0099ff;
  box-shadow: 1px 5px 10px 3px black;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  font-size: 20px;
}

.content_section p {
  text-align: center;
  font-size: 25px;
  color: rgb(117, 2, 109);
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
}

/* Footer */
footer {
  padding: 20px;
  width: 100%;
  height: 250px;
  background-color: black;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  color: white;
  align-content: center;
  justify-items: center;
}

footer .lines {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  align-items: center;
}

footer .lines hr {
  width: 150px;
  height: 3px;
  background-color: white;
}

footer h1 {
  font-size: 35px;
}

footer p {
  font-size: 30px;
}

footer p span {
  color: wheat;
}

@media screen and (max-width: 600px) {
  .content_section .second_section .part .language {
    font-size: 16px;
  }

  .content_section p {
    text-align: center;
    font-size: 20px;
  }

  footer h1 {
    font-size: 25px;
  }

  footer p {
    font-size: 20px;
  }

  footer .lines hr {
    width: 100px;
  }
}

@media screen and (max-width: 400px) {
  .content_section .second_section #language_name .language_name {
    font-size: 30px;
  }

  .content_section .second_section .part .language {
    padding: 25px;
  }

  footer h1 {
    font-size: 20px;
  }

  footer p {
    font-size: 15px;
  }

  footer .lines hr {
    width: 80px;
    height: 2px;
  }
}