section {
  padding: clamp(25px, 4.5vw, 60px);
}
section > h1 {
  font-family: var(--h-font);
  letter-spacing: var(--h-letter-spacing);
  margin: 10px 0;
  font-size: clamp(30px, 3.5vw, 45px);
  text-transform: uppercase;
}
section > h2 {
  margin: 10px 0;
  font-size: clamp(20px, 3.2vw, 35px);
}
section > h3 {
  margin: 10px 0;
  font-size: clamp(19px, 3vw, 24px);
}
section p {
  margin: 10px 0;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--gray1);
}

section.hero {
  padding: 0;
}

section.card > .card-flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}
section.card > .card-flex * {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}
section.card > .card-flex > .card {
  flex-grow: 1;
  filter: drop-shadow(0 0 0.6rem rgb(22, 22, 22));
  overflow: hidden;
  border-radius: 10px;
  width: 300px;
}
section.card > .card-flex > .card > .img {
  --card-gradient: radial-gradient(circle at center, rgba(0, 0, 0, 0.750), rgba(0, 0, 0, 0.400));
  padding: 30px;
  padding-bottom: 10px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
section.card > .card-flex > .card > .img > h1 {
  font-size: clamp(25px, 2.5vw, 30px);
  color: white;
  margin: auto 0;
}
section.card > .card-flex > .card > .img > h3 {
  font-size: 13px;
  color: white;
  margin: 0;
  margin-top: auto;
}
section.card > .card-flex > .card > .img > i {
  font-size: 30px;
  color: white;
}
section.card > .card-flex > .card > .text {
  position: absolute;
  top: 250px;
  width: 100%;
  height: 250px;
  background-color: white;
  margin: 0;
  padding: 20px;
}
section.card > .card-flex > .card > .text > h1 {
  color: black !important;
  font-size: 22px;
  margin: 0;
  margin-bottom: 5px;
}
section.card > .card-flex > .card > .text > p {
  color: var(--gray1) !important;
  margin: 0;
  font-size: clamp(16px, 2vw, 17px);
}
section.card > .card-flex > .card:hover {
  transform: scale(1.08);
  z-index: 999;
}
section.card > .card-flex > .card:hover > .text {
  top: 0;
}

section.link-card .card {
  cursor: pointer;
}

.bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
  margin-top: 30px;
  flex-direction: column;
}
.bullets > div {
  margin-left: -3px;
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.9vw, 10px);
}
.bullets > div h1 {
  flex-shrink: 100;
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
}
.bullets > div span {
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--blue3);
}
.bullets > div > div.text * {
  display: block;
}
.bullets > div > div.text > h1 > a {
  color: black;
  transition-duration: 0.1s;
  cursor: pointer;
}
.bullets > div > div.text > h1 > a:hover {
  color: var(--blue1) !important;
  transform: translateX(10px);
}
.bullets > div > div.text > p {
  margin: 0;
  font-size: 15px;
}

section.blue .bullets > div > div.text > h1 > a {
  color: white !important;
}
section.blue .bullets > div > div.text > h1 > a:hover {
  color: var(--gray3) !important;
}

