@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: 3rem 0 3rem;
}

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: black;
  font-family: 'Poppins', sans-serif;
}

.logo span{
  color: black;
}

.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);
}

.about{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.about-img{
  flex:  1 1 21rem;
  width: 70%;
}

.about-text{
  flex: 1 1 21rem;
}


.about-text h1{
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.about-text p{
  margin: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.about-text a{
  color: #E9EDF2;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}


.values{
  text-align: center;
  margin: 0px 160px 50px 160px;
}

.values-img{
  display: flex;
  align-items: center;
  width: 3%;
  gap: 5rem;
}


.ourvalues{
  display: flex;
}

.ourvalues p{
  margin: 0.5rem;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.footer{
  background: black;
  color: #AEB5BF;
  border-top: 2px solid var(--bg-color);
  padding: 65px 0px 0px;
}

.footer-container{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-container .logo{
  color: #AEB5BF;
  margin-bottom: 1rem;
}

.footer-container .footer-box{
  display: flex;
  flex-direction: column;
}

.social{
  display: flex;
  align-items: center;
}

.social a{
  font-size: 24px;
  color: white;
  margin-right: 1rem;
}

.social a:hover{
  color: #AEB5BF;
}

.footer-box h3{
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.footer-box a{
  color: #E9EDF2;
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.footer-box a:hover{
  color: #AEB5BF;
}