@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Martian+Mono:wght@100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");
:root {
  --color-black: #1e1e1e;
  --color-white: #fff;
  --color-profile: #c7c7cc;
  --color-e9: #e9e9e9;
  --color-c7: #c7c7cc;
  --color-0f: #0f0f0f;
  --bg-black: #080808;
  --color-4698: #464646;
  --bg-transparent: rgba(255, 255, 255, 0.08);
  --bg-black-purle: #0a0a0a;
  --bg-0a: #0a0a0a;
  --bg-10: #101010;
  --bg-17: #171717;
  --border-grey: rgba(232, 232, 232, 0.5);
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-placeholder {
  color: inherit;
}

:-ms-input-placeholder {
  color: inherit;
}

:-moz-placeholder {
  color: inherit;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input, select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input, select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.4;
  transition: 0s;
  background: var(--bg-black);
  color: var(--color-white);
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input:focus,
button,
button:focus,
textarea {
  outline: none;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

button {
  background-color: transparent;
  border: none;
}

a:focus,
a:active {
  outline: 0;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

.left {
  float: left;
}

.right {
  float: right;
}

a,
input[type=submit] {
  transition: all 0.3s ease;
  color: inherit;
  cursor: pointer;
}

textarea {
  resize: none;
}

.table-respond {
  overflow: auto;
}

.table-respond td, .table-respond th {
  white-space: nowrap;
}

.btn, .btn:focus, .btn:hover {
  outline: none;
  box-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.d-flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.flex {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.flex-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.flex-left {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.flex-right {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.flex-justify {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.flex-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-top {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.flex-middle {
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  align-self: center;
}

.flex-bottom {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.flex-item-top {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.flex-item-middle {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flex-item-bottom {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

body {
  padding: 180px 0 0 0;
}
@media (max-width: 991px) {
  body {
    padding: 142px 0 0 0;
  }
}

.loginPage body {
  padding: 0;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 25px 0 0 0;
}
@media (max-width: 991px) {
  header {
    padding: 0;
  }
}
header .header_top {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_top .header_top__wrapper {
  width: calc(100% - 30px);
  background: #1b1d30;
  border-radius: 10px;
  border: 1px solid rgba(232, 232, 232, 0.4);
}
@media (max-width: 991px) {
  header .header_top .header_top__wrapper {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    border-top: none;
    border-left: none;
    border-right: none;
    z-index: 153;
  }
}
header .header_top .header_top__wrapper .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 991px) {
  header .header_top .header_top__wrapper .container {
    padding: 0 9px;
  }
}
header .header_top .header_top__wrapper .container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: rgba(232, 232, 232, 0.4);
}
@media (max-width: 991px) {
  header .header_top .header_top__wrapper .container:before {
    content: none;
  }
}
header .header_top .header_top__wrapper .container .left_side {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
  padding: 0 30px 0 0;
}
@media (max-width: 1300px) {
  header .header_top .header_top__wrapper .container .left_side {
    padding: 0 15px 0 0;
  }
}
@media (max-width: 991px) {
  header .header_top .header_top__wrapper .container .left_side {
    width: calc(100% - 168px);
    padding: 0;
  }
}
header .header_top .header_top__wrapper .container .left_side img {
  display: block;
  width: 91px;
  min-width: 91px;
  height: 73px;
  margin: 0 12px 0 0;
  object-fit: contain;
  object-position: bottom;
}
@media (max-width: 1300px) {
  header .header_top .header_top__wrapper .container .left_side img {
    width: 75px;
    min-width: 75px;
  }
}
@media (max-width: 991px) {
  header .header_top .header_top__wrapper .container .left_side img {
    width: 65px;
    min-width: 65px;
    height: 75px;
    margin: 0 2px 0 0;
  }
}
header .header_top .header_top__wrapper .container .left_side p {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--color-white);
}
@media (max-width: 1300px) {
  header .header_top .header_top__wrapper .container .left_side p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  header .header_top .header_top__wrapper .container .left_side p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  header .header_top .header_top__wrapper .container .left_side p {
    font-size: 14px;
    max-width: 122px;
  }
}
header .header_top .header_top__wrapper .container .right_side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  padding: 0 0 0 30px;
}
@media (max-width: 1300px) {
  header .header_top .header_top__wrapper .container .right_side {
    padding: 0 0 0 15px;
  }
}
@media (max-width: 991px) {
  header .header_top .header_top__wrapper .container .right_side {
    width: 100%;
    max-width: 163px;
    padding: 0 5px 0 0;
  }
}
header .header_top .header_top__wrapper .container .right_side img {
  display: block;
  height: 73px;
  object-fit: contain;
}
@media (max-width: 1300px) {
  header .header_top .header_top__wrapper .container .right_side img {
    width: 60px;
    min-width: 60px;
  }
}
@media (max-width: 991px) {
  header .header_top .header_top__wrapper .container .right_side img {
    display: none;
  }
}
@media (max-width: 991px) {
  header .header_top .header_top__wrapper .container .right_side img.mouse_arrow {
    position: absolute;
    bottom: -7px;
    right: -7px;
    display: block;
    width: 35px;
    height: 35px;
    min-width: initial;
    transform: scaleX(-1);
  }
}
header .header_top .header_top__wrapper .container .right_side p {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  border-bottom: 1px solid var(--color-white);
  color: var(--color-white);
}
@media (max-width: 1300px) {
  header .header_top .header_top__wrapper .container .right_side p {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  header .header_top .header_top__wrapper .container .right_side p {
    display: none;
  }
}
header .header_top .header_top__wrapper .container .right_side .white_button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #1e1e1e;
  background: #fff;
  padding: 13px 19px;
  min-height: 50px;
  border: 1px solid #fff;
  border-radius: 100px;
}
@media (max-width: 1300px) {
  header .header_top .header_top__wrapper .container .right_side .white_button {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  header .header_top .header_top__wrapper .container .right_side .white_button {
    padding: 9px 14px;
    min-height: 37px;
    line-height: 1;
  }
}
header .header_top .header_top__wrapper .container .right_side .white_button:hover {
  color: #fff;
  background: transparent;
}
header .header_bottom {
  padding: 30px 0 0 0;
}
@media (max-width: 991px) {
  header .header_bottom {
    padding: 14px 0 0 0;
    position: relative;
    z-index: 153;
  }
}
header .header_bottom .header_bottom__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header_bottom .header_bottom__wrapper .left_side {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .header_bottom .header_bottom__wrapper .left_side .logo {
  display: block;
}
header .header_bottom .header_bottom__wrapper .left_side .logo:hover {
  opacity: 0.7;
}
header .header_bottom .header_bottom__wrapper .left_side .logo img {
  display: block;
  width: 64px;
  object-fit: contain;
}
@media (max-width: 991px) {
  header .header_bottom .header_bottom__wrapper .left_side .logo img {
    width: 42px;
    height: 42px;
  }
}
header .header_bottom .header_bottom__wrapper .left_side .switch_wrapper {
  display: none;
  margin: 0 0 0 17px;
}
@media (max-width: 991px) {
  header .header_bottom .header_bottom__wrapper .left_side .switch_wrapper {
    display: block;
  }
}
header .header_bottom .header_bottom__wrapper .left_side .switch_wrapper input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
  display: none;
}
header .header_bottom .header_bottom__wrapper .left_side .switch_wrapper label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 76px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border-grey);
  border-radius: 100px;
  position: relative;
  padding: 2px;
  cursor: pointer;
}
header .header_bottom .header_bottom__wrapper .left_side .switch_wrapper label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--color-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s all ease;
  z-index: 1;
}
header .header_bottom .header_bottom__wrapper .left_side .switch_wrapper label span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 2;
}
header .header_bottom .header_bottom__wrapper .left_side .switch_wrapper label span img {
  display: block;
  width: 20px;
  height: 20px;
}
header .header_bottom .header_bottom__wrapper .left_side .switch_wrapper input:checked + label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 191px);
  border: 1px solid var(--border-grey);
  border-radius: 100px;
  backdrop-filter: blur(98.3px);
  background: rgba(255, 255, 255, 0.03);
}
@media (max-width: 1300px) {
  header .header_bottom .header_bottom__wrapper .header_bottom__middle {
    width: calc(100% - 150px);
  }
}
@media (max-width: 991px) {
  header .header_bottom .header_bottom__wrapper .header_bottom__middle {
    display: none;
  }
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle .switch_wrapper {
  margin: -1px 0 -1px -1px;
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle .switch_wrapper input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
  display: none;
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle .switch_wrapper label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 110px;
  height: 60px;
  background: transparent;
  border: 1px solid var(--border-grey);
  border-radius: 100px;
  position: relative;
  padding: 4px;
  cursor: pointer;
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle .switch_wrapper label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.3s all ease;
  z-index: 1;
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle .switch_wrapper label span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 2;
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle .switch_wrapper label span img {
  display: block;
  width: 26px;
  height: 26px;
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle .switch_wrapper input:checked + label:after {
  left: calc(100% - 4px);
  transform: translateX(-100%);
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle ul li {
  margin: 0 22px;
}
@media (max-width: 1300px) {
  header .header_bottom .header_bottom__wrapper .header_bottom__middle ul li {
    margin: 0 15px;
  }
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle ul li a {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  transition: all width 0.3s;
  position: relative;
}
@media (max-width: 1300px) {
  header .header_bottom .header_bottom__wrapper .header_bottom__middle ul li a {
    font-size: 14px;
  }
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle ul li a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: width 0.3s;
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle ul li a:hover:after {
  width: 100%;
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle .transparent_button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: var(--color-white);
  border: 1px solid var(--border-grey);
  border-radius: 100px;
  padding: 16px 23px;
  min-height: 100%;
  margin: -1px -1px -1px 0;
}
@media (max-width: 1300px) {
  header .header_bottom .header_bottom__wrapper .header_bottom__middle .transparent_button {
    font-size: 14px;
  }
}
header .header_bottom .header_bottom__wrapper .header_bottom__middle .transparent_button:hover {
  background: var(--color-white);
  color: var(--color-black);
}
header .header_bottom .header_bottom__wrapper .right_side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header_bottom .header_bottom__wrapper .right_side .user_cabinet {
  display: block;
}
header .header_bottom .header_bottom__wrapper .right_side .user_cabinet:hover {
  transform: scale(1.1);
}
header .header_bottom .header_bottom__wrapper .right_side .user_cabinet img {
  display: block;
}
@media (max-width: 991px) {
  header .header_bottom .header_bottom__wrapper .right_side .user_cabinet img {
    width: 42px;
  }
}
header .header_mob__fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1b1d30;
  border-bottom: 1px solid rgba(232, 232, 232, 0.4);
  padding: 4px 0;
  z-index: 500;
  transform: translateY(-150%);
  transition: 0.3s all ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  header .header_mob__fixed {
    padding: 3px 0;
  }
}
header .header_mob__fixed .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_mob__fixed a {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--color-white);
}
@media (max-width: 991px) {
  header .header_mob__fixed a {
    font-size: 16px;
  }
}
header .header_mob__fixed img {
  display: block;
  width: 47px;
  object-fit: contain;
  min-width: initial;
  margin: 0 0 0 20px;
}
@media (max-width: 991px) {
  header .header_mob__fixed img {
    width: 30px;
    margin: 0 0 0 10px;
  }
}
header .header_mob__fixed.fixed {
  transform: translateY(0);
}

.section_main {
  padding: 67px 0 70px 0;
  position: relative;
}
@media (max-width: 991px) {
  .section_main {
    padding: 30px 0;
  }
}
.section_main:before {
  content: "";
  position: absolute;
  top: -180px;
  left: 0;
  width: 100%;
  height: calc(100% + 180px);
  background: url("../img/main_bg.png") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -2;
}
.section_main:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.3841911765) 40%, rgba(8, 8, 8, 0.8659838936) 100%);
  z-index: -1;
}
.section_main .main_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin: 0 0 100px;
}
@media (max-width: 991px) {
  .section_main .main_wrapper {
    display: block;
    margin: 0 0 30px;
  }
}
.section_main .main_wrapper .left_side {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1300px) {
  .section_main .main_wrapper .left_side {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .section_main .main_wrapper .left_side {
    max-width: 100%;
    margin: 0 0 35px;
  }
}
.section_main .main_wrapper .left_side .animation_title {
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .section_main .main_wrapper .left_side .animation_title {
    display: none;
  }
}
.section_main .main_wrapper .left_side .animation_title img {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: left;
}
.section_main .main_wrapper .left_side .animation_title .img_light {
  display: none;
}
.section_main .main_wrapper .left_side h1 {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--color-e9);
  margin: 0 0 60px;
}
@media (max-width: 1300px) {
  .section_main .main_wrapper .left_side h1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .section_main .main_wrapper .left_side h1 {
    margin: 0 0 30px;
    text-align: center;
  }
}
.section_main .main_wrapper .left_side h1 span {
  font-weight: 500;
}
@media (max-width: 991px) {
  .section_main .main_wrapper .left_side .btn {
    min-width: 100%;
    display: none;
  }
}
.section_main .main_wrapper .middle_side {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media (max-width: 991px) {
  .section_main .main_wrapper .middle_side {
    top: 120px;
    width: 100%;
  }
}
.section_main .main_wrapper .middle_side img {
  display: block;
  width: 450px;
  object-fit: contain;
}
@media (max-width: 1300px) {
  .section_main .main_wrapper .middle_side img {
    width: 350px;
  }
}
@media (max-width: 991px) {
  .section_main .main_wrapper .middle_side img {
    width: 100%;
    height: 250px;
    object-fit: contain;
  }
}
.section_main .main_wrapper .right_side {
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 2;
  padding: 30px 0 0 0;
}
@media (max-width: 1300px) {
  .section_main .main_wrapper .right_side {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .section_main .main_wrapper .right_side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 100%;
    padding: 0;
  }
}
.section_main .main_wrapper .right_side blockquote {
  font-family: "Martian Mono", sans-serif;
  font-weight: 200;
  font-size: 15px;
  text-align: right;
  color: var(--color-white);
  position: relative;
  margin: 0 0 86px;
}
@media (max-width: 991px) {
  .section_main .main_wrapper .right_side blockquote {
    margin: 0;
    text-align: center;
    order: 3;
    font-size: 12px;
    text-align: left;
  }
}
.section_main .main_wrapper .right_side blockquote span {
  font-size: 45px;
  line-height: 15px;
}
@media (max-width: 991px) {
  .section_main .main_wrapper .right_side blockquote span {
    font-size: 35px;
  }
}
.section_main .main_wrapper .right_side .mobile_title {
  display: none;
}
@media (max-width: 991px) {
  .section_main .main_wrapper .right_side .mobile_title {
    display: block;
    width: 100%;
    margin: 0 0 140px;
  }
}
.section_main .main_wrapper .right_side .mobile_title img {
  display: block;
  width: 100%;
  max-width: 65%;
  object-fit: contain;
  object-position: left;
}
.section_main .main_wrapper .right_side .mobile_title .img_light {
  display: none;
}
@media (max-width: 991px) {
  .section_main .main_wrapper .right_side .animation_title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.section_main .main_wrapper .right_side .animation_title img {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: right;
}
@media (max-width: 991px) {
  .section_main .main_wrapper .right_side .animation_title img {
    max-width: 65%;
  }
}
.section_main .main_wrapper .right_side .animation_title .img_light {
  display: none;
}
.section_main .main_wrapper .right_side .btn_blue {
  display: none;
}
@media (max-width: 991px) {
  .section_main .main_wrapper .right_side .btn_blue {
    display: flex;
    width: 100%;
    order: 4;
    margin: 30px 0 0 0;
  }
}
.section_main .main_bottom ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .section_main .main_bottom ul {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .section_main .main_bottom ul {
    justify-content: flex-start;
  }
}
.section_main .main_bottom ul li {
  margin: 12.5px 15px;
}
@media (max-width: 1300px) {
  .section_main .main_bottom ul li {
    margin: 10px;
  }
}
@media (max-width: 767px) {
  .section_main .main_bottom ul li {
    margin: 0 7px 15px 0;
  }
}
.section_main .main_bottom ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 24px;
  border: 1px solid var(--border-grey);
  background: var(--bg-transparent);
  border-radius: 100px;
  font-family: "Martian Mono", sans-serif;
  font-weight: 200;
  font-size: 20px;
  color: var(--color-white);
}
@media (max-width: 991px) {
  .section_main .main_bottom ul li a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .section_main .main_bottom ul li a {
    font-size: 14px;
    padding: 12px 14px;
  }
}
.section_main .main_bottom ul li a:hover {
  background: rgba(107, 113, 210, 0.6);
  border-color: rgba(107, 113, 210, 0.6);
}

.section_why {
  padding: 0 0 60px;
}
@media (max-width: 991px) {
  .section_why {
    padding: 0 0 50px;
    overflow: hidden;
  }
}
.section_why h2 {
  text-align: center;
  margin: 0 0 70px;
}
@media (max-width: 991px) {
  .section_why h2 {
    margin: 0 0 30px;
  }
}

.why_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 1300px) {
  .why_wrapper {
    justify-content: center;
  }
}
.why_wrapper:before {
  content: "";
  position: absolute;
  top: 100px;
  right: 370px;
  width: 450px;
  height: 410px;
  background: url("../img/why_bg.png") center no-repeat;
  background-size: contain;
  z-index: 2;
}
@media (max-width: 1300px) {
  .why_wrapper:before {
    width: 400px;
    height: 400px;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
  }
}
@media (max-width: 991px) {
  .why_wrapper:before {
    top: 21%;
    width: 400px;
    height: 300px;
    transform: translateX(-50%) rotate(15deg);
  }
}
.why_wrapper .why_item {
  width: 100%;
  max-width: 410px;
  border: 1px solid var(--border-grey);
  border-radius: 5px;
  box-shadow: 0 7px 53px 0 rgba(68, 0, 83, 0.4);
  background: var(--bg-black-purle);
  padding: 25px 18px 25px 55px;
  position: relative;
  margin: 0 0 57px;
  min-height: 204px;
  z-index: 1;
}
@media (max-width: 1300px) {
  .why_wrapper .why_item {
    z-index: 3;
  }
}
@media (max-width: 991px) {
  .why_wrapper .why_item {
    max-width: 100%;
    margin: 0 0 30px;
    padding: 30px 15px;
    z-index: 1;
  }
}
.why_wrapper .why_item img {
  display: block;
  position: absolute;
  top: 26px;
  left: -23px;
}
@media (max-width: 991px) {
  .why_wrapper .why_item img {
    height: 40px;
    top: -20px;
    left: -10px;
  }
}
.why_wrapper .why_item p {
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #b680c7;
  padding: 0 0 10px;
  margin: 0 0 10px;
  border-bottom: 1px solid var(--border-grey);
  max-width: 255px;
}
@media (max-width: 991px) {
  .why_wrapper .why_item p {
    font-size: 16px;
  }
}
.why_wrapper .why_item span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}
@media (max-width: 991px) {
  .why_wrapper .why_item span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .why_wrapper .why_item span br {
    display: none;
  }
}
.why_wrapper .why_item small {
  position: absolute;
  top: 20px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 13px;
  background: linear-gradient(180deg, #febc7d 0%, #6b71d2 82.5%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(90, 90, 90, 0.4);
}
@media (max-width: 991px) {
  .why_wrapper .why_item small {
    font-size: 12px;
    top: 10px;
    right: 10px;
  }
}
.why_wrapper .why_item__white {
  border: 1px solid var(--border-grey);
  box-shadow: 4px 7px 32px 0 #00055b;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.94);
}
.why_wrapper .why_item__white p {
  color: #000;
  border-color: rgba(24, 24, 24, 0.5);
}
.why_wrapper .why_item__white span {
  color: #000;
}
.why_wrapper .why_item:nth-child(2) {
  margin: 20px 0 57px 100px;
  z-index: 3;
}
@media (max-width: 991px) {
  .why_wrapper .why_item:nth-child(2) {
    margin: 0 0 30px;
  }
}
.why_wrapper .why_item:nth-child(3) {
  margin: 0 220px 0 40px;
  z-index: 3;
}
@media (max-width: 1300px) {
  .why_wrapper .why_item:nth-child(3) {
    margin: 0 90px 0 20px;
  }
}
@media (max-width: 991px) {
  .why_wrapper .why_item:nth-child(3) {
    margin: 0 0 30px;
    z-index: 1;
  }
}
.why_wrapper .why_item:nth-last-child(1) {
  z-index: 4;
}
@media (max-width: 1300px) {
  .why_wrapper .why_item:nth-last-child(1) {
    margin: 30px 0 0 0;
  }
}
@media (max-width: 991px) {
  .why_wrapper .why_item:nth-last-child(1) {
    margin: 0;
  }
}

.section_directions {
  padding: 0 0 60px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991px) {
  .section_directions {
    padding: 0 0 30px;
  }
}
@media (max-width: 991px) {
  .section_directions h2 {
    margin: 0 0 50px;
  }
}
.section_directions h2 br {
  display: none;
}
@media (max-width: 991px) {
  .section_directions h2 br {
    display: block;
  }
}
.section_directions .marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  position: absolute;
  top: 45px;
}
@media (max-width: 991px) {
  .section_directions .marquee {
    top: 60px;
  }
}
.section_directions .marquee span {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 180px;
  line-height: 145px;
  background: linear-gradient(180deg, #febc7d 0%, #6b71d2 35%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  animation: marquee 5s linear infinite;
  padding: 0 30px 0 0;
  opacity: 0.44;
}
@media (max-width: 1300px) {
  .section_directions .marquee span {
    font-size: 140px;
    line-height: 0.9;
  }
}
@media (max-width: 991px) {
  .section_directions .marquee span {
    font-size: 73px;
  }
}

.directions_slider__wrapper {
  width: 100%;
  position: relative;
}
.directions_slider__wrapper .directions_slider .slick-list {
  display: flex;
  align-items: initial;
  overflow: visible;
  margin: 0 -7.5px;
}
@media (max-width: 991px) {
  .directions_slider__wrapper .directions_slider .slick-list {
    padding: 0 50px 0 0;
  }
}
.directions_slider__wrapper .directions_slider .slick-list .slick-track {
  display: flex;
  align-items: initial;
}
.directions_slider__wrapper .directions_slider .slider_item {
  margin: 0 7.5px;
  transition: 0.3s all ease;
}
.directions_slider__wrapper .directions_slider .slider_item.slick-current {
  transform: translateY(-26px);
}
@media (max-width: 991px) {
  .directions_slider__wrapper .directions_slider .slider_item.slick-current {
    transform: translateY(0);
  }
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 500px;
  border: 1px solid var(--border-grey);
  border-radius: 5px;
  background: var(--bg-0a);
  padding: 25px 22px 25px 25px;
  position: relative;
  transition: 0.3s all ease;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .directions_slider__wrapper .directions_slider .slider_item .directions_item {
    height: 400px;
    padding: 20px;
  }
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item:hover {
  box-shadow: 4px 3px 30px 0 rgba(68, 0, 83, 0.8);
  backdrop-filter: blur(4px);
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item:hover .directions_item__top .right_side img {
  transform: rotate(42deg);
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__top .left_side span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--color-white);
}
@media (max-width: 991px) {
  .directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__top .left_side span {
    font-size: 12px;
  }
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__top .left_side span span {
  font-size: 12px;
  color: #999898;
}
@media (max-width: 991px) {
  .directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__top .left_side span span {
    font-size: 10px;
  }
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__top .left_side p {
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--color-white);
  margin: 10px 0 0 0;
}
@media (max-width: 1300px) {
  .directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__top .left_side p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__top .left_side p {
    font-size: 20px;
  }
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__top .right_side {
  margin: 0 0 0 5px;
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__top .right_side img {
  display: block;
  width: 44px;
  height: 44px;
  min-width: 44px;
  object-fit: contain;
  transition: 0.3s all ease;
}
@media (max-width: 1300px) {
  .directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__top .right_side img {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
@media (max-width: 991px) {
  .directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__top .right_side img {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__bottom {
  position: relative;
  z-index: 2;
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__bottom p {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--color-white);
  margin: 9px 0 0 0;
}
@media (max-width: 1300px) {
  .directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__bottom p {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__bottom p {
    font-size: 12px;
    margin: 5px 0 0 0;
  }
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item .directions_item__bottom p span {
  color: #919191;
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item--image-mob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: none;
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item--link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.directions_slider__wrapper .directions_slider .slider_item .directions_item--white .directions_item__bottom p {
  color: #fff;
}
.directions_slider__wrapper button.prev.disabled,
.directions_slider__wrapper button.next.disabled {
  opacity: 0;
  pointer-events: none;
}

.section_help {
  padding: 60px 0;
}
@media (max-width: 991px) {
  .section_help {
    padding: 30px 0;
  }
}
.section_help h2 {
  text-align: center;
}
@media (max-width: 991px) {
  .section_help h2 br {
    display: none;
  }
}
.section_help .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 100px;
}
@media (max-width: 991px) {
  .section_help .nav-tabs {
    margin: 0 0 25px;
  }
}
@media (max-width: 1300px) {
  .section_help .nav-tabs li {
    margin: 5px;
  }
}
@media (max-width: 991px) {
  .section_help .nav-tabs li {
    width: 100%;
  }
}
.section_help .nav-tabs li:nth-child(2) {
  margin: 0 42px;
}
@media (max-width: 1300px) {
  .section_help .nav-tabs li:nth-child(2) {
    margin: 5px;
  }
}
.section_help .nav-tabs li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Martian Mono", sans-serif;
  font-weight: 200;
  font-size: 18px;
  color: var(--color-white);
  padding: 14px 20px;
  border: 1px solid var(--border-grey);
  border-radius: 100px;
  background: var(--bg-transparent);
}
@media (max-width: 1300px) {
  .section_help .nav-tabs li a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .section_help .nav-tabs li a {
    padding: 15px;
  }
}
.section_help .nav-tabs li a:hover, .section_help .nav-tabs li a.active {
  color: var(--color-black);
  background: var(--color-white);
}
.section_help .help_item {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .section_help .help_item {
    display: block;
  }
}
.section_help .help_item .left_side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 423px;
  min-height: 100%;
}
@media (max-width: 1300px) {
  .section_help .help_item .left_side {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .section_help .help_item .left_side {
    max-width: 100%;
    margin: 0 0 38px;
  }
}
.section_help .help_item .left_side p {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
  margin: 0 0 20px;
}
@media (max-width: 1300px) {
  .section_help .help_item .left_side p {
    font-size: 24px;
    margin: 0 0 10px;
  }
}
@media (max-width: 991px) {
  .section_help .help_item .left_side p {
    font-size: 22px;
  }
}
.section_help .help_item .left_side span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--color-white);
  margin: 0 0 30px;
}
@media (max-width: 1300px) {
  .section_help .help_item .left_side span {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .section_help .help_item .left_side span {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.section_help .help_item .left_side .btn {
  min-width: 100%;
}
@media (max-width: 1300px) {
  .section_help .help_item .left_side .btn {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .section_help .help_item .left_side .btn {
    display: none;
  }
}
.section_help .help_item .right_side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: calc(100% - 500px);
}
@media (max-width: 1300px) {
  .section_help .help_item .right_side {
    width: calc(100% - 470px);
  }
}
@media (max-width: 991px) {
  .section_help .help_item .right_side {
    width: 100%;
  }
}
.section_help .help_item .right_side .image_wrapper {
  position: relative;
}
@media (max-width: 991px) {
  .section_help .help_item .right_side .image_wrapper {
    margin: 0 0 16px;
  }
}
.section_help .help_item .right_side .image_wrapper img {
  display: block;
  width: 100%;
  box-shadow: 0 4px 55px 0 #370053;
  border: 1px solid #CBACDA;
  border-radius: 6px;
}
.section_help .help_item .right_side .image_wrapper .help_decor {
  position: absolute;
  bottom: -11px;
  left: -49px;
  width: 108%;
  height: 116.5%;
  max-width: 110%;
  z-index: -1;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (max-width: 1141px) {
  .section_help .help_item .right_side .image_wrapper .help_decor {
    bottom: -11px;
    left: -43px;
    width: 111%;
    height: 118%;
    max-width: 115%;
  }
}
@media (max-width: 991px) {
  .section_help .help_item .right_side .image_wrapper .help_decor {
    width: 105%;
    height: 117%;
  }
}
@media (max-width: 767px) {
  .section_help .help_item .right_side .image_wrapper .help_decor {
    width: 109%;
    height: 118%;
  }
}
@media screen and (max-width: 550px) {
  .section_help .help_item .right_side .image_wrapper .help_decor {
    width: 107%;
    height: 117%;
    bottom: -6px;
    left: -24px;
  }
}
.section_help .help_item .right_side .btn {
  display: none;
  min-width: 100%;
}
@media (max-width: 991px) {
  .section_help .help_item .right_side .btn {
    display: inline-flex;
  }
}
.section_help .help_item .right_side .btn img {
  width: 40px;
}

.section_join {
  padding: 60px 0;
}
@media (max-width: 991px) {
  .section_join {
    padding: 30px 0;
  }
}

.join_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .join_wrapper {
    display: block;
  }
}
.join_wrapper .left_side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 260px;
  min-height: 100%;
  padding: 50px 0 30px 0;
}
@media (max-width: 991px) {
  .join_wrapper .left_side {
    max-width: 100%;
    padding: 0;
    margin: 0 0 20px;
    flex-direction: initial;
    align-items: center;
  }
}
.join_wrapper .left_side img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .join_wrapper .left_side img {
    max-width: 100px;
    order: 2;
  }
}
.join_wrapper .left_side blockquote {
  width: 100%;
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--color-white);
  position: relative;
}
@media (max-width: 1300px) {
  .join_wrapper .left_side blockquote {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .join_wrapper .left_side blockquote {
    font-size: 13px;
    max-width: 150px;
  }
}
@media (max-width: 991px) {
  .join_wrapper .left_side blockquote br {
    display: none;
  }
}
.join_wrapper .left_side blockquote span {
  font-size: 30px;
}
@media (max-width: 1300px) {
  .join_wrapper .left_side blockquote span {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .join_wrapper .left_side blockquote span {
    font-size: 20px;
  }
}
.join_wrapper .middle_side {
  width: calc(100% - 520px);
}
@media (max-width: 991px) {
  .join_wrapper .middle_side {
    width: 100%;
    margin: -70px 0 15px 0;
  }
}
.join_wrapper .middle_side .video_wrapper {
  width: 164px;
  height: 164px;
  padding: 15px;
  margin: 0 auto 5px;
  border: 1px solid var(--border-grey);
  border-radius: 50%;
}
@media (max-width: 991px) {
  .join_wrapper .middle_side .video_wrapper {
    margin: 0 auto 10px;
    width: 144px;
    height: 144px;
    padding: 13px;
  }
}
.join_wrapper .middle_side .video_wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.join_wrapper .middle_side p {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 400;
  font-size: 34px;
  text-align: center;
  color: var(--color-white);
  margin: 0 0 46px;
}
@media (max-width: 1300px) {
  .join_wrapper .middle_side p {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .join_wrapper .middle_side p {
    font-size: 18px;
    margin: 0 0 10px;
  }
}
.join_wrapper .middle_side p span {
  border-bottom: 1px solid var(--color-white);
}
.join_wrapper .middle_side .btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .join_wrapper .middle_side .btn_wrapper {
    margin: 30px 0 0 0;
  }
}
.join_wrapper .middle_side .btn_wrapper .btn {
  width: 100%;
  max-width: 420px;
}
@media (max-width: 991px) {
  .join_wrapper .middle_side .btn_wrapper .btn {
    max-width: 100%;
  }
}
.join_wrapper .right_side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 260px;
  min-height: 100%;
  padding: 30px 0 50px 0;
}
@media (max-width: 991px) {
  .join_wrapper .right_side {
    max-width: 100%;
    padding: 0;
  }
}
.join_wrapper .right_side img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .join_wrapper .right_side img {
    display: none;
  }
}
.join_wrapper .right_side blockquote {
  width: 100%;
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #fff;
  text-align: right;
  color: var(--color-white);
}
@media (max-width: 1300px) {
  .join_wrapper .right_side blockquote {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .join_wrapper .right_side blockquote {
    font-size: 13px;
  }
}
.join_wrapper .right_side blockquote span {
  font-size: 30px;
  line-height: 1;
}
@media (max-width: 1300px) {
  .join_wrapper .right_side blockquote span {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .join_wrapper .right_side blockquote span {
    font-size: 20px;
  }
}

.section_how {
  padding: 60px 0 0 0;
  position: relative;
}
@media (max-width: 991px) {
  .section_how {
    padding: 30px 0;
  }
}
.section_how:before {
  content: "";
  position: absolute;
  top: 400px;
  right: 0;
  width: 180px;
  height: 500px;
  background: url("../img/how_decoration.png") right no-repeat;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 991px) {
  .section_how:before {
    width: 80px;
    height: 250px;
    top: 580px;
  }
}
.section_how .marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin: 0 0 20px;
}
.section_how .marquee span {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 180px;
  line-height: 145px;
  background: linear-gradient(180deg, #febc7d 0%, #6b71d2 35%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  animation: marquee2 5s linear infinite;
  padding: 0 30px 0 0;
  opacity: 0.44;
}
@media (max-width: 1300px) {
  .section_how .marquee span {
    font-size: 140px;
    line-height: 0.9;
  }
}
@media (max-width: 991px) {
  .section_how .marquee span {
    font-size: 73px;
  }
}
.section_how .tabs_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper {
    display: block;
  }
}
.section_how .tabs_wrapper .nav-tabs {
  display: block;
  width: calc(50% - 10px);
  padding: 0 0 120px;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .nav-tabs {
    display: none;
  }
}
.section_how .tabs_wrapper .nav-tabs li {
  position: relative;
  counter-increment: orderedListCounter;
  padding: 0 0 0 76px;
  margin: 0 0 60px;
}
@media (max-width: 1300px) {
  .section_how .tabs_wrapper .nav-tabs li {
    padding: 0 0 0 60px;
  }
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .nav-tabs li {
    margin: 0;
    padding: 0 0 0 46px;
    min-width: 330px;
  }
}
.section_how .tabs_wrapper .nav-tabs li:before {
  content: "0" counter(orderedListCounter);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-grey);
  font-family: "Martian Mono", sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  background: linear-gradient(180deg, #febc7d 0%, #6b71d2 82.5%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1300px) {
  .section_how .tabs_wrapper .nav-tabs li:before {
    font-size: 16px;
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .nav-tabs li:before {
    font-size: 14px;
    width: 36px;
    height: 36px;
  }
}
.section_how .tabs_wrapper .nav-tabs li:after {
  content: "";
  position: absolute;
  top: 56px;
  left: 28px;
  width: 1px;
  height: calc(100% + 4px);
  background: var(--border-grey);
}
@media (max-width: 1300px) {
  .section_how .tabs_wrapper .nav-tabs li:after {
    top: 45px;
    left: 23px;
    height: calc(100% + 15px);
  }
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .nav-tabs li:after {
    content: none;
  }
}
.section_how .tabs_wrapper .nav-tabs li:nth-last-child(1) {
  margin: 0;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .nav-tabs li:nth-last-child(1) {
    margin: 0;
  }
}
.section_how .tabs_wrapper .nav-tabs li:nth-last-child(1):after {
  content: none;
}
.section_how .tabs_wrapper .nav-tabs li a {
  display: block;
  padding: 0;
}
.section_how .tabs_wrapper .nav-tabs li a span {
  display: block;
  font-family: "Martian Mono", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--color-4698);
  margin: 0 0 18px;
  transition: 0.3s all ease;
}
@media (max-width: 1300px) {
  .section_how .tabs_wrapper .nav-tabs li a span {
    font-size: 20px;
    margin: 0 0 15px;
  }
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .nav-tabs li a span {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.section_how .tabs_wrapper .nav-tabs li a small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--color-4698);
  transition: 0.3s all ease;
}
@media (max-width: 1300px) {
  .section_how .tabs_wrapper .nav-tabs li a small {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .nav-tabs li a small {
    font-size: 14px;
  }
}
.section_how .tabs_wrapper .nav-tabs li a:hover span, .section_how .tabs_wrapper .nav-tabs li a.active span {
  color: #b680c7;
}
.section_how .tabs_wrapper .nav-tabs li a:hover small, .section_how .tabs_wrapper .nav-tabs li a.active small {
  color: var(--color-white);
}
.section_how .tabs_wrapper .tab-content {
  width: calc(50% - 10px);
  position: sticky;
  top: 100px;
  right: 0;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content {
    position: static;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane {
    display: block;
    margin: 0 0 25px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .mobile_content {
  display: none;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .mobile_content {
    display: block;
    margin: 0 0 20px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .mobile_content p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-grey);
  font-family: "Martian Mono", sans-serif;
  font-weight: 200;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  background: linear-gradient(180deg, #febc7d 0%, #6b71d2 82.5%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 16px;
}
.section_how .tabs_wrapper .tab-content .tab-pane .mobile_content h5 {
  font-family: "Martian Mono", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-4698);
  margin: 0 0 15px;
  transition: 0.3s all ease;
}
.section_how .tabs_wrapper .tab-content .tab-pane .mobile_content span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--color-4698);
  transition: 0.3s all ease;
}
.section_how .tabs_wrapper .tab-content .tab-pane .image_wrapper {
  margin: 0 0 15px;
}
.section_how .tabs_wrapper .tab-content .tab-pane .image_wrapper img {
  display: block;
  width: 100%;
  box-shadow: 0 4px 55px 0 #370053;
  border: 1px solid rgba(232, 232, 232, 0.4);
  border-radius: 5px;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .image_wrapper img {
    filter: grayscale(100%);
    transition: 0.3s all ease;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper {
  padding: 77px 16px 0;
  background: url("../img/second_item__bg.jpg") top center no-repeat;
  background-size: cover;
  width: 100%;
  box-shadow: 0 4px 55px 0 #370053;
  border: 1px solid rgba(232, 232, 232, 0.4);
  border-radius: 5px;
  margin: 0 0 15px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper {
    filter: grayscale(100%);
    transition: 0.3s all ease;
    padding: 57px 16px 0;
    border-radius: 6px;
  }
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper {
    padding: 40px 10px 0;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper p {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 700;
  font-size: 55px;
  text-transform: uppercase;
  color: #d9d9d9;
  opacity: 0.44;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper p {
    font-size: 33px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item .video_wrapper {
  position: absolute;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 0 12px;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item .video_wrapper {
    margin: 0 0 7px;
    border-radius: 3px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item .video_wrapper:nth-child(1) {
  bottom: 43px;
  left: 6%;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item .video_wrapper:nth-child(1) {
    bottom: 27px;
    left: 1%;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item .video_wrapper:nth-last-child(1) {
  bottom: 95px;
  right: 10%;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item .video_wrapper:nth-last-child(1) {
    right: 3%;
    bottom: 60px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item .video_wrapper:nth-last-child(1) video {
  width: 87px;
  height: 73px;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item .video_wrapper:nth-last-child(1) video {
    width: 55px;
    height: 45px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item .video_wrapper video {
  display: block;
  width: 110px;
  height: 93px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item .video_wrapper video {
    width: 70px;
    height: 60px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item img {
  display: block;
  border-radius: 8px 8px 0 0;
  width: 100%;
  max-width: 320px;
  height: 220px;
  object-fit: contain;
  object-position: bottom;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .first_item__wrapper .first_item__item img {
    border-radius: 5px 5px 0 0;
    max-width: 225px;
    height: 160px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper {
  padding: 44px 16px 11px;
  background: url("../img/second_item__bg.jpg") top center no-repeat;
  background-size: cover;
  width: 100%;
  box-shadow: 0 4px 55px 0 #370053;
  border: 1px solid rgba(232, 232, 232, 0.4);
  border-radius: 5px;
  margin: 0 0 15px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper {
    filter: grayscale(100%);
    transition: 0.3s all ease;
    padding: 28px 10px 7px;
    border-radius: 6px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper p {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 700;
  font-size: 55px;
  text-transform: uppercase;
  color: #d9d9d9;
  opacity: 0.44;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper p {
    font-size: 33px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper .second_item__item {
  background: #fff;
  border-radius: 5px;
  padding: 17px 15px 24px;
  position: relative;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper .second_item__item {
    padding: 10px 10px 15px;
    border-radius: 3px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper .second_item__item .video_wrapper {
  border-radius: 2px;
  overflow: hidden;
  margin: 0 0 12px;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper .second_item__item .video_wrapper {
    margin: 0 0 7px;
    border-radius: 1px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper .second_item__item .video_wrapper video {
  display: block;
  width: 100%;
  height: 157px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper .second_item__item .video_wrapper video {
    height: 100px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper .second_item__item ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper .second_item__item ul li {
  border: 1px solid #707070;
  border-radius: 100px;
  padding: 7px 14px;
  font-family: "Martian Mono", sans-serif;
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 1.2;
  line-height: 1.2;
  color: #707070;
  margin: 0 4px;
  min-height: 33px;
}
@media (max-width: 1141px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper .second_item__item ul li {
    font-size: 12px;
    letter-spacing: 1.1;
  }
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper .second_item__item ul li {
    font-size: 10px;
    padding: 4px 8px;
    min-height: 23px;
    margin: 0 3px;
    letter-spacing: 1;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper .second_item__item img {
  display: block;
  position: absolute;
  right: 7px;
  bottom: 37px;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .second_item__wrapper .second_item__item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    right: 10px;
    bottom: 46px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper {
  padding: 47px 16px 8px;
  background: url("../img/second_item__bg.jpg") top center no-repeat;
  background-size: cover;
  width: 100%;
  box-shadow: 0 4px 55px 0 #370053;
  border: 1px solid rgba(232, 232, 232, 0.4);
  border-radius: 5px;
  margin: 0 0 15px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper {
    filter: grayscale(100%);
    transition: 0.3s all ease;
    border-radius: 6px;
  }
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper {
    padding: 30px 10px 5px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper p {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 700;
  font-size: 55px;
  text-transform: uppercase;
  color: #d9d9d9;
  opacity: 0.44;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper p {
    font-size: 33px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper .third_item__item {
  padding: 21px 30px 28px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper .third_item__item {
    padding: 15px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper .third_item__item span {
  display: block;
  font-weight: 600;
  font-size: 22px;
  color: #1e1e1e;
  margin: 0 0 4px;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper .third_item__item span {
    font-size: 15px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper .third_item__item small {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: #707070;
  margin: 0 0 21px;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper .third_item__item small {
    font-size: 12px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper .third_item__item .form_imitation {
  position: relative;
  padding: 9px 12px;
  background: #ececec;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  color: #1e1e1e;
  height: 117px;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper .third_item__item .form_imitation {
    height: 74px;
    padding: 5px 10px;
    font-size: 12px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper .third_item__item .form_imitation img {
  position: absolute;
  top: 7px;
  left: 159px;
  display: block;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .third_item__wrapper .third_item__item .form_imitation img {
    left: 110px;
    top: 4px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper {
  padding: 47px 16px 8px;
  background: url("../img/second_item__bg.jpg") top center no-repeat;
  background-size: cover;
  width: 100%;
  box-shadow: 0 4px 55px 0 #370053;
  border: 1px solid rgba(232, 232, 232, 0.4);
  border-radius: 5px;
  margin: 0 0 15px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper {
    filter: grayscale(100%);
    transition: 0.3s all ease;
    border-radius: 6px;
  }
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper {
    padding: 30px 10px 5px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper p {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 700;
  font-size: 55px;
  text-transform: uppercase;
  color: #d9d9d9;
  opacity: 0.44;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper p {
    font-size: 33px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper .fourth_item__item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper .fourth_item__item .video_wrapper {
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper .fourth_item__item .video_wrapper {
    border-radius: 3px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper .fourth_item__item .video_wrapper:nth-child(1) {
  transform: rotate(16deg);
}
.section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper .fourth_item__item .video_wrapper:nth-last-child(1) {
  transform: rotate(-23deg);
  margin: 0 0 -40px;
}
.section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper .fourth_item__item .video_wrapper video {
  display: block;
  width: 163px;
  height: 222px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper .fourth_item__item .video_wrapper video {
    width: 103px;
    height: 141px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper .fourth_item__item .video_wrapper img {
  display: block;
  width: 163px;
  height: 222px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .fourth_item__wrapper .fourth_item__item .video_wrapper img {
    width: 103px;
    height: 141px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane .btn_wrapper {
    display: none;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane .btn_wrapper .btn {
  width: 100%;
  max-width: 420px;
}
.section_how .tabs_wrapper .tab-content .tab-pane:nth-last-child(1) .btn_wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane:nth-last-child(1) {
    margin: 0;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane.current .mobile_content {
  display: none;
}
@media (max-width: 991px) {
  .section_how .tabs_wrapper .tab-content .tab-pane.current .mobile_content {
    display: block;
    margin: 0 0 20px;
  }
}
.section_how .tabs_wrapper .tab-content .tab-pane.current .mobile_content h5 {
  color: #b680c7;
}
.section_how .tabs_wrapper .tab-content .tab-pane.current .mobile_content span {
  color: var(--color-white);
}
.section_how .tabs_wrapper .tab-content .tab-pane.current .image_wrapper img {
  filter: none;
}
.section_how .tabs_wrapper .tab-content .tab-pane.current .second_item__wrapper,
.section_how .tabs_wrapper .tab-content .tab-pane.current .first_item__wrapper,
.section_how .tabs_wrapper .tab-content .tab-pane.current .third_item__wrapper,
.section_how .tabs_wrapper .tab-content .tab-pane.current .fourth_item__wrapper {
  filter: none;
}

.section_feedback {
  padding: 60px 15px 0 15px;
}
@media (max-width: 991px) {
  .section_feedback {
    padding: 30px 15px 0 15px;
  }
}
.section_feedback .section_feedback__wrapper {
  border: 1px solid var(--border-grey);
  border-radius: 10px;
  background: rgba(107, 113, 210, 0.2);
  position: relative;
}
.section_feedback .section_feedback__wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: url("../img/before_decoration.png") left no-repeat;
  background-size: contain;
  z-index: 1;
}
.section_feedback .section_feedback__wrapper .feedback_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 45px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper {
    padding: 30px 0;
  }
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .left_side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 100%;
  width: 100%;
  max-width: 480px;
  padding: 0 0 43px;
}
@media (max-width: 1300px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .left_side {
    max-width: 350px;
  }
}
@media (max-width: 991px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .left_side {
    max-width: 100%;
    margin: 0 0 20px;
    padding: 0;
  }
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .left_side h3 {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.28535;
  color: var(--color-e9);
  margin: 0 0 10px;
}
@media (max-width: 1300px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .left_side h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .left_side h3 {
    font-size: 20px;
  }
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .left_side p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
}
@media (max-width: 1300px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .left_side p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .left_side p br {
    display: none;
  }
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side {
  width: calc(100% - 500px);
}
@media (max-width: 1300px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .right_side {
    width: calc(100% - 365px);
  }
}
@media (max-width: 991px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .right_side {
    width: 100%;
  }
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .input_wrapper {
  width: 100%;
  margin: 0 0 12px;
}
@media (max-width: 991px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .input_wrapper {
    margin: 0 0 10px;
  }
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .input_wrapper input {
  display: block;
  width: 100%;
  height: 76px;
  background: #fff;
  border-radius: 5px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #999;
  padding: 0 35px;
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .input_wrapper input {
    font-size: 16px;
    height: 60px;
    padding: 0 20px;
  }
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .input_wrapper input:focus, .section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .input_wrapper input:hover {
  color: #000;
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .inputs_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .inputs_wrapper .input_wrapper {
  width: calc(50% - 6px);
}
@media (max-width: 991px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .inputs_wrapper .input_wrapper {
    width: 100%;
  }
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .btn {
  min-width: 100%;
  min-height: 81px;
  margin: 18px 0 0 0;
}
@media (max-width: 991px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .btn {
    min-height: 50px;
  }
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 19px 0 0 0;
}
@media (max-width: 991px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .check {
    margin: 15px 0 0 0;
  }
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .check p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  margin: 0 0 0 10px;
}
@media (max-width: 991px) {
  .section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .check p {
    font-size: 14px;
  }
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .check p a {
  text-decoration: underline;
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .check p a:hover {
  text-decoration: none;
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  transition: all 0.3s ease;
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .check input:checked ~ .checkmark:after {
  opacity: 1;
  visibility: visible;
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .check .checkmark {
  position: relative;
  height: 24px;
  width: 24px;
  min-width: 24px;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 2px;
  border: 1px solid var(--color-white);
}
.section_feedback .section_feedback__wrapper .feedback_wrapper .right_side .check .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  left: 50%;
  top: 43%;
  width: 6px;
  height: 12px;
  border: solid var(--color-white);
  border-width: 0 1px 1px 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.section_feedback--catalog {
  padding: 0 15px 0 15px;
}
@media (max-width: 991px) {
  .section_feedback--catalog {
    padding: 0 0 0 0;
  }
}

.section_project {
  padding: 120px 0 80px 0;
  background: url("../img/projects_bg.png") top no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section_project {
    padding: 60px 0;
  }
}
.section_project:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 150px;
  height: 280px;
  background: url("../img/project_decoration_1.png") left no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .section_project:before {
    content: none;
  }
}
.section_project .container {
  position: relative;
}
@media (max-width: 991px) {
  .section_project .container {
    display: flex;
    flex-direction: column;
  }
}
.section_project .project_content {
  width: 100%;
  max-width: 755px;
  margin: 0 0 130px;
  position: relative;
  z-index: 4;
}
@media (max-width: 991px) {
  .section_project .project_content {
    max-width: 100%;
    margin: 0 0 30px;
    order: 1;
  }
}
.section_project .project_content h2 {
  margin: 0 0 26px;
}
@media (max-width: 991px) {
  .section_project .project_content h2 {
    text-align: center;
    font-size: 20px;
    margin: 0 0 15px;
  }
}
@media (max-width: 767px) {
  .section_project .project_content h2 br {
    display: none;
  }
}
.section_project .project_content h2 small {
  font-weight: 300;
}
@media (max-width: 991px) {
  .section_project .project_content h2 small {
    display: block;
  }
}
.section_project .project_content p {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-white);
  margin: 0 0 54px;
}
@media (max-width: 991px) {
  .section_project .project_content p {
    font-size: 16px;
    text-align: center;
    margin: 0;
  }
}
@media (max-width: 991px) {
  .section_project .project_content .btn {
    display: none;
  }
}
.section_project .project_info {
  margin: 0 0 17px;
  position: relative;
  z-index: 4;
}
@media (max-width: 991px) {
  .section_project .project_info {
    margin: 25px 0 0 0;
    order: 3;
  }
}
.section_project .project_info .project_info__item {
  width: 46%;
}
@media (max-width: 991px) {
  .section_project .project_info .project_info__item {
    width: 100%;
  }
}
.section_project .project_info .project_info__item p {
  font-family: "Martian Mono", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-white);
  position: relative;
  z-index: 4;
}
@media (max-width: 991px) {
  .section_project .project_info .project_info__item p {
    font-size: 14px;
    font-weight: 300;
  }
}
.section_project .project_info:nth-last-child(1) {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
@media (max-width: 991px) {
  .section_project .project_info:nth-last-child(1) {
    order: 5;
    margin: 25px 0 0 0;
  }
}
.section_project .project_info:nth-last-child(1) .project_info__item {
  position: relative;
  width: 50%;
}
@media (max-width: 991px) {
  .section_project .project_info:nth-last-child(1) .project_info__item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }
}
.section_project .project_info:nth-last-child(1) .project_info__item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);
  height: 400px;
  width: calc(100% + 100px);
  background: url("../img/project_shadow.png") center no-repeat;
  background-size: contain;
  z-index: 3;
}
@media (max-width: 1300px) {
  .section_project .project_info:nth-last-child(1) .project_info__item:before {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .section_project .project_info:nth-last-child(1) .project_info__item:before {
    content: none;
  }
}
@media (max-width: 991px) {
  .section_project .project_info:nth-last-child(1) .project_info__item p {
    text-align: right;
  }
}
.section_project .btn_mob {
  display: none;
}
@media (max-width: 991px) {
  .section_project .btn_mob {
    display: block;
    margin: 25px 0 0 0;
    order: 4;
  }
}
.section_project .btn_mob .btn {
  min-width: 100%;
}
.section_project .project_decoration {
  display: block;
  position: absolute;
  top: 80px;
  right: -15px;
  width: 800px;
  object-fit: contain;
  z-index: 2;
}
@media (max-width: 1300px) {
  .section_project .project_decoration {
    max-width: 60%;
    right: 0;
  }
}
@media (max-width: 991px) {
  .section_project .project_decoration {
    position: static;
    max-width: 100%;
    order: 2;
    margin: 0 0 20px;
    max-height: 350px;
  }
}
.section_project .project_decoration--light {
  display: none;
}

.section_catalog__main {
  padding: 70px 0 50px 0;
  position: relative;
}
@media (max-width: 991px) {
  .section_catalog__main {
    padding: 30px 0 17px 0;
  }
}
.section_catalog__main .container {
  position: relative;
  z-index: 2;
}
.section_catalog__main:before {
  content: "";
  position: absolute;
  top: -180px;
  left: 0;
  width: 100%;
  height: calc(100% + 180px);
  background: url("../img/main_bg.png") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -2;
}
.section_catalog__main:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.3841911765) 40%, rgba(8, 8, 8, 0.8659838936) 100%);
  z-index: -1;
}
.section_catalog__main .catalog_main__content {
  width: 100%;
  max-width: 730px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1141px) {
  .section_catalog__main .catalog_main__content {
    max-width: 590px;
  }
}
@media (max-width: 991px) {
  .section_catalog__main .catalog_main__content {
    max-width: 100%;
  }
}
.section_catalog__main .catalog_main__content h1 {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 500;
  font-size: 42px;
  color: var(--color-e9);
  margin: 0 0 35px;
}
@media (max-width: 1141px) {
  .section_catalog__main .catalog_main__content h1 {
    font-size: 34px;
  }
}
@media (max-width: 991px) {
  .section_catalog__main .catalog_main__content h1 {
    font-size: 25px;
    margin: 0 0 15px;
  }
}
.section_catalog__main .catalog_main__content p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
  margin: 0 0 50px;
}
@media (max-width: 1141px) {
  .section_catalog__main .catalog_main__content p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .section_catalog__main .catalog_main__content p {
    font-size: 16px;
    margin: 0 0 15px;
  }
}
@media (max-width: 991px) {
  .section_catalog__main .catalog_main__content p br {
    display: none;
  }
}
.section_catalog__main .catalog_main__content .mob_image {
  display: none;
}
@media (max-width: 991px) {
  .section_catalog__main .catalog_main__content .mob_image {
    display: block;
  }
}
.section_catalog__main .catalog_main__content .mob_image img {
  display: block;
  width: 100%;
  transform: scaleX(-1) rotate(5deg);
  max-height: 350px;
  object-fit: contain;
}
.section_catalog__main .catalog_main__content ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .section_catalog__main .catalog_main__content ul {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .section_catalog__main .catalog_main__content ul {
    justify-content: flex-start;
  }
}
.section_catalog__main .catalog_main__content ul li {
  margin: 0 18px 15px 0;
}
@media (max-width: 1300px) {
  .section_catalog__main .catalog_main__content ul li {
    margin: 0 10px 10px 0;
  }
}
@media (max-width: 767px) {
  .section_catalog__main .catalog_main__content ul li {
    margin: 0 7px 15px 0;
  }
}
.section_catalog__main .catalog_main__content ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 24px;
  border: 1px solid var(--border-grey);
  background: var(--bg-transparent);
  border-radius: 100px;
  font-family: "Martian Mono", sans-serif;
  font-weight: 200;
  font-size: 20px;
  color: var(--color-white);
}
@media (max-width: 1141px) {
  .section_catalog__main .catalog_main__content ul li a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .section_catalog__main .catalog_main__content ul li a {
    font-size: 14px;
    padding: 12px 14px;
  }
}
.section_catalog__main .catalog_main__content ul li a:hover {
  background: rgba(107, 113, 210, 0.6);
  border-color: rgba(107, 113, 210, 0.6);
}
.section_catalog__main .image_wrapper {
  position: absolute;
  bottom: 0;
  right: 15px;
  width: 50%;
  height: calc(100% + 40px);
  z-index: 1;
}
@media (max-width: 991px) {
  .section_catalog__main .image_wrapper {
    display: none;
  }
}
.section_catalog__main .image_wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right;
}
.section_catalog__main .catalog_decoration {
  position: absolute;
  bottom: 60px;
  right: 0;
  display: block;
  object-fit: contain;
  z-index: 1;
}
@media screen and (max-width: 1500px) {
  .section_catalog__main .catalog_decoration {
    width: 120px;
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .section_catalog__main .catalog_decoration {
    width: 100px;
    bottom: initial;
    top: 475px;
  }
}

.section_catalog {
  padding: 50px 0;
}
@media (max-width: 991px) {
  .section_catalog {
    padding: 17px 0 30px 0;
  }
}
.section_catalog .catalog_search {
  width: 100%;
  position: relative;
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .section_catalog .catalog_search {
    margin: 0 0 20px;
  }
}
.section_catalog .catalog_search:hover p {
  opacity: 0;
  visibility: hidden;
}
.section_catalog .catalog_search input {
  display: block;
  width: 100%;
  background: var(--bg-17);
  border: 1px solid var(--border-grey);
  border-radius: 41px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-white);
  height: 57px;
  padding: 0 35px;
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .section_catalog .catalog_search input {
    padding: 0 24px;
    font-size: 16px;
  }
}
.section_catalog .catalog_search input:focus ~ p, .section_catalog .catalog_search input:not(:placeholder-shown) ~ p {
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  .section_catalog .catalog_search input::placeholder {
    color: transparent;
  }
}
.section_catalog .catalog_search p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-white);
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .section_catalog .catalog_search p {
    display: none;
  }
}
.section_catalog .catalog_search p svg {
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0 19px 0 0;
}
@media (max-width: 991px) {
  .section_catalog .catalog_search p svg {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
  }
}
.section_catalog .catalog_search p svg path {
  stroke: var(--color-white);
}
.section_catalog .catalog_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.section_catalog .catalog_wrapper .left_side {
  width: 100%;
  max-width: 378px;
}
@media (max-width: 1141px) {
  .section_catalog .catalog_wrapper .left_side {
    max-width: 325px;
  }
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .left_side {
    max-width: 100%;
    margin: 0 0 25px;
  }
}
.section_catalog .catalog_wrapper .left_side .filters_btn {
  display: none;
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .left_side .filters_btn {
    display: block;
  }
}
.section_catalog .catalog_wrapper .left_side .filters_btn .filter_init {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
  padding: 14px 50px;
  background: rgba(107, 113, 210, 0.2);
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  position: relative;
}
.section_catalog .catalog_wrapper .left_side .filters_btn .filter_init svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
}
.section_catalog .catalog_wrapper .left_side .filters_btn .filter_init svg path {
  fill: var(--color-white);
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper {
  padding: 35px 0;
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  backdrop-filter: blur(40px);
  background: rgba(107, 113, 210, 0.2);
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .left_side .filters_wrapper {
    display: none;
    margin: 20px 0 0 0;
  }
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper h5 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--color-white);
  margin: 0 0 36px;
  padding: 0 25px;
}
@media (max-width: 1141px) {
  .section_catalog .catalog_wrapper .left_side .filters_wrapper h5 {
    font-size: 22px;
    margin: 0 0 20px;
  }
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .left_side .filters_wrapper h5 {
    margin: 0;
  }
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper h5 svg {
  display: block;
  width: 30px;
  min-width: 30px;
  margin: 0 21px 0 0;
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper h5 svg path {
  fill: var(--color-white);
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item {
  padding: 30px 40px 30px 25px;
  border-bottom: 1px solid var(--border-grey);
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item {
    padding: 30px 30px 30px 25px;
  }
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item:nth-last-child(1) {
  padding: 30px 25px 0 25px;
  border: none;
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item h4 {
  font-family: "Martian Mono", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--color-white);
  margin: 0 0 30px;
}
@media (max-width: 1141px) {
  .section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item h4 {
    font-size: 21px;
    margin: 0 0 20px;
  }
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 22px;
  text-transform: lowercase;
  color: var(--color-white);
}
@media (max-width: 1141px) {
  .section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item p {
    font-size: 18px;
  }
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item .radio_wrapper .form-group {
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item .radio_wrapper .form-group {
    margin: 0 0 15px;
  }
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item .radio_wrapper .form-group:nth-last-child(1) {
  margin: 0;
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item .radio_wrapper input[type=radio] {
  display: none;
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item .radio_wrapper label {
  cursor: pointer;
  position: relative;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 22px;
  text-transform: lowercase;
  color: var(--color-white);
  padding: 0 0 0 31px;
}
@media (max-width: 1141px) {
  .section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item .radio_wrapper label {
    font-size: 18px;
  }
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item .radio_wrapper label::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid var(--border-grey);
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: border-color 400ms ease;
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item .radio_wrapper label::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #6b71d2;
  border: 1px solid #6b71d2;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0);
  transition: transform 400ms ease;
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item .radio_wrapper input[type=radio]:checked + label::before {
  border-color: #fff;
  background: #fff;
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item .radio_wrapper input[type=radio]:checked + label::after {
  transform: translateY(-50%) scale(0.7);
}
.section_catalog .catalog_wrapper .left_side .filters_wrapper .filter_item .range_slider {
  margin: 55px 0 30px 0;
}
.section_catalog .catalog_wrapper .right_side {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc(100% - 394px);
  position: sticky;
  top: 100px;
  right: 0;
}
@media (max-width: 1141px) {
  .section_catalog .catalog_wrapper .right_side {
    width: calc(100% - 340px);
  }
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .right_side {
    width: 100%;
  }
}
.section_catalog .catalog_wrapper .right_side .catalog_item {
  border: 1px solid var(--border-grey);
  border-radius: 5px;
  background: var(--bg-10);
  width: calc(50% - 7px);
  margin: 0 0 14px;
  padding: 15px 30px 30px 25px;
  min-height: 100%;
  position: relative;
}
@media (max-width: 1141px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item {
    width: 100%;
    padding: 15px 25px 30px 25px;
  }
}
.section_catalog .catalog_wrapper .right_side .catalog_item .catalog_num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--color-white);
  border: 1px solid var(--border-grey);
  border-radius: 100px;
  padding: 8px 14px;
  margin: 0 0 15px;
}
@media (max-width: 1141px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item .catalog_num {
    margin: 0 0 8px;
  }
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item .catalog_num {
    margin: 0 0 15px;
  }
}
.section_catalog .catalog_wrapper .right_side .catalog_item .catalog_num small {
  font-size: 12px;
  color: #999898;
}
.section_catalog .catalog_wrapper .right_side .catalog_item p {
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--color-white);
  margin: 0 0 16px;
}
@media (max-width: 1141px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item p {
    font-size: 20px;
    margin: 0 0 8px;
  }
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item p {
    font-size: 24px;
    margin: 0 0 15px;
  }
}
.section_catalog .catalog_wrapper .right_side .catalog_item img {
  display: block;
  width: 100%;
  height: 135px;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  border: 1px solid var(--border-grey);
  margin: 0 0 30px;
}
@media (max-width: 1141px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item img {
    height: 115px;
    margin: 0 0 8px;
  }
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item img {
    height: 135px;
    margin: 0 0 30px;
  }
}
.section_catalog .catalog_wrapper .right_side .catalog_item ul li {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--color-white);
  margin: 0 0 9px;
}
@media (max-width: 1300px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item ul li {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item ul li {
    font-size: 12px;
    margin: 0 0 5px;
  }
}
.section_catalog .catalog_wrapper .right_side .catalog_item ul li span {
  color: #b7b7b7;
}
.section_catalog .catalog_wrapper .right_side .catalog_item .btn_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 30px 0 0 0;
}
@media (max-width: 1141px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item .btn_wrapper {
    margin: 15px 0 0 0;
  }
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item .btn_wrapper {
    margin: 30px 0 0 0;
  }
}
.section_catalog .catalog_wrapper .right_side .catalog_item .btn_wrapper span {
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
  transition: 0.3s all ease;
}
@media (max-width: 1141px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item .btn_wrapper span {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .section_catalog .catalog_wrapper .right_side .catalog_item .btn_wrapper span {
    font-size: 20px;
  }
}
.section_catalog .catalog_wrapper .right_side .catalog_item:hover .btn_wrapper span {
  border-color: transparent;
}
.section_catalog .catalog_wrapper .right_side .catalog_item--link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section_catalog .catalog_more {
  display: none;
}
@media (max-width: 991px) {
  .section_catalog .catalog_more {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.section_catalog .catalog_more a {
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
.section_catalog .catalog_more a:hover {
  border-color: transparent;
}

.section_advantages {
  padding: 200px 0 20px 0;
  background: url("../img/projects_bg.png") top no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 991px) {
  .section_advantages {
    padding: 60px 0 20px 0;
  }
}
.section_advantages:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.38) 40%, rgba(8, 8, 8, 0.86) 100%);
  z-index: 1;
}
.section_advantages:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.38) 40%, rgba(8, 8, 8, 0.86) 100%);
  z-index: 1;
}
.section_advantages .advantages_decoration {
  position: absolute;
  top: 100px;
  left: 0;
  display: block;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_advantages .advantages_decoration {
    width: 100px;
  }
}
.section_advantages .container {
  position: relative;
  z-index: 3;
}
.section_advantages .advantages_wrapper {
  padding: 0 0 140px;
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper {
    padding: 0 0 60px;
  }
}
.section_advantages .advantages_wrapper .advantages_item .advantages_item__wrapp {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_item .advantages_item__wrapp {
    display: inline-flex;
    position: relative;
  }
}
.section_advantages .advantages_wrapper .advantages_item .advantages_item__wrapp .image_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  min-width: 57px;
  border-radius: 50%;
  border: 1px solid #6b71d2;
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_item .advantages_item__wrapp .image_wrapper {
    position: absolute;
    width: 49px;
    height: 49px;
    min-width: 49px;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    background: #080808;
  }
}
.section_advantages .advantages_wrapper .advantages_item .advantages_item__wrapp .image_wrapper img {
  display: block;
}
.section_advantages .advantages_wrapper .advantages_item .advantages_item__wrapp p {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #6b71d2;
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #6b71d2;
  border-radius: 41px;
  padding: 12px 30px;
  min-height: 100%;
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_item .advantages_item__wrapp p {
    font-size: 14px;
    padding: 12px 18px;
  }
}
.section_advantages .advantages_wrapper .advantages_items__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 43px;
  padding: 0 33px 0 140px;
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_items__top {
    display: block;
    padding: 0 0 0 16px;
    margin: 0 0 24px;
  }
}
.section_advantages .advantages_wrapper .advantages_items__top .advantages_item:nth-child(1) {
  margin: -33px 0 0 0;
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_items__top .advantages_item:nth-child(1) {
    margin: 0 0 23px;
  }
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_items__top .advantages_item:nth-last-child(1) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.section_advantages .advantages_wrapper .advantages_items__middle {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 75px;
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_items__middle {
    flex-wrap: wrap;
    margin: 0 0 65px;
  }
}
.section_advantages .advantages_wrapper .advantages_items__middle .advantages_item {
  width: 27%;
}
@media (max-width: 1141px) {
  .section_advantages .advantages_wrapper .advantages_items__middle .advantages_item {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_items__middle .advantages_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    order: 3;
    margin: 0 0 -25px;
  }
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_items__middle .advantages_item:nth-last-child(1) {
    order: 2;
    margin: 0;
  }
}
.section_advantages .advantages_wrapper .advantages_items__middle .advantages_text {
  width: 45%;
}
@media (max-width: 1141px) {
  .section_advantages .advantages_wrapper .advantages_items__middle .advantages_text {
    width: 40%;
  }
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_items__middle .advantages_text {
    width: 100%;
    order: 1;
    margin: 0 0 65px;
  }
}
.section_advantages .advantages_wrapper .advantages_items__middle .advantages_text p {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-align: center;
  color: var(--color-white);
  margin: 0 0 31px;
}
@media (max-width: 1300px) {
  .section_advantages .advantages_wrapper .advantages_items__middle .advantages_text p {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_items__middle .advantages_text p {
    margin: 0 0 25px;
  }
}
.section_advantages .advantages_wrapper .advantages_items__middle .advantages_text a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--color-white);
}
@media (max-width: 1300px) {
  .section_advantages .advantages_wrapper .advantages_items__middle .advantages_text a {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_items__middle .advantages_text a {
    font-size: 20px;
  }
}
.section_advantages .advantages_wrapper .advantages_items__middle .advantages_text a span {
  transition: 0.3s all ease;
  border-bottom: 1px solid var(--color-white);
}
.section_advantages .advantages_wrapper .advantages_items__middle .advantages_text a img {
  display: block;
  transition: 0.3s all ease;
  width: 44px;
  height: 44px;
  min-width: 44px;
  margin: 0 0 0 16px;
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_items__middle .advantages_text a img {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
.section_advantages .advantages_wrapper .advantages_items__middle .advantages_text a:hover span {
  border-color: transparent;
}
.section_advantages .advantages_wrapper .advantages_items__middle .advantages_text a:hover img {
  transform: rotate(42deg);
}
.section_advantages .advantages_wrapper .advantages_items__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .section_advantages .advantages_wrapper .advantages_items__bottom {
    justify-content: flex-start;
    padding: 0 0 0 20px;
  }
}
.section_advantages .marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 2;
}
.section_advantages .marquee span {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 180px;
  line-height: 145px;
  background: linear-gradient(180deg, #febc7d 0%, #6b71d2 35%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  animation: marquee2 5s linear infinite;
  padding: 0 30px 0 0;
  opacity: 0.44;
}
@media (max-width: 1300px) {
  .section_advantages .marquee span {
    font-size: 140px;
    line-height: 0.9;
  }
}
@media (max-width: 991px) {
  .section_advantages .marquee span {
    font-size: 73px;
  }
}

.section_profession__main {
  padding: 40px 0 150px 0;
  position: relative;
}
@media (max-width: 991px) {
  .section_profession__main {
    padding: 30px 0;
  }
}
.section_profession__main .prof_before {
  position: absolute;
  bottom: 20px;
  left: 0;
  display: block;
  object-fit: contain;
  z-index: 1;
}
@media (max-width: 991px) {
  .section_profession__main .prof_before {
    width: 100px;
    bottom: initial;
    top: 0;
    width: 40px;
  }
}
.section_profession__main .prof_after {
  position: absolute;
  top: 50px;
  right: 0;
  display: block;
  object-fit: contain;
  z-index: 1;
}
@media (max-width: 991px) {
  .section_profession__main .prof_after {
    width: 40px;
    bottom: initial;
    top: 60px;
  }
}
.section_profession__main .container {
  position: relative;
  z-index: 2;
}
.section_profession__main:before {
  content: "";
  position: absolute;
  top: -180px;
  left: 0;
  width: 100%;
  height: calc(100% + 180px);
  background: url("../img/main_bg.png") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -2;
}
.section_profession__main:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.3841911765) 40%, rgba(8, 8, 8, 0.8659838936) 100%);
  z-index: -1;
}
.section_profession__main .profession_main__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section_profession__main .profession_main__wrapper .left_side {
  width: calc((100% - 575px) / 2);
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .left_side {
    order: 2;
    width: 46%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.section_profession__main .profession_main__wrapper .left_side .images_wrapper {
  position: relative;
  width: 210px;
  height: 210px;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .left_side .images_wrapper {
    width: initial;
    height: initial;
  }
}
.section_profession__main .profession_main__wrapper .left_side .images_wrapper img {
  display: block;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .left_side .images_wrapper img {
    width: initial;
    max-height: 250px;
  }
}
.section_profession__main .profession_main__wrapper .left_side .images_wrapper .animated_image {
  width: initial;
  height: initial;
  position: absolute;
  bottom: -12px;
  right: -79px;
  animation: moveInSquare 8s linear infinite;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .left_side .images_wrapper .animated_image {
    animation: none;
    bottom: -40px;
    right: -40px;
  }
}
.section_profession__main .profession_main__wrapper .middle_side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 568px;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .middle_side {
    max-width: 100%;
    order: 1;
    margin: 0 0 32px;
  }
}
.section_profession__main .profession_main__wrapper .middle_side span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 14px;
  border: 1px solid var(--border-grey);
  background: var(--bg-transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 100px;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--color-white);
  min-height: 42px;
  transform: rotate(3deg);
  margin: 0 0 -15px;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .middle_side span {
    font-size: 14px;
    min-height: 40px;
    margin: 0 0 -6px;
  }
}
.section_profession__main .profession_main__wrapper .middle_side h1 {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.31985;
  text-align: center;
  color: var(--color-e9);
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .middle_side h1 {
    font-size: 23px;
    margin: 0;
  }
}
.section_profession__main .profession_main__wrapper .middle_side h1 b {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
}
.section_profession__main .profession_main__wrapper .middle_side p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: var(--color-white);
  margin: 0 0 27px;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .middle_side p {
    font-size: 16px;
  }
}
.section_profession__main .profession_main__wrapper .middle_side p a {
  font-weight: 700;
  border-bottom: 1px solid var(--color-white);
}
.section_profession__main .profession_main__wrapper .middle_side p a:hover {
  border-color: transparent;
}
.section_profession__main .profession_main__wrapper .middle_side .btn {
  min-width: 380px;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .middle_side .btn {
    min-width: 100%;
  }
}
.section_profession__main .profession_main__wrapper .right_side {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 575px) / 2);
  padding: 40px 0 0 0;
}
@media (max-width: 1141px) {
  .section_profession__main .profession_main__wrapper .right_side {
    padding: 40px 0 0 0;
  }
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .right_side {
    order: 3;
    width: 50%;
  }
}
.section_profession__main .profession_main__wrapper .right_side .images_wrapper {
  position: relative;
  width: 137px;
  height: 147px;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .right_side .images_wrapper {
    width: initial;
    height: initial;
  }
}
.section_profession__main .profession_main__wrapper .right_side .images_wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .right_side .images_wrapper img {
    max-height: 250px;
  }
}
.section_profession__main .profession_main__wrapper .right_side .images_wrapper .animated_image {
  width: initial;
  height: initial;
  position: absolute;
  bottom: -18px;
  right: -12px;
  animation: moveInSquare2 14s linear infinite;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper .right_side .images_wrapper .animated_image {
    animation: none;
    bottom: -30px;
    right: -15px;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .left_side {
  width: calc((100% - 600px) / 2);
  padding: 120px 0 0 0;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .left_side {
    order: 2;
    width: 46%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .left_side .images_wrapper {
  position: relative;
  width: 100%;
  height: initial;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .left_side .images_wrapper {
    width: initial;
    height: initial;
  }
}
@media (max-width: 1141px) {
  .section_profession__main .profession_main__wrapper.modeling_main .left_side .images_wrapper {
    width: 200px;
  }
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .left_side .images_wrapper {
    width: 100%;
    max-width: 160px;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .left_side .images_wrapper img {
  display: block;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .left_side .images_wrapper img {
    width: initial;
    max-height: 250px;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .left_side .images_wrapper img.first_arr {
  width: initial;
  position: absolute;
  top: 0;
  left: 20px;
  animation: expandArrow 1.5s linear infinite alternate;
}
@media (max-width: 1141px) {
  .section_profession__main .profession_main__wrapper.modeling_main .left_side .images_wrapper img.first_arr {
    top: -3px;
    left: 15px;
    width: 80px;
  }
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .left_side .images_wrapper img.first_arr {
    top: -1px;
    width: 50px;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .left_side .images_wrapper img.second_arr {
  width: initial;
  position: absolute;
  bottom: 87px;
  right: 50px;
  animation: expandArrow 1.5s linear infinite alternate;
}
@media (max-width: 1141px) {
  .section_profession__main .profession_main__wrapper.modeling_main .left_side .images_wrapper img.second_arr {
    bottom: 60px;
    right: 35px;
    width: 30px;
  }
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .left_side .images_wrapper img.second_arr {
    bottom: 48px;
    right: 25px;
    width: 25px;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .middle_side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 600px;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .middle_side {
    max-width: 100%;
    order: 1;
    margin: 0 0 32px;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .middle_side span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 14px;
  border: 1px solid var(--border-grey);
  background: var(--bg-transparent);
  backdrop-filter: blur(4px);
  border-radius: 100px;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--color-white);
  min-height: 42px;
  transform: rotate(3deg);
  margin: 0 0 -5px;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .middle_side span {
    font-size: 14px;
    min-height: 40px;
    margin: 0 0 -6px;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .middle_side h1 {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.31985;
  text-align: center;
  color: var(--color-e9);
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .middle_side h1 {
    font-size: 19px;
    margin: 0;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .middle_side h1 b {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
}
.section_profession__main .profession_main__wrapper.modeling_main .right_side {
  width: calc((100% - 600px) / 2);
  padding: 40px 0 0 0;
}
@media (max-width: 1141px) {
  .section_profession__main .profession_main__wrapper.modeling_main .right_side {
    padding: 40px 0 0 0;
  }
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .right_side {
    order: 3;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 0 0;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .right_side .images_wrapper {
  position: relative;
  width: 100%;
}
@media (max-width: 1141px) {
  .section_profession__main .profession_main__wrapper.modeling_main .right_side .images_wrapper {
    min-width: 200px;
  }
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .right_side .images_wrapper {
    min-width: initial;
    width: 100%;
    max-width: 160px;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .right_side .images_wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .right_side .images_wrapper img {
    max-height: 250px;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .right_side .images_wrapper img.first_arr {
  width: initial;
  position: absolute;
  top: -3px;
  right: 45px;
  animation: expandArrow 1.5s linear infinite alternate;
}
@media (max-width: 1141px) {
  .section_profession__main .profession_main__wrapper.modeling_main .right_side .images_wrapper img.first_arr {
    height: 80px;
    top: -4px;
    right: 37px;
  }
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .right_side .images_wrapper img.first_arr {
    height: 60px;
    top: -2px;
    right: 30px;
  }
}
.section_profession__main .profession_main__wrapper.modeling_main .right_side .images_wrapper img.second_arr {
  width: initial;
  position: absolute;
  bottom: -16px;
  left: 40px;
  animation: expandArrow 1.5s linear infinite alternate;
}
@media (max-width: 1141px) {
  .section_profession__main .profession_main__wrapper.modeling_main .right_side .images_wrapper img.second_arr {
    bottom: 28px;
    left: 18px;
  }
}
@media (max-width: 991px) {
  .section_profession__main .profession_main__wrapper.modeling_main .right_side .images_wrapper img.second_arr {
    width: 50px;
    bottom: 13px;
  }
}
.section_profession__main .profession_main__wrapper.ux_main .left_side {
  padding: 0;
}
.section_profession__main .profession_main__wrapper.ux_main .left_side .images_wrapper {
  width: 100%;
  height: initial;
}
.section_profession__main .profession_main__wrapper.ux_main .right_side {
  padding: 0;
}
.section_profession__main .profession_main__wrapper.ux_main .right_side .images_wrapper {
  width: 100%;
  height: initial;
}
.section_profession__main.section_profession__game {
  padding: 0;
}
@media (max-width: 991px) {
  .section_profession__main.section_profession__game {
    padding: 0;
  }
}
.section_profession__main.section_profession__game .profession_main__wrapper {
  justify-content: center;
  padding: 40px 0 250px 0;
  background: url("../img/game_bg.png") center no-repeat;
  background-size: contain;
  z-index: 1;
}
@media (max-width: 991px) {
  .section_profession__main.section_profession__game .profession_main__wrapper {
    padding: 30px 0 80px 0;
    background: url("../img/game_bg.png") bottom no-repeat;
    background-size: contain;
  }
}
.section_profession__main.section_profession__game .profession_main__wrapper .middle_side {
  max-width: 670px;
}
.section_profession__main.section_profession__game .profession_main__wrapper .middle_side .btn {
  background: #212336;
  border: 1px solid rgba(101, 101, 101, 0.22);
  color: #fff;
}
.section_profession__main.section_profession__motion .profession_main__wrapper {
  justify-content: center;
  z-index: 1;
}
.section_profession__main.section_profession__motion .profession_main__wrapper .middle_side {
  max-width: 670px;
}
.section_profession__main.section_profession__motion .profession_main__wrapper .middle_side .btn {
  background: #212336;
  border: 1px solid rgba(101, 101, 101, 0.22);
  color: #fff;
}
.section_profession__main.section_profession__motion .motion_bg {
  display: block;
  position: absolute;
  bottom: -160px;
  left: 0;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
}
@media (max-width: 1141px) {
  .section_profession__main.section_profession__motion .motion_bg {
    bottom: -20px;
  }
}
@media (max-width: 991px) {
  .section_profession__main.section_profession__motion .motion_bg {
    bottom: -50px;
  }
}
.section_profession__main--roblox {
  padding: 0;
}
@media (max-width: 991px) {
  .section_profession__main--roblox {
    padding: 30px 0;
  }
}
.section_profession__main--roblox .profession_main__wrapper {
  align-items: initial;
}
.section_profession__main--roblox .profession_main__wrapper .left_side {
  padding: 0;
  width: calc((100% - 600px) / 2);
}
@media (max-width: 991px) {
  .section_profession__main--roblox .profession_main__wrapper .left_side {
    width: 50%;
  }
}
.section_profession__main--roblox .profession_main__wrapper .left_side .images_wrapper {
  width: 100%;
  height: 100%;
}
.section_profession__main--roblox .profession_main__wrapper .left_side .images_wrapper img {
  height: 100%;
}
.section_profession__main--roblox .profession_main__wrapper .left_side .images_wrapper img.roblox--light {
  display: none;
}
.section_profession__main--roblox .profession_main__wrapper .middle_side {
  max-width: 600px;
  padding: 40px 0 150px 0;
}
@media (max-width: 991px) {
  .section_profession__main--roblox .profession_main__wrapper .middle_side {
    max-width: 100%;
    padding: 0;
  }
}
.section_profession__main--roblox .profession_main__wrapper .right_side {
  padding: 0;
  width: calc((100% - 600px) / 2);
}
@media (max-width: 991px) {
  .section_profession__main--roblox .profession_main__wrapper .right_side {
    width: 50%;
  }
}
.section_profession__main--roblox .profession_main__wrapper .right_side .images_wrapper {
  width: 100%;
  height: 100%;
}
.section_profession__main--roblox .profession_main__wrapper .right_side .images_wrapper img {
  height: 100%;
}
.section_profession__main--roblox .profession_main__wrapper .right_side .images_wrapper img.roblox--light {
  display: none;
}

.section_profession__about {
  padding: 0 0 45px;
  position: relative;
  z-index: 2;
  margin: -100px 0 0 0;
}
@media (max-width: 991px) {
  .section_profession__about {
    margin: 0;
    padding: 30px 0;
  }
}
@media (max-width: 991px) {
  .section_profession__about.section_profession__game {
    margin: -50px 0 0 0;
  }
}
.section_profession__about .row {
  margin: -5px;
}
.section_profession__about .row [class*=col-] {
  padding: 5px;
}
.section_profession__about .profession_about__left {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 22px 33px 22px 22px;
  border: 1px solid var(--border-grey);
  border-radius: 3px;
  box-shadow: inset 5px -5px 21px 0 rgba(255, 255, 255, 0.13);
  background: var(--bg-10);
  min-height: 100%;
}
@media (max-width: 1141px) {
  .section_profession__about .profession_about__left {
    padding: 24px 15px;
  }
}
@media (max-width: 991px) {
  .section_profession__about .profession_about__left {
    padding: 20px 30px 20px 20px;
  }
}
.section_profession__about .profession_about__left .content_side {
  width: calc(100% - 100px);
}
@media (max-width: 1141px) {
  .section_profession__about .profession_about__left .content_side {
    width: calc(100% - 75px);
  }
}
@media (max-width: 991px) {
  .section_profession__about .profession_about__left .content_side {
    width: calc(100% - 60px);
  }
}
.section_profession__about .profession_about__left .content_side p {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 100px;
  line-height: 1.31985;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 9px;
}
@media (max-width: 1141px) {
  .section_profession__about .profession_about__left .content_side p {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .section_profession__about .profession_about__left .content_side p {
    font-size: 90px;
    margin: 0 0 6px;
  }
}
.section_profession__about .profession_about__left .content_side span {
  display: block;
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.31985;
  color: var(--color-white);
}
@media (max-width: 1141px) {
  .section_profession__about .profession_about__left .content_side span {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .section_profession__about .profession_about__left .content_side span {
    font-size: 16px;
  }
}
.section_profession__about .profession_about__left .images_wrapper {
  display: flex;
  flex-direction: column;
  width: 63px;
}
@media (max-width: 991px) {
  .section_profession__about .profession_about__left .images_wrapper {
    width: 56px;
  }
}
.section_profession__about .profession_about__left .images_wrapper img {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 63px;
  border-radius: 50%;
  border: 1px solid rgba(232, 232, 232, 0.4);
  margin: -16px 0 0 0;
}
@media (max-width: 991px) {
  .section_profession__about .profession_about__left .images_wrapper img {
    height: 56px;
  }
}
.section_profession__about .profession_about__left .images_wrapper img:nth-child(1) {
  margin: 0;
}
.section_profession__about .profession_about__middle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-white);
  border-radius: 5px;
  padding: 25px 38px 0 25px;
  min-height: 100%;
  overflow: hidden;
}
@media (max-width: 1141px) {
  .section_profession__about .profession_about__middle {
    padding: 24px 15px 0 15px;
  }
}
@media (max-width: 991px) {
  .section_profession__about .profession_about__middle {
    padding: 20px 30px 0 20px;
    min-height: 230px;
  }
}
.section_profession__about .profession_about__middle p {
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.31985;
  color: var(--color-black);
}
@media (max-width: 1141px) {
  .section_profession__about .profession_about__middle p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .section_profession__about .profession_about__middle p {
    font-size: 15px;
  }
}
.section_profession__about .profession_about__middle p:nth-child(2) {
  text-align: right;
  margin: 16px 0;
}
.section_profession__about .profession_about__middle span {
  display: block;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 0.75;
  text-transform: uppercase;
  color: var(--color-black);
}
@media (max-width: 1141px) {
  .section_profession__about .profession_about__middle span {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .section_profession__about .profession_about__middle span {
    font-size: 80px;
    margin: 0 0 -10px;
  }
}
.section_profession__about .profession_about__right {
  padding: 22px 33px 22px 22px;
  border: 1px solid var(--border-grey);
  border-radius: 3px;
  box-shadow: inset 5px -5px 21px 0 rgba(255, 255, 255, 0.13);
  background: var(--bg-10);
  min-height: 100%;
}
@media (max-width: 1141px) {
  .section_profession__about .profession_about__right {
    padding: 24px 15px;
  }
}
@media (max-width: 991px) {
  .section_profession__about .profession_about__right {
    padding: 20px 10px 20px 20px;
  }
}
.section_profession__about .profession_about__right p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 100px;
  line-height: 1.31985;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 8px;
}
@media (max-width: 1141px) {
  .section_profession__about .profession_about__right p {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .section_profession__about .profession_about__right p {
    font-size: 90px;
  }
}
.section_profession__about .profession_about__right p img {
  display: block;
  width: 120px;
  min-width: 120px;
  object-fit: contain;
  margin: 0 0 0 20px;
}
@media (max-width: 1141px) {
  .section_profession__about .profession_about__right p img {
    width: 110px;
    min-width: 110px;
    margin: 0 0 0 10px;
  }
}
.section_profession__about .profession_about__right span {
  display: block;
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.31985;
  color: var(--color-white);
  position: relative;
}
@media (max-width: 1141px) {
  .section_profession__about .profession_about__right span {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .section_profession__about .profession_about__right span {
    font-size: 16px;
  }
}
.section_profession__about .profession_about__right span img {
  display: block;
  position: absolute;
  top: -30px;
  right: 130px;
}

.section_profession__learn {
  padding: 45px 0 90px 0;
  min-height: 80vh;
}
@media (max-width: 991px) {
  .section_profession__learn {
    padding: 30px 0;
    height: 100vh;
    min-height: initial;
  }
}
.section_profession__learn h2 {
  text-align: center;
}
@media (max-width: 991px) {
  .section_profession__learn h2 {
    text-align: left;
    padding: 0 15px;
  }
}

.profession_wrapper {
  position: relative;
  height: 570px;
}
@media (max-width: 991px) {
  .profession_wrapper {
    height: 100%;
  }
}
.profession_wrapper .profession_item {
  position: absolute;
  width: 100%;
  height: 570px;
  z-index: var(--z-index, 1);
}
@media (max-width: 991px) {
  .profession_wrapper .profession_item {
    top: 180px;
    height: 430px;
  }
}
.profession_wrapper .profession_item:nth-child(n) {
  --z-index: calc(1 + var(--order, 0));
}
.profession_wrapper .profession_item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border-top: 1px solid var(--border-grey);
  border-right: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
  border-radius: 3px;
  background: var(--color-0f);
  z-index: -1;
}
@media (max-width: 991px) {
  .profession_wrapper .profession_item:before {
    content: none;
  }
}
@media (max-width: 991px) {
  .profession_wrapper .profession_item .container {
    width: 100%;
    height: 100%;
  }
}
.profession_wrapper .profession_item .profession_slider__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 37px 90px 32px 90px;
  width: 100%;
  max-width: 50%;
}
@media (max-width: 1300px) {
  .profession_wrapper .profession_item .profession_slider__content {
    padding: 35px 40px;
  }
}
@media (max-width: 991px) {
  .profession_wrapper .profession_item .profession_slider__content {
    max-width: 100%;
    border: 1px solid var(--border-grey);
    background: var(--color-0f);
    border-radius: 5px 5px 2px 2px;
    padding: 25px 16px;
    height: 100%;
  }
}
.profession_wrapper .profession_item .profession_slider__content--game {
  padding: 37px 90px 32px 35px;
}
@media (max-width: 1300px) {
  .profession_wrapper .profession_item .profession_slider__content--game {
    padding: 35px 40px;
  }
}
@media (max-width: 991px) {
  .profession_wrapper .profession_item .profession_slider__content--game {
    padding: 25px 16px;
  }
}
.profession_wrapper .profession_item .profession_slider__content .top_side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 65px;
}
@media (max-width: 991px) {
  .profession_wrapper .profession_item .profession_slider__content .top_side {
    margin: 0 0 35px;
  }
}
.profession_wrapper .profession_item .profession_slider__content .top_side span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--color-white);
  border: 1px solid var(--border-grey);
  border-radius: 100px;
  padding: 8px 14px;
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .profession_wrapper .profession_item .profession_slider__content .top_side span {
    margin: 0 0 15px;
  }
}
.profession_wrapper .profession_item .profession_slider__content .top_side span small {
  font-size: 12px;
  color: #999898;
}
.profession_wrapper .profession_item .profession_slider__content .top_side h5 {
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 26px;
  text-align: center;
  color: var(--color-white);
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .profession_wrapper .profession_item .profession_slider__content .top_side h5 {
    font-size: 20px;
    margin: 0 0 15px;
  }
}
.profession_wrapper .profession_item .profession_slider__content .top_side p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  color: var(--color-c7);
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .profession_wrapper .profession_item .profession_slider__content .top_side p {
    font-size: 16px;
    margin: 0 0 50px;
  }
}
.profession_wrapper .profession_item .profession_slider__content .top_side .btn {
  width: 100%;
  max-width: 380px;
}
@media (max-width: 991px) {
  .profession_wrapper .profession_item .profession_slider__content .top_side .btn {
    max-width: 100%;
  }
}
.profession_wrapper .profession_item .profession_slider__content .mouse_icn {
  display: block;
  margin: 0 auto;
}
.profession_wrapper .profession_item.opacity {
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  opacity: 0.6;
}
.profession_wrapper .profession_slider__image {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
}
@media (max-width: 991px) {
  .profession_wrapper .profession_slider__image {
    position: static;
    width: calc(100% - 30px);
    margin: 0 auto;
    height: 200px;
  }
}

.section_path {
  padding: 90px 0 0 0;
  position: relative;
}
@media (max-width: 991px) {
  .section_path {
    padding: 30px 0 0 0;
  }
}
.section_path:before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 300px;
  height: 600px;
  background: url("../img/path_before.png") left no-repeat;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 991px) {
  .section_path:before {
    width: 100px;
    height: 200px;
    top: 215px;
  }
}
.section_path:after {
  content: "";
  position: absolute;
  top: 450px;
  right: 0;
  width: 240px;
  height: 450px;
  background: url("../img/path_after.png") right no-repeat;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 991px) {
  .section_path:after {
    content: none;
  }
}
.section_path h2 {
  text-align: center;
}
@media (max-width: 991px) {
  .section_path h2 {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item {
    filter: grayscale(100%);
    transition: 0.3s all ease;
  }
}
.section_path .path_wrapper .path_item .path_item__top {
  padding: 0 0 10px 33px;
  border-left: 2px solid var(--border-grey);
  margin: 0 0 26px;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__top {
    padding: 0 0 0 20px;
    margin: 0 0 15px;
  }
}
.section_path .path_wrapper .path_item .path_item__top p {
  font-family: "Martian Mono", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--color-white);
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__top p {
    font-size: 18px;
    margin: 0 0 10px;
    color: var(--color-4698);
    transition: 0.3s all ease;
  }
}
.section_path .path_wrapper .path_item .path_item__top p br {
  display: none;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__top p br {
    display: block;
  }
}
.section_path .path_wrapper .path_item .path_item__top span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--color-c7);
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__top span {
    font-size: 15px;
    color: var(--color-4698);
    transition: 0.3s all ease;
  }
}
@media (max-width: 767px) {
  .section_path .path_wrapper .path_item .path_item__top span br {
    display: none;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom {
  width: 100%;
  max-width: 527px;
  padding: 13px;
  background: var(--bg-10);
  border: 1px solid var(--border-grey);
  border-radius: 5px;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom {
    padding: 9px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper {
  padding: 0 0 0 30px;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper {
    padding: 0 0 0 10px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 2px;
  border-radius: 100px;
  background: var(--color-white);
  max-width: 370px;
  margin: 0 0 6px;
  opacity: 0.4;
  position: relative;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item {
    max-width: 260px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item:nth-last-child(1) {
  margin: 0;
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -14px;
  width: 4px;
  height: 100%;
  background: var(--color-white);
  border-radius: 4px;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item:before {
    width: 2px;
    left: -8px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .left_side {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .left_side .image_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  min-width: 41px;
  height: 41px;
  border-radius: 50%;
  background: var(--color-black);
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .left_side .image_wrapper {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .left_side .image_wrapper img {
  display: block;
  height: 25px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .left_side .image_wrapper img {
    height: 20px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .left_side small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--color-black);
  transition: 0.3s all ease;
  margin: 0 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 281px;
}
@media (max-width: 1141px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .left_side small {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .left_side small {
    font-size: 12px;
    margin: 0 0 0 7px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .right_side {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  min-width: 41px;
  height: 41px;
  border: 1px solid var(--color-black);
  border-radius: 50%;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .right_side {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .right_side svg {
  display: block;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .right_side svg {
    height: 13px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item .right_side svg path {
  fill: var(--color-black);
  transition: 0.3s all ease;
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active {
  max-width: 100%;
  opacity: 1;
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active .left_side .image_wrapper {
  width: 51px;
  min-width: 51px;
  height: 51px;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active .left_side .image_wrapper {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active .left_side .image_wrapper img {
  display: block;
  height: 25px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active .left_side .image_wrapper img {
    height: 20px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active .left_side small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--color-black);
  transition: 0.3s all ease;
  margin: 0 0 0 3px;
  max-width: 358px;
}
@media (max-width: 1141px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active .left_side small {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active .left_side small {
    font-size: 13px;
    margin: 0 0 0 7px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active .right_side {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  min-width: 51px;
  height: 51px;
  border: 1px solid var(--color-black);
  border-radius: 50%;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active .right_side {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active .right_side svg {
  display: block;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active .right_side svg {
    height: 13px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .program_details__wrapper .program_details__item.active .right_side svg path {
  fill: var(--color-black);
  transition: 0.3s all ease;
}
.section_path .path_wrapper .path_item .path_item__bottom .path_homework p {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--color-white);
  margin: 0 0 4px;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .path_homework p {
    font-size: 15px;
    margin: 0 0 2px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .path_homework span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-c7);
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item .path_item__bottom .path_homework span {
    font-size: 12px;
    margin: 0 0 12px;
  }
}
.section_path .path_wrapper .path_item .path_item__bottom .path_homework img {
  display: block;
  width: 100%;
  object-fit: contain;
  border-radius: 5px;
}
.section_path .path_wrapper .path_item .path_item__bottom .path_tasks img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.section_path .path_wrapper .path_item:nth-child(1) {
  width: 100%;
  max-width: 713px;
  margin: 0 70px 90px auto;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item:nth-child(1) {
    max-width: 100%;
    margin: 0 0 40px;
  }
}
.section_path .path_wrapper .path_item:nth-child(2) {
  width: 100%;
  max-width: 713px;
  margin: 0;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item:nth-child(2) {
    max-width: 100%;
    margin: 0 0 40px;
  }
}
.section_path .path_wrapper .path_item:nth-child(3) {
  width: 100%;
  max-width: 527px;
  margin: -50px 0 0 auto;
}
@media (max-width: 1141px) {
  .section_path .path_wrapper .path_item:nth-child(3) {
    margin: 90px 0 0 auto;
  }
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item:nth-child(3) {
    max-width: 100%;
    margin: 0;
  }
}
.section_path .path_wrapper .path_item:nth-child(3) .path_item__bottom {
  padding: 0;
}
.section_path .path_wrapper .path_item.current {
  filter: none;
}
@media (max-width: 991px) {
  .section_path .path_wrapper .path_item.current .path_item__top p {
    color: #b680c7;
  }
  .section_path .path_wrapper .path_item.current .path_item__top span {
    color: var(--color-white);
  }
}

.section_resume {
  padding: 140px 0 80px 0;
  position: relative;
}
@media (max-width: 991px) {
  .section_resume {
    padding: 60px 0 30px 0;
  }
}
.section_resume:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 140px);
  background: url("../img/resume_bg.png") top no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 991px) {
  .section_resume:before {
    height: 518px;
  }
}
.section_resume h2 {
  text-align: center;
  margin: 0 0 10px;
}
@media (max-width: 991px) {
  .section_resume h2 {
    text-align: left;
    font-size: 20px;
  }
}
.section_resume .resume_block {
  width: 100%;
  max-width: 1100px;
  position: relative;
  margin: 0 auto;
}
.section_resume .resume_block .resume_block__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 3px;
}
.section_resume .resume_block .resume_block__top p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Caveat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.0116;
  color: var(--color-white);
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_block__top p {
    font-size: 14px;
  }
}
.section_resume .resume_block .resume_block__top p svg {
  display: block;
  margin: 15px 0 0 5px;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_block__top p svg {
    width: 30px;
  }
}
.section_resume .resume_block .resume_block__top p svg path {
  stroke: var(--color-white);
}
.section_resume .resume_block .resume_block__top p:nth-last-child(1) {
  align-items: flex-start;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_block__top p:nth-last-child(1) {
    justify-content: flex-start;
  }
}
.section_resume .resume_block .resume_block__top p:nth-last-child(1) svg {
  margin: 30px 5px 0 0;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_block__top p:nth-last-child(1) svg {
    width: 45px;
    height: 50px;
    margin: 0 5px 0 0;
  }
}
.section_resume .resume_block .resume_wrapper {
  background: #f2f6fe;
  border-radius: 25px;
  padding: 12px 16px 25px;
  width: 100%;
  max-width: 890px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper {
    padding: 4px 6px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.29);
    backdrop-filter: blur(123.7555007935px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 265px;
    margin: 0 auto 44px;
    padding: 12px;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 30px 77px 0 56px;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content {
    flex-direction: column-reverse;
    justify-content: flex-start;
    padding: 26px 0 0 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: transparent;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content:after {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: url("../img/resume_phone.png") center no-repeat;
  background-size: cover;
  z-index: 1;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content:after {
    content: "";
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .left_side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 315px;
  min-height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .left_side {
    align-items: center;
    max-width: 100%;
    background: #000;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .left_side:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 15px);
  height: 100%;
  background: rgba(0, 0, 0, 0.93);
  border: 1px solid rgba(232, 232, 232, 0.4);
  border-radius: 5px;
  z-index: 1;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .left_side:before {
    content: none;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .left_side .left_side__top {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 20px;
  margin: 0 0 3px;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .left_side .left_side__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 14px 0;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .left_side .left_side__top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border: 1px solid rgba(232, 232, 232, 0.4);
  background: #1e1e1e;
  border-radius: 100px;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #fff;
  min-height: 32px;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .left_side .left_side__top span {
    font-size: 11px;
    padding: 3px 12px;
    min-height: 22px;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .left_side .left_side__top p {
  font-family: "Martian Mono", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  margin: 10px 0 0 0;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .left_side .left_side__top p {
    font-size: 15px;
    margin: 5px 0 0 0;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .left_side .tools_wrapper {
  display: none;
  position: absolute;
  bottom: 14px;
  left: 14px;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .left_side .tools_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .left_side .tools_wrapper img {
  display: block;
  width: 28px;
  height: 28px;
  margin: 7px 0 0 0;
}
.section_resume .resume_block .resume_wrapper .resume_content .left_side img {
  display: block;
  width: 100%;
  object-fit: contain;
  max-height: 450px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .left_side img {
    max-height: 180px;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .right_side {
  width: calc(100% - 360px);
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .right_side {
    width: 100%;
    padding: 0 12px 23px 12px;
    z-index: 2;
    position: relative;
    background: #fff;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .right_side h5 {
  font-family: "Martian Mono", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #1e1e1e;
  margin: 0 0 22px;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .right_side h5 {
    font-size: 16px;
    text-align: center;
    margin: 0 0 9px;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .right_side ul {
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .right_side ul {
    margin: 0;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .right_side ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #1e1e1e;
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .right_side ul li {
    align-items: flex-start;
    font-size: 11px;
    margin: 0 0 6px;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .right_side ul li:nth-last-child(1) {
  margin: 0;
}
.section_resume .resume_block .resume_wrapper .resume_content .right_side ul li .img_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1px solid rgba(24, 24, 24, 0.5);
  border-radius: 50%;
  margin: 0 18px 0 0;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .right_side ul li .img_wrapper {
    width: 15px;
    min-width: 15px;
    height: 15px;
    margin: 2px 5px 0 0;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .right_side ul li .img_wrapper img {
  display: block;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .right_side ul li .img_wrapper img {
    width: 8px;
    height: 8px;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .right_side p {
  font-family: "Martian Mono", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #1e1e1e;
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .right_side p {
    display: none;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .right_side .tools_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .right_side .tools_wrapper {
    display: none;
  }
}
.section_resume .resume_block .resume_wrapper .resume_content .right_side .tools_wrapper img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 10px 10px 0;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_wrapper .resume_content .right_side .tools_wrapper img {
    width: 19px;
    height: 19px;
    margin: 0 4px 4px 0;
  }
}
.section_resume .resume_block .resume_can {
  position: absolute;
  top: 160px;
  right: -60px;
  padding: 27px 11px 27px 23px;
  backdrop-filter: blur(16.0579509735px);
  box-shadow: -12px 37px 45px 0 rgba(81, 78, 120, 0.18), inset 1px 2px 0 0 rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 13px;
}
@media screen and (max-width: 1260px) {
  .section_resume .resume_block .resume_can {
    right: -10px;
    padding: 24px 15px;
  }
}
@media (max-width: 1141px) {
  .section_resume .resume_block .resume_can {
    display: none;
  }
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_can {
    display: block;
    position: static;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
  }
}
.section_resume .resume_block .resume_can h4 {
  font-family: "Martian Mono", sans-serif;
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #1e1e1e;
  margin: 0 0 16px;
}
@media screen and (max-width: 1260px) {
  .section_resume .resume_block .resume_can h4 {
    font-size: 18px;
    margin: 0 0 8px;
  }
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_can h4 {
    margin: 0 0 18px;
    color: var(--color-white);
  }
}
.section_resume .resume_block .resume_can ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_can ul {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}
.section_resume .resume_block .resume_can ul li {
  margin: 0 0 7px;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_can ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 15px;
  }
}
.section_resume .resume_block .resume_can ul li:nth-last-child(1) {
  margin: 0;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_can ul li:nth-child(even) {
    justify-content: flex-end;
  }
}
.section_resume .resume_block .resume_can ul li:nth-child(even) span {
  margin: 0 10px 0 0;
}
.section_resume .resume_block .resume_can ul li p {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #000;
  background: rgba(0, 0, 0, 0.13);
  border: 1px solid rgba(232, 232, 232, 0.4);
  border-radius: 100px;
  padding: 10px 11px;
}
@media screen and (max-width: 1260px) {
  .section_resume .resume_block .resume_can ul li p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_can ul li p {
    font-size: 14px;
    color: #fff;
    border: 1px solid var(--border-grey);
    background: var(--bg-transparent);
    color: var(--color-white);
  }
}
.section_resume .resume_block .resume_can ul li span {
  display: none;
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, 0.25);
  border-radius: 100px;
  width: 39px;
  height: 31px;
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 9px;
  color: #fff;
  background: url("../img/num_bg.png") center no-repeat;
  background-size: contain;
  margin: 0 0 0 10px;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_can ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.section_resume .resume_block .resume_sought {
  position: absolute;
  bottom: 85px;
  left: -60px;
  backdrop-filter: blur(18.90599823px);
  box-shadow: -14px 43px 53px 0 rgba(81, 78, 120, 0.18), inset 2px 2px 0 0 rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  padding: 28px 18px 18px 18px;
  z-index: 3;
}
@media screen and (max-width: 1260px) {
  .section_resume .resume_block .resume_sought {
    left: -10px;
  }
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_sought {
    position: relative;
    left: initial;
    bottom: initial;
    max-width: 340px;
    min-height: 78px;
    padding: 19px 6px 10px;
    margin: 0 auto 31px;
  }
}
.section_resume .resume_block .resume_sought img {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_sought img {
    width: 38px;
    height: 38px;
    top: -20px;
  }
}
.section_resume .resume_block .resume_sought svg {
  display: block;
  position: absolute;
  bottom: calc(100% + 34px);
  right: 60px;
  width: 93px;
}
@media (max-width: 1141px) {
  .section_resume .resume_block .resume_sought svg {
    display: none;
  }
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_sought svg {
    display: block;
    transform: scaleX(-1);
    bottom: calc(100% + 24px);
    width: 80px;
    height: 50px;
    right: 30%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(305deg) brightness(103%) contrast(101%);
  }
}
.section_resume .resume_block .resume_sought p {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #1e1e1e;
}
@media (max-width: 991px) {
  .section_resume .resume_block .resume_sought p {
    font-size: 16px;
  }
}
.section_resume .resume_block .macbook_bottom {
  margin: -15px 0 0 0;
  position: relative;
}
@media (max-width: 991px) {
  .section_resume .resume_block .macbook_bottom {
    display: none;
  }
}
.section_resume .resume_block .macbook_bottom img {
  display: block;
  width: 100%;
}
.section_resume .resume_block .macbook_bottom .shd_image {
  position: absolute;
  top: -50px;
  left: 0;
  z-index: -1;
  display: none;
}

.section_suitable {
  padding: 100px 0 90px 0;
  position: relative;
}
@media (max-width: 991px) {
  .section_suitable {
    padding: 30px 0;
  }
}
.section_suitable:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 677px;
  background: url("../img/suitable_before.png") left no-repeat;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 991px) {
  .section_suitable:before {
    width: 200px;
    height: 300px;
    top: 170px;
  }
}
.section_suitable:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 850px;
  height: 100%;
  background: url("../img/suitable_after.png") right no-repeat;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 991px) {
  .section_suitable:after {
    width: 200px;
    height: 300px;
    top: 450px;
  }
}
.section_suitable h2 {
  text-align: center;
}
.section_suitable .suitable_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section_suitable .suitable_wrapper .suitable_item {
  width: calc(33.3333333333% - 40px);
}
@media (max-width: 1141px) {
  .section_suitable .suitable_wrapper .suitable_item {
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 991px) {
  .section_suitable .suitable_wrapper .suitable_item {
    width: 100%;
    margin: 0 0 30px;
  }
}
.section_suitable .suitable_wrapper .suitable_item .image_wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 15px;
}
@media (max-width: 991px) {
  .section_suitable .suitable_wrapper .suitable_item .image_wrapper {
    width: 195px;
    height: 195px;
  }
}
.section_suitable .suitable_wrapper .suitable_item .image_wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section_suitable .suitable_wrapper .suitable_item .image_wrapper small {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(13deg);
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, 0.25);
  border-radius: 100px;
  width: 66px;
  height: 52px;
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  background: url("../img/num_bg.png") center no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .section_suitable .suitable_wrapper .suitable_item .image_wrapper small {
    font-size: 16px;
    width: 58px;
    height: 45px;
  }
}
.section_suitable .suitable_wrapper .suitable_item p {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 26px;
  text-align: center;
  line-height: 1.28535;
  color: var(--color-e9);
  margin: 0 0 7px;
}
@media (max-width: 1141px) {
  .section_suitable .suitable_wrapper .suitable_item p {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .section_suitable .suitable_wrapper .suitable_item p {
    font-size: 22px;
  }
}
.section_suitable .suitable_wrapper .suitable_item span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: var(--color-white);
}
@media (max-width: 1141px) {
  .section_suitable .suitable_wrapper .suitable_item span {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .section_suitable .suitable_wrapper .suitable_item span {
    font-size: 16px;
  }
}
@media (max-width: 1141px) {
  .section_suitable .suitable_wrapper .suitable_item br {
    display: none;
  }
}
@media (max-width: 991px) {
  .section_suitable .suitable_wrapper .suitable_item br {
    display: block;
  }
}
.section_suitable .suitable_wrapper .suitable_item:nth-child(2) {
  padding: 73px 0 0 0;
}
@media (max-width: 991px) {
  .section_suitable .suitable_wrapper .suitable_item:nth-child(2) {
    padding: 0;
  }
}
.section_suitable .suitable_wrapper .suitable_item:nth-child(2) .image_wrapper small {
  top: initial;
  bottom: 31px;
  right: initial;
  left: -15px;
  transform: rotate(0);
}
.section_suitable .suitable_wrapper .suitable_item:nth-last-child(1) .image_wrapper small {
  top: 46px;
  right: -30px;
}
.section_suitable .btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 0 0;
}
@media (max-width: 991px) {
  .section_suitable .btn_wrapper {
    margin: 30px 0 0 0;
  }
}
.section_suitable .btn_wrapper .btn {
  width: 100%;
  max-width: 380px;
}

.section_profession__course {
  padding: 90px 0 50px 0;
}
@media (max-width: 991px) {
  .section_profession__course {
    padding: 30px 0;
  }
}
.section_profession__course h2 {
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .section_profession__course h2 {
    text-align: center;
  }
}
.section_profession__course h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin: 0 0 35px;
}
@media (max-width: 991px) {
  .section_profession__course h5 {
    font-size: 18px;
    text-align: center;
    margin: 0 0 8px;
  }
}
@media (max-width: 991px) {
  .section_profession__course h5 br {
    display: none;
  }
}
.section_profession__course .hand_wrapper {
  margin: 0 0 10px;
  display: none;
}
@media (max-width: 991px) {
  .section_profession__course .hand_wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.section_profession__course .hand_wrapper svg {
  display: block;
}
.section_profession__course .profession_course__wrapper {
  position: relative;
}
.section_profession__course .profession_course__wrapper .profession_course__item {
  background: var(--bg-10);
  border: 1px solid var(--border-grey);
  border-radius: 5px;
  padding: 30px 60px 35px;
  margin: 0 0 40px;
}
@media (max-width: 1141px) {
  .section_profession__course .profession_course__wrapper .profession_course__item {
    padding: 20px 16px;
  }
}
@media (max-width: 991px) {
  .section_profession__course .profession_course__wrapper .profession_course__item {
    margin: 0;
    padding: 20px 10px 50px 20px;
  }
}
.section_profession__course .profession_course__wrapper .profession_course__item .module_number {
  margin: 0 0 13px;
}
@media (max-width: 991px) {
  .section_profession__course .profession_course__wrapper .profession_course__item .module_number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px;
  }
}
.section_profession__course .profession_course__wrapper .profession_course__item .module_number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 19px;
  border: 1px solid var(--border-grey);
  background: var(--bg-transparent);
  backdrop-filter: blur(4px);
  border-radius: 100px;
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--color-c7);
  min-height: 52px;
}
@media (max-width: 991px) {
  .section_profession__course .profession_course__wrapper .profession_course__item .module_number span {
    font-size: 12px;
    min-height: 44px;
  }
}
.section_profession__course .profession_course__wrapper .profession_course__item h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.28535;
  color: var(--color-e9);
  margin: 0 0 20px;
}
@media (max-width: 1141px) {
  .section_profession__course .profession_course__wrapper .profession_course__item h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .section_profession__course .profession_course__wrapper .profession_course__item h3 {
    font-size: 22px;
  }
}
.section_profession__course .profession_course__wrapper .profession_course__item ul {
  margin: 0 0 35px;
}
.section_profession__course .profession_course__wrapper .profession_course__item ul li {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--color-white);
  position: relative;
  margin: 0 0 5px;
  padding: 0 0 0 35px;
}
@media (max-width: 1141px) {
  .section_profession__course .profession_course__wrapper .profession_course__item ul li {
    font-size: 15px;
    padding: 0 0 0 15px;
  }
}
.section_profession__course .profession_course__wrapper .profession_course__item ul li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 10px;
  width: 5px;
  height: 5px;
  background: var(--color-white);
  border-radius: 50%;
}
@media (max-width: 1141px) {
  .section_profession__course .profession_course__wrapper .profession_course__item ul li:before {
    width: 3px;
    height: 3px;
    top: 8px;
    left: 0;
  }
}
.section_profession__course .profession_course__wrapper .profession_course__item .label_bg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/label_bg.png") center no-repeat;
  background-size: contain;
  width: 180px;
  height: 52px;
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin: 0 0 20px;
}
@media (max-width: 1141px) {
  .section_profession__course .profession_course__wrapper .profession_course__item .label_bg {
    font-size: 15px;
    width: 156px;
    height: 48px;
  }
}
.section_profession__course .profession_course__wrapper .profession_course__item .profession_course__result {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--color-white);
}
@media (max-width: 1141px) {
  .section_profession__course .profession_course__wrapper .profession_course__item .profession_course__result {
    font-size: 15px;
  }
}
.section_profession__course .profession_course__wrapper .slick-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 280px;
}
.section_profession__course .profession_course__wrapper .slick-dots button {
  display: none;
}
.section_profession__course .profession_course__wrapper .slick-dots li {
  width: calc(16.6666666667% - 1.2px);
  height: 4px;
  background: var(--color-c7);
  margin: 0 1.2px;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s all ease;
}
.section_profession__course .profession_course__wrapper .slick-dots li.slick-active {
  background: #714eff;
}
.section_profession__course .profession_course__wrapper .slick-dots li:hover {
  background: #714eff;
}

.section_profession__gallery {
  padding: 50px 0 0 0;
}
@media (max-width: 991px) {
  .section_profession__gallery {
    padding: 30px 0 0 0;
  }
}
.section_profession__gallery .row {
  margin: -6px;
}
@media (max-width: 991px) {
  .section_profession__gallery .row {
    margin: -2.5px;
  }
}
.section_profession__gallery .row [class*=col-] {
  padding: 6px;
}
@media (max-width: 991px) {
  .section_profession__gallery .row [class*=col-] {
    padding: 2.5px;
  }
}
@media (max-width: 991px) {
  .section_profession__gallery h2 {
    text-align: center;
  }
}
.section_profession__gallery img {
  display: block;
  width: 100%;
  height: 262px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1141px) {
  .section_profession__gallery img {
    height: 200px;
  }
}
@media (max-width: 991px) {
  .section_profession__gallery img {
    height: 180px;
  }
}

.section_profession__feedback {
  padding: 150px 0 200px 0;
  position: relative;
}
@media (max-width: 991px) {
  .section_profession__feedback {
    padding: 30px 0 60px 0;
  }
}
.section_profession__feedback:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/feedback_bg.png") center no-repeat;
  background-size: cover;
  width: 100%;
  height: 150%;
  z-index: -1;
}
.section_profession__feedback .feedback_wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.section_profession__feedback .feedback_wrapper .left_side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 100%;
  width: 100%;
  max-width: 480px;
  padding: 0 0 43px;
}
@media (max-width: 1300px) {
  .section_profession__feedback .feedback_wrapper .left_side {
    max-width: 350px;
  }
}
@media (max-width: 991px) {
  .section_profession__feedback .feedback_wrapper .left_side {
    max-width: 100%;
    margin: 0 0 20px;
    padding: 0;
  }
}
.section_profession__feedback .feedback_wrapper .left_side img {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .section_profession__feedback .feedback_wrapper .left_side img {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
  }
}
.section_profession__feedback .feedback_wrapper .left_side h3 {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.28535;
  color: var(--color-e9);
  margin: 0 0 30px;
}
@media (max-width: 1300px) {
  .section_profession__feedback .feedback_wrapper .left_side h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .section_profession__feedback .feedback_wrapper .left_side h3 {
    font-size: 25px;
    text-align: center;
    margin: 0 0 15px;
  }
}
.section_profession__feedback .feedback_wrapper .left_side p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
}
@media (max-width: 1300px) {
  .section_profession__feedback .feedback_wrapper .left_side p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .section_profession__feedback .feedback_wrapper .left_side p {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .section_profession__feedback .feedback_wrapper .left_side p br {
    display: none;
  }
}
.section_profession__feedback .feedback_wrapper .right_side {
  width: calc(100% - 500px);
}
@media (max-width: 1300px) {
  .section_profession__feedback .feedback_wrapper .right_side {
    width: calc(100% - 365px);
  }
}
@media (max-width: 991px) {
  .section_profession__feedback .feedback_wrapper .right_side {
    width: 100%;
  }
}
.section_profession__feedback .feedback_wrapper .right_side .input_wrapper {
  width: 100%;
  margin: 0 0 12px;
}
@media (max-width: 991px) {
  .section_profession__feedback .feedback_wrapper .right_side .input_wrapper {
    margin: 0 0 10px;
  }
}
.section_profession__feedback .feedback_wrapper .right_side .input_wrapper input {
  display: block;
  width: 100%;
  height: 76px;
  background: #fff;
  border-radius: 5px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #999;
  padding: 0 35px;
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .section_profession__feedback .feedback_wrapper .right_side .input_wrapper input {
    font-size: 16px;
    height: 60px;
    padding: 0 20px;
  }
}
.section_profession__feedback .feedback_wrapper .right_side .input_wrapper input:focus, .section_profession__feedback .feedback_wrapper .right_side .input_wrapper input:hover {
  color: #000;
}
.section_profession__feedback .feedback_wrapper .right_side .inputs_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section_profession__feedback .feedback_wrapper .right_side .inputs_wrapper .input_wrapper {
  width: calc(50% - 6px);
}
@media (max-width: 991px) {
  .section_profession__feedback .feedback_wrapper .right_side .inputs_wrapper .input_wrapper {
    width: 100%;
  }
}
.section_profession__feedback .feedback_wrapper .right_side .btn {
  min-width: 100%;
  min-height: 81px;
  margin: 18px 0 0 0;
}
@media (max-width: 991px) {
  .section_profession__feedback .feedback_wrapper .right_side .btn {
    min-height: 50px;
  }
}
.section_profession__feedback .feedback_wrapper .right_side .check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 19px 0 0 0;
}
@media (max-width: 991px) {
  .section_profession__feedback .feedback_wrapper .right_side .check {
    margin: 15px 0 0 0;
  }
}
.section_profession__feedback .feedback_wrapper .right_side .check p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  margin: 0 0 0 10px;
}
@media (max-width: 991px) {
  .section_profession__feedback .feedback_wrapper .right_side .check p {
    font-size: 14px;
  }
}
.section_profession__feedback .feedback_wrapper .right_side .check p a {
  text-decoration: underline;
}
.section_profession__feedback .feedback_wrapper .right_side .check p a:hover {
  text-decoration: none;
}
.section_profession__feedback .feedback_wrapper .right_side .check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  transition: all 0.3s ease;
}
.section_profession__feedback .feedback_wrapper .right_side .check input:checked ~ .checkmark:after {
  opacity: 1;
  visibility: visible;
}
.section_profession__feedback .feedback_wrapper .right_side .check .checkmark {
  position: relative;
  height: 24px;
  width: 24px;
  min-width: 24px;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 2px;
  border: 1px solid var(--color-white);
}
.section_profession__feedback .feedback_wrapper .right_side .check .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  left: 50%;
  top: 43%;
  width: 6px;
  height: 12px;
  border: solid var(--color-white);
  border-width: 0 1px 1px 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.section_profession__price {
  padding: 0 0 60px;
  margin: -85px 0 0 0;
}
@media (max-width: 991px) {
  .section_profession__price {
    padding: 0 0 30px;
    margin: 0;
  }
}
.section_profession__price h2 {
  text-align: center;
}
.section_profession__price .price_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section_profession__price .price_wrapper .price_item {
  width: calc(50% - 7px);
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  background: var(--bg-10);
  padding: 42px 47px 36px;
}
@media (max-width: 1141px) {
  .section_profession__price .price_wrapper .price_item {
    padding: 30px 16px;
  }
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item {
    width: 100%;
    padding: 25px 16px 30px;
    margin: 0 0 20px;
  }
}
.section_profession__price .price_wrapper .price_item:nth-child(1) {
  background: url("../img/price_bg.png") center no-repeat;
  background-size: cover;
}
.section_profession__price .price_wrapper .price_item h3 {
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 34px;
  text-align: center;
  color: var(--color-white);
  margin: 0 0 18px;
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item h3 {
    font-size: 22px;
    margin: 0 0 10px;
  }
}
.section_profession__price .price_wrapper .price_item p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: var(--color-white);
  min-height: 76px;
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item p {
    font-size: 14px;
    min-height: initial;
    margin: 0 0 15px;
  }
}
@media (max-width: 767px) {
  .section_profession__price .price_wrapper .price_item p br {
    display: none;
  }
}
.section_profession__price .price_wrapper .price_item .input_wrapper {
  margin: 0 0 12px;
  position: relative;
}
.section_profession__price .price_wrapper .price_item .input_wrapper input {
  display: block;
  width: 100%;
  height: 67px;
  background: #fff;
  border-radius: 5px;
  padding: 0 34px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #999;
  border: 1px solid var(--border-grey);
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item .input_wrapper input {
    height: 56px;
    font-size: 16px;
    padding: 0 20px;
  }
}
.section_profession__price .price_wrapper .price_item .input_wrapper input:focus, .section_profession__price .price_wrapper .price_item .input_wrapper input:hover {
  color: #000;
}
.section_profession__price .price_wrapper .price_item .check_wrapper {
  margin: 23px 0 0 0;
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item .check_wrapper {
    margin: 16px 0 0 0;
  }
}
.section_profession__price .price_wrapper .price_item .check_wrapper .check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item .check_wrapper .check {
    margin: 0 0 10px;
  }
}
.section_profession__price .price_wrapper .price_item .check_wrapper .check:nth-last-child(1) {
  margin: 0;
}
.section_profession__price .price_wrapper .price_item .check_wrapper .check p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-white);
  text-align: left;
  margin: 0 0 0 10px;
  min-height: initial;
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item .check_wrapper .check p {
    font-size: 12px;
  }
}
.section_profession__price .price_wrapper .price_item .check_wrapper .check p a {
  text-decoration: underline;
}
.section_profession__price .price_wrapper .price_item .check_wrapper .check p a:hover {
  text-decoration: none;
}
.section_profession__price .price_wrapper .price_item .check_wrapper .check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  transition: all 0.3s ease;
}
.section_profession__price .price_wrapper .price_item .check_wrapper .check input:checked ~ .checkmark:after {
  opacity: 1;
  visibility: visible;
}
.section_profession__price .price_wrapper .price_item .check_wrapper .check .checkmark {
  position: relative;
  height: 24px;
  width: 24px;
  min-width: 24px;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 2px;
  border: 1px solid var(--color-white);
}
.section_profession__price .price_wrapper .price_item .check_wrapper .check .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  left: 50%;
  top: 43%;
  width: 6px;
  height: 12px;
  border: solid var(--color-white);
  border-width: 0 1px 1px 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.section_profession__price .price_wrapper .price_item .price_wrapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin: 18px 0 0 0;
  min-height: 116px;
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item .price_wrapp {
    min-height: initial;
  }
}
.section_profession__price .price_wrapper .price_item .price_wrapp span {
  display: block;
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 23px;
  text-decoration: line-through;
  text-align: center;
  color: var(--color-c7);
  margin: 0 0 7px;
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item .price_wrapp span {
    font-size: 18px;
  }
}
.section_profession__price .price_wrapper .price_item .price_wrapp p {
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 45px;
  text-align: center;
  color: var(--color-white);
  margin: 0;
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item .price_wrapp p {
    font-size: 32px;
  }
}
.section_profession__price .price_wrapper .price_item .price_wrapp p small {
  font-size: 28px;
}
.section_profession__price .price_wrapper .price_item .btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 0;
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item .btn_wrapper {
    margin: 16px 0 0 0;
  }
}
.section_profession__price .price_wrapper .price_item .btn_wrapper button {
  width: 100%;
  max-width: 380px;
  color: var(--color-white);
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item .btn_wrapper button {
    max-width: 100%;
  }
}
.section_profession__price .price_wrapper .price_item .feedback_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 21px 0 0 0;
}
.section_profession__price .price_wrapper .price_item .feedback_btn a {
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--color-white);
}
@media (max-width: 991px) {
  .section_profession__price .price_wrapper .price_item .feedback_btn a {
    font-size: 18px;
  }
}
.section_profession__price .price_wrapper .price_item .feedback_btn a:hover {
  text-decoration: none;
}

.section_qna {
  padding: 60px 0 100px 0;
}
@media (max-width: 991px) {
  .section_qna {
    padding: 30px 0 50px 0;
  }
}
.section_qna .dropdown_qna {
  position: relative;
  width: 100%;
}
.section_qna .dropdown_qna .question {
  margin: 0 0 10px;
}
.section_qna .dropdown_qna .question.active .title_dropdown__qna .vertical {
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-270deg) !important;
}
.section_qna .dropdown_qna .question .title_dropdown__qna {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 25px 25px 25px 35px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  border-radius: 5px;
  color: #000;
  background: #fff;
}
@media (max-width: 991px) {
  .section_qna .dropdown_qna .question .title_dropdown__qna {
    font-size: 16px;
    padding: 16px;
  }
}
.section_qna .dropdown_qna .question .title_dropdown__qna .collapse_plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(110deg, #c990a6 0%, #be8bae 10.75%, #af84b9 25.21%, #9f7dc4 53.49%, #8269ad 71.03%, #6e5b95 100%);
  box-shadow: inset 2px -6px 10px 0 rgba(254, 188, 125, 0.71);
  margin: 0 0 0 10px;
}
@media (max-width: 991px) {
  .section_qna .dropdown_qna .question .title_dropdown__qna .collapse_plus {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
.section_qna .dropdown_qna .question .title_dropdown__qna .collapse_plus small {
  display: block;
  background: #fff;
  transition: 0.3s all ease;
}
.section_qna .dropdown_qna .question .title_dropdown__qna .collapse_plus .horizontal {
  width: 34px;
  height: 2px;
}
@media (max-width: 991px) {
  .section_qna .dropdown_qna .question .title_dropdown__qna .collapse_plus .horizontal {
    width: 20px;
  }
}
.section_qna .dropdown_qna .question .title_dropdown__qna .collapse_plus .vertical {
  width: 2px;
  height: 34px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}
@media (max-width: 991px) {
  .section_qna .dropdown_qna .question .title_dropdown__qna .collapse_plus .vertical {
    height: 20px;
  }
}
.section_qna .dropdown_qna .question .default-submenu {
  display: none;
  padding: 25px 25px 25px 35px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.08em;
  background: #fff;
  color: #000;
  border-radius: 5px;
  margin: 5px 0 22px 0;
}
@media (max-width: 991px) {
  .section_qna .dropdown_qna .question .default-submenu {
    font-size: 14px;
    padding: 16px;
    margin: 5px 0 15px 0;
  }
}
.section_qna .dropdown_qna .question .default-submenu p {
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .section_qna .dropdown_qna .question .default-submenu p {
    margin: 0 0 10px;
  }
}
.section_qna .dropdown_qna .question .default-submenu p:nth-last-child(1) {
  margin: 0;
}
.section_qna .dropdown_qna .question .default-submenu b {
  font-weight: 700;
}
.section_qna .dropdown_qna .question .default-submenu ul {
  margin: 0 0 35px;
}
@media (max-width: 991px) {
  .section_qna .dropdown_qna .question .default-submenu ul {
    margin: 0 0 15px;
  }
}
.section_qna .dropdown_qna .question .default-submenu ul:nth-last-child(1) {
  margin: 0;
}
.section_qna .dropdown_qna .question .default-submenu ul li {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #000;
  position: relative;
  margin: 0 0 5px;
  padding: 0 0 0 35px;
}
@media (max-width: 991px) {
  .section_qna .dropdown_qna .question .default-submenu ul li {
    font-size: 15px;
    padding: 0 0 0 15px;
  }
}
.section_qna .dropdown_qna .question .default-submenu ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .section_qna .dropdown_qna .question .default-submenu ul li:before {
    width: 3px;
    height: 3px;
    top: 9px;
    left: 0;
  }
}

.section_login {
  padding: 230px 0 110px 0;
  background: url("../img/login_bg.png") center no-repeat;
  background-size: cover;
  min-height: 100vh;
}
@media (max-width: 991px) {
  .section_login {
    padding: 160px 0 50px 0;
    min-height: initial;
  }
}
.section_login .login_wrapper {
  padding: 35px 150px;
  backdrop-filter: blur(16.6px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 232, 232, 0.4);
  border-radius: 5px;
  width: 100%;
  max-width: 955px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .section_login .login_wrapper {
    max-width: 100%;
    padding: 34px 20px;
  }
}
.section_login .login_wrapper ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
}
.section_login .login_wrapper ul li {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #c6c6c6;
}
@media (max-width: 991px) {
  .section_login .login_wrapper ul li {
    font-size: 18px;
  }
}
.section_login .login_wrapper ul li a.current {
  font-size: 36px;
  color: var(--color-white);
}
@media (max-width: 991px) {
  .section_login .login_wrapper ul li a.current {
    font-size: 20px;
  }
}
.section_login .login_wrapper ul li a:hover {
  color: var(--color-white);
}
.section_login .login_wrapper h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: var(--color-white);
  margin: 0 0 25px;
}
@media (max-width: 991px) {
  .section_login .login_wrapper h5 {
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto 28px;
  }
}
@media (max-width: 991px) {
  .section_login .login_wrapper h5 br {
    display: none;
  }
}
.section_login .login_wrapper .input_wrapper {
  margin: 0 0 12px;
  position: relative;
}
.section_login .login_wrapper .input_wrapper input {
  display: block;
  width: 100%;
  height: 76px;
  background: #fff;
  border-radius: 5px;
  padding: 0 35px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #999;
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .section_login .login_wrapper .input_wrapper input {
    height: 56px;
    font-size: 16px;
    padding: 0 20px;
  }
}
.section_login .login_wrapper .input_wrapper input:focus, .section_login .login_wrapper .input_wrapper input:hover {
  color: #000;
}
.section_login .login_wrapper .input_wrapper .js-show-pw {
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 991px) {
  .section_login .login_wrapper .input_wrapper .js-show-pw {
    right: 6px;
  }
}
.section_login .login_wrapper .input_wrapper .js-show-pw img {
  display: block;
  filter: brightness(1) invert(1);
}
.section_login .login_wrapper .input_wrapper.shown .js-show-pw img {
  filter: none;
}
.section_login .login_wrapper .forgot_pw {
  padding: 0 0 0 35px;
  margin: 0 0 26px;
}
@media (max-width: 991px) {
  .section_login .login_wrapper .forgot_pw {
    padding: 0 0 0 20px;
  }
}
.section_login .login_wrapper .forgot_pw a {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
@media (max-width: 991px) {
  .section_login .login_wrapper .forgot_pw a {
    font-size: 14px;
  }
}
.section_login .login_wrapper .forgot_pw a:hover {
  border-color: transparent;
}
.section_login .login_wrapper .check_wrapper {
  margin: 0 0 23px;
}
.section_login .login_wrapper .check_wrapper .check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 0 13px;
}
@media (max-width: 991px) {
  .section_login .login_wrapper .check_wrapper .check {
    margin: 0 0 10px;
  }
}
.section_login .login_wrapper .check_wrapper .check:nth-last-child(1) {
  margin: 0;
}
.section_login .login_wrapper .check_wrapper .check p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  margin: 0 0 0 10px;
}
@media (max-width: 991px) {
  .section_login .login_wrapper .check_wrapper .check p {
    font-size: 14px;
  }
}
.section_login .login_wrapper .check_wrapper .check p a {
  text-decoration: underline;
}
.section_login .login_wrapper .check_wrapper .check p a:hover {
  text-decoration: none;
}
.section_login .login_wrapper .check_wrapper .check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  transition: all 0.3s ease;
}
.section_login .login_wrapper .check_wrapper .check input:checked ~ .checkmark:after {
  opacity: 1;
  visibility: visible;
}
.section_login .login_wrapper .check_wrapper .check .checkmark {
  position: relative;
  height: 24px;
  width: 24px;
  min-width: 24px;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 2px;
  border: 1px solid var(--color-white);
}
.section_login .login_wrapper .check_wrapper .check .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  left: 50%;
  top: 43%;
  width: 6px;
  height: 12px;
  border: solid var(--color-white);
  border-width: 0 1px 1px 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.section_login .login_wrapper button {
  width: 100%;
}
.section_login .login_wrapper .login_register {
  margin: 16px 0 0 0;
}
.section_login .login_wrapper .login_register p {
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #c6c6c6;
}
@media (max-width: 991px) {
  .section_login .login_wrapper .login_register p {
    font-size: 16px;
  }
}
.section_login .login_wrapper .login_register p a {
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
.section_login .login_wrapper .login_register p a:hover {
  border-color: transparent;
}

.register_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.register_wrapper .left_side {
  width: 100%;
  max-width: 760px;
}
@media (max-width: 1141px) {
  .register_wrapper .left_side {
    max-width: 100%;
  }
}
.register_wrapper .left_side h1 {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 500;
  font-size: 36px;
  color: var(--color-white);
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .register_wrapper .left_side h1 {
    font-size: 24px;
    margin: 0 0 10px;
  }
}
.register_wrapper .left_side h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--color-white);
  margin: 0 0 10px;
}
@media (max-width: 991px) {
  .register_wrapper .left_side h5 {
    font-size: 16px;
  }
}
.register_wrapper .left_side .register_item {
  padding: 30px 0;
  border-bottom: 1px solid var(--border-grey);
}
@media (max-width: 991px) {
  .register_wrapper .left_side .register_item {
    padding: 15px 0;
  }
}
.register_wrapper .left_side .register_item:nth-last-child(1) {
  border-bottom: none;
  margin: 0 0 10px;
}
.register_wrapper .left_side .register_item--radio {
  padding: 30px 0 6px 0;
}
@media (max-width: 991px) {
  .register_wrapper .left_side .register_item--radio {
    padding: 15px 0 0 0;
  }
}
.register_wrapper .left_side .register_item p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--color-white);
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .register_wrapper .left_side .register_item p {
    font-size: 18px;
    margin: 0 0 10px;
  }
}
.register_wrapper .left_side .register_item .input_wrapper {
  width: 100%;
  max-width: 650px;
}
@media (max-width: 1141px) {
  .register_wrapper .left_side .register_item .input_wrapper {
    max-width: 100%;
  }
}
.register_wrapper .left_side .register_item .input_wrapper input {
  display: block;
  width: 100%;
  height: 76px;
  background: #fff;
  border-radius: 5px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #999;
  padding: 0 35px;
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .register_wrapper .left_side .register_item .input_wrapper input {
    font-size: 16px;
    height: 60px;
    padding: 0 20px;
  }
}
.register_wrapper .left_side .register_item .input_wrapper input:focus, .register_wrapper .left_side .register_item .input_wrapper input:hover {
  color: #000;
}
.register_wrapper .left_side .register_item .radio_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.register_wrapper .left_side .register_item .radio_wrapper .form-group {
  margin: 0 30px 24px 0;
}
@media (max-width: 991px) {
  .register_wrapper .left_side .register_item .radio_wrapper .form-group {
    margin: 0 7px 15px 0;
  }
}
.register_wrapper .left_side .register_item .radio_wrapper .form-group input[type=radio],
.register_wrapper .left_side .register_item .radio_wrapper .form-group input[type=checkbox] {
  display: none;
}
.register_wrapper .left_side .register_item .radio_wrapper .form-group label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 24px;
  border: 1px solid var(--border-grey);
  background: var(--bg-transparent);
  border-radius: 100px;
  font-family: "Martian Mono", sans-serif;
  font-weight: 200;
  font-size: 20px;
  color: var(--color-white);
  transition: 0.3s all ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  .register_wrapper .left_side .register_item .radio_wrapper .form-group label {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .register_wrapper .left_side .register_item .radio_wrapper .form-group label {
    font-size: 14px;
    padding: 12px 14px;
  }
}
.register_wrapper .left_side .register_item .radio_wrapper .form-group label:hover {
  background: rgba(107, 113, 210, 0.6);
  border-color: rgba(107, 113, 210, 0.6);
}
.register_wrapper .left_side .register_item .radio_wrapper .form-group input[type=radio]:checked + label,
.register_wrapper .left_side .register_item .radio_wrapper .form-group input[type=checkbox]:checked + label {
  background: rgba(107, 113, 210, 0.6);
  border-color: rgba(107, 113, 210, 0.6);
}
.register_wrapper .left_side .register_item .jq-selectbox {
  cursor: pointer;
  width: 100%;
  max-width: 650px;
}
@media (max-width: 1141px) {
  .register_wrapper .left_side .register_item .jq-selectbox {
    max-width: 100%;
  }
}
.register_wrapper .left_side .register_item .jq-selectbox__select {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border-radius: 5px;
  width: 100%;
  height: 76px;
  padding: 0 35px;
}
@media (max-width: 991px) {
  .register_wrapper .left_side .register_item .jq-selectbox__select {
    height: 60px;
    padding: 0 20px;
  }
}
.register_wrapper .left_side .register_item .jq-selectbox__select-text {
  width: auto !important;
  border-radius: 5px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #999;
}
@media (max-width: 991px) {
  .register_wrapper .left_side .register_item .jq-selectbox__select-text {
    font-size: 16px;
  }
}
.register_wrapper .left_side .register_item .jq-selectbox__trigger-arrow:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 10px;
  background: url("../img/select-arr.svg") center no-repeat;
  background-size: contain;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .register_wrapper .left_side .register_item .jq-selectbox__trigger-arrow:after {
    width: 16px;
    height: 10px;
    right: 14px;
  }
}
.register_wrapper .left_side .register_item .jq-selectbox.opened .jq-selectbox__trigger-arrow:after {
  transform: translateY(-50%) rotate(-180deg);
}
.register_wrapper .left_side .register_item .jq-selectbox__dropdown {
  width: 100%;
  border: 1px solid #DCDFE8;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}
.register_wrapper .left_side .register_item .jq-selectbox__dropdown ul {
  max-height: 240px;
  scrollbar-width: thin;
  scrollbar-color: #7d8392 #ebebeb;
}
.register_wrapper .left_side .register_item .jq-selectbox__dropdown ul::-webkit-scrollbar {
  width: 7px;
}
.register_wrapper .left_side .register_item .jq-selectbox__dropdown ul::-webkit-scrollbar-track {
  background: #ebebeb;
}
.register_wrapper .left_side .register_item .jq-selectbox__dropdown ul::-webkit-scrollbar-thumb {
  background-color: #7d8392;
  border-radius: 4px;
  border: 1px solid #ebebeb;
}
.register_wrapper .left_side .register_item .jq-selectbox__dropdown ul li {
  padding: 12px 35px;
  min-height: 48px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  color: #000;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 991px) {
  .register_wrapper .left_side .register_item .jq-selectbox__dropdown ul li {
    padding: 12px 20px;
    font-size: 14px;
  }
}
.register_wrapper .left_side .register_item .jq-selectbox__dropdown ul li:hover, .register_wrapper .left_side .register_item .jq-selectbox__dropdown ul li.selected {
  background: #F5F5F5;
}
.register_wrapper .left_side button {
  width: 100%;
  max-width: 650px;
}
@media (max-width: 1141px) {
  .register_wrapper .left_side button {
    max-width: 100%;
  }
}
.register_wrapper .right_side {
  width: calc(100% - 760px);
  position: sticky;
  top: 100px;
  right: 0;
  overflow: hidden;
}
@media (max-width: 1141px) {
  .register_wrapper .right_side {
    display: none;
  }
}
.register_wrapper .right_side img {
  display: block;
  transition: transform linear;
}

.section_cabinet {
  padding: 230px 0 80px 0;
  background: url("../img/login_bg.png") center no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .section_cabinet {
    padding: 160px 0 50px 0;
  }
}
.section_cabinet .user_info__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  backdrop-filter: blur(16.6px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 232, 232, 0.4);
  border-radius: 5px;
  padding: 48px 24px;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper {
    padding: 32px 16px;
  }
}
.section_cabinet .user_info__wrapper .left_side {
  width: calc(100% - 375px);
}
@media (max-width: 1300px) {
  .section_cabinet .user_info__wrapper .left_side {
    width: calc(100% - 320px);
  }
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .left_side {
    width: 100%;
    margin: 0 0 30px;
  }
}
.section_cabinet .user_info__wrapper .left_side .settings_link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 32px;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .left_side .settings_link {
    margin: 0 0 24px;
  }
}
.section_cabinet .user_info__wrapper .left_side .settings_link a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
  line-height: 1.1;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .left_side .settings_link a {
    font-size: 14px;
  }
}
.section_cabinet .user_info__wrapper .left_side .settings_link a:hover small {
  border-color: transparent;
}
.section_cabinet .user_info__wrapper .left_side .settings_link a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border: 1px solid var(--border-grey);
  border-radius: 50%;
  margin: 0 15px 0 0;
}
.section_cabinet .user_info__wrapper .left_side .settings_link a span img {
  display: block;
}
.section_cabinet .user_info__wrapper .left_side .settings_link a small {
  display: block;
  border-bottom: 1px solid var(--color-white);
  font-weight: 500;
  transition: 0.3s all ease;
}
.section_cabinet .user_info__wrapper .left_side .user_data__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .left_side .user_data__wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__left {
  width: 100%;
  max-width: 196px;
}
@media (max-width: 1141px) {
  .section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__left {
    max-width: 150px;
  }
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__left {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 0 20px;
  }
}
.section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__left img {
  display: block;
  width: 196px;
  height: 196px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1141px) {
  .section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__left img {
    width: 150px;
    height: 150px;
  }
}
.section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right {
  width: calc(100% - 247px);
}
@media (max-width: 1141px) {
  .section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right {
    width: calc(100% - 175px);
  }
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right {
    width: 100%;
  }
}
.section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right p {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--color-white);
  margin: 0 0 12px;
}
@media (max-width: 1141px) {
  .section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right p {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right p {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-profile);
  margin: 0 0 43px;
}
@media (max-width: 1141px) {
  .section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right span {
    margin: 0 0 20px;
  }
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right span {
    font-size: 14px;
    margin: 0 0 15px;
  }
}
.section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right ul {
  border-top: 1px solid var(--border-grey);
  padding: 22px 0 0 0;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right ul {
    padding: 15px 0 0 0;
  }
}
.section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 10px;
}
.section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right ul li:nth-last-child(1) {
  margin: 0;
}
.section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right ul li a {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-profile);
  border-bottom: 1px solid var(--color-profile);
}
.section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right ul li a:hover {
  border-color: transparent;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .left_side .user_data__wrapper .user_data__right ul li a {
    font-size: 14px;
  }
}
.section_cabinet .user_info__wrapper .right_side {
  width: 100%;
  max-width: 299px;
  min-height: 100%;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .right_side {
    max-width: 100%;
  }
}
.section_cabinet .user_info__wrapper .right_side .cashback_wrapper {
  background: #fff;
  border-radius: 5px;
  padding: 21px 24px;
  height: 100%;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .right_side .cashback_wrapper {
    padding: 24px 16px;
  }
}
.section_cabinet .user_info__wrapper .right_side .cashback_wrapper p {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #1e1e1e;
  margin: 0 0 28px;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .right_side .cashback_wrapper p {
    font-size: 18px;
    margin: 0 0 16px;
  }
}
.section_cabinet .user_info__wrapper .right_side .cashback_wrapper .cashback_percent {
  margin: 0 0 35px;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .right_side .cashback_wrapper .cashback_percent {
    margin: 0 0 20px;
  }
}
.section_cabinet .user_info__wrapper .right_side .cashback_wrapper .cashback_percent span {
  display: inline-block;
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  background: linear-gradient(90deg, #febc7d 0%, #6b71d2 82.5%, #6b71d2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .right_side .cashback_wrapper .cashback_percent span {
    font-size: 32px;
  }
}
.section_cabinet .user_info__wrapper .right_side .cashback_wrapper a {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .right_side .cashback_wrapper a {
    font-size: 14px;
  }
}
.section_cabinet .user_info__wrapper .right_side .cashback_wrapper a:hover {
  border-color: transparent;
}
@media (max-width: 991px) {
  .section_cabinet .user_info__wrapper .right_side .cashback_wrapper a br {
    display: none;
  }
}
.section_cabinet .user_courses__wrapper {
  padding: 70px 0 0 0;
}
@media (max-width: 991px) {
  .section_cabinet .user_courses__wrapper {
    padding: 40px 0 0 0;
  }
}
.section_cabinet .user_courses__wrapper h2 {
  text-align: center;
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .section_cabinet .user_courses__wrapper h2 {
    margin: 0 0 16px;
  }
}
.section_cabinet .user_courses__wrapper .user_courses__empty {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.section_cabinet .user_courses__wrapper .user_courses__empty p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: var(--color-white);
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .section_cabinet .user_courses__wrapper .user_courses__empty p {
    max-width: 100%;
    font-size: 16px;
    margin: 0 0 20px;
  }
}
.section_cabinet .user_courses__wrapper .user_courses__empty .btn {
  width: 100%;
}
.section_cabinet .user_courses__wrapper .user_courses__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  backdrop-filter: blur(16.6px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-grey);
  border-radius: 5px;
  padding: 28px 24px;
  margin: 0 0 40px;
}
@media (max-width: 991px) {
  .section_cabinet .user_courses__wrapper .user_courses__item {
    padding: 32px 16px;
    margin: 0 0 30px;
  }
}
.section_cabinet .user_courses__wrapper .user_courses__item:nth-last-child(1) {
  margin: 0;
}
.section_cabinet .user_courses__wrapper .user_courses__item .left_side {
  width: 100%;
  max-width: 330px;
}
@media (max-width: 991px) {
  .section_cabinet .user_courses__wrapper .user_courses__item .left_side {
    max-width: 100%;
    margin: 0 0 20px;
  }
}
.section_cabinet .user_courses__wrapper .user_courses__item .left_side img {
  display: block;
  width: 100%;
  border: 1px solid var(--border-grey);
  border-radius: 5px;
}
@media (max-width: 991px) {
  .section_cabinet .user_courses__wrapper .user_courses__item .left_side img {
    max-height: 300px;
    object-fit: cover;
    object-position: bottom;
  }
}
.section_cabinet .user_courses__wrapper .user_courses__item .right_side {
  width: calc(100% - 400px);
}
@media (max-width: 991px) {
  .section_cabinet .user_courses__wrapper .user_courses__item .right_side {
    width: 100%;
  }
}
.section_cabinet .user_courses__wrapper .user_courses__item .right_side h4 {
  font-family: "Martian Mono", sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--color-white);
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .section_cabinet .user_courses__wrapper .user_courses__item .right_side h4 {
    font-size: 24px;
    margin: 0 0 15px;
  }
}
.section_cabinet .user_courses__wrapper .user_courses__item .right_side p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-white);
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .section_cabinet .user_courses__wrapper .user_courses__item .right_side p {
    font-size: 16px;
    margin: 0 0 15px;
  }
}
.section_cabinet .user_courses__wrapper .user_courses__item .right_side p a {
  font-weight: 700;
  border-bottom: 1px solid var(--color-white);
}
.section_cabinet .user_courses__wrapper .user_courses__item .right_side p a:hover {
  border-color: transparent;
}
@media (max-width: 767px) {
  .section_cabinet .user_courses__wrapper .user_courses__item .right_side p br {
    display: none;
  }
}
.section_cabinet .user_courses__wrapper .user_courses__item .right_side .course_progress__wrapper {
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .section_cabinet .user_courses__wrapper .user_courses__item .right_side .course_progress__wrapper {
    margin: 0 0 20px;
  }
}
.section_cabinet .user_courses__wrapper .user_courses__item .right_side .course_progress__wrapper .course_progress {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-black);
  text-align: center;
  padding: 10px 15px;
  border-radius: 100px;
  border: 1px solid var(--border-grey);
}
@media (max-width: 991px) {
  .section_cabinet .user_courses__wrapper .user_courses__item .right_side .course_progress__wrapper .course_progress {
    font-size: 14px;
  }
}
.section_cabinet .user_courses__wrapper .user_courses__item .right_side .course_progress__wrapper .course_progress span {
  padding: 0 0 0 3px;
}
.section_cabinet .user_courses__wrapper .user_courses__item .right_side .btn {
  width: 100%;
  max-width: 380px;
}
.section_cabinet .user_personal__data {
  padding: 70px 0 0 0;
}
@media (max-width: 991px) {
  .section_cabinet .user_personal__data {
    padding: 40px 0 0 0;
  }
}
.section_cabinet .user_personal__data .row {
  margin: -15px -7.5px;
}
@media (max-width: 991px) {
  .section_cabinet .user_personal__data .row {
    margin: -10px;
  }
}
.section_cabinet .user_personal__data .row [class*=col-] {
  padding: 15px 7.5px;
}
@media (max-width: 991px) {
  .section_cabinet .user_personal__data .row [class*=col-] {
    padding: 10px;
  }
}
.section_cabinet .user_personal__data h2 {
  margin: 0 0 30px;
}
.section_cabinet .user_personal__data p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--color-white);
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .section_cabinet .user_personal__data p {
    font-size: 18px;
    margin: 0 0 10px;
  }
}
.section_cabinet .user_personal__data .input_wrapper {
  width: 100%;
  position: relative;
}
.section_cabinet .user_personal__data .input_wrapper input {
  display: block;
  width: 100%;
  height: 76px;
  background: #fff;
  border-radius: 5px;
  padding: 0 35px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #999;
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .section_cabinet .user_personal__data .input_wrapper input {
    height: 56px;
    font-size: 16px;
    padding: 0 20px;
  }
}
.section_cabinet .user_personal__data .input_wrapper input:focus, .section_cabinet .user_personal__data .input_wrapper input:hover {
  color: #000;
}
.section_cabinet .user_personal__data .input_wrapper .js-show-pw {
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 991px) {
  .section_cabinet .user_personal__data .input_wrapper .js-show-pw {
    right: 6px;
  }
}
.section_cabinet .user_personal__data .input_wrapper .js-show-pw img {
  display: block;
  filter: brightness(1) invert(1);
}
.section_cabinet .user_personal__data .input_wrapper.shown .js-show-pw img {
  filter: none;
}
.section_cabinet .user_personal__data .btn {
  min-width: 100%;
}
.section_cabinet .user_personal__data button:disabled,
.section_cabinet .user_personal__data button[disabled] {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}
.section_cabinet .user_personal__data button:disabled:hover,
.section_cabinet .user_personal__data button[disabled]:hover {
  background: rgba(107, 113, 210, 0.2);
}
.section_cabinet .user_personal__data button:disabled:hover img,
.section_cabinet .user_personal__data button[disabled]:hover img {
  transform: rotate(0);
}

.section_platform__main {
  padding: 50px 0 35px 0;
  position: relative;
}
@media (max-width: 991px) {
  .section_platform__main {
    padding: 30px 0 17px 0;
  }
}
.section_platform__main .container {
  position: relative;
  z-index: 2;
}
.section_platform__main:before {
  content: "";
  position: absolute;
  top: -180px;
  left: 0;
  width: 100%;
  height: calc(100% + 180px);
  background: url("../img/main_bg.png") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -2;
}
.section_platform__main:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.3841911765) 40%, rgba(8, 8, 8, 0.8659838936) 100%);
  z-index: -1;
}
.section_platform__main .platform_main__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding: 68px 46px 63px 46px;
  border-top: 1px solid var(--border-grey);
  border-radius: 5px;
  backdrop-filter: blur(30px);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.03);
}
@media (max-width: 1141px) {
  .section_platform__main .platform_main__wrapper {
    padding: 60px 30px;
  }
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper {
    padding: 40px 16px 30px 16px;
  }
}
.section_platform__main .platform_main__wrapper .macbook_line {
  display: block;
  position: absolute;
  top: 10px;
  left: 13px;
  width: calc(100% - 26px);
  object-fit: contain;
}
.section_platform__main .platform_main__wrapper .macbook_line--light {
  display: none;
}
.section_platform__main .platform_main__wrapper .left_side {
  width: calc((100% - 477px) / 2);
  padding: 0 0 0 60px;
}
@media (max-width: 1141px) {
  .section_platform__main .platform_main__wrapper .left_side {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .left_side {
    order: 2;
    width: 46%;
  }
}
.section_platform__main .platform_main__wrapper .left_side .images_wrapper {
  position: relative;
  width: 210px;
  height: 210px;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .left_side .images_wrapper {
    width: initial;
    height: initial;
  }
}
.section_platform__main .platform_main__wrapper .left_side .images_wrapper img {
  display: block;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .left_side .images_wrapper img {
    width: initial;
    max-height: 250px;
  }
}
.section_platform__main .platform_main__wrapper .left_side .images_wrapper .animated_image {
  width: initial;
  height: initial;
  position: absolute;
  bottom: -12px;
  right: -79px;
  animation: moveInSquare 8s linear infinite;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .left_side .images_wrapper .animated_image {
    animation: none;
    bottom: -40px;
    right: -40px;
  }
}
.section_platform__main .platform_main__wrapper .middle_side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 477px;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .middle_side {
    max-width: 100%;
    order: 1;
    margin: 0 0 32px;
  }
}
.section_platform__main .platform_main__wrapper .middle_side span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 14px;
  border: 1px solid var(--border-grey);
  background: var(--bg-transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 100px;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--color-white);
  min-height: 42px;
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .middle_side span {
    font-size: 14px;
    min-height: 40px;
    margin: 0 0 16px;
  }
}
.section_platform__main .platform_main__wrapper .middle_side h1 {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.31985;
  text-align: center;
  color: var(--color-e9);
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .middle_side h1 {
    font-size: 23px;
    margin: 0;
  }
}
.section_platform__main .platform_main__wrapper .middle_side h1 b {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
}
.section_platform__main .platform_main__wrapper .middle_side p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: var(--color-white);
  margin: 0 0 27px;
}
.section_platform__main .platform_main__wrapper .middle_side p a {
  font-weight: 700;
  border-bottom: 1px solid var(--color-white);
}
.section_platform__main .platform_main__wrapper .middle_side p a:hover {
  border-color: transparent;
}
.section_platform__main .platform_main__wrapper .middle_side .btn {
  min-width: 380px;
}
.section_platform__main .platform_main__wrapper .right_side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc((100% - 477px) / 2);
  padding: 30px 80px 0 0;
}
@media (max-width: 1141px) {
  .section_platform__main .platform_main__wrapper .right_side {
    padding: 30px 0 0 0;
  }
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .right_side {
    order: 3;
    width: 50%;
  }
}
.section_platform__main .platform_main__wrapper .right_side .images_wrapper {
  position: relative;
  width: 137px;
  height: 147px;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .right_side .images_wrapper {
    width: initial;
    height: initial;
  }
}
.section_platform__main .platform_main__wrapper .right_side .images_wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .right_side .images_wrapper img {
    max-height: 250px;
  }
}
.section_platform__main .platform_main__wrapper .right_side .images_wrapper .animated_image {
  width: initial;
  height: initial;
  position: absolute;
  bottom: -18px;
  right: -12px;
  animation: moveInSquare2 14s linear infinite;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .right_side .images_wrapper .animated_image {
    animation: none;
    bottom: -30px;
    right: -15px;
  }
}
.section_platform__main .platform_main__wrapper .bottom_side {
  width: 100%;
  margin: 60px 0 0 0;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .bottom_side {
    order: 4;
    margin: 50px 0 0 0;
  }
}
.section_platform__main .platform_main__wrapper .bottom_side .progress_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .bottom_side .progress_wrapper {
    margin: 0 0 10px;
  }
}
.section_platform__main .platform_main__wrapper .bottom_side .progress_wrapper p {
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--color-white);
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .bottom_side .progress_wrapper p {
    font-size: 15px;
  }
}
.section_platform__main .platform_main__wrapper .bottom_side .progress_wrapper p:nth-last-child(1) {
  font-size: 20px;
  text-align: right;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .bottom_side .progress_wrapper p:nth-last-child(1) {
    font-size: 14px;
  }
}
.section_platform__main .platform_main__wrapper .bottom_side .progress_bar {
  width: 100%;
  backdrop-filter: blur(12.6px);
  -webkit-backdrop-filter: blur(12.6px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-grey);
  border-radius: 100px;
  height: 40px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper .bottom_side .progress_bar {
    height: 24px;
  }
}
.section_platform__main .platform_main__wrapper .bottom_side .progress_bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, #febc7d 0%, #6b71d2 82.5%, #6b71d2 100%);
  border-radius: 100px;
}
.section_platform__main .platform_main__wrapper.modeling_main .left_side {
  width: calc((100% - 540px) / 2);
  padding: 55px 0 0 0;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .left_side {
    order: 2;
    width: 46%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
}
.section_platform__main .platform_main__wrapper.modeling_main .left_side .images_wrapper {
  position: relative;
  width: 100%;
  height: initial;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .left_side .images_wrapper {
    width: initial;
    height: initial;
  }
}
@media (max-width: 1141px) {
  .section_platform__main .platform_main__wrapper.modeling_main .left_side .images_wrapper {
    width: 200px;
  }
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .left_side .images_wrapper {
    width: 100%;
    max-width: 160px;
  }
}
.section_platform__main .platform_main__wrapper.modeling_main .left_side .images_wrapper img {
  display: block;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .left_side .images_wrapper img {
    width: initial;
    max-height: 250px;
  }
}
.section_platform__main .platform_main__wrapper.modeling_main .left_side .images_wrapper img.first_arr {
  width: initial;
  position: absolute;
  top: 0;
  left: 20px;
  animation: expandArrow 1.5s linear infinite alternate;
}
@media (max-width: 1141px) {
  .section_platform__main .platform_main__wrapper.modeling_main .left_side .images_wrapper img.first_arr {
    top: -3px;
    left: 15px;
    width: 80px;
  }
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .left_side .images_wrapper img.first_arr {
    top: -1px;
    width: 50px;
  }
}
.section_platform__main .platform_main__wrapper.modeling_main .left_side .images_wrapper img.second_arr {
  width: initial;
  position: absolute;
  bottom: 87px;
  right: 50px;
  animation: expandArrow 1.5s linear infinite alternate;
}
@media (max-width: 1141px) {
  .section_platform__main .platform_main__wrapper.modeling_main .left_side .images_wrapper img.second_arr {
    bottom: 60px;
    right: 35px;
    width: 30px;
  }
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .left_side .images_wrapper img.second_arr {
    bottom: 45px;
    right: 25px;
    width: 20px;
  }
}
.section_platform__main .platform_main__wrapper.modeling_main .middle_side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 540px;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .middle_side {
    max-width: 100%;
    order: 1;
    margin: 0 0 32px;
  }
}
.section_platform__main .platform_main__wrapper.modeling_main .middle_side h1 {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.31985;
  text-align: center;
  color: var(--color-e9);
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .middle_side h1 {
    font-size: 17px;
    margin: 0;
  }
}
.section_platform__main .platform_main__wrapper.modeling_main .middle_side h1 b {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
}
.section_platform__main .platform_main__wrapper.modeling_main .right_side {
  width: calc((100% - 540px) / 2);
  padding: 0 0 0 0;
}
@media (max-width: 1141px) {
  .section_platform__main .platform_main__wrapper.modeling_main .right_side {
    padding: 0 0 0 0;
  }
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .right_side {
    order: 3;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 0 0;
  }
}
.section_platform__main .platform_main__wrapper.modeling_main .right_side .images_wrapper {
  position: relative;
  width: 100%;
}
@media (max-width: 1141px) {
  .section_platform__main .platform_main__wrapper.modeling_main .right_side .images_wrapper {
    min-width: 200px;
  }
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .right_side .images_wrapper {
    min-width: initial;
    width: 100%;
    max-width: 160px;
  }
}
.section_platform__main .platform_main__wrapper.modeling_main .right_side .images_wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .right_side .images_wrapper img {
    max-height: 250px;
  }
}
.section_platform__main .platform_main__wrapper.modeling_main .right_side .images_wrapper img.first_arr {
  width: initial;
  position: absolute;
  top: -3px;
  right: 41px;
  animation: expandArrow 1.5s linear infinite alternate;
}
@media (max-width: 1141px) {
  .section_platform__main .platform_main__wrapper.modeling_main .right_side .images_wrapper img.first_arr {
    height: 80px;
    top: -4px;
    right: 37px;
  }
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .right_side .images_wrapper img.first_arr {
    height: 60px;
    top: -2px;
    right: 30px;
  }
}
.section_platform__main .platform_main__wrapper.modeling_main .right_side .images_wrapper img.second_arr {
  width: initial;
  position: absolute;
  bottom: -6px;
  left: 34px;
  animation: expandArrow 1.5s linear infinite alternate;
}
@media (max-width: 1141px) {
  .section_platform__main .platform_main__wrapper.modeling_main .right_side .images_wrapper img.second_arr {
    bottom: 28px;
    left: 18px;
  }
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .right_side .images_wrapper img.second_arr {
    width: 50px;
    bottom: 13px;
  }
}
.section_platform__main .platform_main__wrapper.modeling_main .bottom_side {
  margin: 0 0 0 0;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.modeling_main .bottom_side {
    margin: 20px 0 0 0;
  }
}
.section_platform__main .platform_main__wrapper.ux_main .left_side {
  padding: 0;
  width: calc((100% - 550px) / 2);
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.ux_main .left_side {
    width: 46%;
  }
}
.section_platform__main .platform_main__wrapper.ux_main .left_side .images_wrapper {
  width: 100%;
  height: initial;
}
.section_platform__main .platform_main__wrapper.ux_main .middle_side {
  max-width: 515px;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.ux_main .middle_side {
    max-width: 100%;
    order: 1;
    margin: 0 0 32px;
  }
}
.section_platform__main .platform_main__wrapper.ux_main .right_side {
  padding: 0;
  width: calc((100% - 550px) / 2);
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.ux_main .right_side {
    width: 50%;
  }
}
.section_platform__main .platform_main__wrapper.ux_main .right_side .images_wrapper {
  width: 100%;
  height: initial;
}
.section_platform__main .platform_main__wrapper.ux_main .bottom_side {
  margin: 0 0 0 0;
}
@media (max-width: 991px) {
  .section_platform__main .platform_main__wrapper.ux_main .bottom_side {
    margin: 20px 0 0 0;
  }
}
.section_platform__main .platform_main__text {
  margin: 4px 0 0 0;
}
.section_platform__main .platform_main__text img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.section_platform__main .platform_main__text img.fv--light {
  display: none;
}
.section_platform__main.section_platform__game .platform_main__wrapper {
  justify-content: center;
  z-index: 1;
  position: relative;
}
.section_platform__main.section_platform__game .platform_main__wrapper .game_bg {
  position: absolute;
  bottom: 93px;
  left: 50%;
  max-height: calc(100% - 85px);
  transform: translateX(-50%);
  display: block;
  width: 100%;
  max-width: 675px;
  z-index: 1;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_platform__main.section_platform__game .platform_main__wrapper .game_bg {
    bottom: 48px;
    max-width: 100%;
    max-height: calc(100% - 85px);
  }
}
.section_platform__main.section_platform__game .platform_main__wrapper .game_bg--light {
  display: none;
}
.section_platform__main.section_platform__game .platform_main__wrapper .middle_side {
  max-width: 670px;
  position: relative;
  z-index: 2;
}
.section_platform__main.section_platform__game .platform_main__wrapper .middle_side .btn {
  background: #212336;
  border: 1px solid rgba(101, 101, 101, 0.22);
  color: #fff;
}
.section_platform__main.section_platform__game .platform_main__wrapper .bottom_side {
  position: relative;
  z-index: 2;
}
.section_platform__main--roblox .platform_main__wrapper {
  align-items: initial;
}
.section_platform__main--roblox .platform_main__wrapper .left_side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  width: calc((100% - 475px) / 2);
  margin: -47px 0 0 0;
}
@media (max-width: 991px) {
  .section_platform__main--roblox .platform_main__wrapper .left_side {
    width: 50%;
    margin: 0;
  }
}
.section_platform__main--roblox .platform_main__wrapper .left_side .images_wrapper {
  width: initial;
  height: 100%;
}
@media (max-width: 991px) {
  .section_platform__main--roblox .platform_main__wrapper .left_side .images_wrapper {
    width: 100%;
  }
}
.section_platform__main--roblox .platform_main__wrapper .left_side .images_wrapper img {
  height: 100%;
  max-height: 300px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_platform__main--roblox .platform_main__wrapper .left_side .images_wrapper img {
    max-height: 300px;
  }
}
.section_platform__main--roblox .platform_main__wrapper .left_side .images_wrapper img.roblox--light {
  display: none;
}
.section_platform__main--roblox .platform_main__wrapper .middle_side {
  max-width: 475px;
}
@media (max-width: 991px) {
  .section_platform__main--roblox .platform_main__wrapper .middle_side {
    max-width: 100%;
    padding: 0;
  }
}
.section_platform__main--roblox .platform_main__wrapper .right_side {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  width: calc((100% - 475px) / 2);
  margin: -54px 0 0 0;
}
@media (max-width: 991px) {
  .section_platform__main--roblox .platform_main__wrapper .right_side {
    width: 50%;
    margin: 0;
  }
}
.section_platform__main--roblox .platform_main__wrapper .right_side .images_wrapper {
  width: initial;
  height: 100%;
}
@media (max-width: 991px) {
  .section_platform__main--roblox .platform_main__wrapper .right_side .images_wrapper {
    width: 100%;
  }
}
.section_platform__main--roblox .platform_main__wrapper .right_side .images_wrapper img {
  height: 100%;
  max-height: 380px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_platform__main--roblox .platform_main__wrapper .right_side .images_wrapper img {
    max-height: 300px;
  }
}
.section_platform__main--roblox .platform_main__wrapper .right_side .images_wrapper img.roblox--light {
  display: none;
}
.section_platform__main--roblox .platform_main__wrapper .bottom_side {
  margin: 0;
}
@media (max-width: 991px) {
  .section_platform__main--roblox .platform_main__wrapper .bottom_side {
    margin: 20px 0 0 0;
  }
}
.section_platform__main--motion .platform_main__wrapper {
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.section_platform__main--motion .platform_main__wrapper .middle_side {
  max-width: 670px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .section_platform__main--motion .platform_main__wrapper .middle_side h1 {
    font-size: 18px;
  }
}
.section_platform__main--motion .platform_main__wrapper .bottom_side {
  z-index: 2;
}
.section_platform__main--motion .motion_bg {
  display: block;
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
  z-index: 1;
}
@media (max-width: 1141px) {
  .section_platform__main--motion .motion_bg {
    bottom: 23px;
  }
}
@media (max-width: 991px) {
  .section_platform__main--motion .motion_bg {
    bottom: 38px;
  }
}

.section_program {
  padding: 35px 0 90px 0;
}
@media (max-width: 991px) {
  .section_program {
    padding: 30px 0 50px 0;
  }
}
.section_program .row {
  margin: -15px -8px;
}
@media (max-width: 991px) {
  .section_program .row {
    margin: -5px;
  }
}
.section_program .row [class*=col-] {
  padding: 15px 8px;
}
@media (max-width: 991px) {
  .section_program .row [class*=col-] {
    padding: 5px;
  }
}
.section_program .program_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px 10px 13px 22px;
  border: 1px solid var(--border-grey);
  position: relative;
  height: 100%;
  min-height: 220px;
  transition: 0.3s all ease;
}
.section_program .program_item:hover {
  box-shadow: 4px 3px 30px 0 rgba(68, 0, 83, 0.8);
  backdrop-filter: blur(4px);
}
.section_program .program_item:hover span img {
  transform: rotate(42deg);
}
.section_program .program_item--top {
  position: relative;
  width: 100%;
  margin: 0 0 40px;
  z-index: 2;
}
.section_program .program_item--top span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
  margin: 0 0 24px;
}
.section_program .program_item--top span img {
  display: block;
  width: 44px;
  height: 44px;
  min-width: 44px;
  transition: 0.3s all ease;
  margin: 0 0 0 15px;
}
.section_program .program_item--top p {
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-white);
  width: 100%;
  max-width: 170px;
}
.section_program .program_item small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #757575;
}
.section_program .program_item .program_image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  filter: grayscale(100%);
  height: 150px;
  object-fit: contain;
  object-position: top left;
}
@media (max-width: 991px) {
  .section_program .program_item .program_image {
    height: 130px;
  }
}
.section_program .program_item--link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.section_program .btn_wrapper {
  margin: 55px 0 0 0;
}
@media (max-width: 991px) {
  .section_program .btn_wrapper {
    margin: 30px 0 0 0;
  }
}
.section_program .btn_wrapper .btn {
  min-width: 100%;
  height: 82px;
}
@media (max-width: 991px) {
  .section_program .btn_wrapper .btn {
    height: initial;
  }
}
.section_program .btn_wrapper p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: var(--color-white);
  margin: 20px 0 0 0;
}
@media (max-width: 991px) {
  .section_program .btn_wrapper p {
    font-size: 16px;
    margin: 10px 0 0 0;
  }
}

.section_program__details {
  padding: 60px 0 100px 0;
  position: relative;
}
@media (max-width: 991px) {
  .section_program__details {
    padding: 30px 0 50px 0;
  }
}
.section_program__details:before {
  content: "";
  position: absolute;
  top: -180px;
  left: 0;
  width: 100%;
  height: calc(100% + 180px);
  background: url("../img/main_bg.png") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -2;
}
.section_program__details:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.3841911765) 40%, rgba(8, 8, 8, 0.8659838936) 100%);
  z-index: -1;
}
.section_program__details .back_btn {
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .section_program__details .back_btn {
    margin: 0 0 16px;
  }
}
.section_program__details .back_btn a {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
@media (max-width: 991px) {
  .section_program__details .back_btn a {
    font-size: 14px;
  }
}
.section_program__details .back_btn a:hover {
  border-color: transparent;
}
.section_program__details h1 {
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 36px;
  color: var(--color-white);
  margin: 0 0 35px;
}
@media (max-width: 991px) {
  .section_program__details h1 {
    font-size: 18px;
    margin: 0 0 24px;
  }
}
.section_program__details .program_details__wrapper .program_details__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border: 1px solid var(--border-grey);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.03);
  margin: 0 0 25px;
}
@media (max-width: 991px) {
  .section_program__details .program_details__wrapper .program_details__item {
    border-radius: 20px;
    padding: 10px;
    margin: 0 0 10px;
  }
}
.section_program__details .program_details__wrapper .program_details__item:nth-last-child(1) {
  margin: 0;
}
.section_program__details .program_details__wrapper .program_details__item:hover {
  background: var(--color-white);
}
.section_program__details .program_details__wrapper .program_details__item:hover .left_side .image_wrapper {
  background: var(--color-black);
}
.section_program__details .program_details__wrapper .program_details__item:hover .left_side small {
  color: var(--color-black);
}
.section_program__details .program_details__wrapper .program_details__item:hover .right_side {
  border-color: var(--color-black);
}
.section_program__details .program_details__wrapper .program_details__item:hover .right_side svg path {
  fill: var(--color-black);
}
.section_program__details .program_details__wrapper .program_details__item .left_side {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section_program__details .program_details__wrapper .program_details__item .left_side .image_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  min-width: 51px;
  height: 51px;
  border-radius: 50%;
  background: var(--color-white);
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .section_program__details .program_details__wrapper .program_details__item .left_side .image_wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
.section_program__details .program_details__wrapper .program_details__item .left_side .image_wrapper img {
  display: block;
  height: 25px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section_program__details .program_details__wrapper .program_details__item .left_side .image_wrapper img {
    height: 20px;
  }
}
.section_program__details .program_details__wrapper .program_details__item .left_side small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--color-white);
  transition: 0.3s all ease;
  margin: 0 0 0 15px;
}
@media (max-width: 1141px) {
  .section_program__details .program_details__wrapper .program_details__item .left_side small {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .section_program__details .program_details__wrapper .program_details__item .left_side small {
    font-size: 16px;
    margin: 0 0 0 7px;
  }
}
.section_program__details .program_details__wrapper .program_details__item .right_side {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  min-width: 51px;
  height: 51px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  margin: 0 0 0 15px;
}
@media (max-width: 991px) {
  .section_program__details .program_details__wrapper .program_details__item .right_side {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin: 0 0 0 10px;
  }
}
.section_program__details .program_details__wrapper .program_details__item .right_side svg {
  display: block;
}
@media (max-width: 991px) {
  .section_program__details .program_details__wrapper .program_details__item .right_side svg {
    height: 13px;
  }
}
.section_program__details .program_details__wrapper .program_details__item .right_side svg path {
  fill: var(--color-white);
  transition: 0.3s all ease;
}
.section_program__details .btns_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 0 0;
}
@media (max-width: 991px) {
  .section_program__details .btns_wrapper {
    flex-wrap: wrap;
    margin: 20px 0 0 0;
  }
}
.section_program__details .btns_wrapper .btn {
  margin: 0 13px;
}
@media (max-width: 991px) {
  .section_program__details .btns_wrapper .btn {
    width: 100%;
    margin: 5px 0;
  }
}

.section_lesson {
  padding: 60px 0 0 0;
  position: relative;
}
@media (max-width: 991px) {
  .section_lesson {
    padding: 30px 0 0 0;
  }
}
.section_lesson:before {
  content: "";
  position: absolute;
  top: -180px;
  left: 0;
  width: 100%;
  height: calc(100% + 180px);
  background: url("../img/main_bg.png") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -2;
}
.section_lesson:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.3841911765) 40%, rgba(8, 8, 8, 0.8659838936) 100%);
  z-index: -1;
}
.section_lesson .back_btn {
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .section_lesson .back_btn {
    margin: 0 0 16px;
  }
}
.section_lesson .back_btn a {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
@media (max-width: 991px) {
  .section_lesson .back_btn a {
    font-size: 14px;
  }
}
.section_lesson .back_btn a:hover {
  border-color: transparent;
}
.section_lesson h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 36px;
  text-align: center;
  color: var(--color-white);
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .section_lesson h1 {
    font-size: 23px;
    margin: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .section_lesson h1 br {
    display: none;
  }
}
.section_lesson .video_wrapper {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section_lesson .video_wrapper {
    height: 400px;
  }
}
.section_lesson .video_wrapper video {
  display: block;
  object-fit: cover;
  object-position: center;
}
.section_lesson .btns_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: 35px auto;
}
@media (max-width: 991px) {
  .section_lesson .btns_wrapper {
    flex-wrap: wrap;
    max-width: 100%;
    margin: 20px 0 0 0;
  }
}
.section_lesson .btns_wrapper .btn {
  width: calc(50% - 13px);
}
@media (max-width: 991px) {
  .section_lesson .btns_wrapper .btn {
    width: 100%;
    margin: 5px 0;
  }
}

.section_homework {
  padding: 45px 0 100px 0;
}
@media (max-width: 991px) {
  .section_homework {
    padding: 30px 0 50px 0;
  }
}
.section_homework h2 {
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .section_homework h2 {
    margin: 0 0 10px;
  }
}
.section_homework .subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-white);
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .section_homework .subtitle {
    font-size: 16px;
    margin: 0 0 20px;
  }
}
@media (max-width: 991px) {
  .section_homework .subtitle br {
    display: none;
  }
}
.section_homework .answer_wrapp {
  padding: 15px 25px 30px;
  backdrop-filter: blur(16.6px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-grey);
  border-radius: 5px;
}
@media (max-width: 991px) {
  .section_homework .answer_wrapp {
    padding: 24px 16px;
  }
}
.section_homework .answer_wrapp h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--color-white);
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .section_homework .answer_wrapp h5 {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.section_homework .answer_wrapp .answer_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section_homework .answer_wrapp .answer_wrapper .left_side {
  width: calc(100% - 330px);
}
@media (max-width: 1141px) {
  .section_homework .answer_wrapp .answer_wrapper .left_side {
    width: calc(100% - 300px);
  }
}
@media (max-width: 991px) {
  .section_homework .answer_wrapp .answer_wrapper .left_side {
    width: 100%;
  }
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper {
  background: #fff;
  border-radius: 5px;
  padding: 20px 80px 43px 24px;
  position: relative;
  min-height: 270px;
}
@media (max-width: 991px) {
  .section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper {
    padding: 16px;
    min-height: initial;
  }
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper textarea {
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #1e1e1e;
  height: 50px;
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper textarea {
    font-size: 14px;
    margin: 0 0 10px;
  }
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .row {
  margin: -10px;
}
@media (max-width: 1141px) {
  .section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .row {
    margin: -5px;
  }
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .row [class*=col-] {
  padding: 10px;
}
@media (max-width: 1141px) {
  .section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .row [class*=col-] {
    padding: 5px;
  }
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_document {
  position: relative;
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_document .attaching_image {
  display: block;
  width: 100%;
  height: 136px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 991px) {
  .section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_document .attaching_image {
    height: 150px;
  }
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_document .edit_block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_document .edit_block a {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  border-bottom: 1px solid transparent;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_document .edit_block a {
    font-size: 15px;
  }
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_document .edit_block a:hover {
  border-color: #fff;
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_document .edit_block .edit_to-trash {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s all ease;
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_document .edit_block .edit_to-trash:hover {
  opacity: 0.7;
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_document .edit_block .edit_to-trash img {
  display: block;
  height: 12px;
  object-fit: contain;
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_document--edit .edit_block {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 10px 0 0 0;
  }
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 11px;
  right: 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e1e1e;
  transition: 0.3s all ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  .section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_btn {
    position: static;
  }
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_btn:hover {
  opacity: 0.7;
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .attaching_btn img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .to-trash_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 13px;
  right: 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e1e1e;
  transition: 0.3s all ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  .section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .to-trash_btn {
    position: static;
    margin: 0 0 0 10px;
  }
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .to-trash_btn:hover {
  opacity: 0.7;
}
.section_homework .answer_wrapp .answer_wrapper .left_side .form_wrapper .to-trash_btn svg {
  display: block;
  object-fit: contain;
}
.section_homework .answer_wrapp .answer_wrapper .right_side {
  width: 100%;
  max-width: 320px;
}
@media (max-width: 1141px) {
  .section_homework .answer_wrapp .answer_wrapper .right_side {
    max-width: 290px;
  }
}
@media (max-width: 991px) {
  .section_homework .answer_wrapp .answer_wrapper .right_side {
    max-width: 100%;
    margin: 10px 0 0 0;
  }
}
.section_homework .answer_wrapp .answer_wrapper .right_side .btn {
  width: 100%;
}
.section_homework .answer_wrapp .btn_wrapper {
  width: calc(100% - 330px);
  margin: 20px 0 0 0;
}
@media (max-width: 991px) {
  .section_homework .answer_wrapp .btn_wrapper {
    width: 100%;
  }
}
.section_homework .answer_wrapp .btn_wrapper .btn {
  width: 100%;
}
.section_homework .answer_wrapp .btn_wrapper button:disabled,
.section_homework .answer_wrapp .btn_wrapper button[disabled] {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}
.section_homework .answer_wrapp .btn_wrapper button:disabled:hover,
.section_homework .answer_wrapp .btn_wrapper button[disabled]:hover {
  background: rgba(107, 113, 210, 0.2);
}
.section_homework .answer_wrapp .btn_wrapper button:disabled:hover img,
.section_homework .answer_wrapp .btn_wrapper button[disabled]:hover img {
  transform: rotate(0);
}
.section_homework .previously_answered {
  padding: 40px 0 0 0;
}
.section_homework .previously_answered h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--color-white);
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .section_homework .previously_answered h4 {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.section_homework .previously_answered .answered_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  backdrop-filter: blur(16.6px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-grey);
  border-radius: 5px;
  padding: 20px 20px 50px 20px;
}
@media (max-width: 991px) {
  .section_homework .previously_answered .answered_wrapper {
    padding: 24px 16px;
    flex-direction: column-reverse;
  }
}
.section_homework .previously_answered .answered_wrapper .left_side {
  width: calc(100% - 390px);
}
@media (max-width: 1141px) {
  .section_homework .previously_answered .answered_wrapper .left_side {
    width: calc(100% - 300px);
  }
}
@media (max-width: 991px) {
  .section_homework .previously_answered .answered_wrapper .left_side {
    width: 100%;
  }
}
.section_homework .previously_answered .answered_wrapper .left_side .row {
  margin: -10px;
}
@media (max-width: 1141px) {
  .section_homework .previously_answered .answered_wrapper .left_side .row {
    margin: -5px;
  }
}
.section_homework .previously_answered .answered_wrapper .left_side .row [class*=col-] {
  padding: 10px;
}
@media (max-width: 1141px) {
  .section_homework .previously_answered .answered_wrapper .left_side .row [class*=col-] {
    padding: 5px;
  }
}
.section_homework .previously_answered .answered_wrapper .left_side .time_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .section_homework .previously_answered .answered_wrapper .left_side .time_wrapper {
    margin: 0 0 15px;
  }
}
.section_homework .previously_answered .answered_wrapper .left_side .time_wrapper p {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-white);
  border: 1px solid var(--border-grey);
  background: var(--bg-transparent);
  backdrop-filter: blur(4px);
  border-radius: 100px;
  padding: 8px 14px;
  min-height: 45px;
}
@media (max-width: 991px) {
  .section_homework .previously_answered .answered_wrapper .left_side .time_wrapper p {
    font-size: 14px;
  }
}
.section_homework .previously_answered .answered_wrapper .left_side .time_wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 21px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--color-white);
}
@media (max-width: 991px) {
  .section_homework .previously_answered .answered_wrapper .left_side .time_wrapper a {
    margin: 0 0 0 10px;
  }
}
.section_homework .previously_answered .answered_wrapper .left_side .time_wrapper a:hover {
  background: #6b71d2;
}
.section_homework .previously_answered .answered_wrapper .left_side .time_wrapper a:hover svg path {
  stroke: #fff;
}
.section_homework .previously_answered .answered_wrapper .left_side .time_wrapper a svg {
  display: block;
}
.section_homework .previously_answered .answered_wrapper .left_side .time_wrapper a svg path {
  transition: 0.3s all ease;
  stroke: var(--color-black);
}
.section_homework .previously_answered .answered_wrapper .left_side .answered_text {
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .section_homework .previously_answered .answered_wrapper .left_side .answered_text {
    margin: 0 0 10px;
  }
}
.section_homework .previously_answered .answered_wrapper .left_side .answered_text p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-white);
}
@media (max-width: 991px) {
  .section_homework .previously_answered .answered_wrapper .left_side .answered_text p {
    font-size: 16px;
  }
}
.section_homework .previously_answered .answered_wrapper .left_side .attaching_document {
  position: relative;
}
.section_homework .previously_answered .answered_wrapper .left_side .attaching_document .attaching_image {
  display: block;
  width: 100%;
  height: 136px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 991px) {
  .section_homework .previously_answered .answered_wrapper .left_side .attaching_document .attaching_image {
    height: 150px;
  }
}
.section_homework .previously_answered .answered_wrapper .left_side .attaching_document .edit_block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.52);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section_homework .previously_answered .answered_wrapper .left_side .attaching_document .edit_block a {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  border-bottom: 1px solid transparent;
}
@media (max-width: 991px) {
  .section_homework .previously_answered .answered_wrapper .left_side .attaching_document .edit_block a {
    font-size: 15px;
  }
}
.section_homework .previously_answered .answered_wrapper .left_side .attaching_document .edit_block a:hover {
  border-color: #fff;
}
.section_homework .previously_answered .answered_wrapper .left_side .attaching_document .edit_block .edit_to-trash {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s all ease;
}
.section_homework .previously_answered .answered_wrapper .left_side .attaching_document .edit_block .edit_to-trash:hover {
  opacity: 0.7;
}
.section_homework .previously_answered .answered_wrapper .left_side .attaching_document .edit_block .edit_to-trash img {
  display: block;
  height: 12px;
  object-fit: contain;
}
.section_homework .previously_answered .answered_wrapper .left_side .attaching_document--edit .edit_block {
  display: flex;
}
.section_homework .previously_answered .answered_wrapper .right_side {
  width: 100%;
  max-width: 320px;
  padding: 0 85px 0 0;
}
@media (max-width: 1141px) {
  .section_homework .previously_answered .answered_wrapper .right_side {
    max-width: 290px;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .section_homework .previously_answered .answered_wrapper .right_side {
    max-width: 100%;
    margin: 0 0 20px;
  }
}
.section_homework .previously_answered .answered_wrapper .right_side h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--color-white);
  margin: 0 0 18px;
}
@media (max-width: 991px) {
  .section_homework .previously_answered .answered_wrapper .right_side h5 {
    font-size: 18px;
    margin: 0 0 10px;
  }
}
.section_homework .previously_answered .answered_wrapper .right_side .result {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 53px;
  padding: 13px;
  border-radius: 2px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #1e1e1e;
  margin: 0 0 18px;
}
@media (max-width: 991px) {
  .section_homework .previously_answered .answered_wrapper .right_side .result {
    margin: 0 0 10px;
    padding: 10px;
    min-height: 50px;
  }
}
.section_homework .previously_answered .answered_wrapper .right_side .result:nth-last-child(1) {
  margin: 0;
}
.section_homework .previously_answered .answered_wrapper .right_side .result_wait {
  background: #b7b7b7;
}
.section_homework .previously_answered .answered_wrapper .right_side .result_confirm {
  background: #714eff;
  color: #fff;
}
.section_homework .previously_answered .answered_wrapper .right_side .result_rejected {
  background: #febc7d;
}

footer {
  padding: 48px 0 60px 0;
  background: #080808;
}
@media (max-width: 991px) {
  footer {
    padding: 30px 0;
  }
}
footer .footer_top {
  padding: 0 0 56px;
  border-bottom: 1px solid var(--border-grey);
}
@media (max-width: 991px) {
  footer .footer_top {
    padding: 0 0 10px;
  }
}
footer .footer_top .footer_contacts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer_top .footer_contacts .left_side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 100%;
  width: 100%;
  max-width: 250px;
}
@media (max-width: 991px) {
  footer .footer_top .footer_contacts .left_side {
    max-width: 100%;
    margin: 0 0 20px;
  }
}
footer .footer_top .footer_contacts .left_side ul li {
  margin: 0 0 22px;
}
@media (max-width: 991px) {
  footer .footer_top .footer_contacts .left_side ul li {
    margin: 0 0 10px;
  }
}
footer .footer_top .footer_contacts .left_side ul li a {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--color-white);
}
@media (max-width: 1300px) {
  footer .footer_top .footer_contacts .left_side ul li a {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  footer .footer_top .footer_contacts .left_side ul li a {
    font-size: 16px;
  }
}
footer .footer_top .footer_contacts .left_side .footer_socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
footer .footer_top .footer_contacts .left_side .footer_socials li {
  margin: 0 10px 0 0;
}
@media (max-width: 991px) {
  footer .footer_top .footer_contacts .left_side .footer_socials li {
    margin: 0 6px 0 0;
  }
}
footer .footer_top .footer_contacts .left_side .footer_socials li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(24, 24, 24, 0.5);
  background: #fff;
  transition: 0.3s all ease;
  border-radius: 12px;
}
@media (max-width: 991px) {
  footer .footer_top .footer_contacts .left_side .footer_socials li a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
}
footer .footer_top .footer_contacts .left_side .footer_socials li a:hover {
  border-color: #6B71D2;
  background: #6B71D2;
}
footer .footer_top .footer_contacts .left_side .footer_socials li a:hover svg path {
  fill: #fff;
}
footer .footer_top .footer_contacts .left_side .footer_socials li a svg {
  display: block;
  height: 17px;
  object-fit: contain;
}
@media (max-width: 991px) {
  footer .footer_top .footer_contacts .left_side .footer_socials li a svg {
    height: 15px;
    width: 20px;
  }
}
footer .footer_top .footer_contacts .left_side .footer_socials li a svg path {
  transition: 0.3s all ease;
}
footer .footer_top .footer_contacts .right_side {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc(100% - 365px);
}
@media (max-width: 1141px) {
  footer .footer_top .footer_contacts .right_side {
    width: calc(100% - 300px);
  }
}
@media (max-width: 991px) {
  footer .footer_top .footer_contacts .right_side {
    width: 100%;
  }
}
@media (max-width: 991px) {
  footer .footer_top .footer_contacts .right_side ul {
    width: 100%;
  }
}
footer .footer_top .footer_contacts .right_side ul li {
  margin: 0 0 22px;
}
@media (max-width: 991px) {
  footer .footer_top .footer_contacts .right_side ul li {
    margin: 0 0 10px;
  }
}
footer .footer_top .footer_contacts .right_side ul li:nth-last-child(1) {
  margin: 0;
}
@media (max-width: 991px) {
  footer .footer_top .footer_contacts .right_side ul li:nth-last-child(1) {
    margin: 0 0 10px;
  }
}
footer .footer_top .footer_contacts .right_side ul li p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--color-white);
}
@media (max-width: 1300px) {
  footer .footer_top .footer_contacts .right_side ul li p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  footer .footer_top .footer_contacts .right_side ul li p {
    font-size: 16px;
  }
}
footer .footer_top .footer_contacts .right_side ul li a {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
@media (max-width: 1300px) {
  footer .footer_top .footer_contacts .right_side ul li a {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  footer .footer_top .footer_contacts .right_side ul li a {
    font-size: 16px;
  }
}
footer .footer_top .footer_contacts .right_side ul li a:hover {
  border-color: transparent;
}
footer .footer_bottom {
  padding: 33px 0 0 0;
}
@media (max-width: 991px) {
  footer .footer_bottom {
    padding: 20px 0 0 0;
  }
}
footer .footer_bottom .logo {
  display: block;
}
footer .footer_bottom .logo:hover {
  opacity: 0.7;
}
footer .footer_bottom .logo img {
  display: block;
  height: 70px;
  object-fit: contain;
}
@media (max-width: 991px) {
  footer .footer_bottom .logo img {
    height: 50px;
  }
}
footer .footer_bottom .logo img.logo_full--white {
  display: none;
}
footer .footer_bottom ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 35px 0;
}
@media (max-width: 991px) {
  footer .footer_bottom ul {
    margin: 20px 0;
  }
}
footer .footer_bottom ul li {
  width: calc(33.3333333333% - 23px);
  margin: 0 0 22px 0;
}
@media (max-width: 991px) {
  footer .footer_bottom ul li {
    width: 100%;
    margin: 0 0 10px;
  }
}
footer .footer_bottom ul li a {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--color-white);
  transition: all width 0.3s;
  position: relative;
}
@media (max-width: 1300px) {
  footer .footer_bottom ul li a {
    font-size: 18px;
  }
}
footer .footer_bottom ul li a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: width 0.3s;
}
footer .footer_bottom ul li a:hover:after {
  width: 100%;
}
footer .footer_bottom .btn {
  min-width: 100%;
}

.modal {
  z-index: 10000;
}
.modal .close {
  display: block;
  position: absolute;
  top: 25px;
  right: 25px;
  opacity: 1;
  padding: 0;
}
@media (max-width: 991px) {
  .modal .close {
    top: 15px;
    right: 15px;
  }
}
.modal .close:hover {
  opacity: 0.7;
}
.modal .close svg {
  display: block;
  width: 25px;
  height: 25px;
}
@media (max-width: 991px) {
  .modal .close svg {
    width: 16px;
    height: 16px;
  }
}
.modal .close svg rect {
  fill: var(--color-white);
}
.modal.feedback-modal .modal-dialog {
  width: 98%;
  max-width: 955px;
  border: none;
  border-radius: 0;
}
@media (max-width: 991px) {
  .modal.feedback-modal .modal-dialog {
    margin: 0.5rem;
    width: initial;
    max-width: 100%;
  }
}
.modal.feedback-modal .modal-dialog .modal-content {
  border: none;
  border-radius: 0;
  background: #1b1d30;
  padding: 62px 40px 72px 40px;
  border: 1px solid var(--border-grey);
  border-radius: 10px;
}
@media (max-width: 991px) {
  .modal.feedback-modal .modal-dialog .modal-content {
    padding: 32px 16px;
  }
}
.modal.feedback-modal .modal-dialog .modal-content .input_wrapper {
  width: 100%;
  margin: 0 0 20px;
}
.modal.feedback-modal .modal-dialog .modal-content .input_wrapper p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
  margin: 0 0 10px;
}
@media (max-width: 991px) {
  .modal.feedback-modal .modal-dialog .modal-content .input_wrapper p {
    font-size: 16px;
    margin: 0 0 5px;
  }
}
.modal.feedback-modal .modal-dialog .modal-content .input_wrapper input {
  display: block;
  width: 100%;
  height: 62px;
  background: #fff;
  border-radius: 5px;
  padding: 0 35px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #999;
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .modal.feedback-modal .modal-dialog .modal-content .input_wrapper input {
    height: 50px;
    font-size: 14px;
    padding: 0 20px;
  }
}
.modal.feedback-modal .modal-dialog .modal-content .input_wrapper input:focus, .modal.feedback-modal .modal-dialog .modal-content .input_wrapper input:hover {
  color: #000;
}
.modal.feedback-modal .modal-dialog .modal-content .check_wrapper {
  margin: 0 0 20px;
}
.modal.feedback-modal .modal-dialog .modal-content .check_wrapper .check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 0 13px;
}
@media (max-width: 991px) {
  .modal.feedback-modal .modal-dialog .modal-content .check_wrapper .check {
    margin: 0 0 10px;
  }
}
.modal.feedback-modal .modal-dialog .modal-content .check_wrapper .check:nth-last-child(1) {
  margin: 0;
}
.modal.feedback-modal .modal-dialog .modal-content .check_wrapper .check p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  margin: 0 0 0 10px;
}
@media (max-width: 991px) {
  .modal.feedback-modal .modal-dialog .modal-content .check_wrapper .check p {
    font-size: 14px;
  }
}
.modal.feedback-modal .modal-dialog .modal-content .check_wrapper .check p a {
  text-decoration: underline;
}
.modal.feedback-modal .modal-dialog .modal-content .check_wrapper .check p a:hover {
  text-decoration: none;
}
.modal.feedback-modal .modal-dialog .modal-content .check_wrapper .check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  transition: all 0.3s ease;
}
.modal.feedback-modal .modal-dialog .modal-content .check_wrapper .check input:checked ~ .checkmark:after {
  opacity: 1;
  visibility: visible;
}
.modal.feedback-modal .modal-dialog .modal-content .check_wrapper .check .checkmark {
  position: relative;
  height: 24px;
  width: 24px;
  min-width: 24px;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 2px;
  border: 1px solid var(--color-white);
}
.modal.feedback-modal .modal-dialog .modal-content .check_wrapper .check .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  left: 50%;
  top: 43%;
  width: 6px;
  height: 12px;
  border: solid var(--color-white);
  border-width: 0 1px 1px 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal.feedback-modal .modal-dialog .modal-content h3 {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 28px;
  color: var(--color-white);
  margin: 0 0 17px;
}
@media (max-width: 991px) {
  .modal.feedback-modal .modal-dialog .modal-content h3 {
    font-size: 14px;
    margin: 0 0 15px;
  }
}
.modal.feedback-modal .modal-dialog .modal-content .btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 0 0;
}
@media (max-width: 991px) {
  .modal.feedback-modal .modal-dialog .modal-content .btn_wrapper {
    margin: 30px 0 0 0;
  }
}
.modal.feedback-modal .modal-dialog .modal-content .btn_wrapper .btn {
  width: 100%;
  max-width: 100%;
}
.modal.thx-modal .modal-dialog {
  width: 98%;
  max-width: 1160px;
  border: none;
  border-radius: 0;
}
@media (max-width: 991px) {
  .modal.thx-modal .modal-dialog {
    margin: 0.5rem;
    width: initial;
    max-width: 100%;
  }
}
.modal.thx-modal .modal-dialog .modal-content {
  border: none;
  border-radius: 0;
  background: var(--color-black);
  padding: 62px 40px 72px 40px;
  border: 1px solid var(--border-grey);
  border-radius: 10px;
}
@media (max-width: 991px) {
  .modal.thx-modal .modal-dialog .modal-content {
    padding: 32px 16px;
  }
}
.modal.thx-modal .modal-dialog .modal-content p {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 36px;
  color: var(--color-white);
  margin: 0 0 17px;
}
@media (max-width: 991px) {
  .modal.thx-modal .modal-dialog .modal-content p {
    font-size: 24px;
    margin: 0 0 15px;
  }
}
.modal.thx-modal .modal-dialog .modal-content p br {
  display: none;
}
@media (max-width: 991px) {
  .modal.thx-modal .modal-dialog .modal-content p br {
    display: block;
  }
}
.modal.thx-modal .modal-dialog .modal-content span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-align: center;
  color: var(--color-white);
  margin: 0 0 40px;
}
@media (max-width: 991px) {
  .modal.thx-modal .modal-dialog .modal-content span {
    font-size: 16px;
    margin: 0 0 30px;
  }
}
.modal.thx-modal .modal-dialog .modal-content .btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.qna-modal .modal-dialog {
  width: 98%;
  max-width: 735px;
  border: none;
  border-radius: 0;
}
@media (max-width: 991px) {
  .modal.qna-modal .modal-dialog {
    margin: 0.5rem;
    width: initial;
    max-width: 100%;
  }
}
.modal.qna-modal .modal-dialog .modal-content {
  border: none;
  border-radius: 0;
  background: #1b1d30;
  padding: 48px 24px 24px 24px;
  border: 1px solid var(--border-grey);
  border-radius: 5px;
}
@media (max-width: 991px) {
  .modal.qna-modal .modal-dialog .modal-content {
    padding: 48px 16px 16px 16px;
  }
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .btn_wrapper .btn {
  padding: 10px 33px;
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .btn_wrapper .btn img {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 12px 0 0;
  transform: rotate(0) !important;
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna {
  position: relative;
  width: 100%;
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question {
  margin: 0 0 5px;
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question.active .title_dropdown__qna .vertical {
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-270deg) !important;
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .title_dropdown__qna {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 15px 15px 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  border-radius: 3px;
  color: #000;
  background: #fff;
}
@media (max-width: 991px) {
  .modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .title_dropdown__qna {
    font-size: 16px;
    padding: 16px;
  }
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .title_dropdown__qna .collapse_plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  min-width: 35px;
  height: 35px;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(110deg, #c990a6 0%, #be8bae 10.75%, #af84b9 25.21%, #9f7dc4 53.49%, #8269ad 71.03%, #6e5b95 100%);
  box-shadow: inset 2px -6px 10px 0 rgba(254, 188, 125, 0.71);
  margin: 0 0 0 10px;
}
@media (max-width: 991px) {
  .modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .title_dropdown__qna .collapse_plus {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .title_dropdown__qna .collapse_plus small {
  display: block;
  background: #fff;
  transition: 0.3s all ease;
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .title_dropdown__qna .collapse_plus .horizontal {
  width: 20px;
  height: 1px;
}
@media (max-width: 991px) {
  .modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .title_dropdown__qna .collapse_plus .horizontal {
    width: 20px;
  }
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .title_dropdown__qna .collapse_plus .vertical {
  width: 1px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}
@media (max-width: 991px) {
  .modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .title_dropdown__qna .collapse_plus .vertical {
    height: 20px;
  }
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu {
  display: none;
  padding: 15px 15px 15px 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.08em;
  background: #fff;
  color: #000;
  border-radius: 5px;
  margin: 5px 0 22px 0;
}
@media (max-width: 991px) {
  .modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu {
    font-size: 14px;
    padding: 16px;
    margin: 5px 0 15px 0;
  }
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu p {
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu p {
    margin: 0 0 10px;
  }
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu p:nth-last-child(1) {
  margin: 0;
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu b {
  font-weight: 700;
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu ul {
  margin: 0 0 35px;
}
@media (max-width: 991px) {
  .modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu ul {
    margin: 0 0 15px;
  }
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu ul:nth-last-child(1) {
  margin: 0;
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu ul li {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #000;
  position: relative;
  margin: 0 0 5px;
  padding: 0 0 0 35px;
}
@media (max-width: 991px) {
  .modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu ul li {
    font-size: 14px;
    padding: 0 0 0 15px;
  }
}
.modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu ul li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 10px;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .modal.qna-modal .modal-dialog .modal-content .qna_modal__wrapper .dropdown_qna .question .default-submenu ul li:before {
    width: 3px;
    height: 3px;
    top: 8px;
    left: 0;
  }
}

.modal-open header {
  padding-right: 17px;
}
@media (max-width: 991px) {
  .modal-open header {
    padding: 0;
  }
}
.modal-open header .header_top {
  padding-right: 17px;
}
@media (max-width: 991px) {
  .modal-open header .header_top {
    padding: 0;
  }
}

@supports (-webkit-touch-callout: none) {
  .modal-open header {
    padding-right: 0 !important;
  }
  .modal-open header .header_top {
    padding-right: 0 !important;
  }
}
.body_hidden {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 11px 15px;
}
.btn_blue {
  border-radius: 5px;
  background: rgba(107, 113, 210, 0.2);
  border: 1px solid rgba(107, 113, 210, 0.6);
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
  min-height: 68px;
  padding: 11px 15px 11px 26px;
}
@media (max-width: 991px) {
  .btn_blue {
    font-weight: 400;
    font-size: 16px;
    padding: 10px 20px;
    min-height: 50px;
  }
}
.btn_blue:hover {
  background: rgba(107, 113, 210, 0.6);
}
.btn_blue:hover img {
  transform: rotate(42deg);
}
.btn_blue img {
  display: block;
  transition: 0.3s all ease;
  margin: 0 0 0 37px;
}
@media (max-width: 991px) {
  .btn_blue img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin: 0 0 0 20px;
  }
}
.btn_purple {
  background: #6b71d2;
  border-radius: 5px;
  border: 1px solid #6b71d2;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #fff;
  padding: 23px;
  min-height: 76px;
}
@media (max-width: 991px) {
  .btn_purple {
    font-size: 16px;
    padding: 10px;
    min-height: 62px;
  }
}
.btn_purple:hover {
  background: transparent;
  color: #6b71d2;
}

.range_slider {
  border-radius: 0 !important;
  border: none !important;
  background: #fff !important;
  height: 3px !important;
}
.range_slider .ui-widget-header {
  background: #6b71d2;
  border-radius: 0 !important;
}
.range_slider .ui-slider-handle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: none !important;
  background: url("../img/range.svg") center no-repeat;
  background-size: contain;
  cursor: pointer;
  outline: none !important;
}
@media (max-width: 991px) {
  .range_slider .ui-slider-handle {
    width: 28px;
    height: 28px;
  }
}
.range_slider .ui-slider-handle:before {
  content: "";
  position: absolute;
  top: -11px;
  left: -11px;
  width: calc(100% + 22px);
  height: calc(100% + 22px);
  border: 1px solid var(--border-grey);
  border-radius: 50%;
}
@media (max-width: 991px) {
  .range_slider .ui-slider-handle:before {
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
  }
}

.slick-arrow {
  display: none !important;
}

.section__sliderNav--arrows {
  z-index: 5;
}
.section__sliderNav--arrows button {
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 8px;
  padding: 0;
  width: 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #21213A;
}
@media (max-width: 1300px) {
  .section__sliderNav--arrows button {
    left: -10px;
  }
}
@media (max-width: 991px) {
  .section__sliderNav--arrows button {
    width: 50px;
    height: 70px;
    border-radius: 6px;
  }
}
.section__sliderNav--arrows button:hover {
  background: #555892;
}
.section__sliderNav--arrows button.prev svg {
  transform: rotate(180deg);
}
.section__sliderNav--arrows button.next {
  left: initial;
  right: -15px;
}
@media (max-width: 1300px) {
  .section__sliderNav--arrows button.next {
    right: -10px;
  }
}
.section__sliderNav--arrows button svg {
  display: block;
}
@media (max-width: 991px) {
  .section__sliderNav--arrows button svg {
    width: 20px;
  }
}
.section__sliderNav--arrows button svg path {
  transition: 0.3s all ease;
}

h2 {
  font-family: "Grtsk Giga", sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--color-e9);
  margin: 0 0 50px;
}
@media (max-width: 991px) {
  h2 {
    font-size: 24px;
    margin: 0 0 30px;
  }
}

.menu_box {
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
  min-width: 30px;
}
@media (max-width: 991px) {
  .menu_box {
    display: inline-flex;
    margin: 0 0 0 20px;
  }
}
.menu_box.fixed {
  position: fixed;
  top: 50px;
  right: 15px;
  background: linear-gradient(110deg, #c990a6 0%, #be8bae 10.75%, #af84b9 25.21%, #9f7dc4 53.49%, #8269ad 71.03%, #6e5b95 100%);
  box-shadow: inset 2px -6px 10px 0 rgba(254, 188, 125, 0.71);
  border: 1px solid rgba(232, 232, 232, 0.4);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.menu_box.fixed .hamburger .line {
  background-color: #fff !important;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hamburger .line {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 127px;
  margin: 0 0 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger .line:nth-last-child(1) {
  margin: 0;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger.is-active .line {
  width: 30px;
}
.hamburger.is-active .line:nth-child(3) {
  opacity: 0;
}
.hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
  -ms-transform: translateY(6px) rotate(45deg);
  -o-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
  background: var(--color-white);
}
.hamburger.is-active .line:nth-child(2) {
  -webkit-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
  background: var(--color-white);
}

.mob_nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  padding: 160px 20px 40px 20px;
  background: var(--bg-black);
  z-index: 1;
  min-height: 100vh;
}
.mob_nav.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 150;
}
.mob_nav .mob_nav__top {
  margin: 0 0 40px;
}
.mob_nav .mob_nav__top ul li {
  margin: 0 0 20px;
}
.mob_nav .mob_nav__top ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: var(--color-white);
  border-radius: 100px;
}
.mob_nav .mob_nav__top ul li a.current_page {
  border: 1px solid var(--border-grey);
  padding: 15px;
}
.mob_nav .mob_nav__bottom .header_contacts li {
  margin: 0 0 20px;
}
.mob_nav .mob_nav__bottom .header_contacts li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--color-white);
}
.mob_nav .mob_nav__bottom .header_socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.mob_nav .mob_nav__bottom .header_socials li {
  margin: 0 5px;
}
@media (max-width: 991px) {
  .mob_nav .mob_nav__bottom .header_socials li {
    margin: 0 6px 0 0;
  }
}
.mob_nav .mob_nav__bottom .header_socials li a {
  display: block;
}
.mob_nav .mob_nav__bottom .header_socials li a:hover {
  opacity: 0.7;
}
.mob_nav .mob_nav__bottom .header_socials li a img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  border: 1px solid rgba(24, 24, 24, 0.5);
  border-radius: 12px;
}

.fixed_btns {
  position: fixed;
  bottom: 100px;
  right: 50px;
  z-index: 999;
}
@media (max-width: 991px) {
  .fixed_btns {
    bottom: 50px;
    right: 20px;
  }
}
.fixed_btns .btn_help {
  display: block;
  position: relative;
}
.fixed_btns .btn_help:after, .fixed_btns .btn_help:before {
  content: "";
  position: absolute;
  border: 1px solid #d5d5d5;
  left: 0;
  opacity: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50px;
  animation: pulse 2s linear infinite;
  z-index: 1;
}
.fixed_btns .btn_help:after {
  animation-delay: 0.5s;
}
.fixed_btns .btn_help:hover {
  opacity: 0.7;
}
.fixed_btns .btn_help img {
  display: block;
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
}
@media (max-width: 991px) {
  .fixed_btns .btn_help img {
    width: 56px;
    height: 56px;
  }
}

.to-top {
  position: fixed;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 149;
  display: none;
}
.to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid transparent;
}
.to-top a img {
  display: block;
  object-fit: contain;
}

body.light-theme {
  --color-black: #fff;
  --color-white: #1e1e1e;
  --color-e9: #1e1e1e;
  --color-c7: #1e1e1e;
  --color-0f: #e9e9e9;
  --bg-black: #f7f7f7;
  --bg-transparent: rgba(24, 24, 24, 0.08);
  --bg-black-purle: rgba(230, 222, 255, 0.89);
  --bg-0a: #fff;
  --border-grey: rgba(24, 24, 24, 0.5);
  --bg-10: #fff;
  --bg-17: #fff;
  --color-profile: rgba(30, 30, 30, 0.54);
  --color-4698: #989898;
}
body.light-theme header .header_top__wrapper {
  background: #DBDCF0;
}
body.light-theme header .header_bottom .header_bottom__wrapper .header_bottom__middle {
  backdrop-filter: blur(98.3000030518px);
  background: rgba(0, 0, 0, 0.03);
}
body.light-theme header .header_mob__fixed {
  background: #DBDCF0;
}
body.light-theme .modal.feedback-modal .modal-dialog .modal-content,
body.light-theme .modal.qna-modal .modal-dialog .modal-content {
  background: #DBDCF0;
}
body.light-theme .section_main:after {
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 0.3841911765) 40%, rgba(247, 247, 247, 0.8659838936) 100%);
}
body.light-theme .section_main .main_wrapper .left_side .animation_title img {
  display: none;
}
body.light-theme .section_main .main_wrapper .right_side .animation_title img {
  display: none;
}
body.light-theme .section_main .main_wrapper .left_side .animation_title .img_light {
  display: block;
}
body.light-theme .section_main .main_wrapper .right_side .animation_title .img_light {
  display: block;
}
body.light-theme .section_main .main_wrapper .right_side .mobile_title img {
  display: none;
}
body.light-theme .section_main .main_wrapper .right_side .mobile_title .img_light {
  display: block;
}
body.light-theme .why_wrapper .why_item {
  box-shadow: none;
}
body.light-theme .why_wrapper .why_item p,
body.light-theme .why_wrapper .why_item span {
  color: #1e1e1e;
}
body.light-theme .directions_slider__wrapper .directions_slider .slider_item .directions_item--image {
  display: none;
}
body.light-theme .directions_slider__wrapper .directions_slider .slider_item .directions_item--image-mob {
  display: block;
}
body.light-theme .directions_slider__wrapper .directions_slider .slider_item .directions_item:hover {
  box-shadow: 0 3px 18px 0 rgba(68, 0, 83, 0.4);
}
body.light-theme .section_help .help_item .right_side .image_wrapper img {
  box-shadow: 0 4px 55px 0 rgba(197, 85, 255, 0.18);
}
body.light-theme .section_how:before {
  filter: brightness(200%) blur(25.854850769px);
}
body.light-theme .section_how .tabs_wrapper .tab-content .image_wrapper img,
body.light-theme .section_how .tabs_wrapper .tab-content .first_item__wrapper,
body.light-theme .section_how .tabs_wrapper .tab-content .second_item__wrapper,
body.light-theme .section_how .tabs_wrapper .tab-content .third_item__wrapper,
body.light-theme .section_how .tabs_wrapper .tab-content .fourth_item__wrapper {
  box-shadow: none;
}
body.light-theme .section_feedback {
  position: relative;
}
body.light-theme .section_feedback:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(234, 234, 234, 0) 0%, rgba(234, 234, 234, 0.38) 40%, rgba(234, 234, 234, 0.86) 100%);
  z-index: -1;
}
body.light-theme .section_project {
  position: relative;
}
body.light-theme .section_project:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 0.38) 40%, rgba(247, 247, 247, 0.9) 100%);
  z-index: 1;
}
body.light-theme .section_project .project_info:nth-last-child(1) .project_info__item:before {
  background: url(../img/project_shadow--white.png) center no-repeat;
  background-size: contain;
  top: 60%;
  width: calc(100% + 420px);
  height: 530px;
}
@media (max-width: 1300px) {
  body.light-theme .section_project .project_info:nth-last-child(1) .project_info__item:before {
    width: 100%;
    top: 50%;
  }
}
body.light-theme .section_project .project_decoration {
  display: none;
}
body.light-theme .section_project .project_decoration--light {
  display: block;
}
body.light-theme .section_project:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 150px;
  height: 280px;
  background: url("../img/project_decoration_1--light.png") left no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  body.light-theme .section_project:before {
    content: none;
  }
}
body.light-theme .marquee span {
  background: linear-gradient(180deg, #febc7d 0%, #6b71d2 5%, #f7f7f7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.light-theme footer {
  background: transparent;
}
body.light-theme footer .footer_bottom .logo img {
  display: none;
}
body.light-theme footer .footer_bottom .logo img.logo_full--white {
  display: block;
}
body.light-theme .section__sliderNav--arrows button {
  background: #CEC7F0;
}
body.light-theme .section__sliderNav--arrows button svg path {
  fill: #1e1e1e;
}
body.light-theme .section_catalog__main:after {
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 0.3841911765) 40%, rgba(247, 247, 247, 0.8659838936) 100%);
}
body.light-theme .section_advantages:before {
  background: linear-gradient(0deg, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 0.38) 40%, rgba(247, 247, 247, 0.9) 100%);
}
body.light-theme .section_advantages:after {
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 0.38) 40%, rgba(247, 247, 247, 0.9) 100%);
}
body.light-theme .section_advantages .advantages_decoration {
  filter: brightness(120%) blur(25.854850769px);
}
body.light-theme .section_profession__main:after {
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 0.3841911765) 40%, rgba(247, 247, 247, 0.8659838936) 100%);
}
body.light-theme .profession_wrapper .profession_item .profession_slider__content .mouse_icn {
  filter: brightness(0) saturate(100%);
}
body.light-theme .section_login {
  background: url("../img/login_bg--white.png") center no-repeat;
  background-size: cover;
}
body.light-theme .section_login .login_wrapper {
  backdrop-filter: blur(16.6000003815px);
  background: rgba(107, 113, 210, 0.2);
}
body.light-theme .section_login .login_wrapper ul li {
  color: #666;
}
body.light-theme .section_login .login_wrapper .login_register p {
  color: #727272;
}
body.light-theme .section_cabinet {
  background: url("../img/login_bg--white.png") center no-repeat;
  background-size: cover;
}
body.light-theme .section_cabinet .user_info__wrapper {
  backdrop-filter: blur(16.6000003815px);
  background: rgba(107, 113, 210, 0.2);
}
body.light-theme .section_cabinet .user_courses__item {
  backdrop-filter: blur(16.6000003815px);
  background: rgba(107, 113, 210, 0.2);
}
body.light-theme .section_cabinet .user_info__wrapper .left_side .settings_link a span {
  filter: brightness(0) saturate(100%) invert(15%) sepia(8%) saturate(17%) hue-rotate(341deg) brightness(94%) contrast(106%);
}
body.light-theme .section_platform__main:after,
body.light-theme .section_program__details:after,
body.light-theme .section_lesson:after {
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 0.3841911765) 40%, rgba(247, 247, 247, 0.8659838936) 100%);
}
body.light-theme .section_platform__main .platform_main__wrapper {
  background: rgba(107, 113, 210, 0.12);
  box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.7);
}
body.light-theme .section_platform__main .platform_main__wrapper .macbook_line {
  display: none;
}
body.light-theme .section_platform__main .platform_main__wrapper .macbook_line--light {
  display: block;
}
body.light-theme .section_platform__main .platform_main__wrapper .middle_side span {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.light-theme .section_platform__main .platform_main__text img {
  display: none;
}
body.light-theme .section_platform__main .platform_main__text img.fv--light {
  display: block;
}
body.light-theme .section_program .program_item:hover {
  box-shadow: 0 3px 18px 0 rgba(68, 0, 83, 0.4);
}
body.light-theme .section_profession__price .price_wrapper .price_item:nth-child(1) {
  background: url(../img/price_bg--light.png) center no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  body.light-theme .section_resume .resume_block .resume_sought svg {
    filter: none;
  }
}
body.light-theme .section_resume .resume_block .macbook_bottom .shd_image {
  display: block;
}
@media (max-width: 991px) {
  body.light-theme .section_resume .resume_block .macbook_bottom .shd_image {
    display: none;
  }
}
body.light-theme .section_profession__game .profession_main__wrapper {
  background: url("../img/game_bg--light.png") center no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  body.light-theme .section_profession__game .profession_main__wrapper {
    background: url("../img/game_bg--light.png") bottom no-repeat;
    background-size: contain;
  }
}
body.light-theme .section_profession__game .profession_main__wrapper .middle_side .btn {
  background: rgba(186, 175, 230, 0.76);
  border: 1px solid rgba(107, 113, 210, 0.6);
  color: #101010;
}
body.light-theme .section_profession__motion .profession_main__wrapper .middle_side .btn {
  background: rgba(186, 175, 230, 0.76);
  border: 1px solid rgba(107, 113, 210, 0.6);
  color: #101010;
}
body.light-theme .section_platform__game .platform_main__wrapper .game_bg {
  display: none;
}
body.light-theme .section_platform__game .platform_main__wrapper .game_bg--light {
  display: block;
}
body.light-theme .section_profession__main--roblox .profession_main__wrapper .right_side .images_wrapper img,
body.light-theme .section_platform__main--roblox .platform_main__wrapper .right_side .images_wrapper img {
  display: none;
}
body.light-theme .section_profession__main--roblox .profession_main__wrapper .right_side .images_wrapper img.roblox--light,
body.light-theme .section_platform__main--roblox .platform_main__wrapper .right_side .images_wrapper img.roblox--light {
  display: block;
}
body.light-theme .section_profession__main--roblox .profession_main__wrapper .left_side .images_wrapper img,
body.light-theme .section_platform__main--roblox .platform_main__wrapper .left_side .images_wrapper img {
  display: none;
}
body.light-theme .section_profession__main--roblox .profession_main__wrapper .left_side .images_wrapper img.roblox--light,
body.light-theme .section_platform__main--roblox .platform_main__wrapper .left_side .images_wrapper img.roblox--light {
  display: block;
}
body.light-theme .to-top a {
  background: #dbdcf0;
  border-color: rgba(24, 24, 24, 0.5);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee2 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes moveInSquare {
  0% {
    bottom: -12px;
    right: -79px;
  }
  25% {
    bottom: calc(100% - 44px);
    right: -79px;
  }
  50% {
    bottom: calc(100% - 44px);
    right: calc(100% - 90px);
  }
  75% {
    bottom: -12px;
    right: calc(100% - 90px);
  }
  100% {
    bottom: -12px;
    right: -79px;
  }
}
@keyframes moveInSquare2 {
  0% {
    bottom: -18px;
    right: -12px;
  }
  25% {
    bottom: calc(100% - 57px);
    right: -12px;
  }
  50% {
    bottom: calc(100% - 57px);
    right: calc(100% - 22px);
  }
  75% {
    bottom: -18px;
    right: calc(100% - 22px);
  }
  100% {
    bottom: -18px;
    right: -12px;
  }
}
@keyframes expandArrow {
  0% {
    transform: scale(0.6);
  }
  100% {
    transform: scale(1);
  }
}
.section {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.section.visible {
  opacity: 1;
}

.custom_animate {
  opacity: 0;
  transform: translateX(-500px);
  transition: all 1s ease-out;
}
.custom_animate.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991px) {
  .b-hidden {
    overflow: hidden;
  }
}

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