section.points-of-contact > .contacts-flex {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media only screen and (max-width: 830px) {
  section.points-of-contact > .contacts-flex {
    justify-content: center;
  }
}
section.points-of-contact > .contacts-flex > .contact {
  text-align: center;
}
section.points-of-contact > .contacts-flex > .contact img {
  border-radius: 50%;
  width: 160px;
  aspect-ratio: 1;
}
section.points-of-contact > .contacts-flex > .contact h1 {
  color: var(--blue1);
  font-weight: 1000;
  font-size: 25px;
}
section.points-of-contact > .contacts-flex > .contact h2 {
  margin: 0 auto;
  height: 50px;
  color: var(--gray1);
  font-weight: 400;
  font-size: 20px;
  max-width: 200px;
}
section.points-of-contact > .contacts-flex > .contact h3 {
  color: var(--blue3);
  font-size: 15px;
}
section.points-of-contact > .contacts-flex > .contact a {
  margin: 20px auto;
}

section.past-exercises > a {
  margin-top: 20px;
}
section.past-exercises > div.year {
  display: flex;
  margin: 70px 0;
  align-items: center;
  gap: clamp(20px, 2.3vw, 40px);
}
section.past-exercises > div.year > div.img {
  width: 100%;
  align-self: stretch;
  clip-path: polygon(0 0, 100% 0%, calc(100% - 170px) 100%, 0% 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.past-exercises > div.year > div.content {
  margin: 20px 0;
  text-align: right;
  max-width: 40vw;
}
section.past-exercises > div.year > div.content > h1 {
  margin: 8px 0;
  font-size: clamp(30px, 2.4vw, 40px);
  font-family: var(--h-font);
  letter-spacing: var(--h-letter-spacing);
}
section.past-exercises > div.year > div.content > p {
  margin-bottom: 40px;
}
section.past-exercises > div.year > div.content > a.button {
  margin: 20px 0;
  margin-left: auto;
}
section.past-exercises > div.reverse-year {
  flex-direction: row-reverse;
}
section.past-exercises > div.reverse-year > div.img {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 170px 100%);
}
section.past-exercises > div.reverse-year > div.content {
  text-align: left;
}
section.past-exercises > div.reverse-year > div.content > a.button {
  margin-right: auto;
  margin-left: 0;
}
@media only screen and (max-width: 1100px) {
  section.past-exercises > div.year {
    flex-wrap: wrap;
    gap: 20px;
  }
  section.past-exercises > div.year > div.img {
    height: 300px;
    clip-path: none;
  }
  section.past-exercises > div.year > div.content {
    margin-right: auto;
    text-align: left;
    max-width: 100%;
  }
  section.past-exercises > div.year > div.content > a.button {
    margin-left: 0;
    margin-right: auto;
  }
}

section.schedule > div.container > h3 {
  font-size: 20px;
  color: white;
  font-weight: 900;
  margin-top: 50px;
  margin-bottom: 9px;
}
section.schedule > div.container > div.card {
  margin-bottom: 15px;
  display: flex;
  background-color: white;
  padding: 15px;
  border-radius: 15px;
  gap: 20px;
}
section.schedule > div.container > div.card > div.date {
  min-width: clamp(70px, 10vw, 85px);
  height: max-content;
  box-sizing: border-box;
  background-color: var(--blue3);
  text-align: center;
  padding: 15px 0;
  border-radius: 10px;
}
section.schedule > div.container > div.card > div.date > h1 {
  color: white;
  font-size: clamp(35px, 5vw, 48px);
  margin: 0;
}
section.schedule > div.container > div.card > div.date > h2 {
  text-transform: uppercase;
  color: white;
  font-size: clamp(15px, 2.6vw, 20px);
  margin: 0;
}
@media only screen and (max-width: 580px) {
  section.schedule > div.container > div.card > div.date {
    width: 100%;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  section.schedule > div.container > div.card > div.date > h1 {
    font-size: 20px;
  }
  section.schedule > div.container > div.card > div.date > h2 {
    font-size: 15px;
  }
}
section.schedule > div.container > div.card > div.text > h1 {
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 900;
  color: black;
  margin: 10px 0;
}
section.schedule > div.container > div.card > div.text > p {
  font-size: clamp(15px, 2.3vw, 19px);
  color: var(--gray1);
}
section.schedule > div.container > div.card > div.text > p a {
  color: var(--blue3);
}
section.schedule > div.container > div.card > div.text > p a:hover {
  color: var(--gray1);
}
@media only screen and (max-width: 580px) {
  section.schedule > div.container > div.card {
    flex-wrap: wrap;
    gap: 0;
  }
}

section.partners > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
section.partners > div img {
  cursor: pointer;
  max-width: clamp(150px, 15vw, 220px);
  max-height: clamp(100px, 10vw, 150px);
}

div.small-img,
section.small-img {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 800px) {
  div.small-img,
  section.small-img {
    flex-wrap: wrap;
    gap: 10px;
  }
}
div.small-img img,
section.small-img img {
  width: clamp(180px, 15vw, 250px);
}
@media only screen and (max-width: 800px) {
  div.small-img img,
  section.small-img img {
    width: 120px;
  }
  div.small-img img[hide-mobile],
  section.small-img img[hide-mobile] {
    display: none;
  }
}
div.small-img h1,
section.small-img h1 {
  font-size: clamp(25px, 3vw, 30px);
  margin: 15px 0;
  margin-top: 0;
}
div.small-img a,
section.small-img a {
  margin-top: 20px;
}

section.image-grid {
  padding: clamp(8px, 2vw, 25px);
  gap: clamp(5px, 1vw, 20px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
section.image-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media only screen and (max-width: 800px) {
  section.image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 500px) {
  section.image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 350px) {
  section.image-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

section.blue {
  background-color: var(--blue3);
}
section.blue h1 {
  color: white;
}
section.blue a:not(.button):hover {
  color: var(--gray3);
}
section.blue p {
  color: var(--gray3);
}
section.blue .bullets > div > span {
  color: white;
}
section.blue .bullets > div > span .fa-inverse {
  color: var(--blue3);
}

/*# sourceMappingURL=sections.css.map */
