@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}
.container {
  max-width: 800px;
  width: 100%;
  display: block;
  margin: auto;
}
section,
header,
footer {
  padding: 50px 0;
}
.header {
  background-image: url(../img/top-arc.png);
  background-position: bottom;
  background-size: cover;
  height: 500px;
  background-repeat: no-repeat;
}
.header h2 {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
}
.header .container .illustration-wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items:center;
}
.header img {
  max-width: 400px;
  width: 100%;
}
.title-wrapper-section h3 {
  font-size: 32px;
  font-weight: bold;
  color: #14a2af;
  text-align: center;
  text-transform: uppercase;
}
.title-wrapper-section hr {
  display: block;
  max-width: 70%;
  height: 4px;
  width: 100%;
  background-color: #14a2af;
  border-radius: 4px;
  border: none;
  display: block;
  margin: auto;
  margin-top: 10px;
}
.title-wrapper-section p {
  color: #606060;
  font-style: italic;
  font-weight: 500;
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
}
.tableSection {
  padding-top: 0px;
}
.tableSection .container .table-wrapper {
  display: flex;
  justify-content: space-between;
}
table {
  max-width: 70%;
  width: 100%;
}

td,
th {
  padding: 5px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #606060;
  padding-left: 20px;
}

th {
  background-color: #dbaf27;
  color: #fff;
  font-weight: bold;
}

table,
tr {
  border: 3px solid #14a2af;
  border-collapse: collapse;
  height: 60px;
}
.buttonsWrapper {
  width: unset;
}
.buttonsWrapper,
.buttonsWrapper tr {
  border: 2px solid transparent;
  border-collapse: collapse;
}

.buttonsWrapper button {
  padding: 10px 30px;
  border: none;
  outline: none;
  box-shadow: 5px 5px 15px #00000038;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
}
.yes-button {
  background-color: #14a2af;
  color: #fff;
}
.no-button {
  background-color: #b4b4b4;
  color: #fff;
}
.text-wrapper {
  width: 70%;
}
.buttonsWrapper {
  width: 30%;
}
.score-wrapper {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}
.score-wrapper h4 {
  width: 70%;
  text-align: right;
  color: #606060;
  font-weight: 600;
  font-size: 18px;
}
.score,
.percentage {
  width: 30%;
  padding: 0 10px 0 20px;
}
.score span,
.percentage span {
  text-align: center;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  display: block;
  color: #606060;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 5px 5px 15px #00000038;
}

.schedule-section {
  background-color: #e5e5e5;
}
.schedule-section h4,
.schedule-section h2 {
  color: #606060;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.schedule-section h2 {
  font-weight: 800;
  font-size: 36px;
  text-transform: uppercases;
}
.schedule-section a {
  background-color: #14a2af;
  border-radius: 20px;
  border: none;
  outline: none;
  padding: 10px 20px;
  text-align: center;
  display: block;
  font-size: 22px;
  color: #fff;
  margin: auto;
  font-weight: 600;
  margin-top: 30px;width: max-content;
    text-decoration: none;
}
footer .logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo-wrapper::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: #14a2af;
  position: absolute;
  left: 50%;
  top: 0;
}
.logo-wrapper img {
  max-width: 300px;
  width: 100%;
}
.logo-wrapper p {
  font-size: 20px;
  color: #606060;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 300px;
  width: 100%;
}

footer h3 {
  font-size: 26px;
  text-align: center;
  color: #606060;
  font-weight: 800;
  margin: 40px 0;
}
footer a {
  background-color: #dbaf27;
  border-radius: 20px;
  border: none;
  outline: none;
  padding: 10px 20px;
  text-align: center;
  display: block;
  font-size: 22px;
  color: #fff;
  margin: auto;
  font-weight: 600;
  margin-top: 30px;width: max-content;
    text-decoration: none;
}

@media screen and (max-width: 800px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  .header {
    height: unset;
    background-size: 120%;
  }
  .header h2 {
    font-size: 28px;
  }
  .header img {
    max-width: 300px;
    width: 100%;
  }
  .tableSection {
    padding-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .header .container .illustration-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .title-wrapper-section h3 {
    font-size: 24px;
  }
  .logo-wrapper img {
    max-width: 150px;
    width: 100%;
  }
  .logo-wrapper p {
    font-size: 14px;
    max-width: 200px;
    width: 100%;
  }
  footer h3 {
    font-size: 22px;
  }
  .header {
    height: unset;
    background-size: 170%;
    background-position: top center;
  }
  .schedule-section h2 {
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
  }
  .schedule-section button {
    font-size: 16px;
  }

  footer button {
    font-size: 16px;
  }
  footer h3 {
    font-size: 18px;
    margin: 20px 0;
  }
  td,
  th {
    font-size: 14px;
    padding-left: 10px;
  }
  .buttonsWrapper button {
    padding: 5px 15px;
    font-size: 14px;
  }
  .score {
    padding: 0 10px 0 10px;
  }
  table,
  tr {
    height: 50px;
  }
  .score-wrapper h4 {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  td,
  th {
    font-size: 12px;
    padding-left: 5px;
  }
  .buttonsWrapper button {
    padding: 5px 15px;
    font-size: 12px;
  }
  .schedule-section button {
    margin-top: 15px;
    font-size: 14px;
  }
  .schedule-section h2 {
    font-size: 20px;
    margin: 20px 0;
  }
  .logo-wrapper p {
    font-size: 12px;
    max-width: 180px;
  }
  .header h2 {
    text-align: center;
  }
  .header {
    height: unset;
    background-size: 200%;
    background-position: top center;
  }
}
@media screen and (max-width: 400px) {
  .logo-wrapper::after {
    display: none;
  }
}