@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: #fbfbfb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Section 1 */

section#sec-1 {
  background-color: var(--white);
  width: 100%;
  height: 100vh;
  padding: 120px 70px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#sec-1 .container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

section#sec-1 .container .wrapper_1 {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(231, 231, 231);
  width: 50%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: scroll;
}

section#sec-1 .container .wrapper_1 h2 {
  color: var(--secondary);
  font-family: "poppins", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
}

section#sec-1 .container .wrapper_1 h3 {
  color: var(--text);
  font-family: "poppins", sans-serif;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
}

section#sec-1 .container .wrapper_1 p {
  color: var(--text);
  font-family: "open sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
  padding-bottom: 10px;
}

section#sec-1 .container .wrapper_2 {
  /* background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(231, 231, 231); */
  width: 50%;
  height: 100%;
  /* padding: 30px; */
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

section#sec-1 .container .wrapper_2 .wrapper_img {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(231, 231, 231);
  padding: 10px;
  width: 100%;
  height: 70%;
}

section#sec-1 .container .wrapper_2 .wrapper_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

section#sec-1 .container .wrapper_2 .wrapper_data {
  width: 100%;
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}

section#sec-1 .container .wrapper_2 .wrapper_data .data {
  width: 25%;
  height: 100%;
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "poppins", sans-serif;
}

section#sec-1 .container .wrapper_2 .wrapper_data .data .content_wrapper {
  width: 100%;
  height: 70%;
  border-radius: 10px;
  background-color: #ffedce;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section#sec-1 .container .wrapper_2 .wrapper_data .data .button_wrapper {
  width: 100%;
  height: 30%;
  border-radius: 10px;
  background-color: #ffedce;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

section#sec-1
  .container
  .wrapper_2
  .wrapper_data
  .data
  .button_wrapper::before {
  content: "";
  background-color: #ffedce;
  height: 100%;
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0px;
  left: 0;
  border-radius: 10px;
  transition: 200ms ease-in-out;
}

section#sec-1
  .container
  .wrapper_2
  .wrapper_data
  .data
  .button_wrapper:hover::before {
  top: -20px;
  border-radius: 5px;
}

section#sec-1 .container .wrapper_2 .wrapper_data .data .content_wrapper h3 {
  font-size: 23px;
  line-height: 25px;
}

section#sec-1 .container .wrapper_2 .wrapper_data .data .content_wrapper p {
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  text-align: center;
}

section#sec-1 .container .wrapper_2 .wrapper_data .data .button_wrapper a {
  border: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "poppins";
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: black;
}

/* Section 2 */

section#sec-2 {
  width: 100%;
  height: 80vh;
  padding: 10px 70px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-content: center;
}

section#sec-2 .container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

section#sec-2 .container .wrapper_img {
  background-color: white;
  padding: 30px;
  height: 100%;
  width: 35%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgb(231, 231, 231);
}

section#sec-2 .container .wrapper_img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 100%;
}

section#sec-2 .container .wrapper_desc {
  height: 100%;
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section#sec-2 .container .wrapper_desc .text {
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 30px;
  width: 100%;
  height: 80%;
  gap: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(231, 231, 231);
  overflow: scroll;
}

section#sec-2 .container .wrapper_desc .text p {
  font-family: "open sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
}

section#sec-2 .container .wrapper_desc .founder {
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 30px;
  width: 100%;
  height: 20%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(231, 231, 231);
}

section#sec-2 .container .wrapper_desc .founder h2 {
  font-family: "poppins", sans-serif;
  font-size: 26px;
  line-height: 28px;
}

section#sec-2 .container .wrapper_desc .founder h3 {
  font-family: "open sans", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 20px;
  color: #5b5b5b;
}

/* Section 3 */

section#sec-3 {
  width: 100%;
  height: 80vh;
  padding: 10px 70px 20px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-content: center;
}

section#sec-3 .container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

section#sec-3 .container .wrapper_text {
  background-color: white;
  padding: 30px;
  height: 100%;
  width: 50%;
  box-shadow: 0 0 10px rgb(231, 231, 231);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: scroll;
}

