@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary: #1d466e;
  --secondary: #ffb632;
  --tersier: #303942;
  --text: #222222;
  --white: #f2f1f3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section#sec-1 {
  background-color: var(--white);
  width: 100%;
  height: max-content;
  padding: 120px 200px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#sec-1 .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  box-shadow: 0 0 10px rgb(231, 231, 231);
  border-radius: 18px 10px 10px 10px;
  padding: 15px 0;
  gap: 5px;
  position: relative;
}

section#sec-1 .container a {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 70px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--primary);
  background-color: var(--secondary);
  font-family: "poppins", sans-serif;
  font-weight: 600;
  border-radius: 5px;
  transition: 200ms ease-in-out;
}

section#sec-1 .container a:hover {
  color: var(--secondary);
  background-color: var(--primary);
}

section#sec-1 .container h1 {
  font-family: "poppins", sans-serif;
  color: var(--secondary);
  font-size: 20px;
  font-weight: 700;
}

section#sec-1 .container h2 {
  font-family: "poppins", sans-serif;
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Section 3 */

section#sec-2 {
  background-color: var(--white);
  width: 100%;
  height: max-content;
  padding: 10px 200px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#sec-2 .container {
  width: 100%;
  height: max-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

section#sec-2 .container .impact {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(231, 231, 231);
  padding: 30px;
  gap: 10px;
}

section#sec-2 .container .impact h2 {
  font-family: "poppins", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--secondary);
}

section#sec-2 .container .impact .content {
  width: 100%;
}

section#sec-2 .container .impact .content ol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  font-family: "open sans", sans-serif;
  font-size: 17px;
  line-height: 22px;
}

section#sec-2 .container .impact .content ol li {
  list-style: none;
  margin-left: 3.5%;
}

section#sec-2 .container .impact p {
  font-family: "open sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  display: flex;
  align-items: start;
  gap: 5px;
}

section#sec-2 .container .impact p span {
  display: flex;
  align-items: center;
}

section#sec-2 .container .impact p span img {
  width: 25px;
  margin: 0;
}

/* Responsive */

@media (max-width: 768px) {
  section#sec-1 {
    height: max-content;
    padding: 120px 30px 10px;
  }

  section#sec-1 .container {
    padding: 10px;
    gap: 0;
  }

  section#sec-1 .container h2 {
    font-size: 30px;
    line-height: 35px;
  }

  section#sec-1 .container a {
    width: 50px;
    height: 30px;
    font-size: 14px;
  }

  /* Section 2 */

  section#sec-2 {
    height: max-content;
    padding: 10px 30px 20px;
  }

  section#sec-2 .container {
    flex-direction: column;
  }

  section#sec-2 .container .impact {
    width: 100%;
    padding: 20px;
  }

  section#sec-2 .container .impact h2 {
    font-size: 25px;
    text-align: center;
  }

  section#sec-2 .container .impact .content ol li {
    margin-left: 10%;
  }
}
