@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body, html {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
  width: 100%;
  padding: 0 2.5%;
  z-index: 6;
  background: #fff;
}
header img {
  height: 4.5rem;
  width: 4.5rem;
}
header nav {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2rem;
}
header nav a {
  color: #000;
  font-size: 1.2em;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
header nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  height: 2px;
  width: 0%;
  transition: 0.15s ease;
}
header nav a:hover::after {
  width: 100%;
}
header #ham {
  height: 2.25rem;
  width: 2.25rem;
  background: none;
  border: none;
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
header #ham div {
  height: 0.25rem;
  width: 100%;
  background: #160B58;
  margin: 0.25rem 0;
  border-radius: 10px;
  transition: 0.5s ease;
}
header #ham div.active:first-child {
  transform: translate(0, 12px) rotate(45deg);
}
header #ham div.active:nth-child(2) {
  opacity: 0;
}
header #ham div.active:nth-child(3) {
  transform: translate(0, -12px) rotate(-45deg);
}

#offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 50%;
  background: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: 0.5s ease;
  z-index: 5;
}
#offcanvas.active {
  transform: translateX(0);
}
#offcanvas a {
  color: #000;
  text-decoration: none;
  font-size: 1.25em;
}

@media only screen and (max-width: 900px) {
  header {
    height: 5rem;
    position: sticky;
    top: 0;
    left: 0;
    background: #fff;
  }
  header img {
    height: 4rem;
    width: 4rem;
  }
  header nav {
    display: none;
  }
  header #ham {
    display: flex;
  }
  #offcanvas {
    display: flex;
  }
}
footer {
  padding: 1.5rem 10%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 4;
}
footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
footer nav a {
  font-size: 1.15em;
  text-decoration: none;
  color: #000;
  position: relative;
}
footer nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  height: 2px;
  width: 0%;
  transition: 0.15s ease;
}
footer nav a:hover::after {
  width: 100%;
}
footer img {
  height: 4rem;
  width: 4rem;
}

@media only screen and (max-width: 850px) {
  footer {
    flex-flow: column;
    gap: 1.5rem;
  }
  footer nav {
    gap: 1rem;
    flex-flow: row wrap;
  }
  footer nav a {
    font-size: 1em;
  }
}
.title {
  height: calc(100vh - 6rem);
  width: 100%;
  background: url("../../img/gym3.jpg");
  background-size: cover;
  background-position: center;
  padding: 0 10%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  position: relative;
}
.title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.title #title-img {
  height: 45rem;
  max-height: 85vh;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: scaleX(-1);
  z-index: 2;
}
.title h1 {
  font-size: 12em;
  color: #fff;
  line-height: 0.8em;
  font-weight: 900;
  text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}
.title h1:nth-child(2) {
  z-index: 2;
}
.title p {
  font-size: 1.25em;
  color: #fff;
  width: 50%;
  font-weight: 300;
  margin: 2rem 0 3rem;
  text-align: justify;
  z-index: 2;
}
.title .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  z-index: 2;
}
.title .buttons button {
  border: none;
  background: none;
  border-radius: 10px;
  position: relative;
  transition: transform 0.1s ease, background 0.1s ease;
}
.title .buttons button:hover {
  transform: scale(1.05);
}
.title .buttons button:first-child {
  background: rgb(18, 45, 157);
  background: linear-gradient(66deg, rgb(18, 45, 157) 0%, rgb(65, 84, 255) 100%);
}
.title .buttons button:nth-child(2) {
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid #fff;
}
.title .buttons button:nth-child(2):hover {
  background: rgba(255, 255, 255, 0.5);
}
.title .buttons button a {
  display: block;
  padding: 0.75em 2.5em;
  color: #fff;
  font-size: 1.75em;
  text-decoration: none;
  position: relative;
}

