* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

.block-scroll {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 96px;
}
@media (max-width: 1023px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0;
  }
}

.inner-container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

.header {
  width: 100%;
  height: 112px;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  background: #ffffff;
}
@media (max-width: 768px) {
  .header {
    height: 73px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
  }
}
.header__logo {
  width: 169px;
}
@media (max-width: 768px) {
  .header__logo {
    width: 104px;
  }
}
.header__button {
  cursor: pointer;
  border-radius: 0;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  font-size: 12px;
  border: 1px solid #000000;
  color: #ffffff;
  transition: all 0.3s;
  width: 165px;
  margin-left: 36px;
}
.header__button:hover {
  background: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .header__button {
    margin-left: 0;
  }
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header-wrapper {
    justify-content: center;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 27px;
  left: 19px;
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}
.mobile-menu__toggle {
  width: 20px;
  height: 20px;
  background-image: url("../svg/burger.svg");
  border: none;
  outline: none;
  background-size: contain;
  background-color: #ffffff;
}
.mobile-menu__toggle.active {
  background-image: url("../svg/close.svg");
}

@media (max-width: 1250px) {
  .header-nav {
    margin-left: 40px;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav.mobile-active {
  display: block;
  position: fixed;
  top: 73px;
  z-index: 1000;
  width: 100%;
  height: calc(100% - 73px);
  background: #ffffff;
  margin: 0;
  padding: 23px 19px;
}
.header-nav.mobile-active ul {
  flex-direction: column;
  align-items: flex-start;
}
.header-nav.mobile-active ul li {
  margin-right: 0;
  margin-top: 16px;
}
.header-nav ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-nav ul li {
  margin-right: 88px;
}
@media (max-width: 1250px) {
  .header-nav ul li {
    margin-right: 24px;
  }
}
.header-nav ul li:last-of-type {
  margin-right: 0;
}
.header-nav__link {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.3px;
}
.header-nav__link.active {
  color: #5b24c9;
  text-decoration: underline;
  pointer-events: none;
}
.header-nav__link:hover {
  color: #5b24c9;
  text-decoration: underline;
}

.footer {
  margin-top: 104px;
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 56px;
  }
}
.footer__contact {
  font-size: 40px;
  line-height: 62px;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__contact {
    font-size: 20px;
    line-height: 33px;
  }
}
.footer__email {
  font-size: 32px;
  line-height: 56px;
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .footer__email {
    font-size: 16px;
    line-height: 24px;
  }
}
.footer__email:hover {
  color: #5b24c9;
}
.footer__info {
  height: 64px;
  margin-top: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ebebeb;
}
@media (max-width: 768px) {
  .footer__info {
    margin-top: 56px;
    height: 92px;
    flex-direction: column;
    justify-content: center;
  }
}
.footer__company span {
  color: #5b24c9;
}
.footer__copy {
  color: #B4B4B4;
}

.modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background: rgba(1, 1, 1, 0.1);
  display: none;
}
.modal.active {
  display: block;
}
.modal__container {
  width: 100%;
  opacity: 1;
  max-width: 1040px;
  margin: 136px auto 0;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 96px 16px;
  position: relative;
  background: #ffffff;
}
@media (max-width: 768px) {
  .modal__container {
    margin: 73px auto 0;
    padding: 120px 40px 40px;
    height: calc(100vh - 73px);
    overflow: auto;
    position: relative;
  }
}

.group {
  position: relative;
  margin: 32px 0;
}
.group.error label {
  color: red;
}
.group.error input,
.group.error textarea {
  border-bottom: 1px solid red;
  color: red;
}
.group.error input:focus ~ label, .group.error input:valid ~ label,
.group.error textarea:focus ~ label,
.group.error textarea:valid ~ label {
  color: red;
}
.group.error .bar::before {
  background: red;
}
.group input,
.group textarea {
  background: none;
  color: #000000;
  font-size: 15px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #d9d9d9;
}
.group input:focus,
.group textarea:focus {
  outline: none;
}
.group input:not(:-moz-placeholder-shown) ~ label, .group textarea:not(:-moz-placeholder-shown) ~ label {
  top: -14px;
  font-size: 12px;
  color: #bdbdbd;
}
.group input:not(:-ms-input-placeholder) ~ label, .group textarea:not(:-ms-input-placeholder) ~ label {
  top: -14px;
  font-size: 12px;
  color: #bdbdbd;
}
.group input:focus ~ label, .group input:not(:placeholder-shown) ~ label,
.group textarea:focus ~ label,
.group textarea:not(:placeholder-shown) ~ label {
  top: -14px;
  font-size: 12px;
  color: #bdbdbd;
}
.group input:focus ~ .bar:before,
.group textarea:focus ~ .bar:before {
  width: 100%;
}
.group input::-moz-placeholder, .group textarea::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ffffff;
  opacity: 1; /* Firefox */
}
.group input:-ms-input-placeholder, .group textarea:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ffffff;
  opacity: 1; /* Firefox */
}
.group input::placeholder,
.group textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ffffff;
  opacity: 1; /* Firefox */
}
.group input:-ms-input-placeholder,
.group textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ffffff;
}
.group input::-ms-input-placeholder,
.group textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ffffff;
}
@media (max-width: 768px) {
  .group textarea {
    padding-top: 20px;
  }
}
.group label {
  color: #bdbdbd;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 300ms ease all;
}
.group .bar {
  position: relative;
  display: block;
  width: 100%;
}
.group .bar:before {
  content: "";
  height: 1px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #5b24c9;
  transition: 300ms ease all;
  left: 0%;
}
.group .field-error {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  margin-left: 4px;
}

