* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

::-moz-selection {
  background: #B8C8EA;
  color: #151515;
}

::selection {
  background: #B8C8EA;
  color: #151515;
}

html,
body {
  margin: 0px;
  padding: 0px;
}

html {
  min-width: 350px;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  line-height: 28px;
  color: #151515;
  font-weight: 400;
  background: #CCDCFE;
}

h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 36px;
  line-height: 38px;
  font-weight: 800;
  text-align: center;
  margin: 0px 0px 70px;
}

h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 36px;
  line-height: 38px;
  font-weight: 800;
  text-align: center;
  margin: 0px 0px 30px;
}

h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 26px;
  line-height: 28px;
  font-weight: 600;
  text-align: center;
  margin: 0px 0px 30px;
}

.subtitle {
  font-style: italic;
  text-align: center;
  margin: 0px 0px 40px;
}

a {
  color: #151515;
  text-decoration: none;
  transition: all 0.3s ease-in-out 0s;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

p {
  margin: 0px;
}

ul, ol {
  margin: 0px;
}

figure {
  margin: 0px;
  padding: 0px;
  text-align: center;
}

img {
  vertical-align: top;
  max-width: 100%;
}

.container {
  position: relative;
  max-width: 1390px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.container--hero {
  height: 100%;
}
.container--about-top {
  max-width: 1000px;
}
.container--about-advantages {
  max-width: 1140px;
}
.container--about-bottom {
  max-width: 800px;
}
.container--features {
  max-width: 1194px;
}
.container--collectors {
  max-width: 940px;
}
.container--gallery {
  max-width: 1100px;
}
.container--faq {
  max-width: 1142px;
}
.container--contact {
  max-width: 764px;
}

.btn {
  display: inline-block;
  border: 0px;
  border-radius: 55px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out 0s;
}
.btn--primary {
  padding: 20px 50px;
  background: #004562;
  font-size: 26px;
  line-height: 26px;
  font-weight: 700;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: #6B8FDB;
  color: #151515;
}

/*arrow*/
.swiper__arrow {
  display: block;
  width: 53px;
  height: 46px;
  background: url(../images/arrow.png) no-repeat;
  background-size: 100%;
  cursor: pointer;
  transition: all 0.3s ease-in-out 0s;
}
.swiper__arrow--prev {
  transform: rotate(180deg);
}
.swiper__arrow:hover {
  opacity: 0.8;
}

.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.swiper-button-disabled:hover {
  opacity: 0.3;
}

/*header*/
.header {
  position: fixed;
  top: 10px;
  left: 0px;
  width: 100%;
  z-index: 1000;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #CCDCFE;
  padding: 15px 50px;
  border-radius: 46px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
}
.header__logo {
  max-width: 162px;
}

.nav__list {
  display: flex;
  margin: 0px;
  padding: 0px;
}
.nav__item {
  margin: 0px 0px 0px 3vw;
  list-style-type: none;
}
.nav__item:first-child {
  margin: 0px;
}
.nav__link {
  text-decoration: none;
}
.nav__link:hover {
  opacity: 0.8;
}

.btn-menu {
  display: none;
  justify-content: flex-end;
  align-items: center;
  width: 20px;
  height: 20px;
  position: relative;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  border: none;
  padding: 0px;
}
.btn-menu__decor {
  position: absolute;
  top: calc(50% - 6px);
  left: -6px;
  width: 12px;
  height: 12px;
  background-color: #CCDCFE;
  background-image: url(../images/icon_menu.png);
  background-repeat: no-repeat;
  background-size: 7px 11px;
  background-position: 50%;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease-in-out 0s;
}
.btn-menu__line {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  background: #151515;
}
.btn-menu__line:before, .btn-menu__line:after {
  display: block;
  position: absolute;
  height: 100%;
  background: #151515;
  content: "";
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0;
}
.btn-menu__line:before {
  right: 0px;
  width: 100%;
  top: -8px;
}
.btn-menu__line:after {
  right: 0px;
  width: 100%;
  bottom: -8px;
}
.btn-menu--active .btn-menu__decor {
  transform: rotate(180deg);
}

/*main*/
section {
  padding: 70px 0px;
}

.hero {
  position: relative;
  height: 987px;
  padding: 0px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 100px 0px;
  color: #FFFFFF;
}
.hero__content h1 {
  margin: 0px 0px 90px;
}
.hero__content-wrap {
  max-width: 675px;
  width: 100%;
  font-size: 36px;
  line-height: 38px;
  font-style: italic;
}
.hero__text {
  display: block;
  margin: 0px 0px 90px;
}
.hero__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__bg:after {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.2);
  content: "";
}

.about__text--top {
  margin: 0px 0px 40px;
}
.about__text--bottom {
  font-style: italic;
  text-align: center;
}

.advantages {
  margin: 0px 0px 40px;
}
.advantages__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 2%;
       column-gap: 2%;
  row-gap: 30px;
}
.advantages__item {
  width: 30%;
  text-align: center;
}
.advantages__icon {
  display: inline-block;
  width: 143px;
  height: 143px;
  margin: 0px 0px 15px;
}