.recruiting {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 4rem 10%;
  position: relative;
}
.recruiting .part:first-child {
  display: flex;
  justify-content: start;
  align-items: center;
}
.recruiting .part:first-child img {
  height: 45rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.recruiting .part:first-child .star {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30rem;
  width: 30rem;
  z-index: -1;
  stroke-width: 1.5;
  stroke: rgba(0, 0, 0, 0.3);
  transform: translate(-25%, 25%);
}
.recruiting .part:nth-child(2) h2 {
  font-size: 12em;
  font-weight: 900;
}
.recruiting .part:nth-child(2) p {
  font-size: 1.15em;
  width: 100%;
  margin: 1rem 0;
  line-height: 1.75em;
  text-align: justify;
}
.recruiting .part:nth-child(2) button {
  background: #000;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 0 0 #000;
  transition: box-shadow 0.2s ease;
  margin-top: 1rem;
}
.recruiting .part:nth-child(2) button:hover {
  box-shadow: 0 0 0 1px #000;
}
.recruiting .part:nth-child(2) button a {
  display: block;
  padding: 0.75em 1.5em;
  text-decoration: none;
  color: #fff;
  font-size: 1.5em;
}

.trainings {
  padding: 4rem 10%;
}
.trainings .trainings-content {
  background: rgb(18, 45, 157);
  background: linear-gradient(66deg, rgb(18, 45, 157) 0%, rgb(65, 84, 255) 100%);
  padding: 3rem 5%;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.35);
}
.trainings .trainings-content * {
  position: relative;
  z-index: 2;
}
.trainings .trainings-content .star {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 20rem;
  width: 20rem;
  stroke: rgba(0, 0, 0, 0.5);
  stroke-width: 1.5;
  transform: translate(20%, -20%);
}
.trainings .trainings-content h2 {
  color: #fff;
  font-size: 8em;
  font-weight: 900;
}
.trainings .trainings-content #age {
  font-size: 2em;
  color: #fff;
}
.trainings .trainings-content nav {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5rem;
  margin: 1rem 0 0;
}
.trainings .trainings-content nav button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2em;
  font-weight: 400;
  transition: 0.2s ease;
  cursor: pointer;
}
.trainings .trainings-content nav button.active, .trainings .trainings-content nav button:hover {
  color: #fff;
  transform: scale(1.05);
}
.trainings .trainings-content .times {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  scroll-behavior: smooth;
  margin-top: 2rem;
}
.trainings .trainings-content .times .times-parent {
  height: 100%;
  width: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}
.trainings .trainings-content .times .times-parent .age {
  font-size: 1.75em;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1rem;
  padding-left: 1.5vw;
}
.trainings .trainings-content .times .times-parent .time-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
.trainings .trainings-content .times .times-parent .time-content .time {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.trainings .trainings-content .times .times-parent .time-content .time h3 {
  font-size: 3em;
  text-align: center;
}
.trainings .trainings-content .times .times-parent .category-contact {
  margin-top: 2rem;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  padding-left: 1.5vw;
}
.trainings .trainings-content .times .times-parent .category-contact .name {
  font-size: 1.25em;
  color: #fff;
  margin-bottom: 0.5rem;
}
.trainings .trainings-content .times .times-parent .category-contact a {
  font-size: 1em;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.trainings .trainings-content .times .times-parent .category-contact a svg {
  height: 1.35em;
  width: 1.35em;
}

.contacts {
  padding: 4rem 10%;
  position: relative;
}
.contacts h2 {
  font-size: 10em;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 900;
}
.contacts .contacts-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 2;
  position: relative;
}
.contacts .contacts-content .part:first-child img {
  height: 30rem;
}
.contacts .contacts-content .part:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  gap: 2rem;
}
.contacts .contacts-content .part:nth-child(2) a {
  text-decoration: none;
  color: #000;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
}
.contacts .contacts-content .part:nth-child(2) a:hover .icon {
  transform: scale(1.05);
}
.contacts .contacts-content .part:nth-child(2) a .icon {
  height: 4rem;
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #03129B;
  border-radius: 50%;
  transition: transform 0.15s ease;
}
.contacts .contacts-content .part:nth-child(2) a .icon svg {
  height: 2rem;
  width: 2rem;
  color: #fff;
}
.contacts .contacts-content .part:nth-child(2) a span {
  font-size: 1.5em;
}
.contacts .contacts-content .part:nth-child(2) button {
  border: none;
  border-radius: 10px;
  position: relative;
  transition: transform 0.15s ease;
  background: rgb(18, 45, 157);
  background: linear-gradient(66deg, rgb(18, 45, 157) 0%, rgb(65, 84, 255) 100%);
}
.contacts .contacts-content .part:nth-child(2) button:hover {
  transform: scale(1.025);
}
.contacts .contacts-content .part:nth-child(2) button a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75em 2.5em;
  color: #fff;
  font-size: 1.5em;
  text-decoration: none;
  position: relative;
}
.contacts .star {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  height: 20rem;
  width: 20rem;
  stroke: rgba(0, 0, 0, 0.5);
  stroke-width: 1.5;
  transform: translate(20%, 50%);
}