.contact-us {
  width: 100%;
  max-width: 416px;
  margin: 0 auto;
}
.contact-us__title {
  font-size: 26px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-us__title {
    font-size: 18px;
  }
}
.contact-us__buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 53px;
}
@media (max-width: 768px) {
  .contact-us__buttons {
    flex-direction: column;
  }
}
.contact-us__close {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}
.contact-us__file {
  cursor: pointer;
  width: 190px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
  font-size: 14px;
  border: 1px solid #f2f2f2;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .contact-us__file {
    width: 100%;
    margin-bottom: 16px;
  }
}
.contact-us__file:hover {
  border: 1px solid #000000;
}
.contact-us__file img {
  margin-right: 11px;
}
.contact-us__file input {
  display: none;
}
.contact-us__send {
  cursor: pointer;
  width: 190px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  font-size: 14px;
  border: 1px solid #000000;
  color: #ffffff;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .contact-us__send {
    width: 100%;
  }
}
.contact-us__send:hover {
  background: #ffffff;
  color: #000000;
}

.thank-you {
  width: 100%;
  max-width: 505px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 16px;
}
.thank-you__title {
  font-size: 32px;
}
@media (max-width: 768px) {
  .thank-you__title {
    font-size: 26px;
  }
}
.thank-you__text {
  font-size: 14px;
  margin: 24px 0 48px;
}
.thank-you__button {
  cursor: pointer;
  width: 190px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  font-size: 14px;
  border: 1px solid #000000;
  color: #ffffff;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .thank-you__button {
    width: 100%;
  }
}
.thank-you__button:hover {
  background: #ffffff;
  color: #000000;
}
.thank-you__close {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}

