@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
/**
 * Сброс стилей
 **/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

input {
  outline: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

/*Basic style*/
body {
  font-family: "Roboto", sans-serif;
  background: #f8f9ff;
}

.container {
  min-width: 320px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.wrap {
  min-width: 320px;
  max-width: 1180px;
  box-sizing: border-box;
  margin: 0 auto;
}

p,
a,
button {
  color: #8794ba;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

html,
body {
  overflow-x: hidden;
}

.intro-analytics {
  padding-top: 50px;
}
.intro-analytics::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #172755;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
}
.intro-analytics::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: -17px;
  width: 100%;
  height: 100%;
  background: #ef2a82;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
}

.header {
  display: flex;
  align-items: center;
}
.header .header-menu-btn {
  display: none;
}
.header nav {
  flex-grow: 1;
}
.header__logo {
  display: flex;
  align-items: center;
  margin-right: 78px;
  text-decoration: none;
}
.header__logo img {
  margin-right: 13px;
}
.header__logo p {
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

.header__menu-list {
  display: flex;
}
.header__menu-item {
  margin-right: 36px;
}
.header__menu-item a {
  text-decoration: none;
}

.header__btns {
  z-index: 2;
}
.header__btns .header__btn--transparent {
  border: 1px solid transparent;
  background-color: transparent;
  border-radius: 68px;
  color: #8794ba;
  font-size: 16px;
  padding: 10px 53px;
  cursor: pointer;
}
.header__btns .header__btn--circled {
  border: 1px solid #f8f9ff;
  background-color: transparent;
  border-radius: 68px;
  color: #8794ba;
  font-size: 16px;
  padding: 10px 53px;
  cursor: pointer;
}

.dashboard {
  display: flex;
  padding-top: 150px;
  padding-bottom: 258px;
}
.dashboard__info {
  max-width: 550px;
  margin-right: 80px;
}
.dashboard__title {
  position: relative;
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 15px;
}
.dashboard::after {
  content: "";
  position: absolute;
  top: -180px;
  left: 80px;
  width: 720px;
  height: 720px;
  background: url("../assets/icons/logo-light-gray-2.svg") no-repeat;
  z-index: 1;
}
.dashboard::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 930px;
  width: 720px;
  height: 720px;
  background: url("../assets/icons/logo-light-gray.svg") no-repeat;
  z-index: 1;
}
.dashboard__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #8794ba;
  margin-bottom: 50px;
}
.dashboard__btn {
  border: 1px solid transparent;
  background-color: #ef2a82;
  border-radius: 68px;
  color: #fff;
  font-size: 16px;
  padding: 15px 80px;
  cursor: pointer;
  transition: all 0.5s;
}
.dashboard__btn:hover {
  border: 1px solid #ef2a82;
  background-color: transparent;
  border-radius: 68px;
  color: #fff;
  font-size: 16px;
  padding: 15px 80px;
  cursor: pointer;
}
.dashboard__pictures {
  position: relative;
  z-index: 1;
}
.dashboard__pictures img {
  box-shadow: 0 19px 53px -16px rgba(25, 42, 89, 0.2);
}
.dashboard__pictures::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 80px;
  background: url("../assets/img/dashboard-big.png") no-repeat;
  width: 805px;
  height: 550px;
  box-shadow: 0 18px 50px -15px rgba(25, 42, 89, 0.2);
  border-radius: 30px;
  z-index: -1;
}

