@font-face {
  font-family: "Arvil";
  src: url("../fonts/ArvilSans.ttf");
}
@font-face {
  font-family: "Josefin Sans Light";
  src: url("../fonts/JosefinSans-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Josefin Sans Regular";
  src: url("../fonts/JosefinSans-Regular.ttf");
  font-weight: 400;
}

html {
  font-family: "Josefin Sans Light", sans-serif;
}

body {
  color: #2d2f32;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Josefin Sans Light", sans-serif;
  font-weight: 300;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
  transition: all 0.3s;
}

.main-title {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.container-full {
  max-width: 100%;
  padding: 80px 40px;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
}

.bg-primary {
  background-color: #2d2f32;
}

.hero {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 135px;
}

.hero .hero-img {
  height: 160px;
  width: auto;
  object-fit: cover;
}

.hero > .hero-title {
  max-width: 675px;
  font-size: 60px;
  font-weight: 300;
  text-align: center;
}

.bg-primary .hero > .hero-title {
  color: #fff;
}

main {
  padding-top: 190px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}

.card-container .card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
  padding: 45px 25px;
}

.card .card-header .card-title {
  font-family: 'Arvil', sans-serif;
  font-size: 85px;
  font-weight: 400;
  margin-bottom: 18px;
}

.card .card-subtitle {
  font-size: 22px;
}

.card .card-content svg {
  width: 16px;
}

.card .card-content {
  padding-top: 60px;
}

.card .card-content .content {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Josefin Sans Regular", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
}

.flex {
  display: flex;
  flex-direction: row;
}

.g-5 {
  gap: 20px;
}

.card .card-footer {
  overflow-x: auto;
  padding-top: 80px;
}

.card .card-footer table {
  width: 100%;
  font-family: "Josefin Sans Regular", sans-serif;
  border-collapse: collapse;
}

.card .card-footer tr:not(:last-of-type) {
  border-bottom: 1px solid #D2D2D2;
}

.card .card-footer td {
  padding: 7px 0;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-light {
  font-family: "Josefin Sans Light", sans-serif;
  font-weight: 300;
}

.card .card-footer h4 {
  font-family: "Josefin Sans Regular", sans-serif;
  font-size: 21px;
  text-transform: uppercase;
}

.card .card-footer p {
  margin-top: 6px;
}
.card .card-footer .tbd {
  font-family: "Arvil", sans-serif;
  font-size: 64px;
}

.footer {
  background-color: #2d2f32;
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer .footer-logo {
  flex: auto;
  width: 33%;
}

.footer .footer-sedi {
  flex: auto;
  width: 66%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
}

.footer .footer-sede h5 {
  font-family: 'Josefin Sans Regular', sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
}

.footer .footer-sede a {
  font-weight: 300;
  text-decoration: underline;
  margin-bottom: 15px;
}

.footer .footer-sede .footer-social {
  margin-top: 15px;
}

.footer .footer-logo img {
  height: 68px;
  width: auto;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .container, .container-full {
    max-width: 100%;
    width: fit-content;
    padding: 40px 20px;
  }

  .hero {
    height: 60vw;
    row-gap: 70px;
  }

  .hero .hero-img {
    height: 100px;
  }

  .hero > .hero-title {
    font-size: 40px;
  }

  .main-title {
    font-size: 32px;
  }

  .card-container .card {
    gap: 50px;
  }

  .card .card-header .card-title {
    font-size: 60px;
  }

  .card .card-footer {
    padding-top: 20px;
  }

  .card .card-content .content, .card .card-footer {
    font-size: 16px;
  }

  .card .card-content .content, .card .card-footer .flex {
    flex-wrap: wrap;
  }

  .card .card-footer .w-50 {
    width: 100%!important;
  }

  .footer .footer-logo {
    width: 100%;
    text-align: center;
  }
  
  .footer .footer-sedi {
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
    gap: 15px;
  }
}