.welcome {
  position: relative;
  min-height: 648px;
}
@media (max-width: 768px) {
  .welcome {
    min-height: auto;
    margin-top: 73px;
  }
}
.welcome__title {
  font-size: 100px;
  font-weight: 400;
  line-height: 100px;
  text-transform: uppercase;
  width: 60%;
  padding-top: 110px;
  position: relative;
  z-index: 10;
}
@media (max-width: 1400px) {
  .welcome__title {
    font-size: 68px;
    line-height: 68px;
  }
}
@media (max-width: 1023px) {
  .welcome__title {
    font-size: 48px;
    line-height: 48px;
  }
}
@media (max-width: 768px) {
  .welcome__title {
    font-size: 36px;
    line-height: 43px;
    padding-top: 56px;
    width: 100%;
    max-width: 260px;
    letter-spacing: -1px;
  }
}
.welcome__title-row--first {
  padding-left: 45%;
}
@media (max-width: 768px) {
  .welcome__title-row--first {
    padding-left: 47px;
  }
}
.welcome__title-row--second {
  padding-left: 25%;
}
@media (max-width: 768px) {
  .welcome__title-row--second {
    padding-left: 19px;
  }
}
.welcome__title-row--third {
  padding-left: 60%;
}
@media (max-width: 768px) {
  .welcome__title-row--third {
    padding-left: 126px;
  }
}
.welcome__info {
  margin: 45px auto 0;
  max-width: 416px;
  padding-left: 185px;
  box-sizing: content-box;
}
@media (max-width: 1200px) {
  .welcome__info {
    padding-left: 300px;
  }
}
@media (max-width: 1023px) {
  .welcome__info {
    padding-left: 450px;
  }
}
@media (max-width: 768px) {
  .welcome__info {
    padding: 0 19px;
    margin: 156px 0 0 0;
    max-width: 100%;
  }
}
.welcome__text {
  font-size: 14px;
  line-height: 24px;
  position: relative;
  z-index: 10;
}
.welcome__button {
  cursor: pointer;
  border-radius: 0;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  font-size: 12px;
  border: 1px solid #000000;
  color: #ffffff;
  transition: all 0.3s;
  width: 165px;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}
.welcome__button:hover {
  background: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .welcome__button {
    margin: 32px auto 0;
  }
}
.welcome__image-primary {
  position: absolute;
  top: 274px;
  left: 104px;
  width: 312px;
  height: 376px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .welcome__image-primary {
    top: 120px;
    left: 0;
    width: 140px;
    height: 188px;
  }
}
.welcome__image-secondary {
  position: absolute;
  top: 24px;
  right: 0;
  width: 208px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .welcome__image-secondary {
    top: 32px;
    width: 77px;
    height: 96px;
  }
}

.possibilities {
  margin-top: 104px;
}
@media (max-width: 768px) {
  .possibilities {
    margin-top: 62px;
    padding: 0 16px;
  }
}
.possibilities__title {
  font-size: 40px;
  line-height: 62px;
  font-weight: 400;
  text-align: center;
  max-width: 830px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .possibilities__title {
    font-size: 20px;
    line-height: 32px;
  }
}

.possibilities-list {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .possibilities-list {
    flex-wrap: wrap;
    margin-top: 18px;
  }
}

.possibilities-item {
  display: flex;
  flex-direction: column;
  border: 1px solid #ebebeb;
  width: calc(33.3333333333% - 18px);
  padding: 40px 40px 56px 40px;
  text-align: center;
  position: relative;
}
@media (max-width: 1023px) {
  .possibilities-item {
    padding: 40px 36px 56px 36px;
  }
}
@media (max-width: 768px) {
  .possibilities-item {
    width: 100%;
    margin-top: 16px;
    padding: 32px 40px 48px 40px;
  }
}
.possibilities-item__title {
  min-height: 104px;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .possibilities-item__title {
    min-height: 132px;
  }
}
@media (max-width: 768px) {
  .possibilities-item__title {
    min-height: 104px;
  }
}
.possibilities-item__sub-title {
  font-size: 14px;
  line-height: 24px;
  margin-top: -24px;
}
@media (max-width: 768px) {
  .possibilities-item__sub-title {
    margin-top: -32px;
  }
}
.possibilities-item__amount {
  font-size: 128px;
  line-height: 128px;
  color: #5b24c9;
}
@media (max-width: 768px) {
  .possibilities-item__amount {
    font-size: 96px;
    line-height: 96px;
    padding-top: 16px;
  }
}
.possibilities-item__amount span {
  font-size: 32px;
  line-height: 40px;
  display: block;
}
@media (max-width: 768px) {
  .possibilities-item__amount span {
    font-size: 22px;
    line-height: 32px;
    font-weight: bold;
  }
}
.possibilities-item__description {
  margin-top: 16px;
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .possibilities-item__description {
    margin-top: 8px;
  }
}

