/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6
Large: 1.8

- Letter spacing
-0.5px
0.75px

--- 02 COLORS */
/* --- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", sans-serif;
  color: #2c2c2c;
}

.header {
  height: 100vh;
  background-image: radial-gradient(rgba(44, 44, 44, 0.8), rgba(13, 65, 137, 0.6)), url(../img/hero-img.JPG);
  background-size: cover;
  background-position: top;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 4.8rem;
  position: relative;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo-icon {
  height: 12.8rem;
}
.header__social {
  position: absolute;
  top: 7.5rem;
  right: 6.2rem;
  transition: transform 0.2s;
}
.header__social-flex {
  display: flex;
  gap: 3.2rem;
  align-items: center;
  justify-content: center;
}
.header__social-link:link, .header__social-link:visited {
  text-decoration: none;
  font-size: 4.8rem;
  color: #fff;
}
.header__social-link:hover {
  color: #c2d6df;
}
.header__social-link:active {
  transform: translateY(2px);
  transition: all 0.2s;
}
.header__text-box {
  height: 75vh;
}
.header__heading-primary {
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 8px 16px rgba(44, 44, 44, 0.4);
  font-size: 9.8rem;
  letter-spacing: 0.8px;
  margin-bottom: 4.4rem;
}
.header__bottom-info {
  height: 15vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: flex-end;
  gap: 10%;
}
.header__info-box {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.header__info-number {
  font-size: 7.4rem;
  color: #6785b3;
  font-weight: 500;
}
.header__info-text {
  font-size: 2rem;
  color: #fff;
}

.language-selector {
  appearance: none;
  border: 2px solid #fff;
  color: #fff;
  background-color: #fff;
  border-radius: 5px;
  padding: 1rem 4rem 1rem 1.5rem;
  margin-top: -1rem;
  font-size: 16px;
  cursor: pointer;
  background: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="10" height="5" viewBox="0 0 10 5"%3E%3Cpath fill="%23FFFFFF" d="M0 0l5 5 5-5z"%3E%3C/path%3E%3C/svg%3E') no-repeat right 10px center;
  background-size: 1rem;
}

.container {
  /* 1140px */
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.section__featured {
  padding: 6.4rem 0 3.2rem 0;
}

.section__featured-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-row-gap: 1.6rem;
  justify-items: center;
}
.section__featured-logos-image {
  height: 9.8rem;
  width: 9.8rem;
  filter: saturate(0);
}
.section__featured-logos-image:hover {
  filter: saturate(100%);
  scale: 1.2;
  transition: all 0.2s;
}

.section__who {
  padding: 6.4rem 0 0 0;
}

.lazy-img {
  filter: blur(20px);
}

.heading__secondary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #2c2c2c;
  margin-bottom: 6.4rem;
}
.heading__secondary--low-margin {
  margin-bottom: 3.2rem;
}

.grid {
  display: grid;
  column-gap: 4.8rem;
  row-gap: 8rem;
  margin-bottom: 6.4rem;
}
.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.grid--2-cols-wide {
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.how__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
}

.how__description {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #2c2c2c;
}

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

.section__trainings {
  padding: 3.2rem 0 0 0;
}
.section__trainings-info {
  font-size: 4.4rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #0d4189;
  margin-bottom: 4.8rem;
}

.trainings__card:not(:last-child) {
  box-shadow: 0 2.4rem 4.8rem rgba(44, 44, 44, 0.075);
  border-radius: 11px;
  overflow: hidden;
}

.trainings__card-content-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.trainings__card-content-text {
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 1.2rem;
  color: #2c2c2c;
}

.trainings__name-box {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.trainings__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  list-style: none;
}
.trainings__list-item {
  display: flex;
  gap: 1.2rem;
  box-shadow: 0px 2px 0px transparent;
}
.trainings__list-item-icon {
  margin-left: 1.2rem;
  color: #0d4189;
  height: 2.4rem;
  width: 2.4rem;
}
.trainings__list-item-name {
  font-size: 2rem;
}
.trainings__list-item:hover {
  box-shadow: 0px 2px 0px #0d4189;
  transition: all 0.1s;
  cursor: pointer;
}
.trainings__list-item.active-item {
  box-shadow: 0px 2px 0px #0d4189;
}

.section__coaches {
  padding: 3.2rem 0 3.2rem 0;
}

.coaches__heading {
  display: flex;
  align-items: center;
}
.coaches__heading-text span {
  display: block;
  font-size: 6.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #0d4189;
  word-break: break-all;
}

