@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anek+Malayalam:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:wght@400;500&display=swap');

:root {
  --centerWidth: 1200px;
  --bodyBg: #171515;
  --sectionBg: #1B1C1F;
  --textColor: #fff;
  --textColorMuted: #717491;
  --colorAccent: #6170F7;
  --colorAccent2: #AB35D6;
  --fontFamily: Helvetica, Arial, sans-serif;
  --textFont: 400 26px/normal var(--fontFamily);
  --textBtn: 500 20px/normal "Roboto", sans-serif;
  --titleFontH1: 600 15.6rem/1.1 "Anek Malayalam", sans-serif;
  --titleFontH2: 600 7.2rem/1.1 "Anek Malayalam", sans-serif;
  --placeholderColor: rgba(31, 33, 40, 0.50);
}

html {
  font-size: 62.5%;
}

input,
textarea {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 15px 30px;
  font: 400 18px/1.6 "Roboto", sans-serif;
  transition: all 0.3s ease;
  color: rgba(31, 33, 40, 0.50);
}

input:focus,
textarea:focus {
  border-color: var(--colorAccent2);
}

textarea {
  height: 120px;
  max-width: 100%;
  resize: none;
}

.highlighted {
  color: var(--colorAccent);
}

.highlighted-2 {
  color: var(--colorAccent2);
}

/*main styles*/
body {
  font: var(--textFont);
  color: var(--textColor);
  background: var(--bodyBg);
  position: relative;
  overflow-x: hidden;
}

::-webkit-input-placeholder {
  color: var(--placeholderColor);
}

:-ms-input-placeholder {
  color: var(--placeholderColor);
}

::-ms-input-placeholder {
  color: var(--placeholderColor);
}

::placeholder {
  color: var(--placeholderColor);
}

.center {
  max-width: var(--centerWidth);
  width: calc(100% - 40px);
  height: inherit;
  margin: 0 auto;
}

.title__h1 {
  font: var(--titleFontH1);
}

.title__h2 {
  font: var(--titleFontH2);
}

.btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 54px;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  color: #000;
  border-radius: 100px;
  font: var(--textBtn);
  width: -webkit-max-content;
  width: 220px;
  position: relative;
  overflow: hidden;
  z-index: 10;
  transition: all 0.6s ease;
}

.btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  transition: all 0.6s ease;
  border-radius: inherit;
}

.btn:hover {
  background: transparent;
}

.btn:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.btn__accent::after,
.btn__invert::after {
  background: rgba(255, 255, 255, 0.2);
}

.btn__invert,
.btn__invert:hover {
  background: #000;
  color: #fff;
}

.btn__accent,
.btn__accent:hover {
  background: var(--colorAccent);
  color: #fff;
}

.btn__secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #FFF;
}

.btn__secondary::after {
  background: rgba(255, 255, 255, 0.2);
}

.btn:hover .icon {
  -webkit-transform: translate(5px, 0);
  transform: translate(5px, 0);
}