.product-launches {
  margin-top: 104px;
}
@media (max-width: 768px) {
  .product-launches {
    margin-top: 56px;
    padding: 0 16px;
  }
}
.product-launches__title {
  font-size: 40px;
  line-height: 62px;
  font-weight: 400;
  text-align: center;
  max-width: 630px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-launches__title {
    font-size: 20px;
    line-height: 32px;
  }
}
.product-launches__description {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  margin-top: 30px;
}

.product-launches-list {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .product-launches-list {
    flex-wrap: wrap;
    margin-top: 0;
  }
}

.product-launches-item {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .product-launches-item {
    width: 100%;
    margin-top: 40px;
    padding: 0 56px;
  }
}
.product-launches-item__text {
  margin-top: 24px;
}

.chart {
  margin-top: 65px;
  background: #fafafa;
  padding: 92px 56px 0 35px;
}
@media (max-width: 768px) {
  .chart {
    padding: 32px 0 0 0;
  }
}

.chart-info {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .chart-info {
    flex-wrap: wrap;
    padding: 0 19px;
  }
}
.chart-info__image {
  width: 50%;
  border-radius: 14px;
  margin-right: 63px;
}
@media (max-width: 768px) {
  .chart-info__image {
    width: 100%;
  }
}

.chart-info-list {
  padding-top: 12px;
}
@media (max-width: 768px) {
  .chart-info-list {
    padding-top: 0;
    width: 100%;
  }
}

.chart-info-item {
  display: flex;
  border-bottom: 1px solid #ebebeb;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .chart-info-item {
    padding: 20px 0;
  }
}
.chart-info-item p {
  margin-top: 16px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .chart-info-item p {
    font-size: 15px;
  }
}
.chart-info-item h3 {
  font-size: 18px;
}
.chart-info-item:first-of-type {
  padding-top: 0;
}
@media (max-width: 768px) {
  .chart-info-item:first-of-type {
    padding-top: 32px;
  }
}
.chart-info-item:last-of-type {
  border-bottom: none;
}
.chart-info-item__number {
  min-width: 100px;
  padding-top: 4px;
  color: #b4b4b4;
}
@media (max-width: 768px) {
  .chart-info-item__number {
    min-width: 56px;
  }
}

.chart-message {
  cursor: pointer;
  border-radius: 0;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  font-size: 12px;
  border: 1px solid #000000;
  color: #ffffff;
  transition: all 0.3s;
  height: 92px;
  width: calc(100% + 91px);
  line-height: 26px;
  font-size: 17px;
  margin-top: 52px;
  margin-right: -56px;
  margin-left: -35px;
  display: flex;
}
.chart-message:hover {
  background: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .chart-message {
    margin: 12px 0 0 0;
    padding: 0 40px;
    text-align: center;
    width: 100%;
  }
  .chart-message br {
    display: none;
  }
}

.map {
  margin-top: 104px;
}
@media (max-width: 768px) {
  .map {
    margin-top: 56px;
  }
}
.map__title {
  font-size: 40px;
  line-height: 62px;
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .map__title {
    font-size: 20px;
    line-height: 32px;
  }
}
.map__image {
  max-width: 1040px;
  width: 100%;
  margin: 42px auto 0;
  display: block;
}
@media (max-width: 768px) {
  .map__image {
    display: none;
  }
}
.map__image path {
  transition: fill 0.3s;
}
.map__image path.active {
  fill: #5b24c9;
}
.map__links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 50px auto 0;
  max-width: 1040px;
  width: 100%;
  padding-top: 40px;
  border-top: 1px solid #ebebeb;
}
@media (max-width: 768px) {
  .map__links {
    padding-left: 79px;
    margin: 24px auto 0;
  }
}
.map__links li {
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  .map__links li {
    width: 100%;
  }
}
.map__links li a {
  color: #212121;
  font-size: 14px;
  line-height: 32px;
}
.map__links li a:hover {
  color: #5b24c9;
}
.map .country:hover {
  fill: #5b24c9;
  cursor: pointer;
}

