@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #F1F1F2;
  font-family: "Rubik", sans-serif;
  position: relative;
  z-index: 2;
}

img {
  max-width: 100%;
}

.container {
  padding: 0 120px;
  max-width: 1440px;
  margin: 0 auto;
}

section {
  padding: 44px 0;
}

@media (max-width: 1400px) {
  .container {
    padding: 0 40px;
    max-width: 1440px;
    margin: 0 auto;
  }
}
@media (max-width: 969px) {
  .container {
    padding: 0 16px;
    max-width: 1000px;
    margin: 0 auto;
  }
  section {
    padding: 20px 0;
  }
}
button {
  outline: none;
  border: none;
  background-color: transparent;
}

.btn {
  padding: 9px 12px;
  border-radius: 10px;
  background: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Inter";
  font-size: 13px;
  font-weight: 600;
  line-height: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.btn svg {
  margin-right: 5px;
}
.btn:hover {
  transition: all 0.2s ease-in-out;
}

.btn-c {
  background: #2884EF;
}
.btn-c:hover {
  background: #1f69bd;
}

.btn-w {
  background: rgba(24, 28, 50, 0.08);
  color: #181C32;
}
.btn-w:hover {
  background: rgba(24, 28, 50, 0.2);
}

.btn-cl {
  background: rgba(255, 255, 255, 0.1);
}
.btn-cl:hover {
  background: rgba(255, 255, 255, 0.3);
}

.header {
  margin-top: 40px;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__wrapper .logo {
  min-width: 170px;
}
.header__wrapper .logo img {
  width: 100%;
}
.header__wrapper .btn {
  min-width: 100px;
}
.header__wrapper .nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__wrapper .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.header__wrapper .nav-list > li:not(:last-child) {
  margin-right: 24px;
}
.header__wrapper .nav-list > li a {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
  color: #5E6278;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.header__wrapper .nav-list > li a:hover {
  color: #4338ca;
}
.header__wrapper .burger {
  display: none;
}
.header .burger__menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  z-index: 1000;
  width: 100vw;
  touch-action: none;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}
.header .burger__menu.active {
  right: 0;
}
.header .burger__menu__content {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -290px;
  box-sizing: border-box;
  width: 284px;
  padding: 28px 20px;
  background: #4A4A98;
  box-shadow: 0px 0px 8px 0px rgba(134, 135, 137, 0.25);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}
.header .burger__menu__content.active {
  right: 0;
}
.header .burger__menu__content .btn {
  margin-top: 24px;
  display: flex;
}
.header .burger__menu__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.header .burger__menu__head__title {
  font-family: "Inter";
  font-size: 26px;
  font-weight: 800;
  line-height: 31.47px;
  text-align: left;
  color: #ffffff;
}
.header .burger__menu__head__close {
  color: #ffffff;
}
.header .burger__menu__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header .burger__menu__nav > li:not(:last-child) {
  margin-bottom: 12px;
}
.header .burger__menu__nav > li a {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .header {
    margin: 20px 0;
  }
  .header .nav {
    display: none;
  }
  .header .btn {
    display: none;
  }
  .header .burger {
    display: block;
  }
}
.advantages__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.advantages__list > li {
  width: calc(33.3333333333% - 30px);
  margin: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.advantages__list > li .icon {
  margin-bottom: 12px;
}
.advantages__list > li .text {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 500;
  line-height: 24.2px;
  text-align: center;
  color: #181C32;
}

@media (max-width: 767px) {
  .advantages__list {
    flex-direction: column;
    width: 100%;
  }
  .advantages__list > li {
    width: 100%;
    margin: 0;
  }
  .advantages__list > li:not(:last-child) {
    margin-bottom: 28px;
  }
}
.banner__wrapper {
  padding: 36px;
  background: #FFFFFF;
  border-radius: 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
}
.banner__wrapper:not(:last-child) {
  margin-bottom: 28px;
}
.banner__wrapper:nth-child(even) {
  flex-direction: row-reverse;
}
.banner__text {
  max-width: 423px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.banner__text .title {
  font-family: "Inter";
  font-size: 28px;
  font-weight: 800;
  line-height: 33.89px;
  text-align: left;
  color: #181C32;
  margin-bottom: 24px;
}
.banner__text .text {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
  color: #5E6278;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.banner__text .text p {
  margin-bottom: 8px;
}
.banner__text .text ul, .banner__text .text ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.banner__text .text ul li, .banner__text .text ol li {
  margin-bottom: 4px;
}
.banner__text .text .btn {
  margin-top: 24px;
}
.banner__image {
  max-width: 514px;
  width: 100%;
}

@media (max-width: 767px) {
  .banner__wrapper {
    padding: 20px;
    flex-direction: column;
  }
  .banner__wrapper:nth-child(even) {
    flex-direction: column;
  }
  .banner__image {
    margin-top: 24px;
    max-width: 100%;
  }
  .banner__image img {
    width: 100%;
  }
  .banner__text .title {
    font-size: 24px;
    line-height: 29.05px;
    margin-bottom: 16px;
  }
  .banner__text .text {
    font-size: 14px;
    line-height: 18.2px;
    align-items: normal;
  }
  .banner__text .text .btn {
    margin-top: 0px;
  }
}
.special {
  margin: 44px 0;
  padding: 300px 0;
  background: linear-gradient(263.69deg, rgba(74, 74, 152, 0.79) 1.06%, #4A4A98 97.87%);
  position: relative;
  z-index: 1;
}
.special__wrapper {
  position: relative;
  z-index: 3;
}
.special__bg {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  width: 45%;
}
.special__text {
  max-width: 577px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.special__text .title {
  font-family: "Inter";
  font-size: 40px;
  font-weight: 800;
  line-height: 48.41px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 24px;
}
.special__text .desc {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 24.2px;
  text-align: left;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

@media (max-width: 2400px) {
  .special {
    padding: 200px 0;
  }
  .special__bg {
    width: 45%;
  }
}
@media (max-width: 1900px) {
  .special {
    padding: 100px 0;
  }
  .special__bg {
    width: 40%;
  }
}
@media (max-width: 1300px) {
  .special {
    overflow: hidden;
  }
  .special__text {
    width: 50%;
  }
  .special__bg {
    width: 50%;
  }
}
@media (max-width: 969px) {
  .special {
    margin: 20px 0;
    padding: 20px 0;
    padding-bottom: 0;
  }
  .special__text {
    max-width: 100%;
    width: 100%;
    align-items: normal;
  }
  .special__text .title {
    font-size: 26px;
    line-height: 31.47px;
    margin-bottom: 16px;
  }
  .special__text .desc {
    font-size: 14px;
    line-height: 16.94px;
    margin-bottom: 24px;
  }
  .special__bg {
    margin-top: 20px;
    position: relative;
    width: 100%;
  }
}
.integration__text {
  width: calc(60% - 20px);
  margin: 0 20px;
}
.integration__wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 -20px;
}
.integration__wrapper .text {
  max-width: 599px;
  width: 100%;
}
.integration__wrapper .text .title {
  font-family: "Inter";
  font-size: 40px;
  font-weight: 800;
  line-height: 48.41px;
  text-align: left;
  color: #181C32;
  margin-bottom: 24px;
}
.integration__wrapper .text .desc {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 24.2px;
  text-align: left;
  color: #5E6278;
}
.integration__wrapper .image {
  width: calc(40% - 20px);
  margin: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .integration__wrapper {
    flex-direction: column;
    margin: 0;
  }
  .integration__wrapper .image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    margin-top: 24px;
  }
  .integration__text {
    width: 100%;
    margin: 0;
  }
  .integration__text .text .title {
    font-size: 26px;
    line-height: 31.47px;
    text-align: center;
    margin-bottom: 16px;
  }
  .integration__text .text .desc {
    font-size: 14px;
    line-height: 16.94px;
    text-align: center;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.about__wrapper .text {
  background: #ffffff;
  padding: 40px;
  border-radius: 32px;
  width: calc(60% - 15px);
}
.about__wrapper .text .title {
  font-family: "Inter";
  font-size: 40px;
  font-weight: 800;
  line-height: 48.41px;
  text-align: left;
  color: #181C32;
  margin-bottom: 32px;
}
.about__wrapper .text .desc {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: #5e6278;
}
.about__wrapper .image {
  width: calc(40% - 15px);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.about__wrapper .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .about__wrapper {
    flex-direction: column;
  }
  .about__wrapper .text {
    padding: 20px;
    width: 100%;
  }
  .about__wrapper .text .title {
    font-size: 26px;
    line-height: 31.47px;
    margin-bottom: 24px;
  }
  .about__wrapper .text .desc {
    font-size: 16px;
    line-height: 19.36px;
    margin-bottom: 12px;
  }
  .about__wrapper .image {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
}
.faq .title {
  font-family: "Inter";
  font-size: 40px;
  font-weight: 800;
  line-height: 48.41px;
  text-align: left;
  color: #181C32;
  margin-bottom: 28px;
}
.faq__list {
  list-style: none;
}
.faq__list-item {
  border-bottom: 1px solid rgba(126, 130, 153, 0.2);
  padding: 36px 0;
}
.faq__list-item__title {
  position: relative;
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 24.2px;
  text-align: left;
  color: #5E6278;
  padding-right: 32px;
  transition: all 0.2s ease-in-out;
}
.faq__list-item__title::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  background: url(../../assets/image/triangle.svg);
  width: 24px;
  height: 24px;
  background-size: 24px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.faq__list-item__title:hover {
  cursor: pointer;
  color: #4A4A98;
}
.faq__list-item.active .faq__list-item__title {
  color: #181C32;
}
.faq__list-item.active .faq__list-item__title::before {
  transform: rotate(180deg);
}
.faq__list-item__content {
  display: none;
  margin-top: 10px;
  max-width: 833px;
  width: 100%;
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 24.2px;
  text-align: left;
  color: #5E6278;
}

@media (max-width: 767px) {
  .faq .title {
    font-size: 26px;
    line-height: 31.47px;
    margin-bottom: 0;
  }
  .faq__list-item {
    padding: 24px 0;
  }
  .faq__list-item__title {
    font-size: 18px;
    line-height: 21.78px;
  }
  .faq__list-item__content {
    font-size: 16px;
    line-height: 19.36px;
  }
}
.footer {
  background-color: #181C32;
  margin-top: 20px;
  padding: 35px 0;
}
.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__wrapper .logo {
  min-width: 170px;
}
.footer__wrapper .logo img {
  width: 100%;
}
.footer__wrapper .nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__wrapper .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.footer__wrapper .nav-list > li:not(:last-child) {
  margin-right: 24px;
}
.footer__wrapper .nav-list > li a {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.footer__wrapper .nav-list > li a:hover {
  opacity: 0.8;
}
.footer__wrapper .btn {
  width: 110px;
}
.footer__bottom {
  margin-top: 20px;
  border-top: 1px solid #ffffff;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.footer__bottom-text {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
  color: #ffffff;
}
.footer__bottom-link {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer__bottom-link a {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.footer__bottom-link a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .footer {
    padding: 32px 0;
  }
  .footer__wrapper {
    display: flex;
    flex-direction: column;
    align-items: normal;
  }
  .footer__wrapper .logo {
    margin-bottom: 20px;
  }
  .footer__wrapper .nav {
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  .footer__wrapper .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__wrapper .nav-list > li {
    font-size: 14px;
    line-height: 14px;
  }
  .footer__wrapper .nav-list > li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .footer__bottom-link {
    flex-direction: column;
  }
}
.cover {
  padding-top: 88px;
}
.cover__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cover__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cover__content .title {
  font-family: "Inter";
  font-size: 64px;
  font-weight: 800;
  line-height: 77.45px;
  text-align: center;
  color: #181C32;
  margin-bottom: 24px;
}
.cover__content .desc {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  color: #5E6278;
  margin-bottom: 24px;
  max-width: 802px;
}
.cover__content .tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.cover__content .tags > li {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  color: #5E6278;
  padding: 8px 12px;
  border: 1px solid rgba(126, 130, 153, 0.2);
  border-radius: 99px;
}
.cover__content .tags > li:not(:last-child) {
  margin-right: 12px;
}
.cover .image {
  display: none;
}
.cover .mouse-parallax {
  height: 434px;
  width: 100%;
  position: relative;
}
.cover .mouse-parallax-1 {
  position: absolute;
  background-image: url("../../assets/image/с1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 455px 439px;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: all 0.1s ease;
}
.cover .mouse-parallax-2 {
  position: absolute;
  background-image: url("../../assets/image/с2.png");
  background-position: 10% 20%;
  background-repeat: no-repeat;
  background-size: 328px 361px;
  width: 100%;
  height: 100%;
  transition: all 0.1s ease;
  z-index: 3;
}
.cover .mouse-parallax-3 {
  position: absolute;
  background-image: url("../../assets/image/с3.png");
  background-position: 70% 0;
  background-repeat: no-repeat;
  background-size: 259px 238px;
  z-index: 0;
  width: 100%;
  height: 100%;
  transition: all 0.1s ease;
}
.cover .mouse-parallax-4 {
  position: absolute;
  background-image: url("../../assets/image/с4.png");
  background-position: 78% 120%;
  background-repeat: no-repeat;
  background-size: 320px 334px;
  width: 100%;
  height: 100%;
  transition: all 0.1s ease;
  z-index: 3;
}
.cover .mouse-parallax-5 {
  position: absolute;
  background-image: url("../../assets/image/с5.png");
  background-position: 24% 99%;
  background-repeat: no-repeat;
  background-size: 299px 121px;
  width: 100%;
  height: 100%;
  transition: all 0.1s ease;
  z-index: 3;
}
.cover .mouse-parallax-6 {
  position: absolute;
  background-image: url("../../assets/image/c6.png");
  background-position: 35% 92%;
  background-repeat: no-repeat;
  background-size: 44px 44px;
  width: 100%;
  height: 100%;
  transition: all 0.1s ease;
  z-index: 3;
}

@media (max-width: 767px) {
  .cover {
    padding-top: 40px;
  }
  .cover__content .title {
    font-size: 32px;
    line-height: 38.73px;
    margin-bottom: 16px;
  }
  .cover__content .desc {
    font-size: 16px;
    line-height: 20.8px;
    margin-bottom: 16px;
  }
  .cover__content .tags > li {
    font-size: 14px;
    line-height: 16.94px;
    padding: 6px 8px;
  }
  .cover .mouse-parallax {
    display: none;
  }
  .cover .image {
    display: block;
  }
}
.overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 7, 45, 0.35);
  z-index: 1000;
  transition: 0.3s all;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.overlay.active + .modal-wrapper {
  display: block;
}

.modal-wrapper {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  outline: none !important;
  -webkit-backface-visibility: hidden;
  overflow: hidden auto;
  z-index: 1000;
}

.modal-container {
  padding-top: 30px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.modal {
  display: none;
  margin-bottom: 30px;
  position: relative;
  margin: 0 16px;
  width: calc(100% - 32px);
  max-width: 480px;
  box-shadow: 0 3px 10px -0.5px rgba(0, 0, 0, 0.2);
  padding: 24px;
  background-color: #4A4A98;
  border-radius: 16px;
}
.modal.active {
  display: inline-block;
}
.modal__cross {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 20px;
  right: 20px;
  fill: #Ffffff;
  cursor: pointer;
}
.modal__cross path {
  fill: var(--btn-t-cl);
}
.modal__heading {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 16px;
}
.modal__form {
  display: flex;
  flex-direction: column;
}
.modal__form .form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.modal__form .form__group label {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 500;
  line-height: 24.2px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 8px;
}
.modal__form .form__group input, .modal__form .form__group textarea {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-align: left;
  color: #5E6278;
  background-color: #F1F1F2;
  border: none;
  border-radius: 10px;
  height: 40px;
  padding: 10px 15px;
}
.modal__form .form__group input:hover, .modal__form .form__group input:active, .modal__form .form__group input:focus, .modal__form .form__group input:focus-visible, .modal__form .form__group textarea:hover, .modal__form .form__group textarea:active, .modal__form .form__group textarea:focus, .modal__form .form__group textarea:focus-visible {
  border: none;
  outline: none;
}
.modal__form .form__group textarea {
  height: auto;
}

.article__head {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 410px;
  padding: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3019607843);
}
.article__head .title {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 72px;
  line-height: 100%;
  letter-spacing: 8%;
  text-align: center;
  vertical-align: middle;
  text-transform: none;
  color: #FFFFFF;
}
.article__inner {
  padding: 75px 0;
  display: flex;
  flex-direction: row;
  gap: 75px;
}
.article__wrapper {
  max-width: 100%;
  width: 100%;
}
.article__wrapper.white {
  padding: 20px;
  background-color: #FFFFFF;
}
.article__wrapper h1 {
  font-weight: 700;
  font-size: 42px;
  line-height: 100%;
  color: #181C32;
  margin-bottom: 30px;
}
.article__wrapper h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #181C32;
  margin-bottom: 20px;
  margin-top: 40px;
}
.article__wrapper h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #181C32;
  margin-bottom: 20px;
  margin-top: 30px;
}
.article__wrapper h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #181C32;
  margin-bottom: 15px;
  margin-top: 25px;
}
.article__wrapper p {
  font-weight: 400;
  font-size: 21px;
  line-height: 35px;
  color: #181C32;
  margin-bottom: 20px;
}
.article__wrapper ol {
  margin: 20px 0;
  padding-left: 20px;
}
.article__wrapper ol li {
  font-weight: 400;
  font-size: 21px;
  line-height: 35px;
  color: #181C32;
}
.article__wrapper ul {
  list-style: none;
  margin: 20px 0;
}
.article__wrapper ul li {
  font-weight: 400;
  font-size: 21px;
  line-height: 35px;
  color: #181C32;
  padding-left: 20px;
  position: relative;
}
.article__wrapper ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: #181C32;
  border-radius: 50%;
}
.article__wrapper blockquote {
  border-left: 4px solid #4472C4;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #181C32;
}
.article__wrapper blockquote p {
  font-size: 24px;
  line-height: 140%;
}
.article__wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 30px 0;
}
.article__wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}
.article__wrapper table th, .article__wrapper table td {
  border: 1px solid #4338ca;
  padding: 12px;
  text-align: left;
  font-size: 18px;
  color: #181C32;
}
.article__wrapper table th {
  background: rgba(68, 114, 196, 0.3);
  font-weight: 700;
}
.article__wrapper a {
  color: #4472C4;
  text-decoration: none;
}
.article__wrapper a:hover {
  text-decoration: underline;
}
.article__date {
  font-size: 16px;
  color: #181C32;
  margin-top: 30px;
  text-align: right;
}
.article__date span {
  color: #4338ca;
}
.article__author {
  border: 1px solid #4472C4;
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.article__author .article__author-image {
  min-width: 131px;
  width: 131px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: url("../../assets/image/hexagon-mask.svg");
  mask-image: url("../../assets/image/hexagon-mask.svg");
}
.article__author .article__author-image picture,
.article__author .article__author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  margin: 0px;
  padding: 0px;
}
.article__author .article__author-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article__author .article__author-content .name {
  font-size: 24px;
  margin: 0px;
  color: #4338ca;
}
.article__author .article__author-content .text {
  font-size: 16px;
  margin: 0px;
}
.article__author .article__author-content .links {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.article__author .article__author-content .links p {
  margin: 0px;
}

@media (max-width: 1024px) {
  .article__head {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 320px;
    padding: 50px;
  }
  .article__head .title {
    font-size: 40px;
  }
  .article__inner {
    padding: 35px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .article__wrapper h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .article__wrapper h2 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 30px;
  }
  .article__wrapper h3 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .article__wrapper h4 {
    font-size: 18px;
  }
  .article__wrapper p {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .article__wrapper ul, .article__wrapper ol {
    margin: 20px 0;
  }
  .article__wrapper ul li, .article__wrapper ol li {
    font-size: 16px;
  }
  .article__wrapper blockquote p {
    font-size: 16px;
    line-height: 140%;
  }
  .article__wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
  }
  .article__wrapper table th, .article__wrapper table td {
    font-size: 16px;
  }
  .article__author {
    border: 1px solid #4472C4;
    border-radius: 12px;
    padding: 10px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .article__author .article__author-image {
    min-width: 131px;
    width: 131px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: url("../../assets/image/hexagon-mask.svg");
    mask-image: url("../../assets/image/hexagon-mask.svg");
  }
  .article__author .article__author-image picture,
  .article__author .article__author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    margin: 0px;
    padding: 0px;
  }
  .article__author .article__author-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .article__author .article__author-content .name {
    font-size: 18px;
    margin: 0px;
    color: #4338ca;
  }
  .article__author .article__author-content .text {
    font-size: 14px;
    line-height: 120%;
    margin: 0px;
  }
}
.blog-list {
  padding: 30px 0;
}
.blog-list__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-list__inner .title {
  font-family: "Inter";
  font-size: 40px;
  font-weight: 800;
  line-height: 48.41px;
  text-align: left;
  color: #181C32;
  margin-bottom: 30px;
}
.blog-list__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
}
.blog-list__wrapper .item {
  width: calc((100% - 50px) / 3);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background-color: #ffffff;
}
.blog-list__wrapper .item:hover {
  transition: all 0.2s ease;
  box-shadow: 0 0 20px #4338ca;
  color: #4338ca;
}
.blog-list__wrapper .item:hover::before {
  transition: all 0.2s ease;
  background: transparent;
}
.blog-list__wrapper .item .image {
  position: relative;
  width: 100%;
  height: 200px;
}
.blog-list__wrapper .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-list__wrapper .item .content {
  padding: 30px;
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog-list__wrapper .item .content .subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #181C32;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
}
.blog-list__wrapper .item .content .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #5e6278;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-list__wrapper .item .content .btn {
  margin-top: 20px;
}
.blog-list__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .blog-list__inner .title {
    font-size: 26px;
    line-height: 31.47px;
  }
  .blog-list__wrapper .item {
    width: calc((100% - 50px) / 2);
  }
}
@media (max-width: 560px) {
  .blog-list__wrapper .item {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */