* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: "Work Sans", sans-serif;
}

.header {
  width: 100%;
  height: 64px;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-left: 15px;
  overflow-x: hidden;
}
@media screen and (min-width: 1400px) {
  .header {
    display: flex;
    width: 1140px;
    height: 62px;
    margin: auto;
    background-color: transparent;
  }
}
.header__button {
  display: none;
}
@media screen and (min-width: 1400px) {
  .header__button {
    display: block;
  }
}
.header__menu-button {
  display: block;
  width: 58px;
  height: 100%;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  background-color: transparent;
  margin-left: auto;
}
@media screen and (min-width: 1400px) {
  .header__menu-button {
    display: none;
  }
}
.header__menu-icon {
  background-image: url(https://gromcode.s3.eu-central-1.amazonaws.com/front-end/html-css/lesson24/hw1/icon-hamburger.png);
  height: 13px;
  width: 18px;
  display: inline-block;
}

.navigation {
  display: none;
}
@media screen and (min-width: 1400px) {
  .navigation {
    display: block;
    margin-left: auto;
    margin-top: 7px;
    margin-right: 75px;
  }
}
.navigation__item {
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  color: #2b292d;
  margin-right: 50px;
}
.navigation:last-child {
  margin-right: 0;
}
.navigation__item_selected {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}
.navigation__arrow {
  display: inline-block;
  margin-left: 11px;
  height: 5px;
  width: 8px;
  background-image: url(https://gromcode.s3.eu-central-1.amazonaws.com/front-end/html-css/lesson24/hw1/arrow.png);
}

.logo {
  display: flex;
}
.logo__image {
  height: 48px;
  width: 48px;
  margin-right: 15px;
}
@media screen and (min-width: 1400px) {
  .logo__image {
    height: 60px;
    width: 60px;
    margin-right: 15px;
  }
}
.logo__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
}
.logo__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo__description {
  display: none;
}
@media screen and (min-width: 1400px) {
  .logo__description {
    display: block;
    font-size: 18px;
    line-height: 25px;
    color: #2b292d;
    opacity: 0.7;
  }
}

.top-section {
  width: 100%;
  background-color: #f3c6bd;
  overflow-x: hidden;
}
@media screen and (min-width: 1400px) {
  .top-section {
    width: 1400px;
    padding-top: 39px;
    background-color: #f3c6bd;
  }
}

.headline {
  width: 100%;
}
@media screen and (min-width: 1400px) {
  .headline {
    width: 1140px;
    margin: 0 auto;
    position: relative;
    margin-top: 84px;
    display: flex;
    padding-bottom: 77px;
  }
}
.headline__content {
  margin: 35px 15px 33px 15px;
}
@media screen and (min-width: 1400px) {
  .headline__content {
    position: absolute;
    z-index: 2;
    margin: 0;
  }
}
.headline__description {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 34px;
  color: #2b292d;
}
@media screen and (min-width: 1400px) {
  .headline__description {
    margin-top: 34px;
    margin-bottom: 0;
    width: 456px;
    height: 102px;
    font-size: 24px;
    line-height: 34px;
    color: #2b292d;
  }
}
.headline__btn {
  width: 100%;
  height: 48px;
  background-color: #fff;
  font-size: 18px;
  line-height: 13px;
  font-weight: 700;
  color: #3040c4;
  border-radius: 2px;
  border: none;
  margin-top: 15px;
}
@media screen and (min-width: 1400px) {
  .headline__btn {
    width: 158px;
    margin-left: 10px;
    margin-top: 0;
  }
}
.headline__buttons {
  display: block;
  margin-top: 30px;
}
@media screen and (min-width: 1400px) {
  .headline__buttons {
    display: flex;
    margin-top: 58px;
  }
}
.headline__title {
  margin: 0;
  margin-top: 35px;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: -0.3125px;
  color: #2b292d;
}
@media screen and (min-width: 1400px) {
  .headline__title {
    margin: 0;
    top: 0;
    width: 754px;
    height: 165px;
    font-size: 80px;
    line-height: 78px;
    letter-spacing: -0.5px;
    color: #2b292d;
    position: relative;
    z-index: 1;
  }
}
.headline__banner {
  width: 100%;
  margin-bottom: 36px;
}
@media screen and (min-width: 1400px) {
  .headline__banner {
    position: relative;
    top: 0;
    right: -105px;
    width: 796px;
    height: 448px;
    margin-left: auto;
  }
}

.action__button {
  width: 100%;
  height: 48px;
  background-color: #3242c6;
  font-size: 18px;
  line-height: 13px;
  font-weight: 700;
  color: #fff;
  border-radius: 2px;
  border: none;
}

.action__button_learn {
  width: 100%;
  height: 48px;
  background-color: white;
  font-size: 18px;
  line-height: 13px;
  font-weight: 700;
  color: black;
  border-radius: 2px;
  border: none;
}

@media screen and (max-width: 1399px) {
  .hide_mobile {
    display: none;
  }
}

@media screen and (min-width: 1400px) {
  .action__button {
    width: 160px;
  }
}

@media screen and (min-width: 1400px) {
  .hide_desktop {
    display: none;
  }
}

.icon-arrow_rigth {
  display: block;
  background-image: url(https://gromcode.s3.eu-central-1.amazonaws.com/front-end/html-css/lesson24/hw1/icon-arrow-right.png);
  width: 7px;
  height: 12px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__navigation {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 1400px) {
  .footer__navigation {
    display: flex;
    flex-direction: row;
    width: 1140px;
    margin: 0 auto;
    min-height: 338px;
    padding-top: 44px;
  }
}
.footer__links {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0;
  align-items: flex-start;
}
@media screen and (min-width: 1400px) {
  .footer__links {
    width: 1140px;
    height: 50px;
    margin-left: 0;
    margin: 0 auto;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.footer__line {
  border-top: 1px solid #2b292d;
  width: 100%;
  margin: 0;
  opacity: 0.1;
}
.footer__description {
  display: none;
  font-size: 18px;
  line-height: 26px;
  color: rgba(43, 41, 45, 0.6);
  width: 360px;
  margin-top: 26px;
}
@media screen and (min-width: 1400px) {
  .footer__description {
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: rgba(43, 41, 45, 0.6);
    width: 360px;
    margin-top: 26px;
    margin-bottom: 0;
  }
}

.about-company {
  width: 100%;
  padding-top: 43px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1400px) {
  .about-company {
    padding-top: 43px;
    margin-right: 126px;
    max-width: 360px;
    padding: 0;
    border: none;
  }
}

.downloads {
  display: flex;
  justify-content: center;
  margin: 25px 15px 0 15px;
}
@media screen and (min-width: 1400px) {
  .downloads {
    margin: 0;
    margin-top: 25px;
    display: block;
  }
}
.downloads__item {
  margin-right: 10px;
}

.additional-navigation {
  display: flex;
  flex-direction: column;
  margin: 30px 15px 0;
}
@media screen and (min-width: 1400px) {
  .additional-navigation {
    padding: 0;
    padding-top: 16px;
    display: flex;
    flex-direction: row;
    margin: 0;
  }
}
.additional-navigation__column:last-child {
  margin-top: 30px;
}
@media screen and (min-width: 1400px) {
  .additional-navigation__column:last-child {
    margin-top: 0;
    font-size: 18px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .additional-navigation__column:first-child {
    margin-right: 29px;
  }
}

.nav-links {
  width: 265px;
}
.nav-links__title {
  font-weight: bold;
  font-size: 22px;
  line-height: 28px;
  color: #2b292d;
  margin: 0;
}
.nav-links__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-top: 18px;
}
.nav-links__list-item {
  font-size: 18px;
  line-height: 30px;
  color: rgba(43, 41, 45, 0.6);
}

.terms {
  margin-left: 15px;
  display: flex;
  margin-top: 30px;
}
@media screen and (min-width: 1400px) {
  .terms {
    margin: 0;
    display: flex;
    height: 22px;
    line-height: 50px;
  }
}
.terms__item:last-child {
  margin-right: 0;
}
.terms__item {
  text-decoration: none;
  margin-right: 25px;
  font-size: 14px;
  line-height: 22px;
  color: rgba(43, 41, 45, 0.6);
}

.social-links {
  margin-top: 30px;
  margin-bottom: 22px;
  margin-left: 15px;
}
@media screen and (min-width: 1400px) {
  .social-links {
    margin: 0;
    margin-left: auto;
  }
}
.social-links__item {
  margin-right: 20px;
}
@media screen and (min-width: 1400px) {
  .social-links__img {
    margin-top: 17px;
    margin-bottom: 17px;
  }
}
@media screen and (min-width: 1400px) {
  .social-links__item:last-child {
    margin-right: 0;
  }
}

.logo-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1400px) {
  .logo-vertical {
    display: none;
  }
}
.logo-vertical__text {
  margin-top: 20px;
  width: 290px;
}
.logo-vertical__icon {
  width: 60px;
  height: 60px;
}
.logo-vertical__title {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: #2b292d;
}
.logo-vertical__info {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
  color: rgba(43, 41, 45, 0.6);
}

@media screen and (max-width: 1399px) {
  .footer .logo {
    display: none;
  }
}

.features {
  display: flex;
  position: relative;
}
@media screen and (max-width: 1399px) {
  .features {
    display: none;
  }
}
.features__content {
  width: 1140px;
  margin: 0 auto;
  display: flex;
}
.features__column {
  width: 459px;
}
.features__subtitle {
  margin: 0;
  width: 95px;
  color: #009b4d;
  font-weight: 700;
  font-size: 22px;
  height: 34px;
  line-height: 34px;
  margin-bottom: 24px;
}
.features__title {
  margin: 0;
  width: 462px;
  font-weight: 700;
  font-size: 56px;
  line-height: 56px;
  letter-spacing: -0.5px;
  color: #2b292d;
  margin-bottom: 30px;
}
.features__description {
  margin: 0;
  width: 461px;
  font-size: 24px;
  line-height: 34px;
  color: #2b292d;
  margin-bottom: 42px;
}
.features__advantage-header {
  display: flex;
  margin-bottom: 8px;
}
.features__advantage-text {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  color: #2b292d;
  padding-bottom: 20px;
  border-bottom: 3px solid #3142c6;
}
.features__advantage-title {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: #3142c6;
  margin-left: 15px;
}
.features__advantage-item-text {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: #2b292d;
  margin-left: 15px;
}
.features__advantage-item {
  display: flex;
  border-bottom: 1px solid #2b292d26;
  margin-top: 20px;
  padding-bottom: 22px;
}
.features__advantage-item + .second {
  padding-bottom: 15px;
  margin-bottom: 110px;
}
.features__left-decoration {
  position: absolute;
  top: 258px;
  height: 166px;
}
.features__banner {
  position: absolute;
  right: 0;
}

.customers {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1400px) {
  .customers {
    width: 1140px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 106px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.customers__row {
  display: flex;
}
@media screen and (min-width: 1400px) {
  .customers__row {
    flex: 1;
    justify-content: flex-start;
  }
}
.customers__item {
  display: flex;
  width: 107px;
  height: 94px;
  flex: 1;
  border-bottom: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
}
@media screen and (min-width: 1400px) {
  .customers__item {
    border: none;
    margin-right: 100px;
  }
}
.customers__item:last-child {
  border-right: none;
}
@media screen and (min-width: 1400px) {
  .customers__item:last-child {
    margin-right: 70px;
  }
}
.customers__logo {
  margin: auto;
  max-width: 80%;
  filter: brightness(0);
}
@media screen and (min-width: 1400px) {
  .customers__logo {
    max-width: 150%;
  }
}

.about {
  width: 100%;
  padding: 46px 15px;
  background-color: #f4f5f7;
}
@media screen and (min-width: 1400px) {
  .about {
    margin: 0 auto;
    width: 1400px;
    display: flex;
    justify-content: space-between;
    padding: 77px 130px 76px 130px;
  }
}

@media screen and (min-width: 1400px) {
  .article {
    width: 555px;
  }
}
.article__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #2b292d;
  margin: 0;
}
.article__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #2b292d;
  margin: 0;
}
.article__text {
  margin-bottom: 0;
  margin-top: 6px;
  font-size: 22px;
  line-height: 32px;
  color: #2b292d;
}
.article:first-child {
  margin-bottom: 20px;
}
@media screen and (min-width: 1400px) {
  .article:first-child {
    margin-bottom: 0;
  }
}

.tips {
  margin-top: 8px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1400px) {
  .tips {
    display: none;
  }
}

.tip {
  padding: 40px 15px 40px 15px;
  border-bottom: 1px solid #e3e3e3;
}
.tip__subtitle {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
  color: #009b4d;
}
.tip__title {
  margin: 0;
  margin-top: 17px;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -0.357143px;
  color: #2b292d;
}
.tip__description {
  margin: 0;
  margin-top: 15px;
  font-size: 24px;
  line-height: 34px;
  color: #2b292d;
}
.tip__image {
  margin: 0;
  max-width: 100%;
}
.tip__image-caption {
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: rgba(43, 41, 45, 0.6);
  margin-top: 20px;
}
.tip:first-child .tip__image-caption {
  margin-top: 19px;
}
.tip:last-child {
  border: none;
}
.tip__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  margin-top: 30px;
}

.order {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 15px;
  background-color: #f4f5f7;
}
@media screen and (min-width: 1400px) {
  .order {
    display: flex;
    flex-direction: row;
    padding: 73px 0 72px;
    justify-content: center;
  }
}
.order__content {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media screen and (min-width: 1400px) {
  .order__content {
    margin-top: 0px;
    max-width: 555px;
  }
}
.order__image {
  max-width: 200px;
}
@media screen and (min-width: 1400px) {
  .order__image {
    max-width: 269px;
    margin-right: 121px;
  }
}
.order__title {
  margin: 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  letter-spacing: -0.25px;
}
.order__text {
  margin: 0;
  margin-top: 18px;
  font-size: 22px;
  line-height: 32px;
}
@media screen and (min-width: 1400px) {
  .order__text {
    margin-top: 12px;
  }
}
.order__action {
  display: flex;
  flex-direction: column;
  margin: 40px 0 0;
}
@media screen and (min-width: 1400px) {
  .order__action {
    margin-top: 26px;
    flex-direction: row;
  }
}
.order__email {
  padding: 0;
  text-align: center;
  background-color: white;
  border: 1px solid rgba(43, 41, 45, 0.2);
  border-radius: 2px;
  height: 48px;
  width: 100%;
  font-size: 18px;
  line-height: 13px;
}
@media screen and (min-width: 1400px) {
  .order__email {
    width: 385px;
  }
}
.order__email::placeholder {
  color: #2b292d;
}
.order__button {
  padding: 0;
  margin-top: 12px;
  width: 100%;
}
@media screen and (min-width: 1400px) {
  .order__button {
    margin: 0 0 0 10px;
    width: 160px;
  }
}
.order__terms {
  margin-top: 10px;
  font-size: 14px;
  line-height: 22px;
  color: rgba(43, 41, 45, 0.6);
}
.order__terms-link {
  color: #3040c4;
}

.audience {
  background-color: rgba(0, 161, 198, 0.07);
  padding: 50px 15px;
}
@media screen and (min-width: 1400px) {
  .audience {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 108px 131px 110px 130px;
  }
}
@media screen and (min-width: 1400px) {
  .audience__content {
    width: 555px;
  }
}
.audience__subtitle {
  margin: 0;
  font-size: 22px;
  line-height: 34px;
  text-align: center;
}
.audience__title {
  margin: 17px 0 0;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  letter-spacing: -0.357143px;
}
@media screen and (min-width: 1400px) {
  .audience__title {
    margin-top: 24px;
    font-size: 56px;
    line-height: 56px;
    letter-spacing: -0.5px;
  }
}
.audience__text {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 34px;
  text-align: center;
}
@media screen and (min-width: 1400px) {
  .audience__text {
    margin-top: 30px;
  }
}
.audience__button {
  margin: 0;
}
.audience__button:last-child {
  margin-top: 12px;
}
@media screen and (min-width: 1400px) {
  .audience__button:last-child {
    margin-top: 0px;
    margin-left: 10px;
    width: 158px;
  }
}
.audience__buttons {
  margin: 30px 0 0;
}
@media screen and (min-width: 1400px) {
  .audience__buttons {
    display: flex;
    justify-content: center;
    margin-top: 34px;
  }
}
.audience__images {
  margin-top: 40px;
}
@media screen and (min-width: 1400px) {
  .audience__images {
    display: flex;
    margin-top: 111px;
  }
}
.audience__img-bg {
  margin: 15px 0 0;
  display: flex;
  flex-direction: column;
  height: 300px;
  background-color: white;
  box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
@media screen and (min-width: 1400px) {
  .audience__img-bg {
    margin: 0;
    margin-left: 30px;
    width: 262px;
  }
}
.audience .user-card {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 4px 6px rgba(0, 0, 0, 0.05), inset 0px 1px 0px rgba(255, 255, 255, 0.1);
}
.audience .user-card:hover {
  background-color: #3141c5;
  color: white;
}
.audience__img-bg:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1400px) {
  .audience__img-bg:first-child {
    margin-left: 0px;
  }
}
.audience__img {
  margin: 22px auto 0;
  max-width: 100%;
  color: black;
}
.audience__img-caption {
  margin: 22px auto 33px;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
}

.page {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  color: #2b292d;
}
@media screen and (min-width: 1400px) {
  .page {
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
}

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