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

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

ul, ol {
  padding-left: 1em;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
input[type=file] {
  position: absolute;
  display: none;
  opacity: 0;
  z-index: -1;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type=number], input[type=number]:hover, input[type=number]:focus {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}
input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus {
  outline: none;
}

textarea {
  font-family: inherit;
}

/* Variables */
/* Mixins */
/* Fonts */
@font-face {
  src: url("../fonts/Gilroy/Gilroy-Regular.ttf") format("truetype");
  font-family: "Gilroy";
  font-style: "normal";
  font-weight: 400;
}
@font-face {
  src: url("../fonts/Gilroy/Gilroy-Medium.ttf") format("truetype");
  font-family: "Gilroy";
  font-style: "normal";
  font-weight: 500;
}
@font-face {
  src: url("../fonts/Gilroy/Gilroy-SemiBold.ttf") format("truetype");
  font-family: "Gilroy";
  font-style: "normal";
  font-weight: 600;
}
@font-face {
  src: url("../fonts/Gilroy/Gilroy-Bold.ttf") format("truetype");
  font-family: "Gilroy";
  font-style: "normal";
  font-weight: 700;
}
body, html {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #555F7C;
}

.color-main {
  color: #32325A;
}

.color-red {
  color: #ED4C5C;
}

a {
  color: #ED4C5C;
}

.h1 {
  font-weight: 600;
  font-size: 51px;
}

.h2 {
  font-weight: 500;
  font-size: 25px;
}

.h3 {
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 576px) {
  body, html {
    font-size: 16px;
  }
  .h1 {
    font-size: 20px;
  }
  .h2 {
    font-size: 17px;
  }
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 5px;
}
.logo__image {
  width: 52px;
  height: 52px;
}
.logo__image img, .logo__image svg {
  display: block;
  width: 100%;
  height: 100%;
}
.logo__text {
  font-weight: 600;
  font-size: 17px;
  color: #32325A;
}
@media (max-width: 576px) {
  .logo__image {
    width: 40px;
    height: 40px;
  }
  .logo__text {
    font-size: 13px;
  }
}

.socials {
  color: #FFF;
  display: flex;
  gap: 10px;
}
.socials__link {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: #32325A;
}
.socials__icon {
  position: relative;
  width: 16px;
  height: auto;
}
.socials__icon svg {
  display: block;
  width: 100%;
  height: auto;
}
.socials__icon svg path {
  fill: #FFF;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 5px 30px 0 rgba(1, 22, 65, 0.15);
}
.dropdown:hover .dropdown__content {
  transform: translateX(-50%) translateY(10px);
  visibility: visible;
  opacity: 1;
}

/* Language */
.language {
  display: none !important;
}
.language__list {
  list-style: none;
  padding: 0;
}
.language__list .language__item {
  padding: 0.5em 0.75em;
  transition: 0.5s;
}
.language__list .language__item a {
  color: inherit;
  transition: 0.5s;
}
.language__list .language__item a:hover {
  color: #ED4C5C;
}
.language__item {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.language__item img, .language__item svg {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 5px;
}

body {
  background: #FFFCFC;
}

@media (min-width: 576px) {
  .mobile {
    display: none;
  }
}
@media (max-width: 576px) {
  .desctop {
    display: none;
  }
}
.container {
  width: 100%;
  max-width: 1263px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

.header {
  font-size: 14px;
  color: #32325A;
}
.header .wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #D6DBE9;
}
.header .logo {
  margin-right: auto;
}
.header .link {
  color: #32325A;
}
.header .menu-burger {
  display: none;
}
@media (max-width: 820px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFCFC;
    z-index: 10;
  }
  .header .link,
  .header .socials,
  .header .language {
    display: none;
  }
  .header .menu-burger {
    display: block;
  }
}
@media (max-width: 576px) {
  .header .wrapper {
    padding: 15px 0;
    border-bottom: none;
  }
}

.menu-burger {
  color: #32325A;
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  margin: -13px;
}
.menu-burger span {
  color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 50%;
  height: 2px;
  background: currentColor;
  border-radius: 3px;
  transform: translateX(-50%);
  transition: 0.3s ease-out;
  transition-property: top, transform;
}
.menu-burger span:nth-child(1) {
  top: 35%;
}
.menu-burger span:nth-child(3) {
  top: 65%;
}
.menu-burger.open span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(135deg);
}
.menu-burger.open span:nth-child(2) {
  transform: translateX(100%) scaleX(0);
}
.menu-burger.open span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-135deg);
}
@media (max-width: 576px) {
  .menu-burger {
    color: #32325A;
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    margin: -8px;
  }
}