.sponsors {
  padding: 4rem 10%;
}
.sponsors h2 {
  font-size: 7em;
  font-weight: 900;
  text-align: center;
}
.sponsors .sponsors-content {
  width: 100%;
}
.sponsors .sponsors-content .row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin: 2rem 0;
}
.sponsors .sponsors-content .row .sponsor {
  width: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sponsors .sponsors-content .row .sponsor img {
  width: 100%;
}

.map {
  width: 100%;
  height: 25rem;
}

@media only screen and (max-width: 1400px) {
  .title h1 {
    font-size: 10em;
  }
  .title #title-img {
    height: 35rem;
  }
  .recruiting {
    padding: 4rem 5%;
  }
  .recruiting .part:first-child img {
    height: 40rem;
  }
  .recruiting .part:nth-child(2) h2 {
    font-size: 9em;
  }
  .recruiting .part:nth-child(2) p {
    font-size: 1em;
  }
  .trainings {
    padding: 4rem 5%;
  }
  .trainings .trainings-content h2 {
    font-size: 7em;
  }
  .trainings .trainings-content .times .time h3 {
    font-size: 2.25em;
  }
  .contacts {
    padding: 4rem 5%;
  }
  .contacts h2 {
    font-size: 8em;
  }
  .sponsors {
    padding: 4rem 5%;
  }
  .sponsors h2 {
    font-size: 6em;
  }
}
@media only screen and (max-width: 1500px) {
  .trainings .trainings-content .times .times-parent .time-content .time {
    width: 275px;
  }
  .trainings .trainings-content .times .times-parent .time-content .time h3 {
    font-size: 2.5em;
  }
}
@media only screen and (max-width: 1200px) {
  .title h1 {
    font-size: 7.5em;
  }
  .title #title-img {
    height: 25rem;
  }
  .title p {
    margin: 1rem 0 2rem;
  }
  .title .buttons {
    flex-flow: column;
    gap: 1rem;
    align-items: start;
  }
  .title .buttons button a {
    font-size: 1.3em;
  }
  .recruiting .part:first-child img {
    height: 35rem;
  }
  .recruiting .part:nth-child(2) h2 {
    font-size: 7em;
  }
  .trainings .trainings-content h2 {
    font-size: 5em;
  }
  .trainings .trainings-content #age {
    font-size: 1.5em;
  }
  .trainings .trainings-content .times .times-parent .time-content .time {
    width: 250px;
  }
  .trainings .trainings-content .times .times-parent .time-content .time h3 {
    font-size: 1.5em;
  }
  .contacts h2 {
    font-size: 7em;
  }
  .sponsors h2 {
    font-size: 5em;
  }
}
@media only screen and (max-width: 850px) {
  .title {
    justify-content: start;
    padding-top: 5rem;
  }
  .title h1 {
    font-size: 7em;
  }
  .title p {
    width: 85%;
    margin: 1rem 0 2rem;
  }
  .title #title-img {
    height: 50vh;
  }
  .title .buttons button a {
    font-size: 1.35em;
  }
  .recruiting {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
  }
  .recruiting .part:first-child .star {
    bottom: initial;
    top: 0;
    transform: translate(-25%, -25%);
  }
  .recruiting .part:nth-child(2) {
    margin-top: 3rem;
  }
  .recruiting .part:nth-child(2) h2 {
    font-size: 6em;
  }
  .recruiting .part:nth-child(2) p {
    line-height: 1.5em;
    margin: 1rem 0;
  }
  .trainings .trainings-content .star {
    height: 12rem;
    width: 12rem;
  }
  .trainings .trainings-content h2 {
    font-size: 4em;
  }
  .trainings .trainings-content nav {
    margin: 1.5rem 0 0;
    gap: 2.5rem;
  }
  .trainings .trainings-content nav button {
    font-size: 1em;
  }
  .trainings .trainings-content .times .times-parent .age {
    font-size: 1.35em;
  }
  .trainings .trainings-content .times .times-parent .time-content .time {
    width: 150px;
  }
  .trainings .trainings-content .times .times-parent .time-content .time h3 {
    font-size: 1.4em;
  }
  .contacts h2 {
    font-size: 6em;
  }
  .contacts .contacts-content {
    flex-flow: column;
    gap: 2.5rem;
  }
  .contacts .contacts-content .part:nth-child(2) {
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .contacts .contacts-content .part:nth-child(2) a {
    gap: 0.5rem;
  }
  .contacts .contacts-content .part:nth-child(2) button {
    margin-left: auto;
  }
  .contacts .star {
    height: 12rem;
    width: 12rem;
    bottom: initial;
    top: 0;
    transform: translate(20%, 100%);
  }
  .sponsors h2 {
    font-size: 4.5em;
  }
  .sponsors .sponsors-content .row {
    gap: 2rem;
  }
}
@media only screen and (max-width: 700px) {
  .title {
    height: calc(100vh - 5rem);
    padding: 3rem 5% 0;
  }
  .title h1 {
    font-size: 4.5em;
  }
  .title #title-img {
    height: 35vh;
  }
  .title p {
    font-size: 1em;
  }
  .title .buttons {
    flex-flow: column;
    gap: 1rem;
  }
  .recruiting .part:first-child img {
    width: 100%;
    height: initial;
  }
  .recruiting .part:first-child .star {
    top: 50%;
    height: 8rem;
    width: 8rem;
    left: initial;
    right: 0;
    transform: translate(10%, -40%);
  }
  .recruiting .part:nth-child(2) h2 {
    font-size: 4.5em;
    margin-bottom: 2rem;
  }
  .recruiting .part:nth-child(2) p {
    font-size: 1em;
    margin: 0.5rem 0;
  }
  .recruiting .part:nth-child(2) button {
    margin-top: 1rem;
  }
  .trainings .trainings-content h2 {
    font-size: 3em;
  }
  .trainings .trainings-content #age {
    font-size: 1.1em;
  }
  .trainings .trainings-content nav {
    gap: 1.5rem;
    row-gap: 0.75rem;
    flex-flow: row wrap;
  }
  .trainings .trainings-content nav button {
    font-size: 1em;
  }
  .trainings .trainings-content .times .times-parent .time-content {
    flex-flow: column;
    align-items: start;
  }
  .trainings .trainings-content .times .times-parent .time-content .time {
    width: 250px;
  }
  .trainings .trainings-content .times .times-parent .time-content .time h3 {
    font-size: 1.75em;
  }
  .contacts h2 {
    font-size: 4em;
  }
  .contacts .contacts-content .part:first-child img {
    height: 20rem;
  }
  .contacts .contacts-content .part:nth-child(2) {
    padding: 0 10%;
  }
  .contacts .contacts-content .part:nth-child(2) a {
    gap: 1rem;
  }
  .contacts .contacts-content .part:nth-child(2) a .icon {
    height: 3.5rem;
    width: 3.5rem;
  }
  .contacts .contacts-content .part:nth-child(2) a .icon svg {
    height: 1.5rem;
    width: 1.5rem;
  }
  .contacts .contacts-content .part:nth-child(2) a span {
    font-size: 1.2em;
  }
  .contacts .star {
    transform: translate(20%, 150%);
    height: 8rem;
    width: 8rem;
  }
  .sponsors h2 {
    font-size: 3em;
    margin-bottom: 1rem;
  }
  .sponsors .sponsors-content .row img {
    height: 2.5rem;
  }
}
@media only screen and (min-width: 700px) and (max-height: 700px) {
  .title #title-img {
    height: 70vh;
  }
  .title h1 {
    font-size: 6em;
  }
  .title p {
    font-size: 1em;
  }
  .title .buttons button a {
    font-size: 1em;
  }
}/*# sourceMappingURL=style.css.map */