.btn .icon {
  transition: all 0.6s ease;
  margin-left: 10px;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

/*header*/
.header {
  padding: 30px 0 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}

.header_logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: absolute;
  left: 130px;
  top: 30px;
  z-index: 100;
  height: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.header_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header_menu {
  position: relative;
  margin-left: auto;
}

.header_menu-items {
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 870px;
  padding: 0 40px 0 60px;
  background: #FFF;
  border-radius: 10px;
  height: 80px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header_menu-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 60px 0 0;
  position: relative;
  color: #626773;
  font-size: 24px;
  transition: all 0.3s ease;
  font-family: "Raleway", serif;
}

.header_menu-item .icon {
  display: none;
}

.header_menu-item.is-active {
  color: #000;
  font-weight: 600;
}

.header_menu-item:hover {
  color: #000;
}

.header_menu-toggle {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background: var(--colorAccent);
  border-radius: 50%;
  cursor: pointer;
}

.header_menu-toggle .icon {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header_menu-toggle .icon::before,
.header_menu-toggle .icon::after {
  content: '';
  height: 2px;
  width: 14px;
  background: currentColor;
  margin: 3px auto;
}

.header_button {
  margin-left: auto;
}

.header_menu-slogan-block {
  display: none;
  margin-top: auto;
}

.header_menu-slogan {
  text-align: center;
  color: #9C9CA5;
  font: 400 23px/1.4 "Raleway", serif;
  margin-bottom: 20px;
}

.section {
  position: relative;
  overflow-x: hidden;
}

/*main section*/
.section__main {
  padding: 21rem 0 12rem;
  background: var(--sectionBg);
  z-index: 10;
}

.lightning:hover {
  animation: pulse 2s infinite;
}

.section__main::before,
.section__main::after {
  content: '';
  width: 911px;
  max-width: 45%;
  height: 760px;
  position: absolute;
  z-index: -1;
  top: 80px;
  margin: auto 0;
  bottom: 0;
  background: url(../i/magnet.svg) no-repeat 0 center/contain;
}

.section__main::before {
  left: 30px;
}

.section__main::after {
  right: 30px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  background-position: right center;
}

.main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.main_items {
  width: 69.3rem;
  height: 69.3rem;
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(50% - 10px);
  height: calc(50% - 10px);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
.icon__decoration {
  z-index: 95;
}
.main_item .icon__decoration {
  position: absolute;
  color: #fff;
}

.main_item__1 {
  overflow: hidden;
  border-radius: 2.6rem;
  background: var(--colorAccent);
  padding: 2.3rem;
  -ms-flex-direction: column;
  flex-direction: column;
}

#main_item__1:hover {
  transform: scale(1.05);
  transition: ease 1s;
}

.main_item__1 .main_text {
  margin-top: 2.7rem;
  font: 400 2.3rem/1.6 "Raleway", serif;
}

.main_item__1 .main_icons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main_icon-1 {
  width: 7.3rem;
  height: 7.1rem;
  background: url(../i/decoration-1.svg) no-repeat 0 0/contain;
}

.main_icon-1:hover {
  animation: infinite-rotation 5s linear infinite;
}

.main_icon-2 {
  margin-left: 1.5rem;
  width: 17.1rem;
  height: 10px;
  background: url(../i/arrow-1.svg) no-repeat 0 center/100% auto;
}

.main_item__2 .icon__decoration {
  left: 5rem;
  top: 6.8rem;
  font-size: 3.7rem;
  -webkit-transform: rotate(67deg);
  transform: rotate(67deg);
}

.main_item__2::before {
  content: '';
  position: absolute;
  left: 5.6rem;
  bottom: 0;
  width: 19.7rem;
  height: 39.2rem;
  border-radius: 50%;
  border: 5px solid rgba(202, 214, 251, 0.3);
  background: linear-gradient(180deg, rgba(59, 60, 67, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: -1;
}

.main_item__2 img {
  width: 9.7rem;
  height: 17.2rem;
  -webkit-transform: translate(-20%, -13%);
  transform: translate(-20%, -13%);
}

.main_item__3 {
  margin-top: auto;
  border-radius: 50%;
  border: 5px solid rgba(202, 214, 251, 0.3);
  background: linear-gradient(180deg, rgba(59, 60, 67, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.main_item__3 img {
  width: 12.6rem;
  height: 18.9rem;
}

.main_item__4 {
  margin-top: auto;
}

.main_item__4 .icon__decoration {
  bottom: 100%;
  left: 0;
  z-index: 10;
  font-size: 7.1rem;
  -webkit-transform: translate(50%, 52%);
  transform: translate(50%, 52%);
}

#main_item__4:hover {
  transform: scale(1.05);
  transition: ease 1s;
}

.main_owner {
  overflow: hidden;
  border-radius: 2.6rem;
  color: #000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: url(../i/owner-img.jpg) no-repeat 0 0/cover;
}

.main_owner-name {
  font: 600 2.2rem/110% "Anek Malayalam", sans-serif;
}

.main_owner-position {
  color: #313131;
  font: 600 1.3rem/1.4 "Raleway", serif;
}

.main_intro {
  padding-top: 90px;
  width: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: -90px;
  position: relative;
  z-index: 10;
}

.main_title {
  margin-bottom: 40px;
  text-align: left;
  font: var(--titleFontH2);
}

.main_title .icon {
  font-size: 4.5rem;
  color: #9496b2;
}

.main_subtitle {
  font-size: 40px;
  color: #9C9CA5;
  font-family: "Raleway", serif;
  margin: 0 0 40px 110px;
}

.main_title .icon {
  display: inline;
}

.main_action {
  margin-left: 110px;
}

/*section about us*/
.section__about-us {
  position: relative;
  padding: 11.7rem 0 8.4rem;
}

.about-us {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about-us_decoration {
  position: absolute;
  z-index: -1;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 79.4rem;
  max-width: 100%;
  height: 95.2rem;
  background: url(../i/magnet-2.svg) no-repeat center/contain;
}

.about-us_decoration .icon {
  font-size: 11.8rem;
  right: 27%;
  position: absolute;
  bottom: 30%;
  -webkit-transform: translate(-4px, 0);
  transform: translate(-4px, 0);
}

.about-us_title {
  margin-bottom: 5rem;
  color: #FFF;
  letter-spacing: 9.41px;
  font: var(--titleFontH1);
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.about-us_note {
  color: var(--colorAccent);
  letter-spacing: 3.12px;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.about-us_details {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 46.4rem;
  min-height: 77.2rem;
  padding: 11rem 4rem 0;
  border-radius: 9rem 2.6rem 2.6rem 2.6rem;
  background: #26282D;
  position: relative;
  overflow: hidden;
  font-size: 3.2rem;
  line-height: 1.6;
}

.about-us_details-title {
  color: var(--colorAccent2);
  font: 600 4.6rem/1.2 "Anek Malayalam", sans-serif;
  margin-bottom: 26px;
}

.about-us_slogan {
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: calc(100% - 46.4rem - 9.3rem);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: auto 0 0 9.3rem;
  color: #717491;
  font-size: 3rem;
  line-height: 1.6;
}

.about-us_description:after {
  content: '';
  display: block;
  height: 23.5rem;
  margin: 7rem -4rem;
  background: url(../i/about-us-img.png) no-repeat center bottom/ 100% auto;
}

/*benefits*/
.section__benefits {
  overflow: hidden;
}

.section__benefits .center {
  max-width: 100%;
  width: 100%;
}

.section__benefits::before {
  content: '';
  right: 0;
  top: 0;
  width: 73.5rem;
  height: 73.5rem;
  position: absolute;
  background: url(../i/benefits-decoration-2.svg) no-repeat center/contain;
  z-index: -1;
  -webkit-transform: translate(0, -10%) rotate(68deg);
  transform: translate(0, -10%) rotate(68deg);
  animation: infinite-rotation 10s linear infinite;
  -webkit-animation: infinite-rotation 10s linear infinite;
  -moz-animation: infinite-rotation 10s linear infinite;
}

.benefits_title,
.benefits_items-wrap {
  max-width: var(--centerWidth);
  margin: 0 auto;
}

.benefits_title {
  padding-left: 41rem;
  font: var(--titleFontH1);
  margin-bottom: 6rem;
  letter-spacing: 9.41px;
}

.benefits_title span {
  position: relative;
}

.benefits_title span::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
  width: 35.2rem;
  height: 13.3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url(../i/benefits-decoration-1.svg) no-repeat right center/contain;
}

.benefits_items {
  position: relative;
  z-index: 10;
  background: #1B1C1F;
  padding: 6.8rem 0 8.6rem;
}

.benefits_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  color: #717491;
}

.benefits_item-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 37rem;
  height: 37rem;
  border: 6px solid rgba(97, 112, 247, 0.50);
  border-radius: 50%;
}

.benefits_item-img:hover {
  transform: scale(1.05);
  transition: ease 1s;
}

.benefits_item-icon {
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.benefits_item__1 {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.benefits_item__1 .benefits_item-icon {
  width: 22rem;
  height: 22rem;
  background: var(--colorAccent2) url(../i/benefits-icon-1.svg) no-repeat center/50% auto;
}

.benefits_item__1 .benefits_item-description {
  margin-left: 20px;
  max-width: 390px;
  padding-top: 55px;
  font: 500 4.2rem/1.3 "Anek Malayalam", sans-serif;
}

.benefits_item__2 {
  margin-top: -13rem;
}

.benefits_item__2 .benefits_item-icon {
  position: relative;
  width: 28.8rem;
  height: 28.8rem;
  background: #2A2A2A url(../i/benefits-icon-2.svg) no-repeat center/60% auto;
}

.benefits_item__2 .benefits_item-icon::before {
  content: '';
  background: url(../i/arrow-2.svg) no-repeat center/contain;
  width: 30.7rem;
  height: 9.8rem;
  position: absolute;
  left: 93%;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: -1;
}

.benefits_item__2 .benefits_item-description {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 37rem;
  height: 37rem;
  border: 6px solid rgba(97, 112, 247, 0.50);
  border-radius: 50%;
  color: #fff;
  padding: 30px;
  font-size: 3.2rem;
  margin-left: 30rem;
  line-height: 1.6;
}

.benefits_item__3 {
  margin-top: 10px;
  padding-left: 12rem;
  -ms-flex-align: start;
  align-items: flex-start;
}

.benefits_item__3 .benefits_item-icon {
  width: 100%;
  height: 100%;
  background: url(../i/benefits-icon-3.svg) no-repeat center/60% auto;
}

.benefits_item__3 .benefits_item-description {
  margin-left: 20px;
  max-width: 470px;
  font: 500 4.2rem/1.3 "Anek Malayalam", sans-serif;
  padding-top: 4.5rem;
}

.benefits_item__3 .benefits_item-description::after {
  content: '';
  display: block;
  margin-left: -20px;
  width: 470px;
  height: 24px;
  margin-top: 30px;
  background: url(../i/arrow-3.svg) no-repeat 0 center/100% auto;
}

/*why us*/
.section__why-us {
  padding-top: 13rem;
}

.section__why-us .center {
  width: 100%;
  max-width: 100%;
}

.why-us_title {
  text-align: center;
  margin-bottom: 8rem;
}

.why-us_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.why-us_item {
  width: 410px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 22px;
}

.why-us_item-title {
  text-align: center;
  margin-bottom: 38px;
  color: #636AAA;
  font: 400 4.4rem/1.1 "Anek Malayalam", sans-serif;
  white-space: nowrap;
}

.why-us_item-description {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 268px;
  width: 100%;
  padding: 26px;
  border-radius: 22px;
  background: #A2C6FF;
  box-shadow: 11.084px 11.084px 0px 0px rgba(51, 51, 51, 0.50);
  color: #2B2626;
  font-size: 2.3rem;
  line-height: 1.6;
  position: relative;
}

.why-us_item__2 .why-us_item-description {
  background: var(--colorAccent);
}

.why-us_item__3 .why-us_item-description {
  background: #EA7BFF;
}

.why-us_item-description-number {
  margin-right: 26px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 4.6rem;
  line-height: normal;
}

.why-us_item-icon {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 32px;
}

.icon__why-us-1 {
  color: #6891d4;
}

.icon__why-us-2 {
  color: #3441bb;
}

.icon__why-us-3 {
  color: #C53BB0;
}

.why-us_description {
  padding: 9rem 0 10.9rem;
  position: relative;
  line-height: 1.6;
}

.why-us_decoration {
  position: absolute;
  left: 0;
  right: 0;
  background: var(--colorAccent2);
  z-index: -1;
  top: -16.5rem;
  bottom: 0;
}

.why-us_decoration::before,
.why-us_decoration::after {
  content: '';
  position: absolute;
  top: 4.8rem;
  width: 61.1rem;
  max-width: 40%;
  height: 80%;
  background: url(../i/magnet-3.svg) no-repeat 0 center/contain;
}

.why-us_decoration::before {
  left: 0;
}

.why-us_decoration::after {
  right: 0;
  background-position: right center;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.why-us_description-title {
  text-align: center;
  margin-bottom: 6rem;
  font: var(--titleFontH2);
}

.why-us_description-text {
  max-width: 730px;
  margin: 0 auto;
}

/*contact us*/
.section__contact-us {
  padding: 8.2rem 0 12.1rem;
}

.contact-us_title {
  font: 600 12.3rem/1.1 "Anek Malayalam", sans-serif;
  margin-bottom: 2.6rem;
}

.contact-us_subtitle {
  text-align: center;
  color: #5B5B5B;
  font: 400 4.8rem/1.1 "Anek Malayalam", sans-serif;
}

.contact-us_content {
  margin-top: 32px;
  display: -ms-flexbox;
  display: flex;
}

.contact-us_img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 40px;
}

.contact-us_form {
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 760px;
}

.contact-us-custom-field {
  position: relative;
  margin-bottom: 40px;
  width: 100%;
}

.contact-us-custom-field:last-of-type {
  margin-bottom: 0;
}

.contact-us-custom-field_error {
  font-size: 12px;
  color: red;
  margin-top: 5px;
}

.contact-us-custom-field_error:empty {
  margin-top: 0;
}

.contact-us-custom_success {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(.8);
  transform: scale(.8);
  transition: all 1s ease;
  color: green;
  text-align: center;
}

.contact-us-custom.is-success .contact-us-custom_success {
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
}

.contact-us-custom_button {
  margin: 32px auto 0;
  min-width: 210px;
}

/*section promo*/
.section__promo {
  display: -ms-flexbox;
  display: flex;
  background: var(--sectionBg);
  z-index: 10;
}

.section__promo .center {
  padding: 21rem 0 12rem;
  position: relative;
}

.section__promo .center::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52.4rem;
  height: 45rem;
  background: url(../i/promo-img.png) no-repeat center/contain;
}

.section__promo::before,
.section__promo::after {
  content: '';
  width: 725px;
  max-width: 45%;
  height: 760px;
  position: absolute;
  z-index: -1;
  top: 18.6rem;
  background: url(../i/magnet.svg) no-repeat 0 0/contain;
}

.section__promo::before {
  left: 30px;
}

.section__promo::after {
  right: 30px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background-position: right 0;
}

.promo_content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.promo_img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 36.5rem;
  height: 36.5rem;
  position: relative;
  margin-right: 6rem;
}

.promo_img-info {
  background: url(../i/marketing-img.jpg) no-repeat 0 0/cover;
  padding: 5.4rem 2rem;
  overflow: hidden;
  border-radius: 31px;
  width: 100%;
  height: 100%;
}

.promo_img .icon__decoration {
  position: absolute;
  left: 2.8rem;
  top: 0;
  font-size: 8.2rem;
  color: #fff;
  -webkit-transform: translate(0, -49%);
  transform: translate(0, -49%);
}

.promo_img-name {
  color: #161515;
  font: 600 2.5rem/1.1 "Anek Malayalam", sans-serif;
}

.promo_img-position {
  color: #313131;
  font: 600 1.5rem/1.4 "Raleway", serif;
}

.promo_title {
  font: 600 12rem/9rem "Anek Malayalam", sans-serif;
}

.promo_title span {
  font: var(--titleFontH2);
}

.promo_title .icon {
  display: inline;
  color: #9496B2;
  font-size: 6.5rem;
}

.promo_description {
  margin-top: 8rem;
  max-width: calc(100% - 554px);
  font: 400 3.2rem/1.4 "Raleway", serif;
  color: #B4B4B8;
}

.promo_description-action {
  margin: 3rem 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

/*our-pluses*/
.section__our-pluses {
  z-index: 10;
  overflow: hidden;
}

.section__our-pluses .center {
  padding: 40px 0 0;
}

.our-pluses_block-title {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5rem;
}

.our-pluses_title {
  color: #FFF;
  font: 400 4rem/1.4 "Raleway", serif;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px;
}

.our-pluses_description {
  color: #717491;
  font-size: 3rem;
  line-height: 1.6;
  max-width: 750px;
  margin-top: 8px;
}

.our-pluses_items {
  max-width: 977px;
  padding: 8rem 6.3rem 6.5rem;
  border-radius: 90px 26px 26px 26px;
  background: #26282D;
  margin: 0 0 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.our-pluses_items-decoration {
  position: relative;
  width: 17rem;
  height: 17rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  background: url(../i/pluses-title-decoraation.svg) no-repeat center/contain;
  margin-top: -4rem;
}

.our-pluses_items-title-block {
  max-width: calc(100% - 25rem);
  margin-left: auto;
}

.our-pluses_items-title {
  color: var(--colorAccent2);
  font: 600 5.6rem/1.2 "Anek Malayalam", sans-serif;
}

.our-pluses_items-subtitle {
  margin: 0 0 17px 0;
  color: #CFD2ED;
  font-size: 3rem;
  line-height: 1.6;
}

.our-pluses_item {
  width: 100%;
  margin-bottom: 20px;
}

.our-pluses_item:last-of-type {
  margin-bottom: 0;
}

.our-pluses_item-title {
  color: var(--colorAccent);
  font-size: 3.6rem;
  line-height: 1.6;
  margin-bottom: 5px;
}

.our-pluses_item-description {
  display: -ms-flexbox;
  display: flex;
  color: var(--textColorMuted);
  line-height: 1.6;
  font-size: 26px;
}

.our-pluses_item-description .icon {
  margin-right: 16px;
  color: var(--iconColor);
}

.our-pluses_decoration {
  position: absolute;
  left: -50px;
  bottom: -52px;
  z-index: -1;
  width: 757px;
  max-width: 100%;
  height: 794px;
  background: url(../i/magnet-2.svg) no-repeat 0 bottom/contain;
}

.our-pluses_decoration .icon {
  position: absolute;
  left: 50%;
  font-size: 110px;
  top: 55%;
  -webkit-transform: translate(5px, 0);
  transform: translate(5px, 0);
  color: rgba(153, 153, 153, 0.3);
}

/*section welcome*/
.section__welcome {
  margin-top: -110px;
  padding: 250px 0 11rem;
  background: var(--colorAccent);
  z-index: 9;
  text-align: center;
}

.section__welcome::before,
.section__welcome::after {
  content: '';
  width: 612px;
  height: 510px;
  max-width: 40%;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: url(../i/magnet-3.svg) no-repeat 0 center/contain;
}

.section__welcome::before {
  left: 0;
}

.section__welcome::after {
  right: 0;
  background-position: right center;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.welcome_subtitle {
  color: rgba(255, 255, 255, 0.80);
  font: 400 5.4rem/1.1 "Anek Malayalam", sans-serif;
  margin-bottom: 4rem;
}

.welcome_title {
  color: #FFF;
  font: var(--titleFontH2);
}

/*platform*/
.section__platforms {
  padding: 4.8rem 0 12rem;
}

.platforms {
  max-width: 990px;
  margin-left: auto;
}

.platforms_title {
  font: var(--titleFontH1);
  letter-spacing: 9.41px;
}

.platforms_title span {
  position: relative;
}

.platforms_title span::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
  width: 35.2rem;
  height: 13.3rem;
  background: url(../i/platforms-title-decor.svg) no-repeat right center/contain;
}

.platforms_subtitle {
  color: #717491;
  font: 400 11.8rem/1.1 "Anek Malayalam", sans-serif;
  margin-bottom: 5.5rem;
  letter-spacing: -1px;
}

.platforms_item-title {
  color: #FFF;
  margin-bottom: 17px;
  font: 500 3.5rem/1.2 "Jost", sans-serif;
}

.platforms_item-content {
  line-height: 1.6;
  color: #717491;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.platforms_item-img {
  width: 40.6rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: -5.2rem 0 0 4.7rem;
}

.platforms_item-text__1 {
  max-width: calc(100% - 40.6rem - 4.7rem);
}

.platforms_item-text__2 {
  color: #fff;
  margin-top: 4.2rem;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

/*process*/
.section__process {
  padding: 8rem 0 16rem;
  background: var(--sectionBg);
}

.process_title {
  text-align: center;
  margin-bottom: 5rem;
}

.process_description {
  max-width: 730px;
  margin: 0 auto 5rem;
  color: #717491;
  line-height: 1.6;
}

.process_item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 26px;
  min-height: 200px;
  max-height: 230px;
  margin-bottom: 30px;
  border-radius: 22px;
  background: #000 url(../i/magnet-4.svg) no-repeat 0 center/auto 230px;
  box-shadow: 11px 11px 0px 0px rgba(51, 51, 51, 0.50);
}

.process_item:last-of-type {
  margin-bottom: 0;
}

.process_item-title {
  color: var(--colorAccent);
  text-align: right;
  font: 600 4.2rem/normal "Lato", sans-serif;
  margin-right: 40px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-left: 5rem;
}

.process_item:nth-child(even) .process_item-title {
  color: var(--colorAccent2);
}

.process_item-description {
  color: #FFF;
  width: 490px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 23px;
  line-height: 1.6;
}

.process_item-icon {
  border-radius: 10px;
  background: #26282D;
  width: 8rem;
  height: 8rem;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.process_item-icon .icon {
  font-size: 5rem;
  color: #6D6F74;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.process_item-icon .icon svg {
  max-width: 5rem;
}

/*technologies*/
.section__technologies {
  --centerWidth: 1400px;
  padding-bottom: 16rem;
  overflow: hidden;
}

.section__technologies::before {
  content: '';
  right: 0;
  bottom: 0;
  width: 73.5rem;
  height: 73.5rem;
  position: absolute;
  background: url(../i/benefits-decoration-2.svg) no-repeat center/contain;
  z-index: -1;
  -webkit-transform: translate(0, 40%) rotate(68deg);
  transform: translate(0, 40%) rotate(68deg);
}

.section__technologies::before {
  
}

.technologies_title {
  margin: 0 0 7.6rem 4rem;
  font: 600 12.3rem/1.1 "Anek Malayalam", sans-serif;
  text-align: center;
  max-width: 1022px;
}

.technologies_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.technologies_item {
  border-radius: 3rem;
  background: #26282D;
  padding: 4.3rem 4.5rem;
  margin: 0 43px 0 0;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.technologies_item:last-of-type {
  margin-right: 0;
}

.technologies_item-title {
  color: #FFF;
  text-align: center;
  margin-bottom: 20px;
  font: 500 3.6rem/1.2 "Jost", sans-serif;
}

.technologies_item-icon {
  overflow: hidden;
  position: relative;
  background: #61ACF7;
  border-radius: 15px;
  border: 1px solid rgba(160, 201, 255, 0.50);
  box-shadow: 11px 11px 0px rgba(18, 17, 17, 0.50);
  height: 14.7rem;
  margin: 0 0 28px 0;
}

.technologies_item-icon .icon {
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 54px;
  height: 54px;
  font-size: 54px;
  color: #fff;
}

.technologies_item__2 .technologies_item-icon {
  background: var(--colorAccent);
  border-color: rgba(119, 173, 243, 0.50);
}

.technologies_item__3 .technologies_item-icon {
  border-color: rgba(142, 30, 183, 0.50);
  background: var(--colorAccent2);
}

.technologies_item-list {
  padding-left: 5.5rem;
  color: #717491;
  font: 500 2.7rem/1.6 "Open Sans", sans-serif;
}

.technologies_item-list li {
  margin-bottom: 15px;
}

.technologies_item-list li:last-of-type {
  margin-bottom: 0;
}

/*section motivation*/
.section__motivation {
  padding: 8rem 0 10rem;
  text-align: center;
  background: var(--colorAccent2) url(../i/motivation-bg.svg) repeat-x center/cover;
}

.motivation_title {
  font: 500 6rem/1.3 "Anek Malayalam", sans-serif;
  color: #FFF;
  margin-bottom: 20px;
}

.motivation_subtitle {
  font: 400 4rem/1.4 "Raleway", serif;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.motivation_action {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

/*static page*/
.section__static-page .center {
  padding: 20rem 0 10rem;
}

.static-page {
  font-size: 22px;
  line-height: 1.3;
}

.static-page p {
  margin-bottom: 20px;
}

.static-page h1 {
  margin-bottom: 40px;
  font: var(--titleFontH2)
}

.static-page h4 {
  margin: 40px 0 20px;
  font-size: 32px;
  font-weight: 600;
}

.static-page ul {
  margin-bottom: 20px;
}

.static-page li {
  margin-bottom: 10px;
  list-style: disc;
  list-style-position: inside;
}

.static-page a {
  color: var(--colorAccent2);
  text-decoration: underline;
}

/*footer*/
.footer {
  padding: 46px 0 31px;
  background: var(--sectionBg);
  font: 400 18px/1.2 "Inter", sans-serif;
  color: #9696A6;
}

.footer_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer_logo {
  margin-bottom: 23px;
}

.footer_menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer_menu__static .footer_menu-item {
  color: #6F6F6F;
  font-size: 26px;
}

.footer_menu__static .footer_menu-item a {
  text-decoration: underline;
  transition: all 0.3s ease;
}

.footer_menu__static .footer_menu-item a:hover {
  text-decoration: none;
}

.footer_menu__main {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-top: 100px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer_menu__main .footer_menu-item {
  max-width: 477px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 15px;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 13px;
}

.footer_menu__main a .icon {
  transition: all 0.3s ease;
  -webkit-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
}

.footer_menu__main a:hover .icon {
  -webkit-transform: rotate(45deg) scale(1.2);
  transform: rotate(45deg) scale(1.2);
}

.footer_menu__main .footer_menu-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.footer_menu__main .footer_menu-link:hover {
  opacity: 0.6;
}

.footer_menu__main .footer_menu-action {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.footer_menu__main .footer_menu-action .btn {
  height: 80px;
  width: 210px;
  font: 400 23px/1 "Inter", sans-serif;
}

.footer_menu-item {
  margin-left: 48px;
  position: relative;
}

.footer_menu-item:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 100%;
  background: #fff;
  height: 1px;
  transition: all 0.3s ease-in-out;
}

.footer_menu-item:hover:before {
  right: 0;
}

.copyright {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  border-top: 1px solid #FFF;
  padding-top: 46px;
  margin-top: 50px;
}

@keyframes infinite-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotate {
  animation: infinite-rotation 10s linear infinite;
  -webkit-animation: infinite-rotation 10s linear infinite;
  -moz-animation: infinite-rotation 10s linear infinite;
}

@keyframes pulse {
  0% {
      opacity: 1;
  }
  50% {
      opacity: 0.5;
  }
  100% {
      opacity: 1;
  }
}

.blink-pulse {
  animation: pulse 3s infinite;
  transform-origin: center; 
  position: relative;
}

.blink-pulse-delay {
  animation: pulse 3s infinite;
  animation-delay: 2s; 
  transform-origin: center; 
  position: relative;
}