.environment {
  margin-top: 104px;
}
@media (max-width: 768px) {
  .environment {
    padding: 0 20px;
    margin-top: 56px;
  }
}
.environment__title {
  font-size: 40px;
  line-height: 62px;
  font-weight: 400;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .environment__title {
    font-size: 20px;
    line-height: 32px;
  }
}

.environment-item {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .environment-item {
    flex-wrap: wrap;
  }
}
.environment-item__image {
  width: 50%;
  padding-right: 106px;
}
@media (max-width: 768px) {
  .environment-item__image {
    width: 100%;
    padding: 0;
  }
}
.environment-item__text {
  padding-right: 120px;
}
@media (max-width: 768px) {
  .environment-item__text {
    padding: 0;
    margin-top: 24px;
  }
}
.environment-item__text h3 {
  width: 50%;
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .environment-item__text h3 {
    width: 100%;
  }
}
.environment-item__text p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .environment-item__text p {
    font-size: 14px;
  }
}

.brand {
  margin-top: 104px;
}
@media (max-width: 768px) {
  .brand {
    margin-top: 56px;
    padding: 0 19px;
  }
}
.brand__title {
  font-size: 40px;
  line-height: 62px;
  font-weight: 400;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .brand__title {
    font-size: 20px;
    line-height: 32px;
  }
}

.brand-info {
  display: flex;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .brand-info {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.brand-info__image {
  width: 50%;
}
@media (max-width: 768px) {
  .brand-info__image {
    order: 1;
    width: 100%;
  }
}
.brand-info__text {
  padding-right: 104px;
}
@media (max-width: 768px) {
  .brand-info__text {
    order: 2;
    padding: 0;
    padding-top: 24px;
  }
}
.brand-info__text h3 {
  width: 50%;
  font-size: 20px;
  line-height: 24px;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .brand-info__text h3 {
    width: 100%;
    font-size: 18px;
    margin-top: 26px;
  }
}
.brand-info__text h3:first-of-type {
  margin: 0;
}
.brand-info__text p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .brand-info__text p {
    font-size: 14px;
  }
}

.community {
  margin-top: 104px;
}
@media (max-width: 768px) {
  .community {
    margin-top: 56px;
    padding: 0 19px;
  }
}
.community__title {
  font-size: 40px;
  line-height: 62px;
  font-weight: 400;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .community__title {
    font-size: 20px;
    line-height: 32px;
  }
}
.community__description {
  max-width: 400px;
  margin: 14px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .community__description {
    margin: 24px auto 0;
  }
}

.community-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 940px;
  margin: 0 auto;
}

.community-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.3333333333%;
  padding: 0 50px;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .community-item {
    width: 100%;
    padding: 0 70px;
    margin-top: 28px;
  }
}
.community-item__text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 24px;
}

.join {
  margin: 104px auto;
}
@media (max-width: 768px) {
  .join {
    margin: 56px 0 0 0;
  }
}
.join__title {
  font-size: 40px;
  line-height: 62px;
  font-weight: 400;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .join__title {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .join__title {
    padding: 0 16px;
  }
}
.join__button {
  outline: none;
  border: none;
  background: #212121;
  border: 1px solid #212121;
  color: #ffffff;
  padding: 16px 54px;
  margin-top: 48px;
  cursor: pointer;
  transition: all 0.3s;
}
.join__button:hover {
  background: #ffffff;
  color: #212121;
}

.join-wrapper {
  background-image: url("../jpg/footer.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 64px;
  padding-bottom: 74px;
  text-align: center;
}
@media (max-width: 768px) {
  .join-wrapper {
    background-position: -135px 0;
  }
}/*# sourceMappingURL=index.css.map */