* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

@font-face {
  font-family: "Gilroy";
  src: local("../font/Gilroy Regular"), local("Gilroy-Regular"), url("../font/Gilroy-Regular.woff2?v=bf78e068") format("woff2"), url("../font/Gilroy-Regular.woff?v=bf78e068") format("woff"), url("../font/Gilroy-Regular.ttf?v=bf78e068") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("../font/Gilroy Bold"), local("Gilroy-Bold"), url("../font/Gilroy-Bold.woff2?v=bf78e068") format("woff2"), url("../font/Gilroy-Bold.woff?v=bf78e068") format("woff"), url("../font/Gilroy-Bold.ttf?v=bf78e068") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Extrabold Italic"), local("Gilroy-Extrabold-Italic"), url("../font/Gilroy-ExtraboldItalic.woff2?v=bf78e068") format("woff2"), url("../font/Gilroy-ExtraboldItalic.woff?v=bf78e068") format("woff"), url("../font/Gilroy-ExtraboldItalic.ttf?v=bf78e068") format("truetype");
  font-weight: 800;
  font-style: italic;
}
:root {
  --black-gray-color: #323337;
  --white-gray-color: #43454C;
  --white-color: #FFFFFF;
  --gray-white-color: #F1F1F1;
  --black-color: #000;
  --violet-color: #5D44DB;
}

body {
  font-family: "Gilroy";
  font-weight: 400;
  color: var(--black-color);
  font-size: 16px;
  line-height: 118.75%;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.header {
  width: 100%;
  background-color: var(--white-color);
}

.container {
  max-width: 1350px;
  padding: 0 15px;
  margin: 0 auto;
}

.header-row {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.header-link {
  color: var(--black-color);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-link:hover {
  color: var(--violet-color);
}

._btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1000px;
  background: var(--violet-color);
  height: 44px;
  padding: 0 40px;
  color: var(--white-color);
  font-weight: 700;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
._btn:hover {
  background-color: #5744b6;
}

.header-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.menu-btn {
  width: 30px;
  height: 30px;
  position: relative;
  display: none;
  z-index: 2;
  overflow: hidden;
}

.menu-btn span {
  width: 30px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--black-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.menu-btn span:nth-of-type(2) {
  top: calc(50% - 7px);
}

.menu-btn span:nth-of-type(3) {
  top: calc(50% + 7px);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: background-color 0.4s ease 0.5s, -webkit-transform 0.5s;
  transition: background-color 0.4s ease 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, background-color 0.4s ease 0.5s;
  transition: transform 0.5s, background-color 0.4s ease 0.5s, -webkit-transform 0.5s;
}
.menu .header-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
.menu .header-logo {
  width: 200px;
}

.menu-row {
  width: 35%;
  background-color: var(--white-color);
  height: 100%;
  padding: 30px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 30px;
}

.menu-btn.active span:nth-of-type(1) {
  display: none;
}

.menu-btn.active span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
          transform: translate(-50%, 0%) rotate(45deg);
}

.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translate(-50%, 0%) rotate(-45deg);
          transform: translate(-50%, 0%) rotate(-45deg);
}

.menu.active {
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media (max-width: 998px) {
  .header .header-nav {
    display: none;
  }
  .header-logo {
    max-width: 150px;
  }
  .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu .header-list {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .menu .header-link {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .header .header-btn {
    display: none;
  }
  .menu-row {
    width: 75%;
  }
}
.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.intro {
  padding: 93px 0 92px;
  position: relative;
  z-index: 1;
}

.intro-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  max-width: 1137px;
}

.intro-content {
  max-width: 424px;
}

.intro-title {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.intro-title span {
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgb(241, 241, 241)));
  background: linear-gradient(90deg, rgb(255, 255, 255), rgb(241, 241, 241));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5), 0 0 25px rgba(241, 241, 241, 0.5);
  font-size: 40px;
  font-weight: 800;
  line-height: 125%;
  letter-spacing: 10px;
  font-style: italic;
  margin-bottom: 4px;
}
.intro-title p {
  color: var(--white-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
}

.intro-text {
  color: var(--white-color);
  margin-bottom: 20px;
}

.intro-img {
  max-width: 100%;
}

.intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media (max-width: 767px) {
  .intro-row {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .intro-content {
    max-width: 100%;
  }
  .intro {
    padding: 50px 0;
  }
}
.invite {
  padding: 40px 0 20px;
}

.invite-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.invite-total {
  max-width: 391px;
}

.invite-total-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.invite-total-item-title {
  color: var(--white-gray-color);
  margin-bottom: 4px;
}

.invite-total-item-text {
  color: var(--black-gray-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
}

.invite-body {
  max-width: 840px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  background: rgba(93, 68, 219, 0.04);
  padding: 40px;
  border-radius: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' rx='20' ry='20' style='fill: none; stroke: rgba(93, 68, 219, 1.00); stroke-width: 8; stroke-dasharray: 26 26'/></svg>");
  background-size: cover;
}

.invite-left {
  max-width: 312px;
}

.invite-left-title {
  color: var(--black-gray-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 20px;
}

.invite-left-text {
  color: var(--white-gray-color);
}

.invite-form-block:not(:last-child) {
  margin-bottom: 40px;
}

.invite-form-text {
  color: var(--black-gray-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 20px;
}

.invite-form-input {
  border-radius: 4px;
  background: rgba(93, 68, 219, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}
.invite-form-input input {
  height: 36px;
  background: transparent;
  width: 100%;
  color: rgb(129, 131, 136);
  font-size: 16px;
  font-weight: 400;
  line-height: 118.75%;
  padding-right: 20px;
}

.invite-form-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.invite-form-box-text {
  color: var(--black-gray-color);
}

.invite-form-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.invite-form-input-btn {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  background-color: transparent;
  padding: 0;
}
.invite-form-input-btn input {
  background: rgba(93, 68, 219, 0.04);
  padding: 0 20px;
}

@media (max-width: 1200px) {
  .invite-body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
  }
  .invite-left {
    max-width: 100%;
  }
  .invite-form {
    width: 100%;
  }
}
@media (max-width: 998px) {
  .invite-total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    gap: 20px;
  }
  .invite-total-item-img {
    max-width: 170px;
    width: 100%;
  }
  .invite-row {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    row-gap: 20px;
  }
}
@media (max-width: 767px) {
  .invite-total {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .invite-total-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .invite-form-input-btn {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
  }
  .invite-form-btn {
    width: 100%;
  }
}
@media (max-width: 476px) {
  .invite-body {
    padding: 30px;
  }
}
@media (max-width: 374px) {
  .invite-body {
    padding: 20px;
  }
}
.social {
  padding: 20px 0 80px;
}

.social-row {
  border-radius: 20px;
  background: var(--gray-white-color);
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social-title {
  color: var(--black-gray-color);
  font-size: 40px;
  font-weight: 700;
  line-height: 125%;
  text-align: center;
  margin-bottom: 20px;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 20px;
}

.social-link svg #bg {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.social-link:nth-of-type(1):hover svg #bg {
  fill: rgb(27, 99, 192);
}
.social-link:nth-of-type(2):hover svg #bg {
  fill: rgb(27, 135, 202);
}
.social-link:nth-of-type(3):hover svg #bg {
  fill: rgb(43, 41, 41);
}

@media (max-width: 998px) {
  .footer .header-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
  .footer .header-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}