/*@import 'variables';*/
/*@import 'mixins';*/
/*@import 'colors';*/
/*@import 'typography';*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/*font-family: "Open Sans", sans-serif;*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html,
body {
  min-height: 100vh; }

html {
  scroll-behavior: smooth; }

body {
  display: flex;
  flex-direction: column;
  padding-top: 102px;
  background: #fff;
  font: 400 1rem Open Sans, sans-serif; }

img {
  width: 100%; }

ul,
ol {
  list-style-position: inside; }

p {
  font-size: 14px;
  line-height: normal; }
  @media (min-width: 1025px) {
    p {
      font-size: 16px;
      line-height: 25.6px; } }

.heading1 {
  font-size: 20px; }

.heading2.heading2--center {
  /*rewrite this*/
  margin-bottom: 50px !important;
  text-align: center; }

.inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1140px; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  padding: 28px 1rem;
  width: 100%;
  min-height: 102px;
  background: url(../images/bg-gradient.webp) no-repeat 0 center;
  background-size: cover;
  color: #fff;
  box-shadow: 0px 9px 13px 0px rgba(0, 0, 0, 0.4); }
  @media (min-width: 1025px) {
    .header {
      padding: 1rem 0; } }
  .header .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (min-width: 1025px) {
      .header .header__inner {
        margin: 0 auto;
        width: 90%;
        max-width: 1140px; } }
  .header .hamburger-menu #menu-toggle {
    display: none; }
  @media (max-width: 1024px) {
    .header .hamburger-menu #menu-toggle:checked ~ .menu-button > span {
      transform: rotate(45deg); }
      .header .hamburger-menu #menu-toggle:checked ~ .menu-button > span::before {
        top: 0;
        transform: rotate(0); }
      .header .hamburger-menu #menu-toggle:checked ~ .menu-button > span::after {
        top: -4px;
        transform: rotate(90deg); }
    .header .hamburger-menu #menu-toggle:checked ~ .menu {
      visibility: visible;
      left: 0; }
    .header .hamburger-menu .menu-button {
      position: fixed;
      top: 40px;
      right: 1rem;
      display: flex;
      align-items: center;
      width: 33px;
      height: 26px;
      cursor: pointer;
      z-index: 1; } }
  @media (max-width: 1024px) and (min-width: 992px) {
    .header .hamburger-menu .menu-button {
      top: 34px;
      right: 44px; } }
  @media (max-width: 1024px) {
      .header .hamburger-menu .menu-button > span,
      .header .hamburger-menu .menu-button > span::before,
      .header .hamburger-menu .menu-button > span::after {
        position: relative;
        display: block;
        width: 33px;
        height: 4px;
        background: #fff;
        border-radius: 3px;
        transition-duration: .25s; }
      .header .hamburger-menu .menu-button > span::before {
        content: '';
        top: -9px; }
      .header .hamburger-menu .menu-button ::after {
        content: '';
        top: 5px; }
    .header .hamburger-menu .menu {
      position: fixed;
      visibility: hidden;
      top: 0;
      left: -100%;
      display: block;
      margin: 0;
      padding: 28px 1rem;
      width: 300px;
      height: 100%;
      list-style: none;
      background: url(../images/bg-gradient.webp) no-repeat center;
      box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.4);
      transition-duration: .25s; } }
  .header .hamburger-menu .menu .logo {
    margin-bottom: 30px; }
  .header .hamburger-menu .menu .menu__list {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none; }
    @media (max-width: 1024px) {
      .header .hamburger-menu .menu .menu__list {
        height: calc(100vh - 104px);
        overflow: auto; } }
  @media (min-width: 1025px) {
    .header .hamburger-menu .menu .logo {
      display: none; }
    .header .hamburger-menu .menu .menu__list {
      display: flex;
      gap: 3rem; } }
  .header .hamburger-menu .menu li {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase; }
    .header .hamburger-menu .menu li > a {
      display: flex;
      padding-bottom: 6px;
      color: #fff;
      border-bottom: 2px solid transparent;
      line-height: 50px;
      text-decoration: none; }
      @media (min-width: 1025px) {
        .header .hamburger-menu .menu li > a {
          color: inherit;
          line-height: normal; }
          .header .hamburger-menu .menu li > a:hover, .header .hamburger-menu .menu li > a.active {
            color: #230039; } }
    .header .hamburger-menu .menu li.menu__has-menu > a {
      justify-content: space-between; }
      .header .hamburger-menu .menu li.menu__has-menu > a:after {
        content: "";
        display: block;
        margin: 16px 6px 0 6px;
        width: 8px;
        height: 8px;
        border: 1px solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg); }
        @media (max-width: 1024px) {
          .header .hamburger-menu .menu li.menu__has-menu > a:after {
            display: none; } }
        @media (min-width: 1025px) {
          .header .hamburger-menu .menu li.menu__has-menu > a:after {
            margin-top: 5px; } }
      .header .hamburger-menu .menu li.menu__has-menu > a:hover:after, .header .hamburger-menu .menu li.menu__has-menu > a.active:after {
        border-color: #230039; }
    .header .hamburger-menu .menu li ul {
      padding-left: 40px;
      list-style: none; }
      .header .hamburger-menu .menu li ul li a {
        padding-bottom: 0; }
      @media (min-width: 1025px) {
        .header .hamburger-menu .menu li ul {
          opacity: 0;
          position: absolute;
          left: 0;
          padding-left: 0;
          min-width: 300px;
          background: #71439a;
          border: none !important;
          transition: opacity 1s; }
          .header .hamburger-menu .menu li ul li {
            margin: 0;
            padding: 10px;
            font-size: 16px; }
            .header .hamburger-menu .menu li ul li a {
              color: #fff;
              border: none; }
            .header .hamburger-menu .menu li ul li ul {
              top: 41px; } }
    @media (min-width: 1025px) {
      .header .hamburger-menu .menu li:hover > ul {
        opacity: 1; } }

.logo {
  display: block;
  flex: 0 0 243px;
  width: 243px;
  height: 46px;
  background: url(../images/logo-white.png) no-repeat;
  background-size: contain;
  transition: 0.5s; }

.scroll {
  position: fixed;
  right: 15px;
  bottom: 75px;
  z-index: 1;
  display: block;
  margin: auto auto 0;
  width: 50px;
  height: 50px;
  background: #e21073 url(../images/icon-chevron.svg) no-repeat center;
  background-size: 16px auto;
  border-radius: 50%;
  opacity: 0;
  transition: 0.5s; }
  .scroll.show {
    opacity: 1; }

.hero {
  padding: 40px 0;
  background: url(../images/hero.jpg) no-repeat center;
  background-size: cover; }
  @media (min-width: 1025px) {
    .hero {
      height: 730px;
      max-height: 100vh; } }
  .hero .hero__content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center; }
    .hero .hero__content .hero__inner {
      margin: 0 auto;
      width: 90%;
      max-width: 1140px; }
  .hero .heading1 {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase; }
    @media (min-width: 1025px) {
      .hero .heading1 {
        font-size: 76px; } }
  .hero .heading2 {
    margin-bottom: 15px;
    color: #fff;
    font-family: "Open Sans", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    font-style: italic; }
    @media (min-width: 1025px) {
      .hero .heading2 {
        font-size: 32px; } }
  .hero p {
    color: #fff;
    font-size: 14px; }
    @media (min-width: 1025px) {
      .hero p {
        font-size: 20px;
        line-height: 32px; } }
  .hero.hero--features {
    display: flex;
    align-items: center;
    height: auto;
    min-height: 295px;
    background: url(../images/bg-universe.jpeg) no-repeat center;
    background-size: cover; }
    @media (min-width: 1025px) {
      .hero.hero--features .heading1 {
        font-size: 65px; } }
  .hero.hero--users {
    display: flex;
    align-items: center;
    height: auto;
    min-height: 422px;
    background: url(../images/bg-milkyway.jpeg) no-repeat center;
    background-size: cover; }
    @media (min-width: 1025px) {
      .hero.hero--users .heading1 {
        font-size: 54px; } }
  .hero.hero--pricing {
    display: flex;
    align-items: center;
    height: auto;
    min-height: 701px;
    background: url(../images/bg-meteorite.jpeg) no-repeat center;
    background-size: cover; }
    .hero.hero--pricing .hero__inner {
      padding-bottom: 100px;
      max-width: 1050px; }
    .hero.hero--pricing .heading1 {
      margin-bottom: 27px; }
      @media (min-width: 1025px) {
        .hero.hero--pricing .heading1 {
          font-size: 54px; } }
    .hero.hero--pricing p {
      font-weight: 700; }
  .hero.hero--about {
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    height: auto;
    min-height: 780px;
    background: url(../images/bg-astronaut.png) no-repeat center 0;
    background-size: cover; }
    .hero.hero--about .hero__inner {
      max-width: 1010px; }
    @media (min-width: 1025px) {
      .hero.hero--about .heading1 {
        font-size: 54px; } }
    @media (min-width: 1025px) {
      .hero.hero--about .heading2 {
        font-style: italic;
        font-weight: 600;
        font-size: 25px;
        text-transform: uppercase; } }
    @media (min-width: 1025px) {
      .hero.hero--about p {
        font-weight: 500;
        font-size: 16px;
        line-height: 26px; } }

.section {
  padding: 2rem 0; }
  .section .heading2 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase; }
    @media (min-width: 1025px) {
      .section .heading2 {
        font-size: 35px; } }
  .section.section--what {
    padding: 0.5rem 0;
    background: url(../images/bg-gradient.webp) no-repeat 0 center;
    background-size: cover;
    color: #fff; }
    .section.section--what .heading2 {
      margin-bottom: 20px;
      color: #fff;
      font-weight: 600;
      font-size: 24px;
      text-transform: uppercase; }
      @media (min-width: 1025px) {
        .section.section--what .heading2 {
          font-size: 35px; } }
  .section.section--cllr {
    min-height: 712px;
    background: url(../images/bg-cosmos.jpeg) no-repeat 0 center;
    background-size: cover; }
  .section.section--plate {
    /*repetition*/
    padding: 0.5rem 0;
    background: #51296F;
    color: #fff;
    /*repetition*/ }
    .section.section--plate .heading2 {
      margin-bottom: 20px;
      color: #fff;
      font-weight: 600;
      font-size: 24px;
      text-transform: uppercase; }
      @media (min-width: 1025px) {
        .section.section--plate .heading2 {
          font-size: 35px; } }
    @media (min-width: 1080px) {
      .section.section--plate .section--plate__image {
        width: 500px; } }
  .section.section--dark {
    background: url(../images/bg-stars.jpeg) no-repeat center;
    background-size: cover;
    color: #fff;
    text-align: center;
    /*repetition*/ }
    .section.section--dark .heading2 {
      margin-bottom: 20px;
      color: #fff;
      font-weight: 600;
      font-size: 24px;
      text-transform: uppercase; }
      @media (min-width: 1025px) {
        .section.section--dark .heading2 {
          font-size: 35px; } }
    .section.section--dark .heading3 {
      margin-bottom: 23px;
      font-weight: 600;
      font-size: 18px;
      line-height: 28px;
      text-transform: uppercase; }
      @media (min-width: 1025px) {
        .section.section--dark .heading3 {
          font-size: 28px; } }
    .section.section--dark p {
      margin: 0 auto 32px;
      max-width: 1019px; }
      .section.section--dark p small {
        font-size: 12px; }
    .section.section--dark.section--dark--left {
      text-align: left; }
      .section.section--dark.section--dark--left p {
        max-width: none; }
  .section.section--light .heading2 {
    color: #51296F;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
    /*find why we need to add line-height everywhere because it's small*/ }
    @media (min-width: 768px) {
      .section.section--light .heading2 {
        font-size: 35px; } }
  .section.section--light .heading3 {
    margin-bottom: 10px;
    color: #51296F;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase; }
    @media (min-width: 768px) {
      .section.section--light .heading3 {
        font-size: 32px; } }
  .section.section--light .heading4 {
    margin-bottom: 6px;
    color: #51296F;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase; }
    @media (min-width: 768px) {
      .section.section--light .heading4 {
        font-size: 18px; } }
  .section.section--light p,
  .section.section--light ul {
    margin-bottom: 24px;
    color: #51296F;
    font-size: 14px;
    line-height: normal; }
    @media (min-width: 768px) {
      .section.section--light p,
      .section.section--light ul {
        font-size: 16px;
        line-height: 25.6px; } }
  .section.section--electronic {
    flex: 1;
    background: url(../images/bg-electronic.png) no-repeat center;
    background-size: cover;
    color: #fff;
    text-align: center; }
  .section.section--light {
    flex: 1;
    background: #DCD0E6; }
  .section .section__header {
    margin-bottom: 80px; }
  .section .section__footer p {
    font-weight: 600;
    font-size: 12px;
    line-height: 19.2px; }

.cols {
  align-items: center;
  text-align: center; }
  @media (min-width: 768px) {
    .cols {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      text-align: left; }
      .cols .col {
        flex: 0 0 calc(50% - 20px);
        width: calc(50% - 20px); } }

.list-cllr {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 45px;
  list-style: none; }
  @media (min-width: 1025px) {
    .list-cllr {
      gap: 2rem; } }
  .list-cllr li {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); }
    @media (min-width: 1025px) {
      .list-cllr li {
        font-size: 46px; } }

@media (min-width: 768px) {
  .list-definition {
    display: flex;
    flex-wrap: wrap; } }
.list-definition dt:not(:last-of-type),
.list-definition dd:not(:last-of-type) {
  margin-bottom: 10px; }
  @media (min-width: 768px) {
    .list-definition dt:not(:last-of-type),
    .list-definition dd:not(:last-of-type) {
      margin-bottom: 39px; } }
@media (min-width: 768px) {
  .list-definition dt {
    width: 105px; } }
@media (min-width: 768px) {
  .list-definition dd {
    width: calc(100% - 105px); } }

.list-package {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  list-style: none;
  text-align: center; }
  @media (min-width: 992px) {
    .list-package {
      flex-direction: row; } }
  @media (min-width: 768px) {
    .list-package li {
      flex: 1; } }
  .list-package li .list-package__card {
    display: flex;
    flex-direction: column;
    padding: 25px 10px 10px;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    color: #000; }
    .list-package li .list-package__card .heading6 {
      margin-bottom: 20px;
      font-weight: 700;
      font-size: 20px;
      line-height: 20px;
      text-transform: uppercase; }
    .list-package li .list-package__card p {
      font-weight: 400;
      font-size: 15px;
      line-height: 24px; }
    .list-package li .list-package__card .list-package__button {
      display: block;
      margin-top: auto;
      width: 100%;
      height: 48px;
      background: linear-gradient(90deg, #71439A 0%, #E21073 25%, #F19452 50%, #E21073 75%, #71439A 100%);
      border-radius: 10px;
      color: #fff;
      font-weight: 600;
      font-size: 24px;
      line-height: 48px;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase; }
  .list-package.list-package--secondary {
    gap: 36px; }
    .list-package.list-package--secondary li {
      flex: 0 0 100%; }
      @media (min-width: 768px) {
        .list-package.list-package--secondary li {
          flex: 0 0 calc(50% - 36px);
          padding: 0 40px; } }
      .list-package.list-package--secondary li > p {
        font-size: 12px; }
      .list-package.list-package--secondary li .list-package__card {
        margin: 0 auto 40px;
        max-width: 340px;
        height: auto;
        min-height: 272px; }
        .list-package.list-package--secondary li .list-package__card p {
          margin-bottom: 6px;
          font-size: 14px; }
          .list-package.list-package--secondary li .list-package__card p b {
            font-size: 13px; }
        .list-package.list-package--secondary li .list-package__card strong {
          display: block;
          margin-bottom: 16px;
          font-size: 24px; }

.list-clients {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none; }
  .list-clients li img {
    max-height: 86px;
    object-fit: contain; }

.list-features {
  gap: 60px;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 60px;
  list-style: none; }
  @media (min-width: 640px) {
    .list-features {
      grid-template-columns: 1fr 1fr;
      padding: 0 30px; } }
  @media (min-width: 992px) {
    .list-features {
      grid-template-columns: 1fr 1fr 1fr; } }
  .list-features .heading6 {
    margin-bottom: 1.2em;
    font-weight: 500;
    font-size: 16px; }
  .list-features img {
    height: 240px;
    border-radius: 15px; }

.plate {
  margin-left: auto;
  padding: 30px;
  max-width: 672px;
  background: rgba(255, 255, 255, 0.8);
  color: #51296F;
  font-weight: 400;
  font-size: 14px; }
  @media (min-width: 768px) {
    .plate {
      font-size: 16px;
      line-height: 160%; } }
  .plate p {
    margin-bottom: 27px; }

.card {
  padding: 25px;
  background: #fff;
  color: #51296f;
  text-align: left; }
  @media (min-width: 640px) {
    .card {
      padding: 25px 50px; } }
  .card .heading2 {
    margin-bottom: 50px;
    text-align: center; }
  .card .heading5 {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase; }
    @media (min-width: 640px) {
      .card .heading5 {
        font-size: 18px; } }
  .card p {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 14px; }
    @media (min-width: 640px) {
      .card p {
        font-size: 16px; } }

.footer {
  margin-top: auto;
  padding: 25px 0;
  background: #71439A;
  color: #fff;
  /*temp*/ }
  .footer .footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 0px; }
  .footer .footer__bottom {
    display: flex; }
  .footer .logo {
    display: block;
    margin: 0 auto 1rem;
    width: 200px;
    height: 36px; }
    @media (min-width: 768px) {
      .footer .logo {
        margin: 0 0 1rem; } }
    @media (min-width: 1025px) {
      .footer .logo {
        width: 340px;
        height: 64px; } }
  .footer .heading2 {
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
    text-transform: uppercase; }
    @media (min-width: 1025px) {
      .footer .heading2 {
        font-size: 40px; } }
  .footer .heading6 {
    margin-bottom: 25px;
    font-size: 16px; }
  .footer .asterisk {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 12px; }
  .footer p,
  .footer ul {
    margin-bottom: 0; }
  .footer p,
  .footer li {
    margin-bottom: 0;
    font: 300 14px/1.5 Poppins, sans-serif; }
  .footer a {
    color: inherit;
    text-decoration: none; }
  .footer ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none; }
  .footer .cols {
    align-items: flex-start; }
  .footer p b {
    font-weight: 600; }
  .footer .footer__copy {
    margin-right: auto; }
  .footer .footer__menu {
    margin-right: 12px;
    margin-left: -12px; }
    .footer .footer__menu li {
      margin-left: 12px; }
      .footer .footer__menu li:after {
        content: "|";
        margin-left: 12px; }
  .footer .list-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 24px; }
    @media (min-width: 768px) {
      .footer .list-social {
        justify-content: flex-start; } }
    .footer .list-social li a {
      display: block;
      width: 25px;
      height: 25px; }
    .footer .list-social li.list-social__linkedin a {
      background: url("../images/icon-linkedin.svg") no-repeat center;
      background-size: 25px auto; }
    .footer .list-social li.list-social__instagram a {
      background: url("../images/icon-instagram.svg") no-repeat center;
      background-size: 25px auto; }
  .footer .media-list {
    gap: 20px 10px; }
  @media (max-width: 1024px) {
    .footer .footer__form {
      padding-top: 20px; } }
  .footer .footer__form fieldset {
    border: none; }
  .footer .footer__form .form-group,
  .footer .footer__form .form-group-full {
    margin-bottom: 20px; }
  .footer .footer__form .form__field {
    display: block;
    padding: 15px;
    width: 100%;
    background: #fff;
    border: 1px solid #d4dde5;
    border-radius: 2px;
    color: #62707c; }
  .footer .footer__form textarea.form__field {
    height: 120px; }
  .footer .footer__form .d-flex {
    margin-bottom: 30px; }
    @media (min-width: 1025px) {
      .footer .footer__form .d-flex {
        display: flex;
        gap: 20px;
        max-width: 330px; } }
  .footer .footer__form .form__group {
    margin-bottom: 30px; }
  .footer .footer__form legend {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px; }
  .footer .footer__form label {
    display: block;
    width: 100%; }
  .footer .footer__form .form__button {
    padding: 8px;
    background-image: linear-gradient(to right, #71439A, #E21073, #F19452, #E21073, #71439A);
    width: 50%;
    border: none;
    -webkit-box-shadow: 0px 4px 16px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 4px 16px -1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 4px 16px -1px rgba(0, 0, 0, 0.75);
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase; }
  .footer .footer__form sub {
    color: #f00; }
  .footer .footer__form.data_form .form-container {
    background-color: #6B3FA0;
    padding: 40px 20px;
    color: #ffffff;
    text-align: center; }
  .footer .footer__form.data_form .form-heading {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 8px; }
  .footer .footer__form.data_form .form-subheading {
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto; }
  .footer .footer__form.data_form .form-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px; }
  .footer .footer__form.data_form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 12px; }
  .footer .footer__form.data_form .form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
    max-width: 360px; }
  .footer .footer__form.data_form .form-group-full {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 760px;
    margin: 0 auto 16px auto; }
  .footer .footer__form.data_form .form-group input,
  .footer .footer__form.data_form .form-group-full input,
  .footer .footer__form.data_form .form-group-full textarea {
    padding: 10px;
    font-size: 15px;
    border-radius: 5px;
    border: none;
    background-color: white;
    color: #333;
    margin-bottom: 4px; }
  .footer .footer__form.data_form .form-group label,
  .footer .footer__form.data_form .form-group-full label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: white;
    text-align: left; }
  .footer .footer__form.data_form .form-group-full textarea {
    resize: vertical;
    min-height: 100px; }
  .footer .footer__form.data_form .g-recaptcha {
    margin-top: 16px;
    margin-bottom: 20px; }
  .footer .footer__form.data_form .submit-button {
    background: linear-gradient(90deg, #FF416C, #FF4B2B);
    border: none;
    color: white;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease; }
  .footer .footer__form.data_form .submit-button:hover {
    background: linear-gradient(90deg, #e03e63, #e14227); }
  @media (max-width: 768px) {
    .footer .footer__form.data_form .form-container {
      padding: 24px 16px; }
    .footer .footer__form.data_form .form-heading {
      font-size: 22px;
      margin-bottom: 8px; }
    .footer .footer__form.data_form .form-subheading {
      font-size: 14px;
      margin-bottom: 16px;
      line-height: 1.4; }
    .footer .footer__form.data_form .form-row {
      flex-direction: column;
      gap: 8px;
      margin-bottom: 12px; }
    .footer .footer__form.data_form .form-group,
    .footer .footer__form.data_form .form-group-full {
      max-width: 100%;
      margin-bottom: 10px; }
    .footer .footer__form.data_form .form-group label,
    .footer .footer__form.data_form .form-group-full label {
      font-size: 13px;
      margin-bottom: 4px; }
    .footer .footer__form.data_form .form-group input,
    .footer .footer__form.data_form .form-group-full input,
    .footer .footer__form.data_form .form-group-full textarea {
      padding: 10px 12px;
      font-size: 15px;
      margin-bottom: 2px;
      border-radius: 6px;
      width: 100%; }
    .footer .footer__form.data_form .form-group-full textarea {
      min-height: 90px; }
    .footer .footer__form.data_form .g-recaptcha {
      transform: scale(0.88);
      transform-origin: left;
      margin: 10px 0 16px; }
    .footer .footer__form.data_form .submit-button {
      width: 100%;
      font-size: 15px;
      padding: 12px 20px; } }
  .footer.footer--page {
    padding: 34px 0;
    background: #51296f; }
  .footer .inner--flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px; }
    .footer .inner--flex p {
      font-weight: 600;
      font-size: 16px; }
    .footer .inner--flex .list-social {
      margin: 0; }

/* rewrite footer__form */
.form {
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    .form {
      background: url(../images/img-astronaut.png) no-repeat right center;
      background-size: 484px auto; } }
  .form fieldset {
    max-width: 596px;
    border: none; }
  .form .form__field {
    display: block;
    padding: 15px;
    width: 100%;
    background: #fff;
    border: 1px solid #d4dde5;
    border-radius: 2px;
    color: #62707c; }
    .form .form__field::placeholder {
      color: #97A7B5; }
  .form textarea.form__field {
    height: 120px; }
  .form .d-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 330px; }
  .form .form__group {
    margin-bottom: 30px; }
  .form legend {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px; }
  .form label {
    display: block;
    width: 100%; }
  .form .form__button {
    display: block;
    margin: 0 auto;
    padding: 13px 8px;
    width: 50%;
    background-image: linear-gradient(to right, #71439A, #E21073, #F19452, #E21073, #71439A);
    border: none;
    -webkit-box-shadow: 0px 4px 16px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 4px 16px -1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 4px 16px -1px rgba(0, 0, 0, 0.75);
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase; }
  .form sub {
    color: red; }

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