@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Inter";
}

.array {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15px;
  height: 15px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.array span {
  width: 100%;
  height: 2px;
  border-radius: 2%;
  background-color: #656C86;
  position: relative;
}
.array span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(1.5px, 0);
          transform: rotate(45deg) translate(1.5px, 0);
}
.array span:nth-child(2) {
  -webkit-transform: rotate(-45deg) translate(-1.5px, 0);
          transform: rotate(-45deg) translate(-1.5px, 0);
}

.section {
  padding: 10px 0;
}

.page {
  margin-top: 60px;
}

.array-right {
  margin-left: 5px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15px;
  height: 15px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.array-right span {
  width: 100%;
  height: 2px;
  border-radius: 2%;
  background-color: white;
  position: relative;
}
.array-right span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(3px, -4px);
          transform: rotate(45deg) translate(3px, -4px);
  width: 10px;
}
.array-right span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(3px, 4px);
          transform: rotate(-45deg) translate(3px, 4px);
  width: 10px;
}

.container {
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1360px;
  padding: 0 5px;
}
@media (max-width: 1400px) {
  .container {
    width: 1200px;
  }
}
@media (max-width: 1240px) {
  .container {
    width: 1050px;
  }
}
@media (max-width: 1070px) {
  .container {
    width: 1020px;
  }
}
@media (max-width: 1030px) {
  .container {
    width: 990px;
  }
}
@media (max-width: 990px) {
  .container {
    width: 100%;
    padding: 0 3px;
  }
}

body.locked {
  overflow-y: hidden;
}