.carousel__content {
  position: relative;
}

.carousel__slide {
  display: none;
  height: 35rem;
  background-color: rgb(14, 14, 14);
  border-radius: 11px;
  box-shadow: 0 8px 16px rgba(44, 44, 44, 0.4);
  padding: 0 1rem;
}

.carousel__slide.active {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2.4rem;
}

.carousel__info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 0 2.4rem;
}
.carousel__info-name {
  font-size: 2rem;
  text-align: center;
  color: #fff;
}
.carousel__info-text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #fff;
}

.carousel__img {
  width: 40rem;
  height: 45rem;
  margin-bottom: 3rem;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  height: 4.4rem;
  width: 4.4rem;
  cursor: pointer;
  color: #0d4189;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(44, 44, 44, 0.4);
  font-size: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.carousel__btn--left {
  left: -3%;
}
.carousel__btn--right {
  right: -3%;
}

.carousel__btn:hover {
  background-color: #0d4189;
  color: #fff;
}

.carousel__btn:active {
  transform: translateY(calc(-50% + 2px));
  box-shadow: 0 6px 12px rgba(44, 44, 44, 0.6);
}

.section__galery {
  padding: 3.2rem 0 3.2rem 0;
}

.carousel__container {
  position: relative;
  overflow: hidden;
}

.photo__slider {
  margin: 0 auto;
  height: 50rem;
  position: relative;
}
.photo__slider-img {
  position: absolute;
  left: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s ease-in-out;
  height: auto;
  width: 50%;
  object-fit: cover;
}

.slider__btn {
  width: 4.8rem;
  height: 4.8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0.5px solid #343a40;
  color: #0d4189;
  background-color: transparent;
  font-size: 3.5rem;
  cursor: pointer;
  border-radius: 5rem;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.slider__btn--left {
  left: 20.5%;
}
.slider__btn--right {
  right: 20.5%;
}

.slider__btn:hover {
  background-color: #0d4189;
  color: #fff;
}

.slider__btn:active {
  transform: translateY(calc(-50% + 2px));
}

.section__features {
  padding: 3.2rem 0 3.2rem 0;
}

.feature__icon {
  color: #fff;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #0d4189;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}
.feature__title {
  font-size: 2.4rem;
  color: #2c2c2c;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.feature__text {
  font-size: 1.8rem;
  line-height: 1.8;
}

.section__cta {
  padding: 3.2rem 0 3.2rem 0;
}

.cta {
  max-width: 50%;
  border-radius: 11px;
  background-image: linear-gradient(to right bottom, rgba(13, 65, 137, 0.8), rgba(13, 65, 137, 0.8)), url(../img/section-cta-background.JPG);
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 16px rgba(44, 44, 44, 0.4);
  margin-bottom: 8rem;
}
.cta__text {
  padding: 3.2rem 3.2rem 1.2rem 3.2rem;
}
.cta__text-heading {
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 600;
  color: #fff;
  padding: 2.4rem 0 2.4rem 0;
}
.cta__text-info {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #fff;
  padding: 1.2rem 0 1.2rem 0;
}

.link__container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.link__google:link, .link__google:visited {
  display: inline-block;
  border-radius: 11px;
  margin-bottom: 3.2rem;
  padding: 1.2rem;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 16px rgba(44, 44, 44, 0.4);
  background-color: #94aeca;
}

.link__google:hover {
  background-color: #6785b3;
  transition: all 0.2s;
}

.link__google:active {
  transform: translateY(1px);
  box-shadow: 0 4px 8px rgba(44, 44, 44, 0.4);
}

.footer {
  padding: 8rem 0;
  border-top: 1px solid #0d4189;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
  margin-bottom: 0;
}

.logo__col {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  display: block;
  margin-bottom: 3.2rem;
}
.footer__logo-img {
  width: 6.2rem;
  height: 6.2rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #343a40;
  margin-top: auto;
}

.footer__heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  color: #343a40;
}

.footer__link:link,
.footer__link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #94aeca;
  transition: all 0.3s;
}

.footer__link:hover,
.footer__link:active {
  color: #6785b3;
}

.nav__col {
  display: flex;
  align-items: center;
}

.nav__link:link, .nav__link:visited {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  color: #94aeca;
  transition: all 0.3s;
}

.nav__link:hover, .nav__link:active {
  color: #6785b3;
}

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