.menu {
  display: none;
}
@media (max-width: 820px) {
  .menu {
    font-size: 14px;
    color: #32325A;
    display: block;
  }
  .menu__shadow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #32325A;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 11;
  }
  .menu__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: 0.3s;
    transform: translateY(-100%);
    z-index: 12;
  }
  .menu .container {
    padding-top: 30px;
  }
  .menu .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
    background: #FFF;
  }
  .menu .content .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
  }
  .menu .content .link {
    color: #32325A;
    margin-bottom: 20px;
  }
  .menu .content .socials {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .menu.open .menu__shadow {
    opacity: 0.5;
    visibility: visible;
  }
  .menu.open .menu__wrapper {
    transform: translateY(0%);
  }
}
@media (max-width: 576px) {
  .menu {
    font-size: 11px;
  }
  .menu .container {
    padding-top: 15px;
  }
  .menu .content {
    padding: 15px;
    border-radius: 15px;
  }
  .menu .content .header {
    margin-bottom: 15px;
  }
  .menu .content .link {
    margin-bottom: 10px;
  }
  .menu .content .socials {
    margin-bottom: 10px;
  }
}

.main {
  padding-top: 70px;
}
@media (max-width: 820px) {
  .main {
    padding-top: 140px;
  }
}
@media (max-width: 576px) {
  .main {
    padding-top: 80px;
  }
}

.block-text {
  margin-bottom: 50px;
}
.block-text .h1 {
  margin-bottom: 50px;
}
.block-text .h2 {
  margin-bottom: 15px;
}
.block-text p:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .block-text {
    margin-bottom: 30px;
  }
  .block-text .h1 {
    margin-bottom: 30px;
  }
  .block-text .h2 {
    margin-bottom: 30px;
  }
  .block-text p:not(:last-child) {
    margin-bottom: 30px;
  }
}

.block-software-features {
  margin-bottom: 50px;
}
.block-software-features .h2 {
  margin-bottom: 30px;
}
.block-software-features .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.block-software-features .list .item {
  width: 100%;
}
.block-software-features .list .item__title {
  font-weight: 600;
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.block-software-features .list .item__title img, .block-software-features .list .item__title svg {
  display: block;
  width: 35px;
  height: auto;
}
.block-software-features .list .item__title span {
  flex: 1;
}
@media (max-width: 1260px) {
  .block-software-features .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .block-software-features {
    margin-bottom: 30px;
  }
  .block-software-features .list {
    grid-template-columns: repeat(1, 1fr);
  }
  .block-software-features .list .item {
    max-width: 100%;
  }
  .block-software-features .list .item__title {
    gap: 10px;
    margin-bottom: 15px;
  }
  .block-software-features .list .item__title img, .block-software-features .list .item__title svg {
    width: 24px;
  }
}

.block-documentation {
  margin-bottom: 50px;
}
.block-documentation .wrapper {
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
  background: #FFF;
}
.block-documentation .h2 {
  margin-bottom: 15px;
}
.block-documentation .link {
  display: flex;
  align-items: center;
  gap: 15px;
}
.block-documentation .link img, .block-documentation .link svg {
  display: block;
  width: 24px;
  height: auto;
}
.block-documentation .link span {
  flex: 1;
}
.block-documentation .link:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .block-documentation {
    margin-bottom: 30px;
  }
  .block-documentation .wrapper {
    padding: 15px;
    border-radius: 15px;
  }
}

.footer {
  font-size: 16px;
  color: #32325A;
}
.footer .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 50px;
  padding-bottom: 80px;
  border-top: 1px solid #D6DBE9;
}
.footer .copyright {
  text-align: center;
}
.footer .link {
  color: #32325A;
}
.footer .info {
  text-align: right;
}
.footer .socials {
  justify-content: flex-end;
  margin: 15px 0;
}
@media (max-width: 820px) {
  .footer {
    text-align: center;
    margin-top: 70px;
  }
  .footer .wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }
  .footer .logo {
    margin-bottom: 35px;
  }
  .footer .copyright {
    order: 3;
  }
  .footer .info {
    text-align: center;
  }
  .footer .socials {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .footer {
    font-size: 13px;
  }
  .footer .wrapper {
    gap: 15px;
    padding-top: 30px;
    padding-bottom: 60px;
  }
}