@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 100px;
  z-index: 10;
  background: #000000;
}
header .logo
{
  position: relative;
  font-size: 1.5em;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
header .navigation
{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0;
}
header .navigation li
{
  list-style: none;
  margin: 0 10px;
}
header .navigation li a
{
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
}
header .navigation li a:hover
{
  color: #39e6fd;
}
header .search
{
  position: relative;
  width: 300px;
  height: 40px;
}
header .search input
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: transparent;
  outline: none;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 0 10px 0 45px;
}
header .search input::placeholder
{
  color: #fff;
}
header .search .fa-search
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  color: #fff;
  border-right: 1px solid #fff;
  padding-right: 10px;
}
.banner
{
  background: #000000;
  padding: 200px 100px 100px;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner .content
{
  max-width: 700px;
}
.banner .content h2
{
  font-size: 3em;
  color: #fff;
}
.banner .content p
{
  font-size: 1em;
  color: #fff;
}
.banner .content a
{
  display: inline-block;
  background: #fff;
  color: #434978;
  padding: 8px 20px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
}
.banner .image
{
  filter: invert(1);
  max-width: 400px;
  margin-left: 50px;
}

@media (max-width: 991px)
{
  header
  {
    padding: 10px 20px;
    flex-direction: column;
  }
  .banner
  {
    padding: 150px 20px 50px;
    flex-direction: column-reverse;
  }
  .banner .image
  {
    margin-left: 0;
    max-width: 80%;
  }
  .banner .content h2
  {
    font-size: 2em;
  }
}
@media (max-width: 600px)
{
  header .search
  {
    width: 100%;
  }
  .banner .image
  {
    margin-top: 30px;
  }
}