.features__arrows {
  display: flex;
  justify-content: flex-end;
  margin: 0px 0px 20px;
}
.features__arrow {
  width: 29px;
  height: 25px;
  margin: 0px 0px 0px 30px;
}
.features__item {
  background: #B8C8EA;
  padding: 30px;
  font-size: 24px;
  line-height: 26px;
  border-radius: 24px;
}
.features__item-icon {
  text-align: center;
  margin: 0px 0px 30px;
}
.features__item-icon img {
  width: 88px;
  height: 88px;
}
.features__item-name {
  color: #000000;
  font-weight: 600;
  text-align: center;
  margin: 0px 0px 30px;
}

.collectors {
  background: #B8C8EA;
}
.collectors__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0px 0px 40px;
}
.collectors__item:last-child {
  margin: 0px;
}
.collectors__item:nth-child(4n+2), .collectors__item:nth-child(4n+4) {
  padding-left: 50px;
}
.collectors__item:nth-child(4n+3) {
  padding-left: 100px;
}
.collectors__item-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 63px;
  height: 63px;
  background: #55D5FD;
  font-size: 46px;
  line-height: 46px;
  font-weight: 800;
  color: #000000;
  border-radius: 50%;
}
.collectors__item-detail {
  width: calc(100% - 83px);
  font-size: 26px;
  line-height: 28px;
}
.collectors__item-name {
  font-weight: 800;
  margin: 0px 0px 5px;
}

.community__wrap {
  position: relative;
}
.community__list {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.community__item {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 390px;
  font-size: 26px;
  line-height: 34px;
}
.community__item:nth-child(2n) {
  flex-direction: row-reverse;
  text-align: right;
}
.community__item--bgg {
  top: 0px;
  left: 0px;
}
.community__item--location {
  top: 0px;
  right: 0px;
}
.community__item--event {
  bottom: 0px;
  left: 0px;
}
.community__item--fluent {
  bottom: 0px;
  right: 0px;
}
.community__item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
}
.community__item-text {
  width: calc(100% - 90px);
}

.gallery__slider-wrap {
  width: calc(100% - 120px);
  margin: 0px auto;
}
.gallery__item {
  text-align: center;
}
.gallery__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.testimonials__slider-wrap {
  width: calc(100% - 120px);
  margin: 0px auto;
}
.testimonials__item {
  position: relative;
  font-size: 21px;
  line-height: 23px;
}
.testimonials__item-wrap {
  background: #B8C8EA;
  padding: 25px 20px;
  border-radius: 40px;
}
.testimonials__item:nth-child(2n) .testimonials__item-wrap {
  margin: 20% 0px 0px;
}
.testimonials__user {
  margin: 0px 0px 35px;
}
.testimonials__text {
  font-style: italic;
  line-height: 25px;
}
.testimonials__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.testimonials__arrow {
  width: 41px;
  height: 36px;
}

