
@font-face {
  font-family: Gotham;
  src: url('../assets/fonts/Gotham/Gotham-Book.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: Gotham;
  src: url('../assets/fonts/Gotham/Gotham-Medium.otf') format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Gotham;
  src: url('../assets/fonts/Gotham/Gotham-Bold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Gotham;
  src: url('../assets/fonts/Gotham/Gotham-Black.otf') format("opentype");
  font-weight: 800;
  font-style: normal;
}

/* ELEMENTS STYLES */

body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Gotham','Inter', Arial, Helvetica, sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 20px;
}

h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 0px;
}

h2 {
  font-size: 28px;
  font-weight: 600;
}

h3 {
  font-size: 26px;
  font-weight: 400;
}

h4 {
  font-size: 20px;
  font-weight: 200;
  color: #74777F;
}

h5 {
  font-size: 20px;
  font-weight: 400;
  color:#74777F;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color:#74777F;
  font-weight: 200;
}

.btn {
  background: #008539;
  padding: 16px 30px;
  font-weight: 600;
  font-size: 20px;
  color: white;
  border: none;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  border-radius: 20px;
}

.btn.transparent{
  background: #585858a3;
  color: white;
}

.btn.padding-bottom {
  margin-bottom: 32px;
}

/* HEADER */
header {
  height: 800px;
  position: relative;
  overflow: hidden;
  background: transparent;
}

header .banner {
  width: 100%;
  background-color: white;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}

header .banner img {
  width: 150px;
  margin-left: 10%;
}

header .texts {
  margin-left: 10%;
  margin-right: 10%;
  width: 50%;
  max-width: 610px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 600px;
}

header .texts h1 {
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

header .texts h2 {
  color: white;
  line-height: 1.6;
  margin-top: 64px;
}

/* FOOTER */

footer {
  background-color: #f2f2f2;
  padding: 20px 0px;
  text-align: center;
}

/* SECTIONS */

section {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section.white {
  background-color: white;
}

section.grey {
  background-color: #f2f2f2;
}

section.black {
  color: white;
}

.color-black {
  color: black;
}

section.black .section-text {
  color: white;
}

.section-title {
  text-align: center;
}

.section-text {
  text-align: center;
  max-width: 1260px;
  margin-bottom: 60px;
  margin-left: 15%;
  margin-right: 15%;
}

.two-text {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.two-text .side {
  max-width: 565px;
}

.cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.cards.padding-top{
  margin-top: 40px;
}

.cards .card {
  width: 340px;
  background-color: white;
  border-radius: 20px;
  padding: 0px 0px 20px;
  height: 450px;
  box-shadow: 0 2px 4px 0 rgba(45, 44, 49, 0.15);;
}

.cards .card.medium {
  height: 340px;
}

.cards .card.small {
  height: 300px;
  width: 360px;
}

.cards .card .histories {
  margin-top: 5px;
}

.cards .card img {
  max-width: 100%;
  border-radius: 20px 20px 0px 0px;
}

.cards .card p {
  padding: 0px 32px 0px 32px;
}

.cards .card h5 {
  padding: 0px 32px 0px 32px;
  margin: 16px 0px 0px 0px;
}

.cards .card h3 {
  padding: 0px 32px 0px 32px;
}

.cards .card .card-people {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 16px 32px 0px;
}

.cards .card .card-people img {
  width: 50px;
  border-radius: 50%;
  height: 50px;
}

.cards .card .card-people .img {
  width: 50px;
  border-radius: 50%;
  height: 50px;
  background-position: center;
  background-size: cover;
}

.cards .card .card-people .people-title {
  color: black;
  padding: 0px 0px 0px 6px;
  margin: 16px 0px 2px 0px;
}

.cards .card .card-people .people-subtitle {
  font-size: 14px;
  margin-top: 0px;
  padding: 0px 0px 0px 6px;
}


@media (max-width: 767px) {
  .section-title {
    text-align: left;
  }

  header .texts {
    width: unset;
  }

  header .texts h1 {
    margin-bottom: 0px;
    margin-top: 90px;
  }

  header .texts h2 {
    margin-top: 0px;
  }

  h1 {
    font-size: 34px;
  }

  h4 {
    font-size: 24px;
  }
}


@media (max-width: 1199px) {

  .two-text {
    gap: 0px;
    justify-content: flex-start;
    width: 100%;
  }

  .section-text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .two-text .side {
    max-width: unset;
  }
}