.wrapper .header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 30;
}
.wrapper .header .header_container {
  height: 50px;
}
.wrapper .header .header_container .header_logo {
  position: relative;
  z-index: 30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 0;
}
.wrapper .header .header_container .header_logo img {
  margin-right: 15px;
}
.wrapper .header .header_container .header_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  z-index: 10;
}
@media (max-width: 990px) {
  .wrapper .header .header_container .header_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -110%;
    background-color: white;
    z-index: 10;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
  .wrapper .header .header_container .header_menu.active {
    left: 0;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
}
.wrapper .header .header_container .header_menu .header_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 990px) {
  .wrapper .header .header_container .header_menu .header_links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .header .header_container .header_menu .header_links .header_menu_item {
  position: relative;
  margin: 0 12px;
}
.wrapper .header .header_container .header_menu .header_links .header_menu_item .header_menu_item_front {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
.wrapper .header .header_container .header_menu .header_links .header_menu_item .header_menu_item_front p {
  z-index: 2;
  font-size: 16px;
  color: #656c86;
  margin-right: 3px;
}
.wrapper .header .header_container .header_menu .header_links .header_menu_item .header_menu_item_front .array.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.wrapper .header .header_container .header_menu .header_links .header_menu_item .header_menu_item_content {
  z-index: 10;
  position: absolute;
  top: -20px;
  opacity: 0;
  left: 0;
  background-color: white;
  padding: 5px;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  pointer-events: none; /* Блокує кліки, поки меню закрите */
  -webkit-transition: opacity 0.5s ease, top 0.5s ease;
  transition: opacity 0.5s ease, top 0.5s ease;
}
.wrapper .header .header_container .header_menu .header_links .header_menu_item .header_menu_item_content a {
  color: #656c86;
  text-decoration: none;
  margin: 5px 0;
  font-size: 14px;
  font-weight: 400;
}
.wrapper .header .header_container .header_menu .header_links .header_menu_item .header_menu_item_content a:hover {
  text-decoration: underline;
}
.wrapper .header .header_container .header_menu .header_links .header_menu_item .header_menu_item_content.active {
  opacity: 1;
  top: 40px;
  pointer-events: auto; /* Відновлює кліки, коли меню відкрито */
}
.wrapper .header .header_container .header_menu .header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 990px) {
  .wrapper .header .header_container .header_menu .header_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .header .header_container .header_menu .header_nav img {
  cursor: pointer;
}
.wrapper .header .header_container .header_menu .header_nav a {
  margin: 10px;
  color: #656c86;
  font-size: 16px;
  text-decoration: none;
}
.wrapper .header .header_container .header_menu .header_nav a:hover {
  text-decoration: underline;
}
.wrapper .header .header_container .header_menu .header_nav button {
  width: 126px;
  height: 38px;
  border-radius: 5px;
  background-color: #3E57DA;
  color: white;
  font-size: 14px;
  padding: 0;
  margin: 0;
  line-height: 0;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .header .header_container .header_menu .header_nav button p {
  font-weight: 500;
}
.wrapper .header .header_container .header_menu .header_nav button .array-right {
  margin-left: 5px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15px;
  height: 15px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.wrapper .header .header_container .header_menu .header_nav button .array-right span {
  width: 100%;
  height: 2px;
  border-radius: 2%;
  background-color: white;
  position: relative;
}
.wrapper .header .header_container .header_menu .header_nav button .array-right span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(3px, -4px);
          transform: rotate(45deg) translate(3px, -4px);
  width: 10px;
}
.wrapper .header .header_container .header_menu .header_nav button .array-right span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(3px, 4px);
          transform: rotate(-45deg) translate(3px, 4px);
  width: 10px;
}
.wrapper .header .header_container .header_burger {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 30;
  display: none;
  cursor: pointer;
}
@media (max-width: 990px) {
  .wrapper .header .header_container .header_burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.wrapper .header .header_container .header_burger span {
  width: 100%;
  background-color: #3E57DA;
  content: "";
  border-radius: 1px;
  height: 2px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.wrapper .header .header_container .header_burger.active span {
  position: relative;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.wrapper .header .header_container .header_burger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(0, 12.5px);
          transform: rotate(45deg) translate(0, 12.5px);
}
.wrapper .header .header_container .header_burger.active span:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.wrapper .header .header_container .header_burger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(0, -12.5px);
          transform: rotate(-45deg) translate(0, -12.5px);
}
.wrapper .banner {
  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;
}
.wrapper .banner .banner_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .banner .banner_header p {
  font-size: 14px;
  color: #3E57DA;
  margin-right: 3px;
}
.wrapper .banner h1 {
  margin: 0;
  font-size: 80px;
  font-weight: 600;
  color: black;
  text-align: center;
}
@media (max-width: 767px) {
  .wrapper .banner h1 {
    font-size: 40px;
  }
}
.wrapper .banner h1 span {
  background: -webkit-gradient(linear, left top, right top, from(#8098F9), color-stop(#3E57DA), to(#2C43B8));
  background: linear-gradient(90deg, #8098F9, #3E57DA, #2C43B8); /* Ваш градієнт */
  -webkit-background-clip: text; /* Обрізка фону текстом */
  -webkit-text-fill-color: transparent; /* Робимо текст прозорим */
}
.wrapper .banner p {
  font-size: 20px;
  color: #333B52;
  text-align: center;
  line-height: 30px;
}
@media (max-width: 767px) {
  .wrapper .banner p {
    font-size: 22px;
  }
}
.wrapper .banner button {
  width: 237px;
  height: 58px;
  border-radius: 10px;
  background-color: #3E57DA;
  color: white;
  padding: 0;
  margin: 0;
  line-height: 0;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .banner button p {
  font-weight: 500;
  color: white;
  font-size: 18px;
}
.wrapper .banner button .array-right {
  margin-left: 5px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15px;
  height: 15px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.wrapper .banner button .array-right span {
  width: 100%;
  height: 2px;
  border-radius: 2%;
  background-color: white;
  position: relative;
}
.wrapper .banner button .array-right span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(3px, -4px);
          transform: rotate(45deg) translate(3px, -4px);
  width: 10px;
}
.wrapper .banner button .array-right span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(3px, 4px);
          transform: rotate(-45deg) translate(3px, 4px);
  width: 10px;
}
.wrapper .banner .rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrapper .banner .rate p {
  font-size: 14px;
  color: #656c86;
}
.wrapper .banner .rate p {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrapper .banner .video {
  margin: 0px auto;
}
.wrapper .banner .video img {
  margin: 0px auto;
  width: 100%;
  height: auto;
}
.wrapper .use {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0px auto;
  padding: 30px 0;
}
.wrapper .use h1 {
  font-size: 54px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .wrapper .use h1 {
    font-size: 40px;
  }
}
.wrapper .work {
  background: url("../media/section-background.png") no-repeat center center; /* Додаємо фон */
  background-size: cover; /* Робимо фон адаптивним */
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  border-radius: 30px 30px 0px 0px;
}
.wrapper .work .work_header {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .work .work_header p {
  font-size: 14px;
  color: white;
  font-weight: 400;
  background-color: #1F235B;
  border-radius: 5px;
}
.wrapper .work .work_header h1 {
  margin-top: 0;
  font-size: 50px;
  color: white;
  font-weight: 600;
}
.wrapper .work .work_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  width: 1216px;
  height: 126px;
}
@media (max-width: 1250px) {
  .wrapper .work .work_items {
    width: 100%;
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wrapper .work .work_items .work_items_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 292px;
  max-height: 116px;
  border-radius: 15px;
  padding: 24px;
  margin: 10px;
  background-color: #1F235B;
}
.wrapper .work .work_items .work_items_item .num {
  min-width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 24px;
  border-radius: 4px;
  background-color: white;
  color: #1F235B;
}
.wrapper .work .work_items .work_items_item .text {
  margin-left: 16px;
}
.wrapper .work .work_items .work_items_item .text h3 {
  margin: 0;
  font-size: 20px;
  color: white;
  font-weight: 400;
}
.wrapper .work .work_items .work_items_item .text p {
  margin: 0;
  font-size: 12px;
  color: white;
  font-weight: 400;
}
.wrapper .work .panel img {
  width: 100%;
}
.wrapper .tryout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 920px) {
  .wrapper .tryout {
    -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;
  }
  .wrapper .tryout .tryout_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.wrapper .tryout .tryout_content p {
  color: #3E57DA;
  font-size: 14px;
  text-transform: uppercase;
}
.wrapper .tryout .tryout_content h1 {
  font-size: 50px;
  font-weight: 600;
}
@media (max-width: 460px) {
  .wrapper .tryout .tryout_content h1 {
    font-size: 36px;
  }
}
.wrapper .tryout .tryout_content form .form_item p {
  font-size: 16px;
  color: black;
  font-weight: 500;
  text-transform: none;
}
.wrapper .tryout .tryout_content form .form_item textarea {
  width: 440px;
  height: 128px;
  border-radius: 10px;
  font-size: 16px;
  padding: 15px;
  outline: none;
}
@media (max-width: 460px) {
  .wrapper .tryout .tryout_content form .form_item textarea {
    width: 100%;
  }
}
.wrapper .tryout .tryout_content form button {
  width: 440px;
  height: 48px;
  border-radius: 15px;
  background-color: #3E57DA;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
@media (max-width: 460px) {
  .wrapper .tryout .tryout_content form button {
    width: 100%;
  }
}
.wrapper .tryout .tryout_media img {
  width: 100%;
}
@media (max-width: 990px) {
  .wrapper .create {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrapper .create .create_content {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .wrapper .create .create_media {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.wrapper .create .create_content p {
  color: #3E57DA;
  font-size: 16px;
  text-transform: uppercase;
}
.wrapper .create .create_content h1 {
  font-size: 54px;
  max-width: 488px;
  font-weight: 500;
  line-height: 58px;
}
@media (max-width: 1080px) {
  .wrapper .create .create_content h1 {
    font-size: 40px;
  }
}
.wrapper .create .create_content button {
  width: 168px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .create .create_content button p {
  text-transform: none;
  color: black;
  font-size: 16px;
}
.wrapper .create .create_content button .array-right {
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 1;
}
.wrapper .create .create_content button .array-right span {
  background-color: black;
}
.wrapper .create .create_media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 600px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}
@media (max-width: 990px) {
  .wrapper .create .create_media {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
.wrapper .create .create_media .create_media_item {
  margin: 10px;
}
.wrapper .create .create_media .create_media_item img {
  border-radius: 16px;
}
@media (max-width: 1250px) {
  .wrapper .create .create_media .create_media_item img {
    width: 250px;
  }
}
@media (max-width: 1080px) {
  .wrapper .create .create_media .create_media_item img {
    width: 175px;
  }
}
.wrapper .create .create_media .create_media_item img:nth-child(4) {
  border-radius: 16px 16px 16px;
}
.wrapper .footer {
  width: 100%;
  background-color: #0D0F2C;
  padding: 80px 0;
}
@media (max-width: 990px) {
  .wrapper .footer {
    padding: 40px 0;
  }
}
.wrapper .footer .footer_container {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1000px) {
  .wrapper .footer .footer_container {
    width: 100%;
  }
}
.wrapper .footer .footer_container .footer_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media (max-width: 1080px) {
  .wrapper .footer .footer_container .footer_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrapper .footer .footer_container .footer_content .footer_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0px auto;
  }
  .wrapper .footer .footer_container .footer_content .footer_menu {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .wrapper .footer .footer_container .footer_content .footer_menu .footer_menu_items {
    margin: 0px auto;
  }
}
.wrapper .footer .footer_container .footer_content .footer_info {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .footer .footer_container .footer_content .footer_info .footer_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .footer .footer_container .footer_content .footer_info .footer_logo h1 {
  font-size: 32px;
  color: white;
}
.wrapper .footer .footer_container .footer_content .footer_info .footer_lang {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  top: 0;
  left: 0;
}
.wrapper .footer .footer_container .footer_content .footer_info .footer_lang.active .array {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.wrapper .footer .footer_container .footer_content .footer_info .footer_lang.active .lang_content {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  top: 50px;
  opacity: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wrapper .footer .footer_container .footer_content .footer_info .footer_lang .lang_front {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .footer .footer_container .footer_content .footer_info .footer_lang .lang_front div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .footer .footer_container .footer_content .footer_info .footer_lang .lang_front div p {
  color: white;
}
.wrapper .footer .footer_container .footer_content .footer_info .footer_lang .lang_front .array {
  margin-left: 3px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.wrapper .footer .footer_container .footer_content .footer_info .footer_lang .lang_content {
  opacity: 0;
  width: 100px;
  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;
  position: absolute;
  top: -50px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  display: none;
  flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #0D0F2C;
}
.wrapper .footer .footer_container .footer_content .footer_info .footer_text {
  color: white;
  font-size: 16px;
  width: 320px;
}
.wrapper .footer .footer_container .footer_content .footer_info .line {
  margin: 24px 0px;
  width: 100%;
  height: 1px;
  background-color: #E6EAF4;
}
.wrapper .footer .footer_container .footer_content .footer_info .parthners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .footer .footer_container .footer_content .footer_info .parthners img:nth-child(2) {
  margin-left: 25px;
}
.wrapper .footer .footer_container .footer_content .footer_info .adress {
  font-size: 10px;
  color: white;
  font-weight: 300;
}
.wrapper .footer .footer_container .footer_content .footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .footer .footer_container .footer_content .footer_menu .footer_menu_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .wrapper .footer .footer_container .footer_content .footer_menu .footer_menu_items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wrapper .footer .footer_container .footer_content .footer_menu .footer_menu_items .footer_menu_item {
  width: 176px;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .footer .footer_container .footer_content .footer_menu .footer_menu_items .footer_menu_item h1 {
  font-size: 16px;
  font-weight: 500;
  color: #8098F9;
}
.wrapper .footer .footer_container .footer_content .footer_menu .footer_menu_items .footer_menu_item a {
  font-size: 16px;
  color: white;
  margin: 5px 0;
  text-decoration: none;
}
.wrapper .footer .footer_container .line {
  width: 100%;
  background-color: #E6EAF4;
  height: 1px;
  margin: 24px 0px;
}
.wrapper .footer .footer_container .footer_bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .footer .footer_container .footer_bottom p {
  line-height: 0;
  margin: 10px 0;
  color: white;
}
.wrapper .footer .footer_container .footer_bottom nav a {
  margin: 0px 10px;
}