.faq__item {
  margin: 0px 0px 10px;
  background: #9AAACC;
  border-radius: 30px;
  transition: all 0.3s ease-in-out 0s;
}
.faq__question {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #B8C8EA;
  padding: 23px 36px 23px 75px;
  border-radius: 30px;
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease-in-out 0s;
}
.faq__question:after {
  position: relative;
  display: block;
  min-width: 41px;
  height: 35px;
  background: url(../images/arrow.png) no-repeat;
  background-size: 100%;
  margin: 0px 0px 0px 10px;
  transform: rotate(90deg);
  content: "";
  transition: all 0.3s ease-in-out 0s;
}
.faq__question:hover {
  opacity: 0.8;
}
.faq__answer {
  max-height: 0px;
  overflow: hidden;
  padding: 0px 35px;
  font-size: 21px;
  line-height: 23px;
  transition: all 0.3s ease-in-out 0s;
}
.faq__item--opened {
  padding: 0px 0px 30px;
}
.faq__item--opened .faq__question {
  background: #CCDCFE;
}
.faq__item--opened .faq__question:after {
  transform: rotate(-90deg);
}
.faq__item--opened .faq__answer {
  margin: 15px 0px 0px;
}

/*footer*/
.footer {
  padding: 25px 0px 10px;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 990px;
  margin: 0 auto;
  color: #707889;
  font-size: 17px;
  line-height: 20px;
  font-weight: 800;
}

.footer-nav {
  margin: 0px 0px 35px;
}
.footer-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px;
  padding: 0px;
}
.footer-nav__item {
  margin: 0px 2vw;
  list-style-type: none;
}
.footer-nav__link {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}
.footer-nav__link:hover {
  opacity: 0.8;
}

/*cookie*/
.cookie {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #CCDCFE;
  padding: 30px 0px 20px;
  border-radius: 20px 20px 0px 0px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}
.cookie__text {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  margin: 0px 0px 20px;
}
.cookie__btn {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0px 30px;
  padding: 5px 15px;
  background: #004562;
  border-radius: 19px;
  border: 3px solid #004562;
}
.cookie__btn:hover {
  background: #6B8FDB;
  color: #151515;
  border-color: #6B8FDB;
}
.cookie__btn--decline {
  background: transparent;
  color: #004562;
}
.cookie__btn--decline:hover {
  background: #004562;
  color: #FFFFFF;
  border-color: #004562;
}

