@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
*{
  margin: 0;
  padding: 0;
  scroll-padding-top: 1rem;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

/* Variables*/
:root {
  --main-color:#AEB5BF;
  --text-color:#E9EDF2;
  --bg-color:black;
}

section{
  padding: 4rem 0 2rem;
}

img{
  width: 100%;
}

body{
  color: var(--text-color);
  background-color: black;
}

.container{
  max-width: 1068px;
  margin-left: auto;
  margin-right: auto;
}

.header{
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 35px;
}

#menu-icon{
  font-size: 24px;
  cursor: pointer;
  color:black;
  display: none;
}

.logo{
  font-size: 1.2rem;
  font-weight: 700;
  color: #8e8d8a;
  font-family: 'Poppins', sans-serif;
}

.logo span{
  color: #8e8d8a;
}

.navbar{
  display: flex;
  column-gap: 5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.navbar a {
  color: #E9EDF2;
  font-size: 1rem;
  text-transform: uppercase;
}

.navbar a:hover,
.navbar .active {
  color: grey;
  border-bottom: 3px solid var(--main-color);
}


.contact-container{
  align-items: center;
  color: black;
  max-width: 960px;
  margin: auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
  background-color: black;
}

.form-container{
  padding: 20px;
}

.form-container h3{
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #AEB5BF;
  font-family: 'Poppins', sans-serif;
}

.contact-form{
  display: grid;
  row-gap: 1rem;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  border: none;
  outline: none;
  background: #E9EDF2;
  padding: 10px;
  font-size: 0.9rem;
  color: gray;
  border-radius: 0.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.contact-form textarea{
  resize: none;
  height: 200px;
}

.contact-form .send-button{
  border:none;
  outline: none;
  background: #262626;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form .send-button:hover{
  background: #AEB5BF;
  transition: 0.3s all linear;
}

.map iframe{
  width: 100%;
}