section#sec-3 .container .wrapper_text h3 {
  color: var(--secondary);
  font-family: "poppins", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

section#sec-3 .container .wrapper_text h2 {
  color: var(--text);
  font-family: "poppins", sans-serif;
  font-size: 50px;
  /* line-height: 54px; */
}

section#sec-3 .container .wrapper_text h4 {
  color: #5b5b5b;
  font-family: "open sans", sans-serif;
  font-size: 14px;
  margin-bottom: 40px;
}

section#sec-3 .container .wrapper_text .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "open sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
}

section#sec-3 .container .wrapper_text .text p {
  text-align: justify;
}

section#sec-3 .container .wrapper_img {
  background-color: white;
  padding: 30px;
  height: 100%;
  width: 50%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgb(231, 231, 231);
}

section#sec-3 .container .wrapper_img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 100%;
}

/* Responsive */

@media (max-width: 1200px) {
  section#sec-3 .container .wrapper_text h3 {
    font-size: 18px;
  }

  section#sec-3 .container .wrapper_text h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  /* Section 1 */

  section#sec-1 {
    height: max-content;
    padding: 120px 30px 10px;
  }

  section#sec-1 .container {
    flex-direction: column;
  }

  section#sec-1 .container .wrapper_1 {
    width: 100%;
    padding: 20px;
  }

  section#sec-1 .container .wrapper_1 h2 {
    margin-bottom: 10px;
  }

  section#sec-1 .container .wrapper_1 h3 {
    font-size: 40px;
    line-height: 50px;
  }

  section#sec-1 .container .wrapper_1 p {
    line-height: 20px;
  }

  section#sec-1 .container .wrapper_2 {
    width: 100%;
  }

  section#sec-1 .container .wrapper_2 .wrapper_img {
    padding: 10px;
  }

  section#sec-1 .container .wrapper_2 .wrapper_data {
    height: 40vh;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
    grid-gap: 15px;
    padding-bottom: 30px;
    place-items: center;
  }

  section#sec-1 .container .wrapper_2 .wrapper_data .data {
    width: 100%;
    height: 100%;
    gap: 5px;
    grid-row: span 1;
    grid-column: span 1;
  }

  section#sec-1 .container .wrapper_2 .wrapper_data .data .content_wrapper h3 {
    font-size: 20px;
    line-height: 25px;
  }

  /* Section 2 */

  section#sec-2 {
    height: max-content;
    padding: 10px 30px;
  }

  section#sec-2 .container {
    height: max-content;
    flex-direction: column;
  }

  section#sec-2 .container .wrapper_img {
    width: 100%;
    align-items: start;
    padding: 10px;
  }

  section#sec-2 .container .wrapper_desc {
    width: 100%;
  }

  section#sec-2 .container .wrapper_desc .text {
    padding: 20px;
  }

  section#sec-2 .container .wrapper_desc .text p {
    line-height: 20px;
  }

  section#sec-2 .container .wrapper_desc .founder {
    padding: 20px;
  }

  section#sec-2 .container .wrapper_desc .founder h2 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 5px;
  }

  /* Section 3 */

  section#sec-3 {
    height: max-content;
    padding: 10px 30px 20px;
  }

  section#sec-3 .container {
    flex-direction: column;
  }

  section#sec-3 .container .wrapper_text {
    padding: 20px;
    width: 100%;
  }

  section#sec-3 .container .wrapper_text h3 {
    color: var(--secondary);
    font-family: "poppins", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
  }

  section#sec-3 .container .wrapper_text h2 {
    font-size: 40px;
    line-height: 55px;
  }

  section#sec-3 .container .wrapper_text h4 {
    font-size: 15px;
    margin-bottom: 30px;
  }

  section#sec-3 .container .wrapper_text .text {
    font-size: 14px;
    line-height: 20px;
  }

  section#sec-3 .container .wrapper_img {
    padding: 10px;
    width: 100%;
  }
}
