body {
  padding: 0;
  margin: 0;
  padding-top: 80px;
  overflow-x: hidden;
}
body.locked {
  overflow-y: hidden;
}
@media (max-width: 990px) {
  body {
    padding-top: 20px;
  }
}

.section {
  margin: 20px auto;
}

.container {
  width: 1440px;
  margin: 0px auto;
  padding: 0 5px;
}
@media (max-width: 1440px) {
  .container {
    width: 1200px;
    padding: 0 3px;
  }
}
@media (max-width: 1200px) {
  .container {
    width: 1050px;
    padding: 0 3px;
  }
}
@media (max-width: 1050px) {
  .container {
    width: 990px;
    padding: 0 2px;
  }
}
@media (max-width: 900px) {
  .container {
    width: 100%;
    padding: 0 3px;
  }
}

.wrapper .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 5;
  background-color: white;
  padding: 10px 0;
}
@media (max-width: 990px) {
  .wrapper .header {
    padding: 1px 0;
  }
}
.wrapper .header .header_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .header .header_container .header_logo {
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .header .header_container .header_logo img {
  width: 24px;
  height: 24px;
}
.wrapper .header .header_container .header_logo h1 {
  font-size: 24px;
  font-family: "Space Grotesk";
  font-weight: 700;
}
.wrapper .header .header_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .header .header_menu .header_menu_item {
  margin: 0 10px;
}
.wrapper .header .header_menu .header_menu_item a {
  font-size: 20px;
  font-family: "Space Grotesk";
  font-weight: 400;
  color: black;
  text-decoration: none;
}
.wrapper .header .header_menu .header_menu_item button {
  width: 230px;
  height: 68px;
  border-radius: 15px;
  border: 1px solid black;
  background-color: white;
  font-size: 20px;
  font-family: "Arial";
}
@media (max-width: 990px) {
  .wrapper .header .header_menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 4;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
  .wrapper .header .header_menu.active {
    left: 0;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
  .wrapper .header .header_menu .header_menu_item {
    margin: 10px;
  }
}
.wrapper .header .header_burger {
  width: 25px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  display: none;
  z-index: 5;
  margin-right: 10px;
}
.wrapper .header .header_burger span {
  content: "";
  background-color: black;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.wrapper .header .header_burger.active span {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.wrapper .header .header_burger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(12.5px, 0);
          transform: rotate(45deg) translate(12.5px, 0);
}
.wrapper .header .header_burger.active span:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.wrapper .header .header_burger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(12.5px, 0);
          transform: rotate(-45deg) translate(12.5px, 0);
}
@media (max-width: 990px) {
  .wrapper .header .header_burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.wrapper .page .banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .page .banner .banner_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .page .banner .banner_content h1 {
  font-size: 48px;
  font-family: "Space Grotesk";
  font-weight: 600;
  max-width: 531px;
}
.wrapper .page .banner .banner_content img {
  display: none;
}
@media (max-width: 990px) {
  .wrapper .page .banner .banner_content img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
.wrapper .page .banner .banner_content p {
  font-size: 20px;
  font-family: "Space Grotesk";
  font-weight: 400;
  max-width: 531px;
}
.wrapper .page .banner .banner_content button {
  width: 264px;
  height: 68px;
  border-radius: 15px;
  background-color: #191A23;
  font-size: 20px;
  color: white;
  font-weight: 400;
  border: none;
  font-family: "Space Grotesk";
  cursor: pointer;
}
@media (max-width: 990px) {
  .wrapper .page .banner .banner_content button {
    width: 100%;
  }
}
@media (max-width: 990px) {
  .wrapper .page .banner .banner_media img {
    display: none;
  }
}
.wrapper .page .partners {
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper .page .services .services_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .page .services .services_head h1 {
  font-size: 40px;
  font-weight: 500;
  background-color: #B9FF66;
  font-family: "Space Grotesk";
}
.wrapper .page .services .services_head p {
  margin-left: 20px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Space Grotesk";
  max-width: 580px;
}
.wrapper .page .services .services_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper .page .services .services_content .services_item {
  width: 600px;
  height: 310px;
  border-radius: 5%;
  -webkit-box-shadow: 0px 10px 0px black;
          box-shadow: 0px 10px 0px black;
  border: 0.5px solid black;
  margin: 20px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 650px) {
  .wrapper .page .services .services_content .services_item {
    width: 100%;
    padding: 0;
  }
  .wrapper .page .services .services_content .services_item .services_item_content h1 {
    font-size: 22px;
  }
  .wrapper .page .services .services_content .services_item img {
    width: 125px;
  }
}
.wrapper .page .services .services_content .services_item:nth-child(2), .wrapper .page .services .services_content .services_item:nth-child(5) {
  background-color: #B9FF66;
}
.wrapper .page .services .services_content .services_item:nth-child(3), .wrapper .page .services .services_content .services_item:nth-child(6) {
  background-color: #191A23;
}
.wrapper .page .services .services_content .services_item .services_item_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .page .services .services_content .services_item .services_item_content h1 {
  font-size: 30px;
  font-family: "Space Grotesk";
  background-color: #B9FF66;
  width: 220px;
}
.wrapper .page .services .services_content .services_item .services_item_content h1.white {
  background-color: white;
}
.wrapper .page .services .services_content .services_item .services_item_content .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.wrapper .page .services .services_content .services_item .services_item_content .link.white div {
  background-color: white;
}
.wrapper .page .services .services_content .services_item .services_item_content .link.white div svg path {
  fill: #191A23;
}
.wrapper .page .services .services_content .services_item .services_item_content .link.white p {
  color: white;
}
.wrapper .page .services .services_content .services_item .services_item_content .link div {
  width: 40px;
  height: 40px;
  background-color: #191A23;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .page .services .services_content .services_item .services_item_content .link div:nth-child(3), .wrapper .page .services .services_content .services_item .services_item_content .link div:nth-child(5) {
  background-color: white;
}
.wrapper .page .services .services_content .services_item .services_item_content .link div svg path {
  fill: #B9FF66;
}
.wrapper .page .services .services_content .services_item .services_item_content .link div svg path:nth-child(3), .wrapper .page .services .services_content .services_item .services_item_content .link div svg path:nth-child(6) {
  fill: #191A23;
}
.wrapper .page .services .services_content .services_item .services_item_content .link p {
  font-size: 18px;
  color: #191A23;
  font-family: "Space Grotesk";
  margin-left: 10px;
}
.wrapper .page .services .services_content .services_item .services_item_content .link p:nth-child(3), .wrapper .page .services .services_content .services_item .services_item_content .link p:nth-child(6) {
  background-color: white;
}
.wrapper .page .happen {
  background-color: #F3F3F3;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
}
.wrapper .page .happen .happen_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .page .happen .happen_content h1 {
  font-size: 26px;
  font-family: "Space Grotesk";
  font-weight: 600px;
  max-width: 531px;
}
@media (max-width: 530px) {
  .wrapper .page .happen .happen_content h1 {
    marign: 0px auto;
    text-align: center;
  }
}
.wrapper .page .happen .happen_content p {
  font-size: 20px;
  font-family: "Space Grotesk";
  font-weight: 400;
  max-width: 531px;
}
@media (max-width: 530px) {
  .wrapper .page .happen .happen_content p {
    marign: 0px auto;
    text-align: center;
  }
}
.wrapper .page .happen .happen_content button {
  width: 264px;
  height: 68px;
  border-radius: 15px;
  background-color: #191A23;
  font-size: 20px;
  color: white;
  font-weight: 400;
  border: none;
  font-family: "Space Grotesk";
  cursor: pointer;
}
@media (max-width: 990px) {
  .wrapper .page .happen .happen_content button {
    width: 95%;
  }
}
@media (max-width: 990px) {
  .wrapper .page .happen .happen_media {
    display: none;
  }
}
.wrapper .page .studies .studies_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .page .studies .studies_header h1 {
  font-size: 40px;
  font-family: "Space Grotesk";
  font-weight: 700;
  background-color: #B9FF66;
  border-radius: 5px;
  padding: 2px;
}
.wrapper .page .studies .studies_header p {
  font-size: 18px;
  font-family: "Space Grotesk";
  font-weight: 400;
  max-width: 580px;
  margin-left: 40px;
}
@media (max-width: 990px) {
  .wrapper .page .studies .studies_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrapper .page .studies .studies_header h1 {
    text-align: center;
  }
  .wrapper .page .studies .studies_header p {
    text-align: center;
  }
}
.wrapper .page .studies .studies_content {
  margin: 40px 0;
  width: 100%;
  background-color: #191A23;
  border-radius: 40px;
  padding: 70px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .wrapper .page .studies .studies_content {
    margin: 20px 0;
    padding: 35px 10px;
  }
  .wrapper .page .studies .studies_content .arrow {
    margin: 0 32px;
  }
}
@media (max-width: 990px) {
  .wrapper .page .studies .studies_content {
    overflow-x: visible;
    width: 96%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .wrapper .page .studies .studies_content .studies_content_item {
    min-width: 286px;
  }
}
.wrapper .page .studies .studies_content .studies_content_item {
  max-width: 286px;
  min-height: 160px;
}
.wrapper .page .studies .studies_content .studies_content_item p {
  font-size: 18px;
  line-height: 23px;
  color: white;
  font-family: "Space Grotesk";
}
.wrapper .page .studies .studies_content .studies_content_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  color: #B9FF66;
  font-family: "Space Grotesk";
}
.wrapper .page .studies .studies_content .arrow {
  width: 1px;
  height: 160px;
  margin: 0 64px;
  background-color: white;
  content: "";
}
.wrapper .page .process .process_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .page .process .process_header h1 {
  font-size: 40px;
  font-family: "Space Grotesk";
  font-weight: 700;
  background-color: #B9FF66;
  border-radius: 5px;
  padding: 2px;
}
.wrapper .page .process .process_header p {
  font-size: 18px;
  font-family: "Space Grotesk";
  font-weight: 400;
  max-width: 580px;
  margin-left: 40px;
}
@media (max-width: 990px) {
  .wrapper .page .process .process_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrapper .page .process .process_header h1 {
    text-align: center;
  }
  .wrapper .page .process .process_header p {
    text-align: center;
  }
}
.wrapper .page .process .process_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .page .process .process_content .process_content_item {
  width: 100%;
  border: 1px solid black;
  -webkit-box-shadow: 0px 5px 0px black;
          box-shadow: 0px 5px 0px black;
  border-radius: 40px;
  margin: 30px 0;
  padding: 40px 60px;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}
@media (max-width: 1200px) {
  .wrapper .page .process .process_content .process_content_item {
    width: 95%;
    margin: 30px auto;
  }
}
@media (max-width: 990px) {
  .wrapper .page .process .process_content .process_content_item {
    width: 85%;
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .wrapper .page .process .process_content .process_content_item {
    width: 80%;
    padidng: 20px;
  }
}
.wrapper .page .process .process_content .process_content_item.active {
  background-color: #B9FF66;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}
.wrapper .page .process .process_content .process_content_item.active .process_content_item_head .process_content_item_button {
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.wrapper .page .process .process_content .process_content_item.active .process_content_item_head .process_content_item_button span:nth-child(1) {
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.wrapper .page .process .process_content .process_content_item.active .process_content_item_head_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wrapper .page .process .process_content .process_content_item .process_content_item_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .page .process .process_content .process_content_item .process_content_item_head .process_content_item_head_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .page .process .process_content .process_content_item .process_content_item_head .process_content_item_head_title h1 {
  font-size: 60px;
  font-weight: 700;
  font-family: "Space Grotesk";
  margin: 0;
}
.wrapper .page .process .process_content .process_content_item .process_content_item_head .process_content_item_head_title p {
  font-size: 30px;
  font-weight: 500;
  font-family: "Space Grotesk";
  margin: 0;
  margin-left: 25px;
}
@media (max-width: 600px) {
  .wrapper .page .process .process_content .process_content_item .process_content_item_head .process_content_item_head_title h1 {
    font-size: 36px;
  }
  .wrapper .page .process .process_content .process_content_item .process_content_item_head .process_content_item_head_title p {
    font-size: 24px;
    margin-left: 5px;
  }
}
.wrapper .page .process .process_content .process_content_item .process_content_item_head .process_content_item_button {
  cursor: pointer;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  min-width: 58px;
  min-height: 58px;
  border-radius: 50%;
  border: 1px solid black;
  background-color: white;
  position: relative;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .page .process .process_content .process_content_item .process_content_item_head .process_content_item_button span {
  width: 18px;
  height: 6px;
  background-color: black;
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wrapper .page .process .process_content .process_content_item .process_content_item_head .process_content_item_button span:nth-child(1) {
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  position: absolute;
  top: 25px;
  left: 19px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.wrapper .page .process .process_content .process_content_item .process_content_item_head_content {
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  border-top: 1px solid black;
  padding-top: 20px;
  font-size: 18px;
  font-family: "Space Grotesk";
  display: none;
}
.wrapper .page .team .team_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .page .team .team_header h1 {
  font-size: 40px;
  font-family: "Space Grotesk";
  font-weight: 700;
  background-color: #B9FF66;
  border-radius: 5px;
  padding: 2px;
}
.wrapper .page .team .team_header p {
  font-size: 18px;
  font-family: "Space Grotesk";
  font-weight: 400;
  max-width: 580px;
  margin-left: 40px;
}
@media (max-width: 990px) {
  .wrapper .page .team .team_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrapper .page .team .team_header h1 {
    text-align: center;
  }
  .wrapper .page .team .team_header p {
    text-align: center;
  }
}
.wrapper .page .team .team_content .team_items_front {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .page .team .team_content .team_items_front .team_items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 840px) {
  .wrapper .page .team .team_content .team_items_front .team_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .page .team .team_content .team_items_front .team_items .team_item {
  width: 360px;
  height: 331px;
  border-radius: 20px;
  border: 1px solid black;
  -webkit-box-shadow: 0px 5px 0px black;
          box-shadow: 0px 5px 0px black;
  padding: 40px 35px;
  margin-right: 40px;
  margin-bottom: 40px;
}
@media (max-width: 990px) {
  .wrapper .page .team .team_content .team_items_front .team_items .team_item {
    width: 300px;
    marign: 0px auto;
  }
}
@media (max-width: 840px) {
  .wrapper .page .team .team_content .team_items_front .team_items .team_item {
    margin-right: 0;
  }
}
.wrapper .page .team .team_content .team_items_front .team_items .team_item .team_item_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  top: 0;
  left: 0;
}
.wrapper .page .team .team_content .team_items_front .team_items .team_item .team_item_head div {
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .page .team .team_content .team_items_front .team_items .team_item .team_item_head div h3 {
  font-size: 20px;
  font-family: "Space Grotesk";
  font-weight: 700;
  margin: 0;
}
.wrapper .page .team .team_content .team_items_front .team_items .team_item .team_item_head div p {
  font-size: 18px;
  font-family: "Space Grotesk";
  font-weight: 400;
  margin: 0;
}
.wrapper .page .team .team_content .team_items_front .team_items .team_item .team_item_head .image {
  position: absolute;
  top: 0;
  right: 0;
}
.wrapper .page .team .team_content .team_items_front .team_items .team_item .team_item_content {
  border-top: 1px solid black;
  padding-top: 28px;
  margin-top: 28px;
}
.wrapper .page .team .team_content .team_items_front .team_items .team_item .team_item_content p {
  font-size: 18px;
  font-family: "Space Grotesk";
  font-weight: 400;
  margin: 0;
}
.wrapper .page .team .team_content .team_items_front .more {
  width: 270px;
  height: 68px;
  background-color: #191A23;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  font-family: "Space Grotesk";
  font-weight: 400;
  margin: 0;
}
@media (max-width: 800px) {
  .wrapper .page .team .team_content .team_items_front .more {
    margin: 0px auto;
  }
}
.wrapper .page .team .team_content .team_items_content {
  position: fixed;
  top: 0;
  left: -105%;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: white;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.wrapper .page .team .team_content .team_items_content.active {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  left: 0;
}
.wrapper .page .team .team_content .team_items_content .team_items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  top: 0;
  left: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 150px;
  overflow-y: scroll;
}
@media (max-width: 840px) {
  .wrapper .page .team .team_content .team_items_content .team_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .page .team .team_content .team_items_content .team_items .close {
  position: absolute;
  top: 100px;
  left: 10%;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  cursor: pointer;
}
.wrapper .page .team .team_content .team_items_content .team_items .close span {
  width: 100%;
  height: 2px;
  background-color: #191A23;
  content: "";
}
.wrapper .page .team .team_content .team_items_content .team_items .close span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-5px, 0);
          transform: rotate(-45deg) translate(-5px, 0);
}
.wrapper .page .team .team_content .team_items_content .team_items .close span:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-5px, 0);
          transform: rotate(45deg) translate(-5px, 0);
}
.wrapper .page .team .team_content .team_items_content .team_items .team_item {
  width: 360px;
  height: 331px;
  border-radius: 20px;
  border: 1px solid black;
  -webkit-box-shadow: 0px 5px 0px black;
          box-shadow: 0px 5px 0px black;
  padding: 40px 35px;
  margin-right: 40px;
  margin-bottom: 40px;
}
@media (max-width: 990px) {
  .wrapper .page .team .team_content .team_items_content .team_items .team_item {
    width: 300px;
  }
}
@media (max-width: 840px) {
  .wrapper .page .team .team_content .team_items_content .team_items .team_item {
    margin-right: 0;
  }
}
@media (max-width: 400px) {
  .wrapper .page .team .team_content .team_items_content .team_items .team_item {
    padding: 10px;
  }
}
.wrapper .page .team .team_content .team_items_content .team_items .team_item .team_item_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  top: 0;
  left: 0;
}
.wrapper .page .team .team_content .team_items_content .team_items .team_item .team_item_head div {
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .page .team .team_content .team_items_content .team_items .team_item .team_item_head div h3 {
  font-size: 20px;
  font-family: "Space Grotesk";
  font-weight: 700;
  margin: 0;
}
.wrapper .page .team .team_content .team_items_content .team_items .team_item .team_item_head div p {
  font-size: 18px;
  font-family: "Space Grotesk";
  font-weight: 400;
  margin: 0;
}
.wrapper .page .team .team_content .team_items_content .team_items .team_item .team_item_head .image {
  position: absolute;
  top: 0;
  right: 0;
}
.wrapper .page .team .team_content .team_items_content .team_items .team_item .team_item_content {
  border-top: 1px solid black;
  padding-top: 28px;
  margin-top: 28px;
}
.wrapper .page .team .team_content .team_items_content .team_items .team_item .team_item_content p {
  font-size: 18px;
  font-family: "Space Grotesk";
  font-weight: 400;
  margin: 0;
}
.wrapper .page .contact .contact_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .page .contact .contact_header h1 {
  font-size: 40px;
  font-family: "Space Grotesk";
  font-weight: 700;
  background-color: #B9FF66;
  border-radius: 5px;
  padding: 2px;
}
.wrapper .page .contact .contact_header p {
  font-size: 18px;
  font-family: "Space Grotesk";
  font-weight: 400;
  max-width: 580px;
  margin-left: 40px;
}
@media (max-width: 990px) {
  .wrapper .page .contact .contact_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrapper .page .contact .contact_header h1 {
    text-align: center;
  }
  .wrapper .page .contact .contact_header p {
    text-align: center;
  }
}
.wrapper .page .contact .contact_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrapper .page .contact .contact_content .contact_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 540px;
}
@media (max-width: 767px) {
  .wrapper .page .contact .contact_content .contact_form {
    margin: 0px auto;
  }
}
.wrapper .page .contact .contact_content .contact_form .contact_form_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 800px) {
  .wrapper .page .contact .contact_content .contact_form .contact_form_item {
    width: 95%;
  }
}
.wrapper .page .contact .contact_content .contact_form .contact_form_item p {
  font-style: 16px;
  font-family: "Space Grotesk";
  font-weight: 600;
}
.wrapper .page .contact .contact_content .contact_form .contact_form_item input, .wrapper .page .contact .contact_content .contact_form .contact_form_item textarea {
  width: 100%;
  height: 60px;
  border: 1px solid #191A23;
  font-style: 16px;
  font-family: "Space Grotesk";
  outline: none;
  font-size: 16px;
  border-radius: 15px;
  padding-left: 20px;
}
@media (max-width: 800px) {
  .wrapper .page .contact .contact_content .contact_form .contact_form_item input, .wrapper .page .contact .contact_content .contact_form .contact_form_item textarea {
    width: 95%;
  }
}
.wrapper .page .contact .contact_content .contact_form .contact_form_item textarea {
  max-height: 190px;
  min-height: 190px;
  max-width: 100%;
  min-width: 100%;
}
@media (max-width: 800px) {
  .wrapper .page .contact .contact_content .contact_form .contact_form_item textarea {
    max-width: 95%;
    min-width: 95%;
  }
}
.wrapper .page .contact .contact_content .contact_form button {
  background-color: #191A23;
  height: 68px;
  border-radius: 10px;
  color: white;
  font-size: 20px;
  font-family: "Space Grotesk";
  margin: 40px 0;
  margin-left: 20px;
  width: calc(100% + 20px);
  border: none;
  cursor: pointer;
}
@media (max-width: 800px) {
  .wrapper .page .contact .contact_content .contact_form button {
    width: 95%;
    margin-left: 0;
  }
}
.wrapper .page .contact .contact_content .contact_icon {
  overflow: hidden;
}
.wrapper .page .contact .contact_content .contact_icon img {
  margin-right: -320px;
}
@media (max-width: 990px) {
  .wrapper .page .contact .contact_content .contact_icon img {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
@media (max-width: 767px) {
  .wrapper .page .contact .contact_content .contact_icon img {
    display: none;
  }
}
.wrapper .footer {
  margin-top: 40px;
  background-color: #191A23;
  border-radius: 20px 20px 0 0;
  padding: 50px 60px;
}
@media (max-width: 800px) {
  .wrapper .footer {
    padding: 10px 0;
  }
}
.wrapper .footer .footer_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media (max-width: 800px) {
  .wrapper .footer .footer_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.wrapper .footer .footer_head .footer_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .footer .footer_head .footer_logo img {
  width: 30px;
  height: 30px;
}
.wrapper .footer .footer_head .footer_logo h1 {
  font-size: 24px;
  font-family: "Space Grotesk";
  font-weight: 700;
  color: white;
}
.wrapper .footer .footer_head .footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper .footer .footer_head .footer_menu .footer_menu_item {
  margin: 0 20px;
}
.wrapper .footer .footer_head .footer_menu .footer_menu_item a {
  color: white;
  font-size: 16px;
  font-family: "Space Grotesk";
  font-weight: 300;
}
@media (max-width: 800px) {
  .wrapper .footer .footer_head .footer_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrapper .footer .footer_head .footer_menu .footer_menu_item {
    margin: 10px 0;
  }
  .wrapper .footer .footer_head .footer_menu .footer_menu_item a {
    text-decoration: none;
  }
}
.wrapper .footer .footer_head .socials a {
  margin-left: 20px;
}
.wrapper .footer .footer_content {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 800px) {
  .wrapper .footer .footer_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.wrapper .footer .footer_content .footer_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrapper .footer .footer_content .footer_text h3 {
  font-size: 20px;
  background-color: #B9FF66;
  border-radius: 3px;
  color: #191A23;
  font-family: "Space Grotesk";
  padding: 0 2px;
}
.wrapper .footer .footer_content .footer_text p {
  font-size: 18px;
  color: white;
  font-family: "Space Grotesk";
  font-weight: 300;
}
@media (max-width: 800px) {
  .wrapper .footer .footer_content .footer_text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.wrapper .footer .footer_content .footer_form {
  background-color: #292A32;
  border-radius: 20px;
  padding: 58px 40px;
}
.wrapper .footer .footer_content .footer_form input {
  width: 225px;
  height: 70px;
  border-radius: 10px;
  background-color: #191A23;
  outline: none;
  font-size: 18px;
  font-family: "Space Grotesk";
  border: none;
  color: white;
  padding: 0 35px;
}
.wrapper .footer .footer_content .footer_form button {
  width: 250px;
  height: 68px;
  border-radius: 10px;
  background-color: #B9FF66;
  color: #191A23;
  font-family: "Space Grotesk";
  border: none;
  margin-left: 20px;
}
@media (max-width: 990px) {
  .wrapper .footer .footer_content .footer_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    width: 400px;
  }
  .wrapper .footer .footer_content .footer_form input, .wrapper .footer .footer_content .footer_form button {
    width: 100%;
    margin: 10px 0;
  }
  .wrapper .footer .footer_content .footer_form input {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .wrapper .footer .footer_content .footer_form {
    width: 300px;
  }
}
.wrapper .footer .footer_footer {
  border-top: 1px solid white;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 800px) {
  .wrapper .footer .footer_footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.wrapper .footer .footer_footer p, .wrapper .footer .footer_footer a {
  font-size: 18px;
  color: white;
  font-family: "Space Grotesk";
  font-weight: 300;
}
.wrapper .footer .footer_footer a {
  margin-left: 20px;
}