main .go_back {
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
}

main .go_back a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

main .go_back a:hover {
  opacity: 0.8;
}

main .go_back a i {
  font-size: 2rem;
}

main .path {
  padding: 0 2rem;
  width: 100%;
  max-width: 1200px;
}

main .path a {
  text-decoration: none;
}

main .path a:hover {
  text-decoration: underline;
}

main .path span.selected {
  color: var(--primary);
}

section.main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 2rem;
  padding: 2rem;
}

section.main .logo {
  width: 8rem;
  max-width: 100%;
}

section.main .logo img {
  width: 100%;
}

section.main .description {
  text-align: justify;
  font-size: 1rem;
  margin: 2rem 0;
  width: 100%;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

section.main .description {
  margin: 1rem 0;
}


section.main .description .description-text {
  max-width: 30rem;
  width: 100%;
}

section.main .description .description-text > * {
  text-align: justify;
  font-size: 1rem;
  margin: 1rem 0;
  width: 100%;
}

section.main .contact_us {
  padding: 0.6rem 2rem;
  border: 1px solid var(--dark);
  background-color: var(--white);
  border-radius: 30rem;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

section.main .contact_us:hover {
  transform: scale(1.05);
}

section.main .table {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

  width: 100%;
  max-width: 30rem;
  margin-bottom: 1rem;
}

section.main .table h1 {
  margin: 1rem 0;
}

section.main .table .table_content {
  max-width: 30rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

section.main .table .table_content .row {
  width: 100%;
  max-width: 30rem;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0.75rem 0;
}

section.main .table .table_content .row i {
  color: var(--stars);
  font-size: 0.8rem;
}

section.main .table .table_content .row i.checked {
  color: var(--dark);
}

section.main .table .table_content .row::before {
  content: "";
  border-top: 2px solid var(--dark);
  width: 100%;
  position: absolute;
  top: -0.75rem;
}

section.main .table .table_content .row:last-child::after {
  content: "";
  border-bottom: 2px solid var(--dark);
  width: 100%;
  position: absolute;
  bottom: -0.75rem;
}

section.sub_footer {
  padding: 2rem;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: var(--gray);
  color: var(--white);
  width: 100%;
  position: relative;

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

section.sub_footer h1 {
  padding: 2rem;
  width: 100%;
  max-width: 60rem;
  text-align: center;
  color: var(--white);
  font-size: 2.2rem;
}

section.sub_footer img {
  position: absolute;
  right: 1%;
  height: 80%;
}

section.sub_footer button {
  padding: 0.6rem 2rem;
  border: 1px solid var(--dark);
  background-color: var(--dark);
  border-radius: 30rem;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  color: var(--white);
}

section.sub_footer button:hover {
  transform: scale(1.05);
}

section.video {
  padding: 2rem;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: var(--primary-text);
  width: 100%;
  position: relative;
}

section.video iframe {
  width: 100%;
  height: 80vw;
  max-height: 500px;
  max-width: 900px;
}

section.video span {
  margin-top: 1rem;
}

@media only screen and (max-width: 768px) {
  section.video iframe {
    max-height: 50vw;
  }
}