@media (max-width: 1390px) {
  .community__bg {
    transform: scale(0.7);
  }
}
@media (max-width: 992px) {
  body {
    font-size: 14px;
    line-height: 18px;
  }
  h1 {
    font-size: 18px;
    line-height: 20px;
    margin: 0px 0px 25px;
  }
  h2 {
    font-size: 24px;
    line-height: 26px;
    margin: 0px 0px 20px;
  }
  h3 {
    font-size: 16px;
    line-height: 28px;
    margin: 0px 0px 20px;
  }
  .subtitle {
    margin: 0px 0px 25px;
  }
  .btn--primary {
    font-size: 16px;
    line-height: 16px;
  }
  /*header*/
  .header__wrap {
    padding: 10px 30px;
  }
  .header__logo {
    max-width: 98px;
  }
  /*main*/
  section {
    padding: 30px 0px;
  }
  .hero {
    height: 483px;
  }
  .hero__content h1 {
    margin: 0px 0px 30px;
  }
  .hero__text {
    font-size: 14px;
    line-height: 18px;
    margin: 0px 0px 30px;
  }
  .advantages__list {
    row-gap: 15px;
  }
  .advantages__icon {
    width: 80px;
    height: 80px;
  }
  .features__item-name {
    font-size: 16px;
    line-height: 18px;
  }
  .features__item-text {
    font-size: 14px;
    line-height: 18px;
  }
  .features__item-icon {
    margin: 0px 0px 15px;
  }
  .features__item-icon img {
    width: 58px;
    height: 58px;
  }
  .features__item-name {
    margin: 0px 0px 15px;
  }
  .features__arrow {
    width: 22px;
    height: 19px;
  }
  .collectors__item {
    margin: 0px 0px 15px;
    align-items: center;
  }
  .collectors__item:nth-child(4n+2), .collectors__item:nth-child(4n+4), .collectors__item:nth-child(4n+3) {
    padding-left: 0px;
  }
  .collectors__item-num {
    width: 43px;
    height: 43px;
    font-size: 36px;
    line-height: 36px;
  }
  .collectors__item-detail {
    width: calc(100% - 63px);
    font-size: 14px;
    line-height: 18px;
  }
  .community__bg {
    display: none;
  }
  .community__list {
    position: relative;
  }
  .community__item {
    position: relative;
    max-width: 100%;
    margin: 0px 0px 15px;
    font-size: 16px;
    line-height: 18px;
  }
  .community__item:nth-child(2n) {
    flex-direction: row;
    text-align: left;
  }
  .community__item-icon {
    width: 40px;
    height: 40px;
  }
  .community__item-text {
    width: calc(100% - 70px);
  }
  .gallery__wrap {
    width: calc(100% - 60px);
  }
  .gallery__arrow {
    width: 22px;
    height: 19px;
  }
  .testimonials__slider-wrap {
    width: 100%;
    margin: 0px 0px 15px;
  }
  .testimonials__item {
    font-size: 14px;
    line-height: 18px;
  }
  .testimonials__item:nth-child(2n) .testimonials__item-wrap {
    margin: 0px;
  }
  .testimonials__arrows {
    position: relative;
    top: auto;
    transform: translateY(0px);
    justify-content: center;
  }
  .testimonials__arrow {
    width: 22px;
    height: 19px;
    margin: 0px 15px;
  }
  .faq__question {
    padding: 15px 30px;
    font-size: 14px;
    line-height: 18px;
  }
  .faq__question:after {
    min-width: 12px;
    height: 10px;
  }
  .faq__answer {
    padding: 0px 30px;
    font-size: 14px;
    line-height: 18px;
  }
  /*footer*/
  .footer__wrap {
    font-size: 10px;
    line-height: 12px;
  }
  .footer-nav {
    margin: 0px 0px 20px;
  }
  .footer-nav__link {
    font-size: 10px;
    line-height: 12px;
  }
  /*cookie*/
  .cookie__text {
    font-size: 16px;
    line-height: 20px;
  }
  .cookie__btn {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .header__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .nav {
    display: none;
  }
  .nav--open {
    display: block;
    position: absolute;
    top: 100%;
    right: 30px;
    min-width: 184px;
    padding: 10px 10px 30px;
    background: #CCDCFE;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 0px 0px 20px 20px;
  }
  .nav__list {
    flex-direction: column;
  }
  .nav__item {
    margin: 0px 0px 10px;
  }
  .nav__item:first-child {
    margin: 0px 0px 10px;
  }
  .nav__item:last-child {
    margin: 0px;
  }
  .nav__link {
    font-size: 18px;
    line-height: 20px;
  }
  .btn-menu {
    display: flex;
  }
  .hero__content-wrap {
    text-align: center;
  }
  .advantages__list {
    flex-direction: column;
    align-items: center;
  }
  .advantages__item {
    max-width: 230px;
    width: 100%;
  }
  .features__slider-wrap {
    width: calc(100% - 60px);
  }
  .features__arrows {
    position: absolute;
    top: 50%;
    transform: translateY(50%);
    justify-content: space-between;
    width: 100%;
    margin: 0px;
  }
  .features__arrow {
    margin: 0px;
  }
  .cookie__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cookie__btn--accept {
    margin: 0px 0px 10px;
  }
}/*# sourceMappingURL=style.css.map */