@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-Black.woff2") format("woff2"), url("../fonts/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
}

@media screen and (max-width: 1660px) {
  .container {
    width: 1140px;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    width: 970px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    width: 750px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 500;
  background: rgba(77, 63, 156, 0.85);
  padding: 9px 0 14px 0;
}

@media only screen and (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
}

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

@media only screen and (max-width: 1200px) {
  .header__start {
    position: relative;
    z-index: 10;
  }
}

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

.header__start-item:first-child {
  width: 69px;
  margin-right: 26px;
}

@media only screen and (max-width: 767px) {
  .header__start-item:first-child {
    width: 62px;
    margin-right: 22px;
  }
}

.header__start-item:last-child {
  width: 58px;
}

@media only screen and (max-width: 767px) {
  .header__start-item:last-child {
    width: 52px;
  }
}

.header__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__item {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-left: 150px;
}

@media only screen and (max-width: 1660px) {
  .header__item {
    margin-left: 80px;
  }
}

@media only screen and (max-width: 1200px) {
  .header__item {
    margin: 0;
    position: fixed;
    top: -150vh;
    left: 0;
    width: 100%;
    background: #7e65ff;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    padding: 140px 20px 100px 20px;
    align-items: flex-start;
    transition: 500ms;
  }
  .header__item.active {
    top: 0;
  }
}

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

@media only screen and (max-width: 1200px) {
  .header__nav {
    display: block;
    margin-bottom: 60px;
    width: 100%;
  }
}

.header__nav li {
  margin-right: 30px;
}

@media only screen and (max-width: 1660px) {
  .header__nav li {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .header__nav li {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .header__nav li:last-child {
    margin-bottom: 0;
  }
}

.header__nav li:last-child {
  margin-right: 0;
}

.header__nav li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .header__nav li a {
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: center;
  }
  .header__nav li a:first-letter {
    text-transform: capitalize;
  }
}

.header__nav li a:hover {
  color: #fff;
}

.header__nav li a.active {
  color: #fff;
}

.header__nav li a.active::before {
  position: absolute;
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  bottom: -10px;
  background: #fff;
  left: 50%;
  transform: translate(-50%, 0);
}

@media only screen and (max-width: 1200px) {
  .header__nav li a.active::before {
    display: none;
  }
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 165px;
  height: 40px;
  font-size: 14px;
  color: #fff;
}

@media only screen and (max-width: 1200px) {
  .header__btn {
    margin: 0 auto;
  }
}

.header__btn:hover {
  background: #7e65ff;
  border: 2px solid #7e65ff;
}

.header__burger {
  display: none;
  width: 30px;
}

@media only screen and (max-width: 1200px) {
  .header__burger {
    display: block;
    position: relative;
    z-index: 10;
  }
}

.header__burger a {
  display: block;
  cursor: pointer;
  padding: 12px 0;
}

.header__burger a span {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  transition: all 0.2s ease-in-out;
}

.header__burger a span:before, .header__burger a span:after {
  content: '';
  width: 30px;
  height: 3px;
  position: absolute;
  left: 0;
  background: #fff;
  border-radius: 7px;
  transition: all 0.2s ease-in-out;
}

.header__burger a span:before {
  top: -8px;
}

.header__burger a span:after {
  top: 8px;
}

.header__burger a.active span {
  background: transparent;
}

.header__burger a.active span:before {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__burger a.active span:after {
  transform: rotate(-45deg) translate(5px, -6px);
}

.showcase {
  background: url(../images/showcase-image.webp) no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-bottom: 145px;
  min-height: 660px;
}

@media only screen and (max-width: 1660px) {
  .showcase {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase {
    min-height: auto;
    height: auto;
    padding: 180px 0 140px 0;
    display: block;
  }
}

.showcase::before {
  content: '';
  display: block;
  width: 100%;
  height: calc(100% + 221px);
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/showcase-abs.svg) no-repeat;
  background-size: cover;
  background-position: center bottom;
}

@media only screen and (max-width: 1919px) {
  .showcase::before {
    background-size: 1920px;
  }
}

@media only screen and (max-width: 1660px) {
  .showcase::before {
    background-size: 1660px;
    height: calc(100% + 190px);
  }
}

@media only screen and (max-width: 991px) {
  .showcase::before {
    background-size: 1024px;
    height: calc(100% + 110px);
  }
}

.showcase .container {
  position: relative;
  z-index: 5;
}

.showcase__items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.showcase__new-block {
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.showcase__new-block.element-show {
  opacity: 1;
  transform: none;
}

.showcase__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 43px;
  position: relative;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.showcase__item.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 767px) {
  .showcase__item {
    margin-right: 32px;
  }
}

.showcase__item::before {
  content: '';
  display: block;
  width: 3px;
  background: #fff;
  height: 111px;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translate(0, -50%);
}

@media only screen and (max-width: 767px) {
  .showcase__item::before {
    width: 1px;
    height: 75px;
    right: -17px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__item:first-child {
    width: 85px;
  }
}

.showcase__item:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .showcase__item:last-child {
    width: 75px;
  }
}

.showcase__item:last-child::before {
  display: none;
}

.showcase__title {
  font-weight: 900;
  font-size: 72px;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Roboto';
  color: #fff;
}

@media only screen and (max-width: 1660px) {
  .showcase__title {
    font-size: 64px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__title {
    font-size: 32px;
  }
}

.showcase__text {
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #fff;
  margin-bottom: 22px;
}

@media only screen and (max-width: 1660px) {
  .showcase__text {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__text {
    font-size: 16px;
  }
}

.showcase__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 165px;
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}

.showcase__btn:hover {
  background: #7e65ff;
  border: 2px solid #7e65ff;
}

.showcase__arrow {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .showcase__arrow {
    bottom: 20px;
  }
}

.showcase__arrow span {
  display: block;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #fff;
  opacity: 0.6;
  transition: 300ms;
  margin-bottom: 9px;
}

@media only screen and (max-width: 767px) {
  .showcase__arrow span {
    font-size: 16px;
  }
}

.showcase__arrow svg {
  -webkit-animation: arrow 3s infinite;
  animation: arrow 3s infinite;
}

@-webkit-keyframes arrow {
  0% {
    transform: none;
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: none;
  }
}

@keyframes arrow {
  0% {
    transform: none;
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: none;
  }
}

.showcase__arrow svg g {
  transition: 300ms;
}

.showcase__arrow:hover span {
  opacity: 1;
}

.showcase__arrow:hover svg g {
  opacity: 1;
}

.friends {
  position: relative;
  padding: 230px 0 206px 0;
  z-index: 5;
}

@media only screen and (max-width: 1660px) {
  .friends {
    padding: 200px 0;
  }
}

@media only screen and (max-width: 991px) {
  .friends {
    padding: 180px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .friends {
    padding: 140px 0 60px 0;
  }
}

.friends__inner {
  position: relative;
}

.friends__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: 300ms;
}

@media only screen and (max-width: 991px) {
  .friends__circle {
    display: none;
  }
}

.friends__circle-first {
  top: -90px;
  left: -110px;
}

@media only screen and (max-width: 1660px) {
  .friends__circle-first {
    width: 220px;
    left: -75px;
  }
}

@media only screen and (max-width: 1200px) {
  .friends__circle-first {
    width: 175px;
    left: -50px;
  }
}

.friends__circle-second {
  bottom: -161px;
  right: -213px;
}

@media only screen and (max-width: 1660px) {
  .friends__circle-second {
    width: 300px;
    right: -160px;
    bottom: -135px;
  }
}

@media only screen and (max-width: 1200px) {
  .friends__circle-second {
    width: 220px;
    right: -100px;
  }
}

.friends__items {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 991px) {
  .friends__items {
    display: block;
  }
}

.friends__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 630px;
  width: 630px;
  margin-right: 44px;
  transition: 1000ms;
  opacity: 0;
}

.friends__image.element-show {
  opacity: 1;
}

@media only screen and (max-width: 1660px) {
  .friends__image {
    min-width: 550px;
    width: 550px;
  }
}

@media only screen and (max-width: 1200px) {
  .friends__image {
    min-width: 500px;
    width: 500px;
    margin-right: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .friends__image {
    margin: 0 auto 30px auto;
    min-width: auto;
    width: 100%;
  }
}

.friends__title {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 13px;
}

@media only screen and (max-width: 1660px) {
  .friends__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 1200px) {
  .friends__title {
    font-size: 28px;
  }
}

.friends__item {
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.friends__item.element-show {
  opacity: 1;
  transform: none;
}

.friends__info {
  color: #7c8284;
  margin-bottom: 14px;
}

@media only screen and (max-width: 1200px) {
  .friends__info {
    font-size: 16px;
  }
}

.friends__info span {
  display: block;
  color: #000;
  font-weight: 700;
}

.friends__info p {
  margin-bottom: 25px;
}

.friends__info p:last-child {
  margin-bottom: 0;
}

.friends__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7e65ff;
  border-radius: 20px;
  width: 165px;
  height: 40px;
  font-size: 14px;
  color: #7e65ff;
}

.friends__btn:hover {
  background: #7e65ff;
  color: #fff;
}

.project {
  position: relative;
  background: url(../images/project-abs.svg) no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 187px;
  padding: 260px 0 285px 0;
  margin-top: -170px;
}

@media only screen and (max-width: 1660px) {
  .project {
    padding: 220px 0 240px 0;
    margin-top: -150px;
    margin-bottom: 140px;
  }
}

@media only screen and (max-width: 1200px) {
  .project {
    padding: 200px 0 140px 0;
  }
}

@media only screen and (max-width: 991px) {
  .project {
    margin-bottom: 80px;
    padding: 200px 0 160px 0;
    margin-top: -45px;
  }
}

@media only screen and (max-width: 767px) {
  .project {
    padding: 160px 0 140px 0;
    margin-bottom: 40px;
  }
}

.project__inner {
  position: relative;
}

.project__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: 300ms;
}

@media only screen and (max-width: 1200px) {
  .project__circle {
    display: none;
  }
}

.project__circle-first {
  left: -232px;
  top: -85px;
}

@media only screen and (max-width: 1660px) {
  .project__circle-first {
    width: 220px;
    left: -200px;
    top: -100px;
  }
}

.project__circle-second {
  top: -384px;
  right: -213px;
}

.project__circle-third {
  bottom: -170px;
  right: -160px;
  z-index: 15;
}

@media only screen and (max-width: 1660px) {
  .project__circle-third {
    width: 320px;
    right: -130px;
    bottom: -145px;
  }
}

.project__items {
  display: flex;
  position: relative;
  z-index: 5;
  align-items: flex-end;
}

@media only screen and (max-width: 1660px) {
  .project__items {
    align-items: center;
  }
}

@media only screen and (max-width: 1200px) {
  .project__items {
    display: block;
  }
}

.project__item {
  padding-bottom: 75px;
}

@media only screen and (max-width: 1660px) {
  .project__item {
    padding-bottom: 0;
  }
}

.project__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 554px;
  min-width: 554px;
  margin-left: 20px;
  transition: 1000ms;
  opacity: 0;
  transform: scale(0);
}

.project__image.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 1660px) {
  .project__image {
    min-width: 450px;
    width: 450px;
  }
}

@media only screen and (max-width: 1200px) {
  .project__image {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 991px) {
  .project__image {
    min-width: auto;
    width: 100%;
  }
}

.project__title {
  font-weight: 700;
  font-size: 36px;
  color: #000;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1660px) {
  .project__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .project__title {
    font-size: 28px;
  }
}

.project__info {
  color: #7c8284;
  font-size: 16px;
}

.project__info p {
  margin-bottom: 25px;
}

.project__info p:last-child {
  margin-bottom: 0;
}

.project__info span {
  font-weight: 700;
  color: #000;
}

.help {
  margin-bottom: 275px;
}

@media only screen and (max-width: 1660px) {
  .help {
    margin-bottom: 220px;
  }
}

@media only screen and (max-width: 1200px) {
  .help {
    margin-bottom: 120px;
  }
}

@media only screen and (max-width: 991px) {
  .help {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .help {
    margin-bottom: 40px;
  }
}

.help__inner {
  position: relative;
}

.help__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: 1000ms;
  opacity: 0;
  transform: scale(0);
}

.help__circle.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 1200px) {
  .help__circle {
    display: none;
  }
}

.help__circle-first {
  left: -140px;
  top: -35px;
}

@media only screen and (max-width: 1660px) {
  .help__circle-first {
    width: 200px;
    top: -10px;
    left: -110px;
  }
}

.help__circle-second {
  right: -316px;
  bottom: -147px;
}

@media only screen and (max-width: 1660px) {
  .help__circle-second {
    width: 300px;
    right: -300px;
  }
}

.help__title {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 65px;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.help__title.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 1660px) {
  .help__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .help__title {
    font-size: 28px;
    margin-bottom: 35px;
  }
}

.help__items {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media only screen and (max-width: 1200px) {
  .help__items {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.help__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 500px;
  width: 500px;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.help__image.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 1200px) {
  .help__image {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 991px) {
  .help__image {
    min-width: auto;
    width: 100%;
  }
}

.help__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

@media only screen and (max-width: 1660px) {
  .help__item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media only screen and (max-width: 1200px) {
  .help__item {
    margin-bottom: 30px;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .help__item {
    grid-template-columns: 1fr;
  }
}

.help__block {
  display: flex;
  align-items: flex-start;
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.help__block.element-show {
  opacity: 1;
  transform: none;
}

.help__number {
  white-space: nowrap;
  font-weight: 700;
  font-size: 36px;
  margin-right: 20px;
  color: #eaf0f6;
}

@media only screen and (max-width: 767px) {
  .help__number {
    font-size: 28px;
    margin-right: 10px;
  }
}

.help__text {
  color: #7c8284;
}

@media only screen and (max-width: 767px) {
  .help__text {
    font-size: 16px;
  }
}

.help__text span {
  color: #000;
  font-weight: 700;
}

.resposibility {
  position: relative;
  background: url(../images/resposibility-abs.svg) no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 145px;
  padding: 140px 0 240px 0;
  color: #fff;
}

@media only screen and (max-width: 1660px) {
  .resposibility {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 1200px) {
  .resposibility {
    padding: 100px 0 180px 0;
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .resposibility {
    padding: 180px 0 200px 0;
  }
}

@media only screen and (max-width: 767px) {
  .resposibility {
    padding: 150px 0 145px 0;
    margin-bottom: 0px;
  }
}

.resposibility__inner {
  position: relative;
}

.resposibility__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -160px;
  right: -325px;
  transition: 300ms;
}

@media only screen and (max-width: 1660px) {
  .resposibility__circle {
    width: 360px;
  }
}

@media only screen and (max-width: 1200px) {
  .resposibility__circle {
    display: none;
  }
}

.resposibility__items {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .resposibility__items {
    display: block;
  }
}

.resposibility__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 670px;
  width: 670px;
  margin-left: 20px;
}

@media only screen and (max-width: 1660px) {
  .resposibility__image {
    min-width: 550px;
    width: 550px;
  }
}

@media only screen and (max-width: 1200px) {
  .resposibility__image {
    min-width: 480px;
    width: 480px;
  }
}

@media only screen and (max-width: 991px) {
  .resposibility__image {
    min-width: auto;
    width: 100%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

.resposibility__title {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1660px) {
  .resposibility__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .resposibility__title {
    font-size: 28px;
  }
}

.resposibility__info {
  color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 1200px) {
  .resposibility__info {
    font-size: 16px;
  }
}

.resposibility__info span {
  font-weight: 700;
  color: white;
}

.resposibility__info p {
  margin-bottom: 25px;
}

.resposibility__info p:last-child {
  margin-bottom: 0;
}

.sport {
  margin-bottom: 114px;
}

@media only screen and (max-width: 991px) {
  .sport {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .sport {
    margin-bottom: 0px;
  }
}

.sport__inner {
  position: relative;
}

.sport__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: 300ms;
}

@media only screen and (max-width: 991px) {
  .sport__circle {
    display: none;
  }
}

.sport__circle-first {
  top: -86px;
  left: -100px;
}

@media only screen and (max-width: 1660px) {
  .sport__circle-first {
    width: 220px;
    top: -95px;
    left: -95px;
  }
}

.sport__circle-second {
  right: -423px;
  bottom: -107px;
}

@media only screen and (max-width: 1660px) {
  .sport__circle-second {
    width: 320px;
    right: -350px;
    bottom: -95px;
  }
}

@media only screen and (max-width: 1200px) {
  .sport__circle-second {
    bottom: -150px;
    right: -250px;
  }
}

.sport__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .sport__items {
    flex-direction: column-reverse;
  }
}

.sport__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 555px;
  width: 555px;
  margin-right: 20px;
  border-radius: 40px;
  overflow: hidden;
  transition: 1000ms;
  opacity: 0;
}

.sport__image.element-show {
  opacity: 1;
}

@media only screen and (max-width: 1660px) {
  .sport__image {
    min-width: 460px;
    width: 460px;
  }
}

@media only screen and (max-width: 991px) {
  .sport__image {
    min-width: auto;
    width: 100%;
    margin-top: 30px;
    margin-right: auto;
  }
}

@media only screen and (max-width: 767px) {
  .sport__image {
    border-radius: 20px;
  }
}

.sport__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sport__title {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1660px) {
  .sport__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .sport__title {
    font-size: 28px;
  }
}

.sport__info {
  color: #7c8284;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1660px) {
  .sport__info {
    font-size: 16px;
  }
}

.sport__info p {
  margin-bottom: 25px;
}

.sport__info p:last-child {
  margin-bottom: 0;
}

.sport__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7e65ff;
  border-radius: 20px;
  width: 165px;
  height: 40px;
  font-size: 14px;
  color: #7e65ff;
}

.sport__btn:hover {
  background: #7e65ff;
  color: #fff;
}

.sport__item {
  transition: 1000ms;
  opacity: 0;
  transform: translateY(50px);
}

.sport__item.element-show {
  opacity: 1;
  transform: none;
}

.contacts {
  background: url(../images/contacts-bg.svg) no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 200px 0;
  position: relative;
}

@media only screen and (max-width: 1660px) {
  .contacts {
    padding: 180px 0 130px 0;
  }
}

@media only screen and (max-width: 1200px) {
  .contacts {
    padding: 180px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .contacts {
    padding: 180px 0 60px 0;
  }
}

.contacts__inner {
  position: relative;
  z-index: 5;
}

.contacts__abs {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -280px;
  right: -305px;
  transition: 300ms;
}

@media only screen and (max-width: 1660px) {
  .contacts__abs {
    width: 320px;
    right: -140px;
    bottom: -200px;
  }
}

@media only screen and (max-width: 1200px) {
  .contacts__abs {
    display: none;
  }
}

.contacts__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 991px) {
  .contacts__items {
    display: block;
  }
}

.contacts__banner {
  min-width: 555px;
  width: 555px;
  background: #7e65ff;
  margin-left: 20px;
  border-radius: 30px;
  padding: 90px 57px 160px 57px;
  color: #fff;
}

@media only screen and (max-width: 1660px) {
  .contacts__banner {
    min-width: 480px;
    width: 480px;
    padding: 60px 40px 120px 40px;
  }
}

@media only screen and (max-width: 1200px) {
  .contacts__banner {
    padding: 40px 25px;
    min-width: 420px;
    width: 420px;
  }
}

@media only screen and (max-width: 991px) {
  .contacts__banner {
    min-width: auto;
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .contacts__banner {
    border-radius: 20px;
    padding: 20px;
  }
}

.contacts__banner-title {
  margin-bottom: 23px;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1660px) {
  .contacts__banner-title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 1200px) {
  .contacts__banner-title {
    font-size: 24px;
  }
}

.contacts__banner-head {
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 18px;
}

@media only screen and (max-width: 1200px) {
  .contacts__banner-head {
    font-size: 16px;
  }
}

.contacts__banner-info {
  max-width: 362px;
}

@media only screen and (max-width: 1200px) {
  .contacts__banner-info {
    font-size: 16px;
    max-width: 100%;
  }
}

.contacts__banner-info p {
  margin-bottom: 20px;
}

.contacts__banner-info p:last-child {
  margin-bottom: 0;
}

.contacts__banner-info p a:hover {
  text-decoration: underline;
}

.contacts__item {
  width: 100%;
}

.contacts__item form {
  width: 100%;
}

.contacts__item form input {
  width: 100%;
  height: 60px;
  border: 1px solid #7c8284;
  border-radius: 30px;
  background: none;
  padding: 0 26px;
  color: #000;
  font-family: inherit;
  font-size: 18px;
  margin-bottom: 10px;
}

.contacts__item form input::-moz-placeholder {
  color: rgba(124, 130, 132, 0.5);
}

.contacts__item form input::-ms-input-placeholder {
  color: rgba(124, 130, 132, 0.5);
}

.contacts__item form input::placeholder {
  color: rgba(124, 130, 132, 0.5);
}

.contacts__item textarea {
  resize: none;
  width: 100%;
  font-family: inherit;
  height: 200px;
  border: 1px solid #7c8284;
  border-radius: 30px;
  background: none;
  padding: 20px 26px;
  color: #000;
  font-size: 18px;
  margin-bottom: 10px;
}

.contacts__item textarea::-moz-placeholder {
  color: rgba(124, 130, 132, 0.5);
}

.contacts__item textarea::-ms-input-placeholder {
  color: rgba(124, 130, 132, 0.5);
}

.contacts__item textarea::placeholder {
  color: rgba(124, 130, 132, 0.5);
}

.contacts__item button {
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 300ms;
  background: none;
  border: 2px solid #7c8284;
  border-radius: 20px;
  width: 165px;
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #7c8284;
}

@media only screen and (max-width: 767px) {
  .contacts__item button {
    width: 100%;
  }
}

.contacts__item button:hover {
  border: 2px solid #7e65ff;
  background: #7e65ff;
  color: #fff;
}

.contacts__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1660px) {
  .contacts__title {
    font-size: 32px;
  }
}

.contacts__text {
  max-width: 457px;
  color: #7c8284;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .contacts__text {
    font-size: 16px;
    max-width: 100%;
  }
}

.footer {
  background: #4d3f9c;
  color: #fff;
  padding: 29px 0;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 991px) {
  .footer {
    padding: 25px 0;
  }
}

.footer__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .footer__items {
    display: block;
  }
}

.footer__logo {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .footer__logo {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 20px;
    text-align: right;
  }
}

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

@media only screen and (max-width: 767px) {
  .footer__social {
    margin-bottom: 20px;
    justify-content: flex-end;
  }
}

.footer__social li {
  margin-right: 25px;
}

@media only screen and (max-width: 991px) {
  .footer__social li {
    margin-right: 15px;
  }
}

.footer__social li:last-child {
  margin-right: 0;
}

.footer__social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
}

.footer__social li a:hover {
  background: #e7e7e7;
}

@media only screen and (max-width: 991px) {
  .footer__copy {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .footer__copy {
    text-align: right;
  }
}

.footer__plice {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #cfcfcf;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .footer__plice {
    margin: 5px 0 !important;
  }
}

.footer__end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .footer__end {
    flex-direction: column;
    align-items: flex-end;
  }
}

.modal {
  border-radius: 20px;
  background: #fff;
  max-width: 600px;
  width: 100%;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .modal {
    max-width: 100%;
  }
}

.modal .f-button.is-close-btn {
  display: none;
}

.modal__inner {
  position: relative;
  padding: 50px 43px 43px 43px;
}

@media only screen and (max-width: 767px) {
  .modal__inner {
    padding: 50px 16px 40px 16px;
  }
}

.modal__strong {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  cursor: pointer;
  top: 22px;
  right: 26px;
}

@media only screen and (max-width: 767px) {
  .modal__strong {
    top: 16px;
    right: 16px;
  }
}

.modal__title {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .modal__title {
    font-size: 28px;
  }
}

.modal__text {
  text-align: center;
  color: #7c8284;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .modal__text {
    font-size: 16px;
  }
}

.modal form {
  width: 100%;
}

.modal form .contacts__form-input {
  width: 100%;
  height: 60px;
  border: 1px solid #7c8284;
  border-radius: 30px;
  text-align: center;
  background: none;
  padding: 0 26px;
  color: #000;
  font-family: inherit;
  font-size: 18px;
  margin-bottom: 10px;
}

.modal form .contacts__form-input::-moz-placeholder {
  color: rgba(124, 130, 132, 0.5);
}

.modal form .contacts__form-input::-ms-input-placeholder {
  color: rgba(124, 130, 132, 0.5);
}

.modal form .contacts__form-input::placeholder {
  color: rgba(124, 130, 132, 0.5);
}

.modal textarea {
  resize: none;
  width: 100%;
  font-family: inherit;
  height: 200px;
  border: 1px solid #7c8284;
  border-radius: 30px;
  background: none;
  padding: 20px 26px;
  color: #000;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}

.modal textarea::-moz-placeholder {
  color: rgba(124, 130, 132, 0.5);
}

.modal textarea::-ms-input-placeholder {
  color: rgba(124, 130, 132, 0.5);
}

.modal textarea::placeholder {
  color: rgba(124, 130, 132, 0.5);
}

.modal .modal__btn {
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 300ms;
  background: none;
  border: 2px solid #7c8284;
  border-radius: 20px;
  width: 165px;
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #7c8284;
  margin: 0 auto;
}

.modal .modal__btn:hover {
  border: 2px solid #7e65ff;
  background: #7e65ff;
  color: #fff;
}

.modal-thanks {
  border-radius: 20px;
  background: #fff;
  max-width: 600px;
  width: 100%;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .modal-thanks {
    max-width: 100%;
  }
}

.modal-thanks .f-button.is-close-btn {
  display: none;
}

.modal-thanks__image {
  width: 237px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px auto;
}

.modal-thanks__text {
  max-width: 340px;
  padding-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #3a2d83;
  text-align: center;
  margin: 0 auto 20px auto;
  border-bottom: 2px solid #d4dce1;
}

@media only screen and (max-width: 767px) {
  .modal-thanks__text {
    font-size: 16px;
    max-width: 100%;
  }
}

.modal-thanks__end {
  max-width: 340px;
  margin: 0 auto;
  text-align: center;
  color: #3a2d83;
  font-size: 18px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .modal-thanks__end {
    max-width: 100%;
    font-size: 16px;
  }
}

.modal__price {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.modal__end-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 220px;
  border-radius: 60px;
  margin: 20px auto 0 auto;
  background: #7e65ff;
  color: #fff;
  border: 1px  solid #7e65ff;
  font-size: 16px;
}

.modal__end-btn:hover {
  background: none;
  color: #7e65ff;
}

.number__number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px auto 12px auto;
  border: 1px solid #7C8284;
  width: 200px;
  height: 60px;
  border-radius: 60px;
}

.number__number input {
  width: 30px;
  background: none;
  color: #000;
  border: 0;
  text-align: center;
  margin: 0 16px;
  font-size: 18px;
  font-weight: 700;
}

.number__minus {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  padding: 0 15px;
  border-right: 1px solid #7c8284;
}

.number__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 15px;
  height: 100%;
  border-left: 1px solid #7c8284;
}

/* Общий стиль для формы, чтобы элементы выстроились вертикально */
.contacts__form-input {
  display: block;
  margin-bottom: 10px; /* Небольшой отступ снизу для каждого поля */
}

/* Стиль для чекбокса и его метки */
#recurrent-sample-4,
label[for="recurrent-sample-4"] {
  display: inline-block;
  vertical-align: middle; /* Выравнивание по центру относительно друг друга */
}

/* Уточняем стиль для чекбокса, если он должен быть шире и выше */
#recurrent-sample-4 {
  width: 30px;
  height: 40px;
  border: 1px solid #7c8284;
  margin-left: 20px; /* Убираем любые стандартные отступы */
}

/* Стиль для метки, чтобы отцентровать текст относительно чекбокса */
label[for="recurrent-sample-4"] {
  cursor: pointer; /* Делаем указатель при наведении, чтобы показать, что элемент интерактивный */
  /* Может потребоваться дополнительное выравнивание, в зависимости от размера шрифта и высоты чекбокса */
}

/* Дополнительно можно добавить небольшой отступ слева от чекбокса до текста */
label[for="recurrent-sample-4"] {
  margin-left: 5px;
}
