@import url("https://fonts.gppgleapis.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;
}
section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
li {
  list-style: none;
}
.link {
  color: #fff;
  text-decoration: none;
}
.logo {
  position: relative;
  max-width: 150px;
}
.nav {
  position: relative;
  display: flex;
}
.nav li {
  display: inline-block;

  font-weight: 500;

  margin-left: 40px;
}
.contianer {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
}
.sci {
  position: absolute;
  bottom: 10px;
  left: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sci li {
  list-style: none;
}

.sci li a {
  display: inline-block;
  margin-left: 15px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}
.pic {
  height: 40px;
  width: 40px;
}
.sci li a:hover {
  background: #e51e2a;
  transform: translateY(-10px);
}
.sci li a img {
  filter: invert(1);
  transform: scale(0.5);
}

.form {
  color: white;
  border: 1px solid white;
  background-color: red;
  padding: 50px;
  margin-top: 50px;
  height: 500px;
}
.input {
  margin-bottom: 20px;

  height: 30px;
}
.form_button {
  margin-top: 11%;
  width: 100%;
  background-color: tomato;
  color: white;
  cursor: pointer;
  padding: 15px;
}
.inputs {
  height: 100px;
}
.topic {
  padding: 10px;
}

@media screen and (max-width: 991px) {
  header {
    padding: 40px;
  }
  section {
    padding: 150px 40px;
  }

  .form {
    color: white;
    border: 1px solid white;
    background-color: red;
    padding: 50px;
    margin-top: 50px;
    height: 500px;
  }
  .input {
    margin-bottom: 20px;

    height: 30px;
  }
  .content {
    position: relative;
    width: 100%;
    display: inline-block;
    justify-content: space-between;
    align-items: center;
  }
  .form_button {
    margin-top: 11%;
    width: 100%;
    background-color: tomato;
    color: white;
    cursor: pointer;
    padding: 15px;
  }
  .inputs {
    height: 50px;
  }
  .topic {
    padding: 10px;
  }

  .sci {
    left: 40px;
  }

  .contianer {
    display: inline-block;
  }
  .map {
    width: 300px;
    height: 300px;
  }
  header .nav {
    display: none;
  }
  header .nav.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e51e2a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    z-index: 10;
  }
  .nav.active li {
    padding: 20;
    font-size: 30px;
  }

  .toggle {
    position: relative;
    width: 30px;
    height: 30px;
    background: url(./Images/2k.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 10000;
  }
  .toggle.active {
    background: url(./Images/close.jpg);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
  }
}