@media screen and (max-width: 1200px) {
  .intro-analytics::after, .intro-analytics::before {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  }
  .wrap-padding {
    padding: 0 15px;
  }
  .header {
    justify-content: space-between;
  }
  .header__logo {
    flex-grow: 1;
  }
  .header .header-menu-btn {
    display: block;
    position: relative;
  }
  .header .header-menu-btn input {
    cursor: pointer;
    position: relative;
    visibility: hidden;
    width: 24px;
    height: 24px;
  }
  .header .header-menu-btn input:checked ~ .header__menu--side {
    opacity: 1;
    transform: translateX(0);
  }
  .header .header-menu-btn input::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 0;
    left: 0;
    visibility: visible;
    background: url("../assets/icons/menu-icon.svg") no-repeat;
  }
  .header__menu--side {
    position: absolute;
    z-index: 2;
    top: 40px;
    right: -15px;
    background: #1e3681;
    padding: 15px 20px;
    border-radius: 5px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s;
  }
  .header__menu--side ul {
    flex-direction: column;
  }
  .header__menu--side ul li {
    margin-bottom: 30px;
  }
  .header__menu--side ul li:last-child {
    margin: 0;
  }
  .header__menu--adaptive {
    display: none;
  }
  .header__btn--adaptive {
    display: none;
  }
  .dashboard {
    padding-top: 80px;
    flex-direction: column;
  }
  .dashboard__info {
    max-width: 100%;
    margin-right: 0;
  }
  .dashboard__title {
    text-align: center;
  }
  .dashboard__title::before {
    display: none;
  }
  .dashboard__title::after {
    display: none;
  }
  .dashboard__btn {
    margin: 0 auto;
    display: block;
  }
  .dashboard__pictures {
    margin: 0 auto;
  }
  .dashboard__pictures::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 10%);
    width: 520px;
    height: 359px;
  }
  .dashboard__text {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .intro-analytics::after, .intro-analytics::before {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  }
  .intro-analytics .header {
    flex-direction: column;
    gap: 20px;
  }
  .intro-analytics .header__logo {
    margin-right: 0;
  }
  .intro-analytics .header .header-menu-btn input:checked ~ .header__menu--side {
    transform: translateX(30%);
  }
  .dashboard {
    padding-top: 40px;
    padding-bottom: 150px;
  }
  .dashboard__title {
    font-size: 36px;
  }
  .dashboard__text {
    font-size: 16px;
  }
  .dashboard__pictures::before {
    display: none;
  }
}
.main-features {
  margin-bottom: 130px;
}
.main-features__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-top: 200px;
  margin-bottom: 30px;
}
.main-features__text-block {
  font-size: 18px;
  text-align: center;
  line-height: 150%;
  margin-bottom: 82px;
}
.main-features__advantages {
  display: flex;
  justify-content: space-between;
}
.main-features__advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 366px;
}
.main-features__advantage-item img {
  margin-bottom: 26px;
  width: 60px;
  height: 60px;
}
.main-features__advantage-item h3 {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
}
.main-features__advantage-item p {
  font-size: 16px;
  line-height: 140%;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .main-features__advantages {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .main-features {
    margin-bottom: 60px;
  }
  .main-features__title {
    padding-top: 50px;
    font-size: 36px;
  }
  .main-features__text-block {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .main-features__advantages {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 420px) {
  .main-features__advantage-item {
    width: 290px;
  }
  .main-features__advantages {
    gap: 45px;
  }
}
.roadmap__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
}
.roadmap__item--right {
  flex-direction: row-reverse;
}
.roadmap__description {
  max-width: 480px;
}
.roadmap__title {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 30px;
  line-height: 120%;
}
.roadmap__text-block {
  font-size: 18px;
  line-height: 150%;
}
.roadmap__picture {
  max-width: 600px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 18px 50px -15px rgba(25, 42, 89, 0.2);
}

@media screen and (max-width: 1200px) {
  .roadmap__item {
    gap: 20px;
  }
  .roadmap__description {
    min-width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .roadmap__item {
    flex-direction: column;
    margin-bottom: 90px;
  }
  .roadmap__description {
    min-width: 50%;
  }
  .roadmap__title {
    font-size: 32px;
  }
  .roadmap__text-block {
    font-size: 16px;
  }
}
.pricing-plans {
  position: relative;
  padding-top: 280px;
  padding-bottom: 100px;
}
.pricing-plans::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #172755;
  clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
}
.pricing-plans::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -17px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #ef2a82;
  clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
}
.pricing-plans__description {
  margin-bottom: 80px;
}
.pricing-plans__title {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}
.pricing-plans__text-block {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  margin: 0 auto;
  max-width: 540px;
}

.pricing-plans__rates {
  display: flex;
  justify-content: space-between;
}
.pricing-plans__rates .rates-item {
  border-radius: 30px;
  box-shadow: 0 18px 50px -15px rgba(25, 42, 89, 0.2);
  background: #0f1f4b;
  padding: 50px 66px 70px;
  text-align: center;
}
.pricing-plans__rates .rates-item__title {
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}
.pricing-plans__rates .rates-item__text-block {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #8794ba;
  margin-bottom: 66px;
}
.pricing-plans__rates .rates-item__price {
  position: relative;
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  color: #fff;
  margin-bottom: 5px;
}
.pricing-plans__rates .rates-item__price::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 1px;
  background: #d3d9e9;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pricing-plans__rates .rates-item__currency {
  font-size: 30px;
}
.pricing-plans__rates .rates-item__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 40%;
  text-align: center;
  color: #8794ba;
  margin-bottom: 40px;
}
.pricing-plans__rates .rates-item__order-btn {
  border: 1px solid #2a407c;
  background-color: transparent;
  border-radius: 68px;
  color: #fff;
  font-size: 16px;
  padding: 15px 80px;
  cursor: pointer;
}
.pricing-plans__rates .rates-item--pink {
  box-shadow: 0 18px 50px -15px #060f28;
  background: #fff;
}
.pricing-plans__rates .rates-item--pink .rates-item__title,
.pricing-plans__rates .rates-item--pink .rates-item__price {
  color: #172755;
}
.pricing-plans__rates .rates-item--pink .rates-item__order-btn {
  border: 1px solid #ef2a82;
  background-color: #ef2a82;
  border-radius: 68px;
  color: #fff;
  font-size: 16px;
  padding: 15px 80px;
  cursor: pointer;
  transition: all 0.5s;
}
.pricing-plans__rates .rates-item--pink .rates-item__order-btn:hover {
  border: 1px solid #ef2a82;
  background-color: transparent;
  border-radius: 68px;
  color: #ef2a82;
  font-size: 16px;
  padding: 15px 80px;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .pricing-plans {
    padding-top: 150px;
  }
  .pricing-plans::after, .pricing-plans::before {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
  }
  .pricing-plans__rates {
    justify-content: space-evenly;
    flex-flow: row wrap;
    gap: 35px;
  }
}
@media screen and (max-width: 768px) {
  .pricing-plans {
    padding-top: 150px;
  }
  .pricing-plans::after, .pricing-plans::before {
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
  }
  .pricing-plans__title {
    font-size: 32px;
  }
  .pricing-plans__text-block {
    font-size: 16px;
  }
  .rates-item {
    padding: 30px 56px 50px;
  }
  .rates-item__title {
    font-size: 24px;
  }
  .rates-item__text-block {
    font-size: 16px;
  }
  .rates-item__price {
    font-size: 50px;
  }
}
@media screen and (max-width: 400px) {
  .pricing-plans::after, .pricing-plans::before {
    clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 100%);
  }
  .pricing-plans .rates-item {
    padding: 30px 36px 30px;
  }
}
.footer-menu {
  background: #172755;
}
.footer-menu__wrapper {
  border-top: 1px solid #2a407c;
  padding-top: 63px;
  padding-bottom: 103px;
  display: flex;
  justify-content: space-between;
}
.footer-menu__logo {
  display: flex;
  align-items: center;
}
.footer-menu__logo img {
  margin-right: 10px;
}
.footer-menu__logo p {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}
.footer-menu__list {
  width: 294px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-menu__link {
  text-decoration: none;
}
.footer-menu__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 125px;
}

@media screen and (max-width: 768px) {
  .footer-menu__list {
    display: none;
  }
}
@media screen and (max-width: 380px) {
  .footer-menu__wrapper {
    flex-flow: column wrap;
    align-items: center;
    gap: 35px;
    padding-top: 43px;
    padding-bottom: 60px;
  }
}

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