@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-size: 2rem;
  font-family: Montserrat;
  color: #000000;
  line-height: 1.2;
  background-color: #ffffff;
  font-feature-settings: "lnum", "pnum";
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}

._container_block {
  width: 100%;
  margin: 0 auto;
  padding: 0 6rem;
  max-width: 160rem;
}
@media only screen and (max-width: 1024px) {
  ._container_block {
    padding: 0 2rem;
  }
}

._container {
  width: 100%;
  margin: 0 auto;
  max-width: 144rem;
}
@media screen and (max-width: 1728px) {
  ._container {
    max-width: 129rem;
  }
}
@media only screen and (max-width: 1440px) {
  ._container {
    padding: 0 6rem;
    max-width: 129rem;
  }
}
@media only screen and (max-width: 1024px) {
  ._container {
    padding: 0 2rem;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

._highlight_button {
  border: 0;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px;
  width: fit-content;
  height: fit-content;
  padding: 1.4rem 2.2rem;
  color: #fff;
  font-size: 1.8rem;
  font-family: Montserrat;
  transition: all 0.3s ease-in-out;
  line-height: 2.4rem;
  background-color: #FDC103;
}
@media only screen and (max-width: 768px) {
  ._highlight_button {
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding: 1.15rem 2.4rem;
  }
}
._highlight_button._managed-devops_theme-bg:hover {
  background-color: #FDC103;
}
._highlight_button._Kubernetes_theme-bg:hover {
  background-color: #FDC103;
}
._highlight_button:hover {
  background: #2AAA8A;
}
._highlight_outline_button {
  cursor: pointer;
  font-weight: 700;
  border-radius: 5px;
  padding: 1.4rem 2.2rem;
  font-size: 1.8rem;
  font-family: Montserrat;
  color: #fff;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  border: 1px solid #FDC103;
}
@media only screen and (max-width: 768px) {
  ._highlight_outline_button {
    font-size: 1.6rem;
    padding: 1.15rem 2.4rem;
  }
}
._highlight_outline_button:hover {
  background: #2AAA8A;
  border-color: #2AAA8A;
}
._highlight_circle_btn {
  z-index: 3;
  cursor: pointer;
}
._highlight_circle_btn-typo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px; /* 159.091% */
  font-style: normal;
  border: 0;
  font-family: Montserrat;
  color: var(--Secondary-Color, #FDC103);
  background-color: transparent;
}
@media only screen and (max-width: 1024px) {
  ._highlight_circle_btn-typo {
    font-size: 19px;
  }
}
._highlight_circle_btn:hover svg {
  fill: #FDC103;
}
._highlight_circle_btn:hover path {
  stroke: #fff;
}
._highlight_circle_btn:hover path:nth-child(2) {
  animation: scrolly 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
._highlight_circle_btn:hover path:nth-child(3) {
  animation: scrolly 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@media only screen and (max-width: 1024px) {
  ._highlight_circle_btn svg {
    width: 5rem;
    height: 5rem;
  }
}
._highlight_circle_btn path {
  transition: stroke 0.5s ease;
}

@keyframes scrolly {
  0% {
    transform: translate3d(0, 0, 0);
  }
  70% {
    transform: translate3d(20%, 0, 0);
    opacity: 0;
  }
  75% {
    transform: translate3d(-150%, 0, 0);
  }
  95% {
    opacity: 1;
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}
._card_clickable {
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
}

#_toast {
  visibility: hidden;
  max-width: 50px;
  height: 50px;
  /*margin-left: -125px;*/
  margin: auto;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 30px;
  font-size: 17px;
  white-space: nowrap;
}
#_toast_logo {
  width: 50px;
  height: 50px;
  float: left;
  padding-top: 16px;
  padding-bottom: 16px;
  box-sizing: border-box;
  background-color: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#_toast_desc {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}
#_toast._is_show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes expand {
  from {
    min-width: 50px;
  }
  to {
    min-width: 350px;
  }
}
@keyframes expand {
  from {
    min-width: 50px;
  }
  to {
    min-width: 350px;
  }
}
@-webkit-keyframes stay {
  from {
    min-width: 350px;
  }
  to {
    min-width: 350px;
  }
}
@keyframes stay {
  from {
    min-width: 350px;
  }
  to {
    min-width: 350px;
  }
}
@-webkit-keyframes shrink {
  from {
    min-width: 350px;
  }
  to {
    min-width: 50px;
  }
}
@keyframes shrink {
  from {
    min-width: 350px;
  }
  to {
    min-width: 50px;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 60px;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 60px;
    opacity: 0;
  }
}
._is_alert {
  gap: 1.2rem;
  color: #333;
  display: grid;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px; /* 125% */
  font-style: normal;
  align-items: center;
  border-radius: 6px;
  background: #FEF4D7;
  padding: 1.4rem 2.4rem;
  transition: all 0.2s ease;
}
._is_alert_typo {
  gap: 1rem;
  display: flex;
  align-items: center;
}
._is_alert_desc {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  font-style: normal;
  font-family: Roboto;
}
._is_alert_head {
  display: flex;
  justify-content: space-between;
}
._is_alert_body {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  font-style: normal;
}
._is_alert span {
  display: flex;
}
._is_alert span svg {
  cursor: pointer;
}
._is_alert_success {
  background: #E2F4E6;
}
._is_alert_error {
  background: #FBDCDA;
}
._is_alert_info {
  background: #DAE8FB;
}

._accordion {
  width: 100%;
}
._accordion_item {
  cursor: pointer;
  font-size: 29px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.1);
}
._accordion_title {
  display: flex;
  padding: 36px 0;
  color: #FFFFFF;
  user-select: none;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}
._accordion_title h6 {
  gap: 1.6rem;
  display: flex;
  align-items: center;
  pointer-events: none;
}
._accordion_title._active ._accordion_icon {
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
._accordion_content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  -moz-transition: max-height 0.3s ease;
  -o-transition: max-height 0.3s ease;
  -ms-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
._accordion_content p {
  margin: 0 0 3.6rem;
  color: rgba(250, 250, 250, 0.8);
}
._accordion_icon {
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

._button {
  gap: 8px;
  border: 0;
  display: flex;
  cursor: pointer;
  width: fit-content;
  border-radius: 31px;
  text-align: center;
  padding: 1.2rem 4.3rem;
  align-items: center;
  height: fit-content;
  color: rgb(49, 52, 75);
  background: transparent;
  transition: all 0.3s ease-in-out;
}
._button svg {
  fill: rgb(49, 52, 75);
}

._is_outline {
  color: var(--btn-default-color);
  background-color: var(--btn-default);
  border: 1px solid var(--btn-border-default);
}
._is_outline svg {
  fill: var(--btn-default-color);
}
._is_outline:hover {
  color: var(--btn-hover-default-color);
  background: var(--btn-hover-default);
  border-color: var(--btn-border-active-default);
}
._is_outline._facebook_color:hover {
  background: #3b5999;
  border-color: #3b5999;
}
._is_outline._twitter_border:hover {
  border-color: #000000;
  background: #000000;
}
._is_outline._google-plus_border:hover {
  background: #dd4b39;
  border-color: #dd4b39;
}
._is_outline._google-plus_border:hover path:last-child {
  fill: #dd4b39;
}
._is_outline._instagram_border:hover {
  background: #e4405f;
  border-color: #e4405f;
}
._is_outline._pinterest_color:hover {
  background: #bd081c;
  border-color: #bd081c;
}
._is_outline._youtube_color:hover {
  background: #cd201f;
  border-color: #cd201f;
}
._is_outline._slack_border:hover {
  background: #3aaf85;
  border-color: #3aaf85;
}
._is_outline._dribbble_border:hover {
  background: #ea4c89;
  border-color: #ea4c89;
}
._is_outline._github_color:hover {
  background: #222222;
  border-color: #222222;
}
._is_outline._dropbox_border:hover {
  background: #1E90FF;
  border-color: #1E90FF;
}
._is_outline._twitch_border:hover {
  background: #4B367C;
  border-color: #4B367C;
}
._is_outline._paypal_color:hover {
  background: #ecb32c;
  border-color: #ecb32c;
}
._is_outline._behance_color:hover {
  background: #0057ff;
  border-color: #0057ff;
}
._is_outline._reddit_border:hover {
  background: #E84422;
  border-color: #E84422;
}
._is_outline svg, ._is_outline path {
  transition: all 0.3s ease-in-out;
}
._is_outline:hover svg, ._is_outline:hover path {
  fill: #fff;
}

._is_primary {
  border: 0;
  color: #000000;
  background-color: #FDC103;
}
._is_primary svg {
  fill: var(--btn-default-color);
}
@media screen and (min-width: 1024px) {
  ._is_primary:hover {
    color: #FDC103;
    background: #000000;
    border-color: var(--btn-border-hover-primary);
  }
}

._is_rounded {
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: Montserrat;
}
._is_rounded:hover {
  background: unset;
}
._is_rounded_link {
  cursor: pointer;
  display: inline-block;
}
._is_rounded_typo {
  border: 0;
  gap: 1rem;
  display: flex;
  font-size: 22px;
  cursor: pointer;
  font-weight: 700;
  line-height: 35px;
  font-style: normal;
  align-items: center;
  background-color: transparent;
  color: #000000;
}
._is_rounded svg:hover {
  fill: #08C9AD;
  border-color: var(--btn-border-hover-primary);
}
._is_rounded svg:hover path {
  stroke: #fff;
}
._is_rounded svg:hover path:nth-child(2) {
  animation: scrolly 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
._is_rounded svg:hover path:nth-child(3) {
  animation: scrolly 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
._is_medium {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  ._is_medium {
    padding: 1.4rem 4rem;
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  ._is_medium {
    height: 4rem;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
._is_medium img {
  height: 2rem;
}

._is_large {
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.6rem;
  padding: 1.8rem 6rem;
}
@media only screen and (max-width: 1280px) {
  ._is_large {
    height: 6rem;
    font-size: 2.5rem;
    padding: 0 5rem;
    font-weight: 600;
    line-height: 3.5rem;
  }
}
@media only screen and (max-width: 1024px) {
  ._is_large {
    height: 5rem;
    font-size: 2.2rem;
    padding: 0 5rem;
    font-weight: 600;
    line-height: 3.2rem;
  }
}
@media only screen and (max-width: 480px) {
  ._is_large {
    height: 4.5rem;
    font-size: 1.6rem;
    padding: 0 4rem;
    font-weight: 600;
    line-height: 2.2rem;
  }
}
._is_large img {
  height: 2rem;
}

._is_small {
  padding: 0.8rem 1.8rem;
  font-size: 1.4rem;
  line-height: 2.1rem;
}
._is_small img {
  height: 1.4rem;
}

._is_full {
  width: 100%;
  display: flex;
  padding: 1rem 2.4rem;
  justify-content: center;
  font-size: 2rem;
  line-height: 3rem;
}

._dropdown_button {
  gap: 8px;
  border: 0;
  color: #fff;
  display: flex;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 8px 16px;
  border-radius: 6px;
  width: fit-content;
  background: rgba(0, 0, 0, 0.2);
}
._dropdown_button svg {
  height: 2rem;
  fill: #fff;
}
._dropdown_button_wrapper {
  display: flex;
  width: 22.4rem;
  justify-content: flex-end;
}
._dropdown_button_menu {
  top: 4.4rem;
  display: none;
  width: 22.4rem;
  position: absolute;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
._dropdown_button_menu._activeDropBtnMenu {
  display: block;
}
._dropdown_button_menu_wrapper {
  gap: 8px;
  display: flex;
  position: relative;
  flex-direction: column;
}
._dropdown_button_menu_options {
  padding: 4px;
}
._dropdown_button_menu_options:not(:last-child) {
  border-bottom: 1px solid rgb(243, 244, 246);
}
._dropdown_button_menu_option {
  gap: 8px;
  padding: 8px;
  color: #000;
  display: flex;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 2rem;
  border-radius: 6px;
}
._dropdown_button_menu_option svg {
  height: 2rem;
}
._dropdown_button_menu_option:hover {
  color: #fff;
  background-color: rgb(139, 92, 246);
}
._dropdown_button_dot {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
._btn_spinner {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: inline-block;
  vertical-align: text-bottom;
  border: 0.32rem solid rgb(49, 52, 75);
  border-right-color: transparent;
  animation: spinner-border 0.75s linear infinite;
}
._btn_spinner._spinner_border_sm {
  width: 1.6rem;
  height: 1.6rem;
  border-width: 0.32rem;
}

._form_wrapper {
  gap: 4rem;
  display: grid;
}
@media only screen and (max-width: 768px) {
  ._form_wrapper {
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 480px) {
  ._form_wrapper {
    gap: 1.8rem;
  }
}

._input_group {
  gap: 1.2rem;
  display: grid;
}
._input_title {
  font-weight: 600;
  font-family: Montserrat;
  color: var(--input-dark-title);
  font-size: 1.8rem;
  line-height: 2.8rem;
}
._input_required {
  color: #F46036;
}
._input_field {
  width: 100%;
  outline: none;
  transition: 0.3s;
  padding: 1.5rem 4.5rem;
  border-radius: 26px;
  font-size: 2.5rem;
  font-family: Montserrat;
  border: 3px solid #B0B0B0;
}
@media only screen and (max-width: 768px) {
  ._input_field {
    padding: 1.4rem 2rem;
    font-size: calc(1.6rem - 2px);
    border: 2px solid #B0B0B0;
  }
}
@media only screen and (max-width: 480px) {
  ._input_field {
    padding: 1rem 2rem;
    font-size: 14px;
    line-height: 14px;
  }
}
._input_field_wrapper {
  gap: 0.8rem;
  display: flex;
  flex-direction: column;
}
._input_field_wrapper._has_error input:focus {
  border: 1px solid rgba(244, 96, 54, 0.4);
  box-shadow: 2px 2px 4px 0px rgba(244, 96, 54, 0.4);
}
._input_field_wrapper._has_error input {
  border: 1px solid rgba(244, 96, 54, 0.4);
  box-shadow: 2px 2px 4px 0px rgba(244, 96, 54, 0.4);
}
._input_field_wrapper._has_error textarea:focus {
  border: 1px solid #F46036;
  box-shadow: 2px 2px 4px 0px rgba(244, 96, 54, 0.4);
}
._input_field_wrapper._has_error textarea {
  border: 1px solid #F46036;
  box-shadow: 2px 2px 4px 0px rgba(244, 96, 54, 0.4);
}
._input_field_wrapper._has_error ._input_error {
  height: fit-content;
}
._input_field_items {
  position: relative;
}
._input_field_list {
  gap: 1.6rem;
  display: flex;
  position: relative;
  flex-direction: column;
}
._input_field_list._has-error input:focus {
  border: 1px solid rgba(244, 96, 54, 0.4);
  box-shadow: 2px 2px 4px 0px rgba(244, 96, 54, 0.4);
}
._input_field_list._has-error textarea:focus {
  border: 1px solid #F46036;
  box-shadow: 2px 2px 4px 0px rgba(244, 96, 54, 0.4);
}
._input_field_icon {
  max-width: 2rem;
  max-height: 2rem;
}
._input_field_icon_wrapper {
  top: 0;
  display: grid;
  height: 5.3rem;
  cursor: pointer;
  transition: 0.3s;
  position: absolute;
  align-items: center;
}
._input_field_icon_left {
  left: 0;
  padding-left: 2rem;
  padding-right: 1rem;
}
._input_field_icon_right {
  right: 0;
  padding-left: 1rem;
  padding-right: 2rem;
}
._input_field._icon_left {
  padding-left: 5.75rem;
}
._input_field:focus {
  box-shadow: 2px 2px 4px 0px rgba(8, 201, 173, 0.4);
  border: 1px solid rgb(8, 201, 173);
}
._input_field_text-area {
  width: 100%;
  outline: none;
  padding: 2rem;
  font-size: 1.6rem;
  font-family: Montserrat;
  border: 1px solid var(--input-dark-border);
  transition: 0.3s;
  border-radius: 6px;
  resize: none;
  min-height: 13.7rem;
}
._input_field_text-area:focus {
  border: 1px solid rgb(8, 201, 173);
  box-shadow: 2px 2px 4px 0px rgba(8, 201, 173, 0.4);
}
._input_type_check_item {
  display: flex;
  width: fit-content;
}
._input_type_check_item input {
  opacity: 0;
  width: 16px;
  border: none;
  display: none;
  background: 0 0;
}
._input_type_check_item label {
  border: 1px solid var(--input-dark-border);
  position: relative;
  width: 22px;
  height: 22px;
  background: var(--input-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin: 0;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
  text-align: center;
}
._input_type_check_item label._input_type_check_label {
  border: 0;
  font-weight: 400;
  padding-left: 8px;
  user-select: none;
  width: fit-content;
  font-family: Montserrat;
  background: transparent;
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: var(--input-dark-label);
}
._input_type_check_item input + label svg {
  fill: var(--input-light-bg);
}
._input_type_check_item input:checked + label svg {
  opacity: 1;
  fill: var(--input-light-bg);
}
._input_type_check_item input:checked + label {
  border-color: var(--input-focus-border);
  background: var(--input-focus-bg);
}
._input_type_radio_item {
  gap: 0.8rem;
  display: flex;
  width: fit-content;
}
._input_type_radio_item input {
  opacity: 0;
  width: 16px;
  border: none;
  display: none;
  background: 0 0;
}
._input_type_radio_item label {
  border: 1px solid var(--input-dark-border);
  position: relative;
  width: 22px;
  height: 22px;
  background: var(--input-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin: 0;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
}
._input_type_radio_item label._input_type_radio_label {
  border: 0;
  font-size: 1.8rem;
  font-weight: 400;
  user-select: none;
  color: var(--input-dark-label);
  font-family: Montserrat;
  background: transparent;
  line-height: calc(1.8rem + 8px);
}
._input_type_radio_item input:checked + label {
  border: 7px solid var(--input-focus-border);
}
._input_type_button_wrapper {
  gap: 1rem;
  display: flex;
  position: relative;
}
._input_type_button_wrapper input {
  opacity: 0;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  position: absolute;
}
._input_type_button_wrapper input:checked + label {
  color: var(--input-light-label);
  background: var(--input-focus-bg);
  border-color: var(--input-focus-border);
}
._input_type_button_label {
  width: 13rem;
  display: flex;
  height: 4.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-align: center;
  font-family: Montserrat;
  color: var(--input-dark-label);
  background-color: var(--btn-default);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--input-dark-border);
}
._input_label {
  font-weight: 600;
  font-family: Montserrat;
  color: var(--input-dark-label);
  font-size: 1.8rem;
  line-height: 2.8rem;
}
._input_error {
  height: 0;
  font-weight: 700;
  overflow: hidden;
  font-family: Montserrat;
  font-size: 1.6rem;
  color: #F46036;
}

._checkbox_grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 12rem;
  min-height: 12rem;
  border-radius: 0.5rem;
  border: 2px solid var(--input-dark-border);
  background-color: var(--input-light-bg);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}
._checkbox_grid:before {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--input-dark-border);
  background-color: var(--input-light-bg);
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
._checkbox_grid:hover {
  border-color: var(--btn-border-active-default);
}
._checkbox_grid:hover:before {
  border-color: var(--btn-border-active-default);
  transform: scale(1);
  opacity: 1;
}
._checkbox_grid_container {
  gap: 2rem;
  display: grid;
  padding: 3rem;
  border-radius: 7px;
  width: fit-content;
  background: #fff;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0px 3px 6px 0px rgba(140, 149, 159, 0.15);
}
._checkbox_grid_container input {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
._checkbox_grid_container input:checked + ._checkbox_grid {
  border-color: var(--btn-border-active-default);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: var(--btn-active-default-color);
}
._checkbox_grid_container input:checked + ._checkbox_grid:before {
  transform: scale(1);
  opacity: 1;
  background-color: var(--btn-active-default);
  border-color: var(--btn-border-hover-default);
}
._checkbox_grid_container input:checked + ._checkbox_grid ._checkbox_grid_icon, ._checkbox_grid_container input:checked + ._checkbox_grid ._checkbox_grid_label {
  color: var(--btn-active-default-color);
}
._checkbox_grid_container input:focus + ._checkbox_grid {
  border-color: var(--btn-border-hover-default);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(42, 170, 138, 0.3);
}
._checkbox_grid_container input:focus + ._checkbox_grid:before {
  transform: scale(1);
  opacity: 1;
}
._checkbox_grid_icon {
  transition: 0.375s ease;
  color: #494949;
}
._checkbox_grid_icon svg {
  width: 3rem;
  height: 3rem;
}
._checkbox_grid_label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
}

._multi_range_input_wrapper {
  width: 100%;
  display: flex;
  margin: 30px 0 35px;
}
._multi_range_input_field {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
}
._multi_range_input_field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 1.6rem;
  margin-left: 12px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid var(--input-dark-border);
  -moz-appearance: textfield;
}
._multi_range_input_field input[type=number]::-webkit-outer-spin-button,
._multi_range_input_field input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
._multi_range_input_separator {
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
._multi_range_slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}
._multi_range_slider-progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--input-dark-bg);
}
._multi_range_handle-wrapper {
  position: relative;
  /* For Chrome and other WebKit browsers */
  /* For other browsers that support the range input */
  /* Generic styling that will be applied to the thumb in all supported browsers */
}
._multi_range_handle-wrapper input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  accent-color: var(--input-dark-bg);
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
._multi_range_handle-wrapper input[type=range]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: var(--input-dark-bg);
  accent-color: var(--input-dark-bg);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
._multi_range_handle-wrapper input[type=range]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background-color: var(--input-dark-bg) !important;
  accent-color: var(--input-dark-bg);
  color: var(--input-dark-bg) !important;
  accent-color: var(--input-dark-bg);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
._multi_range_handle-wrapper input[type=range]::-ms-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background-color: var(--input-dark-bg) !important;
  color: var(--input-dark-bg) !important;
  accent-color: var(--input-dark-bg);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
._multi_range_handle-wrapper input[type=range]::-ms-fill-lower,
._multi_range_handle-wrapper input[type=range]::-ms-fill-upper {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background-color: var(--input-dark-bg);
  color: var(--input-dark-bg) !important;
  accent-color: var(--input-dark-bg);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

._switch_wrapper {
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
  width: 60px;
  height: 34px;
  position: relative;
}
._switch_wrapper input {
  opacity: 0;
  width: 0;
  height: 0;
  outline: 0;
  border: 0;
}
._switch_wrapper input:checked + ._switch_slider {
  background-color: var(--btn-focus-default);
}
._switch_wrapper input:checked + ._switch_slider::before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
._switch_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c4c4c4;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}
._switch_slider::before {
  border-radius: 34px;
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--input-light-bg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

._upload_files {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  outline: 0;
  background: var(--input-light-bg);
  border: 0;
  padding: 15px;
  box-sizing: border-box;
}
._upload_files_wrapper {
  width: 100%;
  height: 100px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px dotted #000;
  background-color: var(--input-light-bg);
  position: relative;
}

._select-option_wrapper {
  display: flex;
  width: 400px;
  flex-direction: column;
  position: relative;
}
._select-option_options_menu {
  max-height: 0;
  width: calc(100% - 12px);
  opacity: 0;
  transition: all 0.4s;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--input-light-bg);
  position: absolute;
  z-index: 2;
  box-shadow: 0px 3px 6px 0px rgba(140, 149, 159, 0.15);
}
._select-option_options_menu.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}
._select-option_options_menu.active + ._select-option_selected::after {
  transform: translateY(-50%) rotateX(180deg);
}
._select-option_options_menu::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  background: #81878f;
  background: #f1f2f3;
  border-radius: 0 5px 5px 0;
}
._select-option_options_menu::-webkit-scrollbar-thumb {
  background: #525861;
  background: #81878f;
  border-radius: 0 5px 5px 0;
}
._select-option_selected {
  position: relative;
  width: 388px;
  border-radius: 5px;
  background-color: var(--input-light-bg);
  cursor: pointer;
  padding: 12px 24px;
  box-shadow: 0px 3px 6px 0px rgba(140, 149, 159, 0.15);
}
._select-option_selected::after {
  content: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="13" height="8" viewBox="0 0 13 8" fill="none"%3E%3Cpath d="M0.578125 1.21924L6.34673 6.78056L12.288 1.21924" stroke="black" stroke-linecap="round"%3E%3C/path%3E%3C/svg%3E');
  /* Font Awesome	 */
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  right: 15px;
  top: 50%;
  transition: transform 0.5s;
  transform: translateY(-50%);
}
._select-option_option {
  padding: 12px 24px;
  cursor: pointer;
}
._select-option_option * {
  cursor: pointer;
}
._select-option_option_title {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
  color: #1f2949;
}
._select-option_option_desc {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.83;
  color: #81878f;
}
._select-option_option input[type=radio] {
  display: none;
}
._select-option_option:hover {
  background: #efefef;
}

.menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  transform: translateX(-100%);
  z-index: 10;
  text-align: left;
  transition: transform 0.3s ease-in-out;
  position: fixed;
  height: 100vh;
  width: 100%;
  max-width: 350px;
  top: 0;
  left: 0;
  display: block;
  overflow-y: auto;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.menu.open {
  transform: translateX(0);
}

.burger {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 2.2rem;
  height: 1.7rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.burger:focus {
  outline: none;
}

.burger div {
  width: 2.2rem;
  height: 0.3rem;
  background: #000000;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

._upward-arrow_wrapper {
  border: 0;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  width: 7.2rem;
  height: 7.2rem;
  position: fixed;
  cursor: pointer;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #FDC103;
  z-index: 22;
}
._upward-arrow_wrapper svg {
  width: auto;
  height: 1.5rem;
}

._h1 {
  font-size: 5.5rem;
  font-weight: bold;
  font-family: Montserrat;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  ._h1 {
    font-size: 4rem;
    line-height: 5rem;
  }
}
@media only screen and (max-width: 480px) {
  ._h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
}

._h2 {
  font-size: 4.5rem;
  font-weight: bold;
  font-family: Montserrat;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  ._h2 {
    font-size: 4rem;
    line-height: 5rem;
  }
}
@media only screen and (max-width: 480px) {
  ._h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
}

._h3 {
  font-size: 5rem;
  font-weight: bold;
  line-height: 3.2rem;
  font-family: Montserrat;
  line-height: 1.2;
}

._sub_h1 {
  font-weight: bold;
  font-size: 4.1rem;
  font-family: Montserrat;
  line-height: 5.1rem;
}

._sub_h2 {
  font-weight: 600;
  font-size: 4rem;
  font-family: Montserrat;
  line-height: 5rem;
}
@media only screen and (max-width: 1280px) {
  ._sub_h2 {
    font-size: 3.4rem;
    line-height: 4.4rem;
  }
}
@media only screen and (max-width: 768px) {
  ._sub_h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  ._sub_h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}

._sub_h3 {
  font-weight: bold;
  font-size: 2rem;
  font-family: Montserrat;
  line-height: 2.6rem;
}

._title_h1 {
  font-weight: bold;
  font-size: 4rem;
  font-family: Montserrat;
  line-height: 5.1rem;
}

._title_h2 {
  font-weight: bold;
  font-size: 2rem;
  font-family: Montserrat;
  line-height: 2.8rem;
}

._title_h3 {
  font-weight: bold;
  font-size: 2rem;
  font-family: Montserrat;
  line-height: 2.6rem;
}

._typo_h1 {
  font-family: Montserrat;
  font-size: 2.4rem;
  line-height: 3.4rem;
}

._typo_h2 {
  font-family: Montserrat;
  font-size: 2rem;
  line-height: 1.2;
}

._typo_h3 {
  font-family: Montserrat;
  font-size: 1.8rem;
  line-height: 2.8rem;
}

._widget_rating {
  display: flex;
  overflow: hidden;
  border-radius: 3px;
  width: fit-content;
  height: fit-content;
}
._widget_rating_item {
  gap: 5px;
  color: #000;
  display: flex;
  font-size: 12px;
  padding: 5px 10px;
  line-height: 16px;
  width: fit-content;
  background: #ebf0f4;
  align-items: center;
  border-color: rgba(31, 35, 40, 0.15);
}
._widget_rating-social_count {
  color: #000;
  font-size: 12px;
  padding: 5px 10px;
  background: #fff;
  line-height: 24px;
  border-left: 1px solid rgba(31, 35, 40, 0.15);
}

._facebook_fill {
  fill: #3b5999;
}
._facebook_color {
  color: #3b5999;
}
._facebook_bg {
  background: #3b5999;
}
._facebook_border {
  border-color: #3b5999;
}

._twitter_fill {
  fill: #000000;
}
._twitter_color {
  color: #000000;
}
._twitter_bg {
  background: #000000;
}
._twitter_border {
  border-color: #000000;
}

._google-plus_fill {
  fill: #dd4b39;
}
._google-plus_color {
  color: #dd4b39;
}
._google-plus_border {
  border-color: #dd4b39;
}

._instagram_fill {
  fill: #e4405f;
}
._instagram_color {
  color: #e4405f;
}
._instagram_border {
  border-color: #e4405f;
}

._pinterest_fill {
  fill: #bd081c;
}
._pinterest_color {
  color: #bd081c;
}
._pinterest_bg {
  background: #bd081c;
}
._pinterest_border {
  border-color: #bd081c;
}

._youtube_fill {
  fill: #cd201f;
}
._youtube_color {
  color: #cd201f;
}
._youtube_bg {
  background: #cd201f;
}
._youtube_border {
  border-color: #cd201f;
}

._slack_fill {
  fill: #3aaf85;
}
._slack_color {
  color: #3aaf85;
}
._slack_bg {
  background: #3aaf85;
}
._slack_border {
  border-color: #3aaf85;
}

._dribbble_fill {
  fill: #ea4c89;
}
._dribbble_color {
  color: #ea4c89;
}
._dribbble_bg {
  background: #ea4c89;
}
._dribbble_border {
  border-color: #ea4c89;
}

._github_fill {
  fill: #222222;
}
._github_color {
  color: #222222;
}
._github_bg {
  background: #222222;
}
._github_border {
  border-color: #222222;
}

._dropbox_fill {
  fill: #1E90FF;
}
._dropbox_color {
  color: #1E90FF;
}
._dropbox_bg {
  background: #1E90FF;
}
._dropbox_border {
  border-color: #1E90FF;
}

._twitch_fill {
  fill: #4B367C;
}
._twitch_color {
  color: #4B367C;
}
._twitch_bg {
  background: #4B367C;
}
._twitch_border {
  border-color: #4B367C;
}

._paypal_fill {
  fill: #ecb32c;
}
._paypal_color {
  color: #ecb32c;
}
._paypal_bg {
  background: #ecb32c;
}
._paypal_border {
  border-color: #ecb32c;
}

._behance_fill {
  fill: #0057ff;
}
._behance_color {
  color: #0057ff;
}
._behance_bg {
  background: #0057ff;
}
._behance_border {
  border-color: #0057ff;
}

._reddit_fill {
  fill: #E84422;
}
._reddit_color {
  color: #E84422;
}
._reddit_bg {
  background: #E84422;
}
._reddit_border {
  border-color: #E84422;
}

._about-us {
  padding-top: 12.28rem;
}
._about-us_wrapper {
  padding-top: 5rem;
  padding-bottom: 4.5rem;
  gap: 9rem;
  display: flex;
  flex-direction: column;
}
._about-us_title {
  text-align: center;
  color: #FDC103;
}
._about-us_info {
  gap: 6rem;
  display: flex;
  flex-direction: column;
}
._about-us_sub-title_wrapper {
  font-weight: 700;
  text-align: center;
  gap: 3.5rem;
  display: flex;
  flex-direction: column;
}
._about-us_typo_wrapper {
  display: flex;
  align-self: end;
}

@media only screen and (max-width: 1280px) {
  ._about-us_wrapper {
    gap: 5rem;
    display: flex;
    flex-direction: column;
  }
  ._about-us_sub-title_wrapper {
    gap: 2.5rem;
    display: flex;
    flex-direction: column;
  }
  ._about-us_sub-title_wrapper_responsive {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  ._about-us_info {
    gap: 7rem;
    padding-top: 7rem;
    align-items: center;
    flex-direction: column;
  }
  ._about-us_sub-title_wrapper {
    gap: 1rem;
    display: none;
  }
  ._about-us_sub-title_wrapper_responsive {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  ._about-us_sub-title_wrapper span {
    color: #000000;
  }
}
@media only screen and (max-width: 768px) {
  ._about-us_wrapper {
    padding-top: 0rem;
    gap: 0rem;
  }
  ._about-us_info {
    gap: 5rem;
    padding-top: 4rem;
    padding-bottom: 0rem;
  }
  ._about-us_sub-title_wrapper span {
    display: none;
  }
  ._about-us_sub-title_wrapper svg {
    display: none;
  }
  ._about-us_typo_wrapper {
    text-align: 0.6px;
  }
}
@media only screen and (max-width: 480px) {
  ._about-us_wrapper {
    gap: 0rem;
    padding-bottom: 4rem;
  }
  ._about-us_info {
    gap: 4rem;
  }
  ._about-us_sub-title_wrapper {
    gap: 2rem;
    display: flex;
  }
  ._about-us_sub-title_wrapper_responsive {
    display: none;
  }
}
._contact-us {
  padding-top: 19.78rem;
}
._contact-us_title {
  font-size: 49px;
  font-weight: 600;
  text-align: center;
  line-height: 58.8px;
}
._contact-us ._get_in_touch {
  padding-top: 0;
}
._contact-us ._get_in_touch_form_wrapper {
  padding: 3rem;
  border-radius: 4rem;
}
._contact-us ._get_in_touch_title_main {
  display: none;
}
._contact-us ._get_in_touch_wrapper {
  gap: 8.6rem;
  flex-direction: row-reverse;
  padding-bottom: 12.6rem;
}

@media only screen and (max-width: 1024px) {
  ._contact-us {
    margin-top: 12.28rem;
    padding-top: 7.5rem;
  }
  ._contact-us_title {
    font-size: 49px;
    font-weight: 600;
    text-align: center;
    line-height: 58.8px;
  }
  ._contact-us ._get_in_touch_form_wrapper {
    gap: 2.5rem !important;
    box-shadow: 0px 0px 23.4px 0px rgba(152, 152, 152, 0.2509803922);
    padding: 3rem;
    border-radius: 4rem;
  }
  ._contact-us ._get_in_touch_wrapper {
    gap: 8.6rem;
    flex-direction: column;
    padding-bottom: 14rem;
  }
  ._contact-us ._get_in_touch_communication_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  ._contact-us ._get_in_touch_communication_item {
    gap: 2rem !important;
  }
  ._contact-us ._get_in_touch_communication_item_title {
    text-align: center;
  }
  ._contact-us ._get_in_touch_communication_item_detail {
    text-align: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 1024px) {
  ._contact-us_title {
    font-size: 4rem;
    line-height: 5rem;
  }
  ._contact-us ._get_in_touch_form_wrapper {
    gap: 2.7rem;
    padding: 0;
    box-shadow: unset;
  }
  ._contact-us ._get_in_touch_form_button {
    text-align: center;
    justify-content: center;
  }
  ._contact-us ._get_in_touch_title {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
  ._contact-us ._get_in_touch_wrapper {
    padding-top: 10rem;
  }
  ._contact-us ._get_in_touch_communication_item {
    gap: 3rem;
  }
  ._contact-us ._get_in_touch_communication_item_detail {
    font-size: 1.6rem;
    line-height: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  ._contact-us {
    padding-top: 0;
  }
  ._contact-us_title {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
  ._contact-us ._get_in_touch_form_title {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  ._contact-us ._get_in_touch_form_wrapper {
    gap: 3rem;
    padding: 0;
    box-shadow: unset;
  }
  ._contact-us ._get_in_touch_form_button {
    text-align: center;
    justify-content: center;
  }
  ._contact-us ._get_in_touch_title {
    font-size: 1.8rem;
    line-height: 2.5rem;
    text-align: left;
  }
  ._contact-us ._get_in_touch_wrapper {
    padding-top: 6rem;
  }
  ._contact-us ._get_in_touch_communication_item {
    gap: 2.8rem;
  }
  ._contact-us ._get_in_touch_communication_item_title {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
  ._contact-us ._get_in_touch_communication_item_detail {
    font-size: 1.4rem;
    line-height: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  ._contact-us_title {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  ._contact-us ._get_in_touch_title {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  ._contact-us ._get_in_touch_communication_wrapper {
    grid-template-areas: "a a a" "b b b" "c c c" "d d d";
  }
  ._contact-us ._get_in_touch_communication_item:nth-child(1) {
    grid-area: a;
  }
  ._contact-us ._get_in_touch_communication_item:nth-child(2) {
    grid-area: b;
  }
  ._contact-us ._get_in_touch_communication_item:nth-child(3) {
    grid-area: c;
  }
  ._contact-us ._get_in_touch_communication_item:nth-child(4) {
    grid-area: d;
  }
  ._contact-us ._get_in_touch_communication_item_title {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  ._contact-us ._get_in_touch_communication_item_detail {
    font-size: 1.4rem;
    line-height: 1rem;
  }
}
._career_wrapper {
  padding-top: 6.5rem;
  padding-bottom: 16.6rem;
  gap: 9rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  ._career_wrapper {
    padding-bottom: 10rem;
  }
}
._career_title {
  font-weight: 500;
  text-align: center;
}
._career-section {
  gap: 14rem;
  display: flex;
  flex-direction: column;
}
._career-section_head ._tab_head {
  gap: 10rem;
  display: flex;
}
._career-section_head ._tab_title {
  color: #FDC103;
  font-size: 25px;
  font-weight: 400;
  line-height: 30.48px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
._career-section_head ._tab_title:hover {
  font-weight: 600;
}
._career-section_head ._tab_title--active {
  font-weight: 600;
  color: black;
  padding-bottom: 7.5px;
  border-bottom: 5px solid black;
}
._career-section_body ._tab_body {
  gap: 6rem;
  display: flex;
  flex-direction: column;
}
._career-section_card {
  gap: 12rem;
  display: grid;
  grid-template-columns: auto auto;
}
._career-section_card:not(:last-child) {
  padding: 0 0 5rem 0;
  border-bottom: 0.5px solid #8A8A8A;
}
._career-section_card_info {
  gap: 6rem;
  display: flex;
  flex-direction: column;
}
._career-section_card_info_title {
  font-weight: 600;
}
._career-section_card_info_button {
  justify-self: end;
  align-self: center;
}

@media only screen and (max-width: 1024px) {
  ._career-section_card {
    gap: 6rem;
    position: relative;
  }
  ._career-section_card_info_title {
    text-align: left;
  }
  ._career-section_card_info_button {
    top: 0;
    right: 0;
    position: absolute;
  }
}
@media only screen and (max-width: 768px) {
  ._career-section_body ._tab_body {
    gap: 3.6rem;
  }
  ._career-section_card {
    gap: 4rem;
    display: flex;
    flex-direction: column;
  }
  ._career-section_card:not(:last-child) {
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  }
  ._career-section_card_info {
    gap: 5rem;
    width: calc(100vw - 4rem);
  }
  ._career-section_card_info_button {
    top: 0;
    right: 0;
    position: static;
  }
}
@media only screen and (max-width: 480px) {
  ._career-section_body ._tab_body {
    gap: 3.6rem;
  }
  ._career-section_card {
    gap: 3rem;
  }
  ._career-section_card:not(:last-child) {
    padding-bottom: 3.6rem;
  }
  ._career-section_card:not(:last-child) ._career-section_card_info_button {
    bottom: 5rem;
  }
  ._career-section_card_info {
    gap: 2rem;
  }
  ._career-section_card_info_title {
    font-size: 1.6rem;
  }
  ._career-section_card_info_button {
    bottom: -5rem;
    width: 100%;
    text-align: center;
    justify-content: center;
    top: unset;
    right: unset;
  }
}
._job-detail {
  padding-top: 12.28rem;
}
._job-detail_wrapper {
  padding-top: 7rem;
  padding-bottom: 13rem;
  gap: 13rem;
  display: flex;
  flex-direction: column;
}
._job-detail_title {
  font-size: 45px;
  font-weight: 600;
  line-height: 54.86px;
  align-self: center;
  display: flex;
  gap: 2rem;
  align-items: center;
}
._job-detail_title_wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  ._job-detail_title {
    font-weight: 700;
    line-height: 4.8rem;
    font-size: 3.9rem;
  }
}
@media only screen and (max-width: 768px) {
  ._job-detail_title {
    font-size: 3rem;
    line-height: 3.8rem;
  }
  ._job-detail_title svg {
    height: 1.8rem;
  }
}
._job-detail_start-date {
  font-weight: 600;
  width: fit-content;
  background-color: #FDC103;
  gap: 6px;
  display: flex;
  flex-direction: column;
  padding: 14px 64px 14px 30px;
}
._job-detail_info {
  display: grid;
  row-gap: 5rem;
  grid-template-columns: 1fr 1fr;
}
._job-detail_info_wrapper {
  gap: 6.6rem;
  display: flex;
  flex-direction: column;
}
._job-detail_info_overview {
  gap: 5rem;
  display: flex;
  flex-direction: column;
}
._job-detail_item {
  gap: 6px;
  display: flex;
  flex-direction: column;
}
._job-detail_item_des_wrapper {
  gap: 6px;
  display: flex;
  flex-direction: column;
}
._job-detail_item_skill_wrapper {
  list-style-position: inside;
  gap: 6px;
  display: flex;
  flex-direction: column;
}
._job-detail_item_title {
  font-weight: 600;
}
._job-detail_item_skill_title {
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  ._job-detail {
    padding-top: 12.28rem;
  }
  ._job-detail_wrapper {
    padding-top: 0rem;
    padding-bottom: 13rem;
  }
  ._job-detail_title {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
  ._job-detail_title_wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  ._job-detail_start-date {
    font-weight: 600;
    width: fit-content;
    background-color: #FDC103;
    gap: 2px;
    display: flex;
    flex-direction: column;
    padding: 10px 32px 10px 15px;
  }
  ._job-detail_info {
    display: grid;
    row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }
  ._job-detail_info_wrapper {
    gap: 6.6rem;
    display: flex;
    flex-direction: column;
  }
  ._job-detail_info_overview {
    gap: 4rem;
    display: flex;
    flex-direction: column;
  }
  ._job-detail_item {
    gap: 6px;
    display: flex;
    flex-direction: column;
  }
  ._job-detail_item_title {
    font-weight: 600;
  }
  ._job-detail_item_skill_title {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
._navbar {
  top: 0;
  width: 100%;
  z-index: 9;
  position: fixed;
  max-width: 100vw;
  background: #fff;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
._navbar_scrolled_future-innovation {
  background: rgba(255, 255, 255, 0.7);
}
._navbar_scrolled_future-innovation ._navbar_link {
  color: #000000;
}
._navbar_scrolled_future-innovation path:nth-child(4) {
  fill: #000000;
}
._navbar_wrapper {
  display: flex;
  align-items: center;
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
  justify-content: space-between;
}
._navbar_brand a {
  display: flex;
}
._navbar_brand-main {
  width: auto;
  height: 5rem;
}
._navbar_links {
  gap: 9.5rem;
  display: flex;
}
@media only screen and (max-width: 1440px) {
  ._navbar_links {
    gap: 4.5rem;
  }
}
._navbar_link {
  color: #000000;
  font-size: 2rem;
}
._navbar_link a {
  color: inherit;
  display: flex;
  padding: 1rem;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-color: #FDC103;
  position: relative;
}
._navbar_link a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px; /* Height of the underline */
  background-color: #FDC103; /* Color of the underline */
  border-radius: 5px; /* Adjust the radius to your preference */
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
._navbar_link a._navbar_link-active::after {
  opacity: 1;
}
._navbar_link a:hover::after {
  opacity: 1;
}

@media only screen and (max-width: 1280px) {
  ._navbar_wrapper {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
  }
}
@media only screen and (max-width: 1280px) and (max-width: 1230px) {
  ._navbar_button {
    padding: 1.4rem 2.2rem;
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 1280px) and (max-width: 1230px) {
  ._navbar_link {
    font-size: 1.8rem;
    font-weight: 500;
  }
  ._navbar_links {
    align-items: center;
    gap: 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  ._navbar_link {
    width: 100%;
    padding: unset;
    font-weight: 500;
    font-size: 1.7rem;
    display: inline-block;
    border-top: 0.1rem solid #e6eaea;
  }
  ._navbar_link-arr {
    padding-left: 5px;
  }
  ._navbar_link:last-child {
    border-bottom: 0.1rem solid #e6eaea;
  }
  ._navbar_links {
    height: 100vh;
    width: 100%;
    display: block;
  }
  ._navbar_links.for_slider ._navbar_brand {
    height: 11.08rem;
    position: relative;
  }
  ._navbar_links.for_slider ._navbar_brand a {
    top: 50%;
    left: 3rem;
    display: flex;
    position: absolute;
    transform: translateY(-50%);
  }
  ._navbar_links.for_slider ._navbar_brand label {
    top: 50%;
    right: 3rem;
    display: flex;
    position: absolute;
    transform: translateY(-50%);
  }
  ._navbar_item {
    padding: 2.4rem 3.6rem;
  }
  ._navbar_item:hover {
    color: #18634B;
  }
  .close-btn {
    top: 3.2rem;
    right: 2rem;
    display: flex;
    cursor: pointer;
    position: absolute;
    align-items: center;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
}
@media only screen and (max-width: 1024px) {
  ._drop__menu {
    gap: unset;
    top: 65px;
    opacity: 1;
    width: 100%;
    padding: unset;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    position: static;
    visibility: visible;
    transition: all 0.3s ease;
    background-color: #f8f8f8;
  }
  ._drop__item {
    margin: 0;
    border-top: 0.1rem solid #e6eaea;
    min-width: unset;
  }
  ._drop__link {
    line-height: 26px;
    padding: 2.4rem 3.6rem;
  }
  ._drop_for__mobile {
    color: #18634B;
    cursor: pointer;
    border-radius: 5px;
    white-space: nowrap;
    display: block !important;
    transition: all 0.3s ease;
  }
  ._drop_for__desktop {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  ._navbar_wrapper {
    padding-top: 2.7rem;
    padding-bottom: 2.7rem;
  }
  ._navbar_brand svg {
    height: 3rem;
    width: auto;
  }
}
._hero {
  position: relative;
  overflow: hidden;
}
._hero:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  position: absolute;
  background-color: rgba(250, 250, 250, 0.7);
}
._hero_wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 172.8rem;
}
._hero_banner {
  width: 100%;
  height: 68.2rem;
  object-fit: cover;
}
._hero_banner_wrapper {
  display: flex;
}
._hero_info {
  gap: 2.7rem;
  display: flex;
  flex-direction: column;
}
._hero_info_wrapper {
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 100%;
  display: grid;
  margin: 0 auto;
  position: absolute;
  max-width: 122.6rem;
  grid-template-columns: 1fr 1fr;
  transform: translate(-50%, -30%);
}
._hero_button {
  justify-self: end;
  align-self: center;
}
._hero_title {
  color: #FDC103;
}
._hero_title span {
  white-space: nowrap;
  display: block;
}
._hero_typo {
  color: #fff;
}
._hero.index ._hero_banner {
  filter: blur(4px);
}
._hero.index ._hero_title {
  color: #000000;
}
._hero.career {
  background-color: #000;
}
._hero.career:after {
  opacity: 0.15;
  background: linear-gradient(180deg, rgba(255, 246, 216, 0.02) 0%, #FDC103 100%);
}
._hero.career ._hero_banner {
  object-position: top;
  filter: blur(2px);
  opacity: 0.8;
}
._hero.career ._hero_info_wrapper {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 80rem;
}
._hero.our-services {
  background-color: #000;
}
._hero.our-services:after {
  display: none;
}
._hero.our-services ._hero_banner {
  object-position: top;
  filter: blur(3px);
  opacity: 0.5;
}
._hero.our-services ._hero_info_wrapper {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 85rem;
}

@media only screen and (max-width: 1280px) {
  ._hero_banner {
    height: 60rem;
  }
  ._hero_info_wrapper {
    grid-template-columns: 2fr 1fr;
  }
}
@media only screen and (max-width: 1024px) {
  ._hero_banner {
    height: 50rem;
  }
  ._hero_info {
    gap: 1.7rem;
  }
  ._hero_info_wrapper {
    gap: 2rem;
    text-align: center;
    grid-template-columns: 1fr;
  }
  ._hero_button {
    justify-self: center;
  }
  ._hero.career ._hero_info_wrapper {
    grid-template-columns: 1fr;
  }
  ._hero.our-services ._hero_info_wrapper {
    justify-content: center;
    grid-template-columns: 0.8fr;
  }
}
@media only screen and (max-width: 768px) {
  ._hero_wrapper {
    margin-top: 7rem;
  }
  ._hero_banner {
    height: 40rem;
  }
  ._hero_info {
    text-align: center;
  }
  ._hero_info_wrapper {
    transform: translate(-50%, -40%);
  }
  ._hero_button {
    margin-top: 1rem;
  }
  ._hero_title {
    text-align: center;
  }
  ._hero_title span {
    white-space: unset;
  }
}
@media only screen and (max-width: 480px) {
  ._hero_wrapper {
    margin-top: 7rem;
  }
  ._hero_banner {
    height: 40rem;
  }
  ._hero_info_wrapper {
    transform: translate(-50%, -40%);
  }
  ._hero_button {
    margin-top: 1rem;
  }
  ._hero_title span {
    white-space: unset;
  }
}
._future-innovation {
  max-width: 100vw;
  overflow: hidden;
}
._future-innovation_wrapper {
  padding-top: 16rem;
}
._future-innovation_info {
  gap: 4rem;
  display: grid;
  justify-content: center;
}
._future-innovation_info_wrapper {
  gap: 8rem;
  display: grid;
}
._future-innovation_title {
  font-size: 7rem;
  font-weight: 700;
  font-weight: bold;
}
._future-innovation_tag {
  gap: 2.7rem;
  display: flex;
  margin: 0 auto;
  font-size: 3rem;
  width: fit-content;
  align-items: center;
  border-radius: 5.3rem;
  padding: 1.9rem 4.4rem;
  border: 3px solid #FDC103;
}
._future-innovation_tag span {
  display: flex;
  height: fit-content;
  font-weight: inherit;
}
._future-innovation_tag svg {
  width: auto;
  height: 5.3rem;
}
._future-innovation_media {
  width: 100%;
  gap: 4.5rem;
  display: grid;
  padding-top: 7rem;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
}
._future-innovation_media img {
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}
._future-innovation_media img:not(:nth-child(2)) {
  margin-top: 14rem;
}
._future-innovation_media img:last-child {
  left: 0;
  z-index: 0;
  position: absolute;
}
._future-innovation_media_wrapper {
  width: 100%;
  height: 46rem;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  ._future-innovation_wrapper {
    padding-top: 14rem;
  }
  ._future-innovation_info {
    gap: 4rem;
  }
  ._future-innovation_info_wrapper {
    gap: 8rem;
    display: grid;
  }
  ._future-innovation_title {
    font-weight: 700;
    font-size: 4.8rem;
    line-height: 6rem;
  }
  ._future-innovation_tag {
    gap: 2.7rem;
    display: flex;
    margin: 0 auto;
    font-size: 2.5rem;
    width: fit-content;
    align-items: center;
    border-radius: 5.3rem;
    padding: 1.5rem 4.4rem;
    border: 3px solid #FDC103;
  }
  ._future-innovation_tag span {
    display: flex;
    height: fit-content;
    font-weight: inherit;
  }
  ._future-innovation_tag svg {
    height: 4.3rem;
  }
  ._future-innovation_media {
    width: 100%;
    gap: 4.5rem;
    display: grid;
    padding-top: 7rem;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  ._future-innovation_media img {
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
  }
  ._future-innovation_media img:not(:nth-child(2)) {
    margin-top: 14rem;
  }
  ._future-innovation_media img:last-child {
    left: 0;
    z-index: 0;
    position: absolute;
  }
  ._future-innovation_media_wrapper {
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  ._future-innovation_wrapper {
    padding-top: 10rem;
  }
  ._future-innovation_title {
    font-size: 4rem;
    font-weight: 700;
    width: 100%;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  ._future-innovation_tag {
    gap: 2.7rem;
    display: flex;
    margin: 0 auto;
    font-size: 2.2rem;
    width: fit-content;
    align-items: center;
    border-radius: 5.3rem;
    padding: 1.5rem 4rem;
    border: 2px solid #FDC103;
  }
  ._future-innovation_tag span {
    display: flex;
    height: fit-content;
    font-weight: inherit;
  }
  ._future-innovation_tag svg {
    width: auto;
    height: 3rem;
  }
  ._future-innovation_media {
    width: 100%;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
  ._future-innovation_media img {
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
  }
  ._future-innovation_media img:not(:nth-child(2)) {
    margin-top: 14rem;
  }
  ._future-innovation_media img:last-child {
    left: 0;
    z-index: 0;
    position: absolute;
  }
  ._future-innovation_media_grediant {
    bottom: 0;
  }
  ._future-innovation_media_wrapper {
    width: 150%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 480px) {
  ._future-innovation {
    width: 100%;
    overflow: hidden;
  }
  ._future-innovation_wrapper {
    padding-top: 10rem;
  }
  ._future-innovation_info {
    gap: 2.5rem;
  }
  ._future-innovation_title {
    font-size: 2.8rem;
    line-height: 3.8rem;
    height: fit-content;
  }
  ._future-innovation_tag {
    gap: 1.5rem;
    font-size: 1.8rem;
    width: fit-content;
    padding: 1.3rem 2.9rem;
    border: 2px solid #FDC103;
  }
  ._future-innovation_tag svg {
    height: 2.4rem;
  }
  ._future-innovation_media {
    width: 100%;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
  ._future-innovation_media img:not(:nth-child(2)) {
    margin-top: 8rem;
  }
  ._future-innovation_media_grediant {
    bottom: 0;
  }
  ._future-innovation_media_wrapper {
    height: 30rem;
  }
}
._our-commitments {
  height: fit-content;
  position: relative;
  background-color: #fff;
  max-width: 100vw;
  overflow: hidden;
  z-index: 1;
}
._our-commitments_wrapper {
  padding-top: 20rem;
  padding-bottom: 11.5rem;
}
._our-commitments_title {
  color: #000;
  font-weight: 700;
  font-size: 4.8rem;
  text-align: center;
  line-height: 5.802rem;
  margin-bottom: 16rem;
}
._our-commitments_info {
  width: 100%;
}
._our-commitments_key-point {
  opacity: 0;
  width: 50%;
  display: flex;
  align-items: center;
  min-height: 13.8rem;
  position: relative;
}
._our-commitments_key-point::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 86px;
  padding: 6px; /* control the border thickness */
  background: linear-gradient(90deg, #2F2F2F 0%, #000000 46.5%, #696969 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
._our-commitments_key-point:not(._our-commitments_info):nth-child(odd) {
  align-self: end;
}
._our-commitments_key-point_text {
  width: 100%;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  line-height: 36.57px;
  position: absolute;
  width: fit-content;
  left: 57%;
  transform: translate(-50%);
  white-space: nowrap;
}
@media only screen and (max-width: 1440px) {
  ._our-commitments_key-point_text {
    font-size: 25px;
    font-weight: 600;
    line-height: 33.57px;
  }
}
._our-commitments_key-points {
  gap: 4rem;
  display: flex;
  flex-direction: column;
}
._our-commitments_key-point_media {
  width: 7rem;
  height: 7rem;
}
._our-commitments_key-point_media_wrapper {
  left: 0px;
  display: flex;
  width: 13.8rem;
  height: 13.8rem;
  position: absolute;
  min-height: 13.8rem;
  min-width: 13.8rem;
  align-items: center;
  border-radius: 8.4rem;
  background: #FDC103;
  justify-content: center;
}
._our-commitments_key-point_media_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 86px;
  padding: 6px; /* control the border thickness */
  background: linear-gradient(90deg, #2F2F2F 0%, #000000 46.5%, #696969 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@media only screen and (max-width: 1280px) {
  ._our-commitments {
    height: fit-content;
    position: relative;
    background-color: #fff;
    max-width: 100vw;
    overflow: hidden;
  }
  ._our-commitments_wrapper {
    padding-top: 16rem;
  }
  ._our-commitments_title {
    color: #000;
    font-weight: 700;
    font-size: 4.8rem;
    text-align: center;
    line-height: 5.802rem;
    margin-bottom: 12rem;
  }
  ._our-commitments_info {
    width: 100%;
  }
  ._our-commitments_key-point {
    opacity: 0;
    width: 50%;
    display: flex;
    align-items: center;
    min-height: 10rem;
    position: relative;
  }
  ._our-commitments_key-point::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 86px;
    padding: 4px; /* control the border thickness */
    background: linear-gradient(90deg, #2F2F2F 0%, #000000 46.5%, #696969 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
  ._our-commitments_key-point:not(._our-commitments_info):nth-child(odd) {
    align-self: end;
  }
  ._our-commitments_key-point_text {
    width: 100%;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    line-height: 2.8rem;
    position: absolute;
    width: fit-content;
    left: 57%;
    transform: translate(-50%);
    white-space: nowrap;
  }
  ._our-commitments_key-points {
    gap: 4rem;
    display: flex;
    flex-direction: column;
  }
  ._our-commitments_key-point_media {
    width: 6rem;
    height: 6rem;
  }
  ._our-commitments_key-point_media_wrapper {
    left: 0px;
    display: flex;
    width: 10rem;
    height: 10rem;
    position: absolute;
    min-height: 10rem;
    min-width: 10rem;
    align-items: center;
    border-radius: 8.4rem;
    background: #FDC103;
    justify-content: center;
  }
  ._our-commitments_key-point_media_wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 86px;
    padding: 4px; /* control the border thickness */
    background: linear-gradient(90deg, #2F2F2F 0%, #000000 46.5%, #696969 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
}
@media only screen and (max-width: 1024px) {
  ._our-commitments_wrapper {
    padding-top: 16rem;
  }
  ._our-commitments_title {
    font-weight: 700;
    font-size: 4.8rem;
    line-height: 5.802rem;
    margin-bottom: 12rem;
  }
  ._our-commitments_key-point {
    width: 60%;
  }
}
@media only screen and (max-width: 768px) {
  ._our-commitments_wrapper {
    padding-top: 14rem;
  }
  ._our-commitments_title {
    font-weight: 700;
    font-size: 3.4rem;
    line-height: 4rem;
    margin-bottom: 10rem;
  }
  ._our-commitments_key-point {
    opacity: 0;
    width: 100%;
    min-height: 10rem;
    position: relative;
  }
  ._our-commitments_key-point::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 86px;
    padding: 4px; /* control the border thickness */
    background: linear-gradient(90deg, #2F2F2F 0%, #000000 46.5%, #696969 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
  ._our-commitments_key-point:not(._our-commitments_info):nth-child(odd) {
    align-self: end;
  }
  ._our-commitments_key-point_text {
    width: 100%;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    line-height: 2.8rem;
    position: absolute;
    width: fit-content;
    left: 57%;
    transform: translate(-50%);
    white-space: nowrap;
  }
  ._our-commitments_key-points {
    gap: 4rem;
    display: flex;
    flex-direction: column;
  }
  ._our-commitments_key-point_media {
    width: 6rem;
    height: 6rem;
  }
  ._our-commitments_key-point_media_wrapper {
    left: 0px;
    display: flex;
    width: 10rem;
    height: 10rem;
    position: absolute;
    min-height: 10rem;
    min-width: 10rem;
    align-items: center;
    border-radius: 8.4rem;
    background: #FDC103;
    justify-content: center;
  }
  ._our-commitments_key-point_media_wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 86px;
    padding: 4px; /* control the border thickness */
    background: linear-gradient(90deg, #2F2F2F 0%, #000000 46.5%, #696969 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
}
@media only screen and (max-width: 480px) {
  ._our-commitments_wrapper {
    padding-top: 10rem;
  }
  ._our-commitments_title {
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 3.6rem;
    margin-bottom: 6rem;
  }
  ._our-commitments_key-point {
    min-height: 6rem;
  }
  ._our-commitments_key-point::before {
    padding: 3px; /* control the border thickness */
  }
  ._our-commitments_key-point:not(._our-commitments_info):nth-child(odd) {
    align-self: end;
  }
  ._our-commitments_key-point_text {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2.2rem;
    position: absolute;
    width: fit-content;
    left: 57%;
    transform: translate(-50%);
    white-space: nowrap;
  }
  ._our-commitments_key-points {
    gap: 3rem;
    display: flex;
    flex-direction: column;
  }
  ._our-commitments_key-point_media {
    width: 4rem;
    height: 4rem;
  }
  ._our-commitments_key-point_media_wrapper {
    width: 6rem;
    height: 6rem;
    position: absolute;
    min-height: 6rem;
    min-width: 6rem;
  }
  ._our-commitments_key-point_media_wrapper::before {
    padding: 3px; /* control the border thickness */
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.slide-up {
  animation: slideUp 1s ease-out;
}

._our-services {
  position: relative;
  overflow: hidden;
  margin-top: 14rem;
}
._our-services_wrapper {
  text-align: center;
  padding-top: 13rem;
}
._our-services_grid {
  row-gap: 7rem;
  display: grid;
  column-gap: 3.2rem;
  grid-template-columns: repeat(3, 1fr);
}
._our-services_grid_item {
  gap: 2rem;
  display: flex;
  max-width: 48rem;
  width: 100%;
  padding: 3.5rem 0;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
._our-services_grid_item:hover:not(:nth-child(6)) {
  background-color: #FFEFBB;
  font-weight: 600;
}
._our-services_grid_item_link {
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
}
@media only screen and (max-width: 1440px) {
  ._our-services_grid_item {
    width: 100%;
    height: auto;
  }
}
._our-services_grid_item_media {
  width: 100%;
  height: 11rem;
  margin-bottom: 1rem;
}
._our-services_grid_item_media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
._our-services_grid_item_typo {
  font-size: 3rem;
  line-height: 3.65rem;
}
@media screen and (max-width: 1550px) {
  ._our-services_grid_item_typo {
    font-size: 2.4rem;
    line-height: 3.3rem;
  }
}

@media only screen and (max-width: 1280px) {
  ._our-services_grid_item_typo {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 1024px) {
  ._our-services_wrapper {
    gap: 4.5rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  ._our-services_info {
    gap: 1rem;
  }
  ._our-services_grid_item {
    gap: 1.5rem;
  }
  ._our-services_grid_item_typo {
    font-size: 2.1rem;
    line-height: 3rem;
  }
  ._our-services._index_variant ._our-services_wrapper {
    gap: 4rem;
  }
  ._our-services._index_variant ._our-services_grid_item {
    width: 30rem;
  }
}
@media only screen and (max-width: 768px) {
  ._our-services_grid {
    row-gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
  ._our-services_grid_item_typo {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media only screen and (max-width: 480px) {
  ._our-services_grid {
    row-gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }
  ._our-services_grid_item_typo {
    line-height: 2rem;
    font-size: 1.5rem;
  }
}
._ideaRealizer {
  width: 100%;
}

@media only screen and (max-width: 480px) {
  ._ideaRealizer {
    opacity: 0;
    z-index: 2;
    width: 100%;
    padding: 40rem 0;
    position: relative;
    background-color: transparent;
    font-size: 7.549rem;
  }
  ._ideaRealizer_title {
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: inherit;
    line-height: 9.202rem;
    background: linear-gradient(90deg, #939393 0%, #F9F9F9 50.7%, #939393 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
._about-us_section {
  width: 100%;
  margin: 0 auto;
  padding-top: 25.2rem;
  max-width: 172.8rem;
  padding-bottom: 14rem;
  position: relative;
  overflow: hidden;
}
._about-us_section_bg {
  bottom: 0;
  z-index: 0;
  position: absolute;
}
._about-us_section_bg svg {
  width: 100%;
}
._about-us_section_title {
  width: fit-content;
  font-size: 3.9rem;
  padding: 1.1rem 11rem;
  background-color: #FDC103;
}
._about-us_section_sub-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 43.88px;
}
._about-us_section_wrapper {
  gap: 5rem;
  z-index: 1;
  display: flex;
  margin-top: 9rem;
  position: relative;
}
._about-us_section_info {
  gap: 2rem;
  display: flex;
  align-self: center;
  height: fit-content;
  flex-direction: column;
  align-self: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 24.38px;
  height: fit-content;
}
._about-us_section_media {
  width: 50rem;
  height: auto;
  object-fit: contain;
}
._about-us_section_media_wrapper {
  display: flex;
}
._about-us_section_media_wrapper_responsive {
  display: none;
}

@media screen and (max-width: 1150px) {
  ._about-us_section {
    position: relative;
    padding-top: 16rem;
  }
  ._about-us_section_bg {
    bottom: 0;
  }
  ._about-us_section_bg svg {
    height: auto;
  }
  ._about-us_section_bg img {
    position: absolute;
    bottom: 0;
    height: 100rem;
    width: 100vw;
    object-fit: fill;
  }
  ._about-us_section_wrapper {
    flex-direction: column-reverse;
    z-index: 1;
    margin-top: 10rem;
    position: relative;
    grid-template-columns: 1fr;
  }
  ._about-us_section_media {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    right: 3rem;
  }
  ._about-us_section_media_wrapper {
    margin: 2rem 0;
    display: none;
  }
  ._about-us_section_media_wrapper_responsive {
    display: flex;
  }
}
@media only screen and (max-width: 1024px) {
  ._about-us_section_sub-title {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  ._about-us_section_wrapper {
    margin-top: 8rem;
  }
  ._about-us_section_media {
    right: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  ._about-us_section {
    background-color: #fff;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
  ._about-us_section_bg {
    bottom: 0;
  }
  ._about-us_section_bg svg {
    width: 100%;
  }
  ._about-us_section_bg img {
    position: absolute;
    bottom: 0;
    height: 70rem;
    width: 100vw;
    object-fit: fill;
  }
  ._about-us_section_sub-title {
    font-size: 2.2rem;
    line-height: 3rem;
  }
  ._about-us_section_title {
    font-size: 3rem;
    padding: 1.1rem 6rem;
  }
  ._about-us_section_wrapper {
    flex-direction: column-reverse;
    z-index: 1;
    margin-top: 7rem;
    position: relative;
    grid-template-columns: 1fr;
  }
  ._about-us_section_info {
    gap: 2rem;
    display: flex;
    align-self: center;
    height: auto;
    flex-direction: column;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
  }
  ._about-us_section_media {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    right: 1rem;
  }
  ._about-us_section_media_wrapper {
    display: none;
  }
  ._about-us_section_media_wrapper_responsive {
    min-height: 2rem;
    display: flex;
    height: 100%;
  }
}
@media only screen and (max-width: 480px) {
  ._about-us_section {
    background-color: #fff;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 8rem;
  }
  ._about-us_section_bg {
    bottom: 0;
  }
  ._about-us_section_bg svg {
    width: 100%;
  }
  ._about-us_section_bg img {
    position: absolute;
    bottom: 0;
    height: 70rem;
    width: 100vw;
    object-fit: fill;
  }
  ._about-us_section_sub-title {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }
  ._about-us_section_title {
    font-size: 2.6rem;
    padding: 0.8rem 5rem;
  }
  ._about-us_section_wrapper {
    flex-direction: column-reverse;
    z-index: 1;
    margin-top: 7rem;
    position: relative;
    grid-template-columns: 1fr;
  }
  ._about-us_section_info {
    gap: 2rem;
    display: flex;
    align-self: center;
    height: fit-content;
    flex-direction: column;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.2rem;
  }
  ._about-us_section_media {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    right: 1rem;
  }
  ._about-us_section_media_wrapper {
    margin: 0;
    display: none;
  }
  ._about-us_section_media_wrapper_responsive {
    display: flex;
  }
}
._get_in_touch {
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding-top: 23rem;
  max-width: 172.8rem;
  flex-direction: column;
  overflow: hidden;
}
._get_in_touch_title {
  font-family: Montserrat;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-align: left;
  color: #CA9A02;
}
._get_in_touch_title_main {
  font-size: 3.9rem;
  width: fit-content;
  padding: 1.1rem 10%;
  align-self: flex-start;
  background-color: #FDC103;
}
._get_in_touch_form_wrapper {
  gap: 7rem;
  display: flex;
  flex-direction: column;
}
._get_in_touch_form_wrapper textarea {
  height: 27rem;
}
@media only screen and (max-width: 768px) {
  ._get_in_touch_form_wrapper textarea {
    height: 13rem;
  }
}
._get_in_touch_form_button {
  justify-self: end;
}
._get_in_touch_communication_wrapper {
  gap: 5rem;
  display: flex;
  flex-direction: column;
}
._get_in_touch_communication_item {
  gap: 3.5rem;
  display: flex;
  flex-direction: column;
}
._get_in_touch_communication_item_title {
  font-family: Montserrat;
  font-size: 39px;
  font-weight: 500;
  line-height: 46.8px;
  text-align: left;
}
._get_in_touch_communication_item_title span {
  color: #FDC103;
}
._get_in_touch_communication_item_detail {
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #000;
  gap: 1.5rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
._get_in_touch_communication_item_detail_wrapper {
  flex-direction: column;
}
._get_in_touch_communication_item_detail_address {
  display: block;
  width: 100%;
}
._get_in_touch_communication_item_detail img {
  width: 3.6rem;
  height: 3.6rem;
}
._get_in_touch_wrapper {
  gap: 16rem;
  display: flex;
  padding-top: 19rem;
  padding-bottom: 5.5rem;
}

@media only screen and (max-width: 1024px) {
  ._get_in_touch {
    padding-top: 16rem;
  }
  ._get_in_touch_wrapper {
    flex-direction: column;
  }
  ._get_in_touch_form_title {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  ._get_in_touch_form_wrapper {
    gap: 3rem;
    padding: 0;
    box-shadow: unset;
  }
  ._get_in_touch_form_button {
    text-align: center;
    justify-content: center;
  }
  ._get_in_touch_title {
    font-size: 1.8rem;
    line-height: 2.5rem;
    text-align: left;
  }
  ._get_in_touch_wrapper {
    gap: 8rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  ._get_in_touch_communication_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  ._get_in_touch_communication_item {
    gap: 2rem;
  }
  ._get_in_touch_communication_item_title {
    font-size: 2.4rem;
    line-height: 3.4rem;
    text-align: center;
  }
  ._get_in_touch_communication_item_detail {
    font-size: 1.4rem;
    line-height: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  ._get_in_touch_wrapper {
    flex-direction: column;
  }
  ._get_in_touch_form_title {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  ._get_in_touch_form_wrapper {
    gap: 3rem;
    padding: 0;
    box-shadow: unset;
  }
  ._get_in_touch_form_button {
    text-align: center;
    justify-content: center;
  }
  ._get_in_touch_title {
    font-size: 1.8rem;
    line-height: 2.5rem;
    text-align: left;
  }
  ._get_in_touch_title_main {
    font-size: 3rem;
    padding: 1.1rem 6rem;
  }
  ._get_in_touch_wrapper {
    gap: 8rem;
    padding-top: 6rem;
  }
  ._get_in_touch_communication_wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }
  ._get_in_touch_communication_item {
    gap: 2.8rem;
  }
  ._get_in_touch_communication_item_title {
    font-size: 2.4rem;
    line-height: 3.4rem;
    text-align: center;
  }
  ._get_in_touch_communication_item_detail {
    font-size: 1.4rem;
    line-height: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  ._get_in_touch {
    padding-top: 8rem;
  }
  ._get_in_touch_wrapper {
    flex-direction: column;
  }
  ._get_in_touch_form_title {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  ._get_in_touch_form_wrapper {
    gap: 3rem;
    padding: 0;
    box-shadow: unset;
  }
  ._get_in_touch_form_button {
    text-align: center;
    justify-content: center;
  }
  ._get_in_touch_title {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }
  ._get_in_touch_title_main {
    font-size: 2.6rem;
    padding: 0.8rem 5rem;
  }
  ._get_in_touch_wrapper {
    gap: 8rem;
    padding-top: 5rem;
  }
  ._get_in_touch_communication_wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }
  ._get_in_touch_communication_item {
    gap: 2.8rem;
  }
  ._get_in_touch_communication_item_title {
    font-size: 2.4rem;
    line-height: 3.4rem;
    text-align: center;
  }
  ._get_in_touch_communication_item_detail {
    font-size: 1.4rem;
    line-height: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}
._footer {
  background-color: #fff;
  border-top: 1px solid #b0b0b0;
}
._footer_wrapper {
  display: flex;
  padding-top: 11rem;
  padding-bottom: 11rem;
  justify-content: space-between;
}
._footer_left {
  gap: 5.5rem;
  display: flex;
  flex-direction: column;
}
._footer_address {
  display: flex;
  flex-direction: column;
  row-gap: 3.7rem;
}
._footer_address_link {
  color: black;
}
._footer_address_row {
  gap: 11rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
._footer_address_item {
  height: fit-content;
  gap: 1.2rem;
  display: flex;
}
._footer_address_icon {
  display: flex;
  align-items: baseline;
}
._footer_address_icon_address {
  margin-top: 5px;
}
._footer_address_text {
  display: flex;
  flex-direction: column;
}
._footer_title {
  color: #000000;
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 500;
  line-height: 29.26px;
  text-align: left;
}
._footer_right {
  display: flex;
  align-items: center;
}
._footer_right_wrapper {
  height: fit-content;
  gap: 2.4rem;
  display: flex;
  flex-direction: column;
}
._footer_right_label {
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 600;
  line-height: 29.26px;
  letter-spacing: 0.03em;
  text-align: left;
}

@media only screen and (max-width: 1280px) {
  ._footer_wrapper {
    gap: 6rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
    align-items: center;
    flex-direction: column;
  }
  ._footer_title {
    font-size: 2.4rem;
    text-align: center;
  }
  ._footer_left {
    width: 100%;
  }
  ._footer_right_wrapper {
    gap: 1.2rem;
  }
  ._footer_right svg {
    max-width: 17rem;
  }
  ._footer_right_label {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.5px;
    letter-spacing: 0.03em;
    text-align: left;
  }
  ._footer_address {
    display: flex;
    flex-direction: column;
    row-gap: 3.7rem;
    margin: 0 auto;
  }
  ._footer_address_row {
    gap: 15rem;
    display: flex;
    width: fit-content;
  }
  ._footer_address_item {
    width: 40rem;
    font-size: 1.6rem;
    line-height: 2rem;
  }
  ._footer_address_item:nth-child(2) {
    width: fit-content;
  }
  ._footer_address_icon {
    margin-top: 5px;
    display: flex;
    align-items: baseline;
  }
  ._footer_address_text {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 1024px) {
  ._footer_wrapper {
    gap: 2rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
    flex-direction: column;
  }
  ._footer_title {
    text-align: center;
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 768px) {
  ._footer_wrapper {
    gap: 8rem;
  }
  ._footer_title {
    font-size: 1.7rem;
    line-height: 2.5rem;
  }
  ._footer_left {
    gap: 4rem;
    display: flex;
    flex-direction: column;
  }
  ._footer_address {
    display: flex;
    flex-direction: column;
    row-gap: 3.7rem;
  }
  ._footer_address_row {
    gap: 4rem;
    align-items: center;
    flex-direction: column;
  }
  ._footer_address_row:nth-child(2) {
    margin: 0 auto;
  }
  ._footer_address_item {
    font-size: 1.4rem;
    line-height: 2rem;
    width: 100%;
  }
  ._footer_address_icon {
    margin-top: 0;
  }
  ._footer_address_text {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 480px) {
  ._footer_wrapper {
    padding-top: 6rem;
    gap: 10rem;
  }
  ._footer_by {
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  ._footer_title {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  ._footer_title_span {
    display: block;
  }
  ._footer_left {
    gap: 5rem;
  }
  ._footer svg {
    height: 3rem;
  }
}
._our-aims_wrapper {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}
@media only screen and (max-width: 768px) {
  ._our-aims_wrapper {
    padding-bottom: 1rem;
  }
}

._our-vision {
  gap: 13rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
._our-vision_info {
  gap: 5rem;
  display: flex;
  flex-direction: column;
}
._our-vision_title {
  font-weight: 600;
}
._our-vision_typo {
  gap: 3rem;
  display: flex;
  flex-direction: column;
}
._our-vision_media {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
._our-values {
  gap: 13rem;
  display: grid;
  padding-top: 5rem;
  padding-bottom: 5rem;
  grid-template-columns: 1fr;
}
._our-values_info {
  gap: 5rem;
  display: flex;
  flex-direction: column;
}
._our-values_title {
  font-weight: 600;
}
._our-values_typo {
  gap: 3rem;
  display: flex;
  flex-direction: column;
}
._our-values_media {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 1280px) {
  ._our-aims_wrapper {
    gap: 8rem;
    display: flex;
    flex-direction: column;
  }
  ._our-vision {
    gap: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  ._our-vision_info {
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }
  ._our-vision_title {
    font-weight: 600;
  }
  ._our-vision_typo {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }
  ._our-vision_media {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  ._our-values {
    gap: 5rem;
    display: grid;
    grid-template-columns: 1fr;
  }
  ._our-values_info {
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }
  ._our-values_title {
    font-weight: 600;
  }
  ._our-values_typo {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }
  ._our-values_media {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
@media only screen and (max-width: 1024px) {
  ._our-aims_wrapper {
    padding-top: 0;
  }
  ._our-vision {
    gap: 3rem;
  }
  ._our-vision_typo {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  ._our-values_typo {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  ._our-aims_wrapper {
    gap: 0rem;
    padding-top: 0;
  }
  ._our-vision {
    gap: 3rem;
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
  }
  ._our-vision_typo {
    font-size: inherit;
    line-height: inherit;
  }
  ._our-values_typo {
    font-size: inherit;
    line-height: inherit;
  }
}
._tech-vision-statement_title {
  color: #2E2E2E;
  font-weight: 500;
  font-size: 4.5rem;
  text-align: center;
  line-height: 6.3rem;
  padding-left: 7.5rem;
  padding-right: 7.5rem;
}
._tech-vision-statement_title_wrapper {
  height: fit-content;
  background: rgba(253, 193, 3, 0.26);
}
._tech-vision-statement_col_left {
  width: 100%;
  display: flex;
  padding-top: 1rem;
  height: fit-content;
  padding-bottom: 0.5rem;
  justify-content: flex-start;
}
._tech-vision-statement_col_right {
  width: 100%;
  display: flex;
  padding-bottom: 1rem;
  height: fit-content;
  padding-top: 0.5rem;
  justify-content: flex-end;
}
@media only screen and (max-width: 1280px) {
  ._tech-vision-statement_title {
    font-size: 3.9rem;
    line-height: 5rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media only screen and (max-width: 1024px) {
  ._tech-vision-statement_title {
    font-size: 3rem;
    line-height: 5rem;
    padding: 0.5rem 5rem;
  }
}
@media only screen and (max-width: 768px) {
  ._tech-vision-statement_title {
    font-size: 2rem;
    line-height: 3rem;
    padding: 0.5rem 1rem;
  }
  ._tech-vision-statement_col_left svg {
    width: 2.5rem;
    height: auto;
  }
  ._tech-vision-statement_col_right svg {
    width: 2.5rem;
    height: auto;
  }
}
@media only screen and (max-width: 480px) {
  ._tech-vision-statement_title {
    font-size: 1.5rem;
    line-height: 2rem;
    padding: 0.5rem 1rem;
  }
  ._tech-vision-statement_col_left svg {
    width: 2.5rem;
    height: auto;
  }
  ._tech-vision-statement_col_right svg {
    width: 2.5rem;
    height: auto;
  }
}
._client-review_wrapper {
  padding-top: 10rem;
  padding-bottom: 12rem;
  gap: 11rem;
  display: flex;
  flex-direction: column;
}
._client-review_title {
  font-size: 39px;
  font-weight: 600;
  text-align: center;
  line-height: 47.54px;
}
._client-review_list {
  gap: 3rem;
  display: flex;
}
._client-review_list_responsive {
  display: none;
}

@media only screen and (max-width: 1024px) {
  ._client-review_wrapper {
    padding-bottom: 6rem;
    gap: 10rem;
    display: flex;
    flex-direction: column;
  }
  ._client-review_list {
    display: none;
  }
  ._client-review_list_responsive {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  ._client-review_wrapper {
    padding-top: 6rem;
  }
  ._client-review_title {
    font-size: 2.8rem;
  }
  ._client-review_list {
    display: none;
  }
  ._client-review_list_responsive {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  ._client-review_wrapper {
    gap: 7rem;
  }
  ._client-review_title {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  ._client-review_list {
    display: none;
  }
  ._client-review_list_responsive {
    display: block;
  }
}
._client-review-card {
  width: 50rem;
  height: 73.2rem;
  background: linear-gradient(180deg, #000000 0%, #666666 100%);
  margin: 0 auto;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}
._client-review-card_mid-section {
  left: 0;
  width: 100%;
  position: absolute;
  padding: 10px 20px 0;
  border: 0.95px solid;
  box-sizing: border-box;
  background: transparent;
  top: 30.3rem;
  border-image-source: linear-gradient(180deg, #000000 0%, #666666 100%);
}
._client-review-card_name {
  color: #FDC103;
  font-weight: 600;
  font-size: 30.46px;
  line-height: 37.13px;
}
._client-review-card_comapny-name {
  color: #FDC103;
  font-weight: 400;
  font-size: 15.23px;
  line-height: 18.57px;
}
._client-review-card_description {
  color: #FAFAFA;
  margin-top: 7.5rem;
  font-weight: 500;
  font-size: 19.04px;
  line-height: 26.65px;
}
._client-review-card_media {
  top: 0;
  left: 50%;
  border-radius: 50%;
  position: absolute;
  border: 5px solid #ffffff;
  transform: translate(-50%);
  width: 28.5rem;
  height: 28.5rem;
}
._client-review-card_media_wrapper {
  width: 100%;
  height: 14rem;
  background: #ffffff;
  position: relative;
  box-sizing: border-box;
}

@media only screen and (max-width: 1280px) {
  ._client-review-card {
    width: 100%;
    height: 67rem;
    max-width: 50rem;
  }
  ._client-review-card_mid-section {
    padding: 10px 1.8rem 0;
  }
  ._client-review-card_name {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
  ._client-review-card_comapny-name {
    color: #FDC103;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  ._client-review-card_description {
    margin-top: 5rem;
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
@media only screen and (max-width: 768px) {
  ._client-review-card {
    width: 100%;
    height: 55rem;
  }
}
@media only screen and (max-width: 768px) and (max-width: 480px) {
  ._client-review-card {
    height: 50rem;
  }
}
@media only screen and (max-width: 768px) {
  ._client-review-card_mid-section {
    top: 20rem;
    padding: 10px 1.8rem 0;
  }
  ._client-review-card_name {
    font-size: 2rem;
    line-height: 3rem;
  }
  ._client-review-card_comapny-name {
    color: #FDC103;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  ._client-review-card_description {
    margin-top: 4rem;
    font-size: inherit;
    line-height: inherit;
  }
  ._client-review-card_media {
    width: 20rem;
    height: 20rem;
  }
  ._client-review-card_media_wrapper {
    height: 10rem;
  }
}
._lets-connect {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
._lets-connect_wrapper {
  position: relative;
}
._lets-connect_title {
  font-size: 40px;
  font-weight: 500;
  line-height: 56px;
  text-align: center;
}
._lets-connect_banner {
  width: 100%;
  height: 58rem;
  object-fit: cover;
}
._lets-connect_banner_wrapper:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
}
._lets-connect_info {
  padding-top: 11rem;
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  ._lets-connect_info {
    padding-top: 5rem;
  }
}
._lets-connect_info_wrapper {
  left: 50%;
  top: 0rem;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(-50%);
  gap: 10rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  ._lets-connect_info_wrapper {
    gap: 5rem;
  }
}
._lets-connect_title {
  color: #000;
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  ._lets-connect_title {
    font-size: 35px;
  }
}
._lets-connect_button {
  margin: 0 auto;
}
._lets-connect svg {
  left: 50%;
  bottom: 10rem;
  position: absolute;
  transform: translate(-50%);
}
@media screen and (max-width: 1280px) and (min-width: 1025px) {
  ._lets-connect svg {
    position: static;
    transform: unset;
    margin: 0 auto;
    min-height: 4.5rem;
  }
}

@media only screen and (max-width: 1280px) {
  ._lets-connect_banner {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
@media only screen and (max-width: 1024px) {
  ._lets-connect_title {
    font-size: 3rem;
    line-height: 4rem;
  }
  ._lets-connect_banner {
    height: 50rem;
  }
  ._lets-connect_info {
    padding-top: 8rem;
  }
  ._lets-connect_info_wrapper {
    gap: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  ._lets-connect {
    padding-top: 6rem;
  }
  ._lets-connect ._container {
    padding: 0;
  }
  ._lets-connect_wrapper {
    padding-top: 0rem !important;
  }
  ._lets-connect_title {
    font-size: 3rem;
    line-height: 4rem;
  }
  ._lets-connect_banner {
    height: 40rem;
  }
  ._lets-connect_info {
    padding-top: 8rem;
  }
  ._lets-connect_info_wrapper {
    gap: 3rem;
  }
  ._lets-connect_title {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}
@media only screen and (max-width: 480px) {
  ._lets-connect {
    padding-bottom: 8rem;
  }
  ._lets-connect_wrapper {
    padding-top: 8rem;
  }
  ._lets-connect_banner {
    height: 30rem;
  }
  ._lets-connect_info {
    padding-top: 4rem;
  }
  ._lets-connect_info_wrapper {
    gap: 5rem;
  }
  ._lets-connect_title {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  ._lets-connect svg {
    position: static;
    transform: unset;
    margin: 0 auto;
    height: 3.5rem;
  }
}
@media screen and (max-width: 1728px) {
  ._portfolio-work-card {
    max-width: 129rem;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1440px) {
  ._portfolio-work-card {
    margin: 0 6rem;
    justify-self: center;
    max-width: 129rem;
  }
}
._portfolio {
  overflow: hidden;
  max-width: 100vw;
  margin-bottom: 18rem;
  padding-top: 12.28rem;
}
@media only screen and (max-width: 768px) {
  ._portfolio {
    padding-top: 8.48rem;
  }
}
._portfolio_wrapper {
  padding-top: 8rem;
  padding-bottom: 18rem;
  gap: 11rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1280px) {
  ._portfolio_wrapper {
    padding-bottom: 8rem;
  }
}
@media only screen and (max-width: 768px) {
  ._portfolio_wrapper {
    padding-top: 4rem;
  }
}
._portfolio_info {
  gap: 6rem;
  display: flex;
  flex-direction: column;
}
._portfolio_title {
  font-size: 45px;
  font-weight: 600;
  text-align: center;
  line-height: 54.86px;
}
._portfolio_typo {
  color: #505050;
}
._portfolio_work {
  gap: 15rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1280px) {
  ._portfolio_work {
    gap: 8rem;
  }
}
._portfolio_work_stay_tuned {
  padding-top: 9rem;
  font-family: Montserrat;
  font-size: 39px;
  font-weight: 600;
  line-height: 54.6px;
  text-align: center;
  display: block;
}
@media only screen and (max-width: 768px) {
  ._portfolio_work_stay_tuned {
    font-size: 16px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 1024px) {
  ._portfolio_wrapper {
    padding-bottom: 12rem;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 768px) {
  ._portfolio_wrapper {
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width: 1024px) {
  ._portfolio_work {
    gap: 8rem;
    display: flex;
    flex-direction: column;
  }
}
._portfolio-work-card {
  gap: 6.8rem;
  display: flex;
  border-radius: 4.5rem;
  padding: 0rem 8rem;
  padding-right: 0;
  background: #f6f6f6;
  border: 2px solid rgba(138, 138, 138, 0.3294117647);
  overflow: hidden;
}
._portfolio-work-card:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: 8rem;
}
._portfolio-work-card_info {
  width: 42.8rem;
  padding: 7.5rem 0;
  gap: 3rem;
  display: flex;
  flex-direction: column;
}
._portfolio-work-card_key {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  padding-left: 2.3rem;
  color: #4f4f4f;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  ._portfolio-work-card_key {
    font-size: 1.4rem;
    line-height: 2.2rem;
    padding-left: 1.8rem;
  }
}
._portfolio-work-card_key::before {
  left: 0;
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  position: absolute;
  background-color: black;
}
@media only screen and (max-width: 1280px) {
  ._portfolio-work-card_key::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  ._portfolio-work-card_key::before {
    width: 1rem;
    height: 1rem;
  }
}
._portfolio-work-card_keys {
  gap: 1.4rem;
  display: flex;
  flex-direction: column;
}
._portfolio-work-card_keys_1 li:before {
  background-color: #004b4c;
}
._portfolio-work-card_keys_2 li:before {
  background-color: #01276c;
}
._portfolio-work-card_keys_3 li:before {
  background-color: #735ad1;
}
._portfolio-work-card_logo {
  height: 10rem;
  align-self: flex-end;
  object-fit: contain;
}
._portfolio-work-card_logo_2 {
  max-width: 22rem;
  height: 4rem;
  object-fit: contain;
}
._portfolio-work-card_typo {
  color: #4f4f4f;
}
._portfolio-work-card_media {
  width: 100%;
  height: auto;
}
._portfolio-work-card_media_wrapper {
  align-self: center;
}

@media only screen and (max-width: 1024px) {
  ._portfolio-work-card {
    gap: 4rem;
    padding: 0rem 5rem;
    padding-right: 0;
    flex-direction: column;
  }
  ._portfolio-work-card:nth-child(even) {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0rem;
  }
  ._portfolio-work-card:nth-child(even) ._portfolio-work-card_info {
    padding-left: 5rem;
  }
  ._portfolio-work-card_info {
    width: 100%;
    padding: 5rem 0;
    padding-right: 5rem;
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }
  ._portfolio-work-card_info_media {
    display: flex;
    flex-direction: column;
  }
  ._portfolio-work-card_logo {
    width: min-content;
    height: auto;
    width: 21rem;
    align-self: center;
  }
}
@media only screen and (max-width: 768px) {
  ._portfolio {
    margin-bottom: 8rem;
  }
  ._portfolio_info {
    gap: 2rem;
  }
  ._portfolio_title {
    font-size: 2rem;
    text-align: center;
    line-height: 5rem;
  }
  ._portfolio_work {
    gap: 0;
  }
  ._portfolio-work-card {
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: unset;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  ._portfolio-work-card:not(:first-child) ._portfolio-work-card_info {
    padding-top: 0rem;
  }
  ._portfolio-work-card:nth-child(odd) {
    background-color: #F6F6F6;
  }
  ._portfolio-work-card:nth-child(odd) ._portfolio-work-card_info {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  ._portfolio-work-card:nth-child(even) ._portfolio-work-card_info {
    padding-left: 2rem;
  }
  ._portfolio-work-card_info {
    padding: 0 2rem;
  }
  ._portfolio-work-card_media_wrapper {
    display: none;
  }
  ._portfolio-work-card_media_wrapper_responsive {
    display: flex;
  }
}
._what-we-can-do_wrapper {
  padding-top: 6.5rem;
  padding-bottom: 15rem;
  gap: 9rem;
  display: flex;
  flex-direction: column;
}
._what-we-can-do_section {
  gap: 11rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1440px) {
  ._what-we-can-do_section {
    gap: 10rem;
  }
}
@media only screen and (max-width: 1280px) {
  ._what-we-can-do_section {
    gap: 5rem;
  }
}
._what-we-can-do_section_title {
  align-self: center;
  height: 100%;
  font-size: 48px;
  font-weight: 700;
  line-height: 58.51px;
  text-align: left;
  color: #FDC103;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1280px) {
  ._what-we-can-do_section_title {
    text-align: center;
  }
}
._what-we-can-do_section_title_responsive {
  display: none;
}
._what-we-can-do_title {
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  ._what-we-can-do_wrapper {
    padding-top: 2rem;
    padding-bottom: 8rem;
    gap: 5rem;
    display: flex;
    flex-direction: column;
  }
  ._what-we-can-do_info {
    gap: 3rem;
    display: flex;
    flex-direction: column;
  }
  ._what-we-can-do_section {
    gap: 2rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  ._what-we-can-do_section_title {
    height: 100%;
    font-size: 2.5rem;
    line-height: 3rem;
    color: #FDC103;
    display: flex;
    align-items: center;
    display: none;
  }
  ._what-we-can-do_section_title_responsive {
    text-align: center;
    display: block;
  }
  ._what-we-can-do_title {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 500;
    text-align: center;
  }
}
._service-card {
  background-color: #FBF5E4;
  overflow: hidden;
  max-width: 34.7rem;
  min-height: 43.4rem;
  position: relative;
  border-radius: 4rem;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}
._service-card_media {
  width: 100%;
  width: auto;
  height: 8.681rem;
}
._service-card_info {
  z-index: 1;
  position: relative;
  margin: 1.3rem 0 0rem;
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}
._service-card_info_title {
  font-size: 28.94px;
  font-weight: 700;
  line-height: 35.27px;
}
@media only screen and (max-width: 1280px) {
  ._service-card_info_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
  }
}
._service-card_info_typo {
  font-size: 15.43px;
  font-weight: 500;
  line-height: 18.81px;
  text-align: left;
}
._service-card_button {
  z-index: 1;
  bottom: 0;
  position: relative;
  font-size: 15.43px;
  font-weight: 600;
  line-height: 18.81px;
}
._service-card_button_wrapper {
  height: 100%;
  display: flex;
  align-items: end;
}
._service-card_bg {
  right: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
}

@media only screen and (max-width: 768px) {
  ._service-card {
    background-color: #FBF5E4;
    overflow: hidden;
    max-width: 34.7rem;
    position: relative;
    border-radius: 4rem;
    padding: 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 1.8rem;
    flex-direction: row;
    max-width: unset;
    padding: 1.1rem 1rem;
    cursor: pointer;
    height: fit-content;
    min-height: unset;
  }
  ._service-card_media {
    width: auto;
    height: 5rem;
    height: 3.2rem;
  }
  ._service-card_media_wrapper {
    height: 100%;
    position: relative;
  }
  ._service-card_info {
    z-index: 1;
    position: relative;
    margin: 1.5rem 0 1.5rem;
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  ._service-card_info_title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.8rem;
  }
  ._service-card_info_typo {
    display: none;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 18.81px;
  }
  ._service-card_button {
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 2.6rem;
    min-height: 2.6rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 18.81px;
    display: none;
  }
  ._service-card_bg {
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    position: absolute;
  }
}
._overview_wrapper {
  gap: 7.7rem;
  display: grid;
  padding-bottom: 8.6rem;
  grid-template-columns: 1fr 1fr;
}
._overview_info {
  padding: 4rem 0;
  gap: 3.8rem;
  display: flex;
  flex-direction: column;
}
._overview_title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-align: justify;
}
._overview_typo {
  gap: 2rem;
  display: flex;
  flex-direction: column;
}
._overview_media {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
._overview_media_wrapper {
  width: 100%;
  overflow: hidden;
}
._overview_media_wrapper_responsive {
  display: none;
}

@media only screen and (max-width: 768px) {
  ._overview_wrapper {
    gap: 0rem;
    display: grid;
    padding-top: 2rem;
    padding-bottom: 6.5rem;
    grid-template-columns: 1fr;
  }
  ._overview_info {
    padding: 4rem 0 0;
    gap: 2.5rem;
    display: flex;
    flex-direction: column;
  }
  ._overview_title {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-align: justify;
  }
  ._overview_title img {
    opacity: 0.5;
  }
  ._overview_typo {
    gap: 1.2rem;
    display: flex;
    flex-direction: column;
  }
  ._overview_media {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  ._overview_media_wrapper {
    width: fit-content;
    overflow: hidden;
    display: none;
  }
  ._overview_media_wrapper_responsive {
    display: flex;
  }
}
._service-overview {
  background: #FFFDF6;
  max-width: 100vw;
  overflow: hidden;
}
._service-overview_wrapper {
  padding-top: 7rem;
  padding-bottom: 5rem;
}
._service-overview_wrapper:not(._service-overview_wrapper_block) {
  gap: 10rem;
  display: grid;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
  grid-template-columns: 60% 40%;
}
@media only screen and (max-width: 1440px) {
  ._service-overview_wrapper:not(._service-overview_wrapper_block) {
    gap: 0;
  }
}
._service-overview_wrapper_ux ._service-overview_media {
  position: relative;
  height: 100%;
}
._service-overview_wrapper_ux ._service-overview_media img {
  position: absolute;
  bottom: -10rem;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  ._service-overview_wrapper_ux ._service-overview_media img {
    bottom: -5rem;
    width: 40%;
    right: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  ._service-overview_wrapper_ux ._service-overview_media img {
    width: 90%;
    margin: 0 auto;
    position: static;
  }
}
._service-overview_wrapper_ux:not(._service-overview_wrapper_block) {
  gap: 0;
}
@media only screen and (max-width: 1440px) {
  ._service-overview_wrapper_ux:not(._service-overview_wrapper_block) {
    gap: 0;
  }
}
._service-overview_info {
  gap: 5.8rem;
  display: flex;
  flex-direction: column;
}
._service-overview_info:not(._service-overview_info_block) {
  padding: 0rem 5.2rem 0rem 0;
}
._service-overview_desc {
  gap: 2rem;
  display: flex;
  flex-direction: column;
}
._service-overview_key span {
  font-weight: 600;
  padding-right: 0.5rem;
}
._service-overview_keys {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  ._service-overview_key_ux:nth-child(3) {
    width: 50%;
  }
  ._service-overview_key_ux:nth-child(4) {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  ._service-overview_key_ux:nth-child(3) {
    width: 100%;
  }
  ._service-overview_key_ux:nth-child(4) {
    width: 100%;
  }
}
._service-overview_proccess {
  gap: 6rem;
  display: flex;
}
._service-overview_proccess_responsive {
  display: none;
}
._service-overview_proccess_item {
  gap: 1.2rem;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 3rem;
  font-weight: 500;
  line-height: 3.6rem;
}
@media only screen and (max-width: 1440px) {
  ._service-overview_proccess_item {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 3rem;
  }
}
._service-overview_proccess_item img {
  width: 3.49rem;
  height: 3.5rem;
}
._service-overview_media {
  gap: 1rem;
  display: flex;
}
._service-overview_app-development {
  background: #f6f6f6;
  padding-bottom: 11rem;
}
._service-overview_app-development_tech {
  width: 100%;
  margin: 0 auto;
  max-height: 8rem;
}
._service-overview_app-development_techs {
  padding: 3rem 0;
  background: #fff;
}
._service-overview_app-development_techs li {
  display: flex;
  align-items: center;
}
._service-overview_app-development ._service-overview_wrapper {
  gap: 0rem;
  padding-bottom: 11rem;
  grid-template-columns: 55% 45%;
}
._service-overview_app-development ._service-overview_media {
  top: 10rem;
  width: 100%;
  max-width: 100%;
  position: relative;
  justify-content: end;
  display: flex;
}
._service-overview_app-development ._service-overview_media img {
  max-width: 16rem;
}
._service-overview_app-development ._service-overview_media img:nth-child(2) {
  bottom: 10rem;
  position: relative;
}
._service-overview_app-development ._service-overview_media_item {
  width: 100%;
}
._service-overview_web-development {
  padding: 0;
  background: #FBF5E4;
  padding-bottom: 7rem;
}
._service-overview_web-development_techs {
  background: #fff;
}
._service-overview_web-development ._service-overview_wrapper {
  padding-bottom: 2rem;
}
._service-overview_web-development ._service-overview_wrapper_2 {
  gap: 0rem;
  padding-top: 0;
  padding-bottom: 6rem;
  grid-template-columns: 52% 48%;
}
._service-overview_web-development ._service-overview_info_2 {
  padding: 0;
}
._service-overview_web-development ._service-overview_media img {
  width: 100%;
}
._service-overview_staff-augmentation {
  padding: 0;
  background: #FFFFFF;
}
._service-overview_staff-augmentation ._service-overview_wrapper_3 {
  gap: 2rem;
  padding-top: 7rem;
  padding-bottom: 7rem;
  grid-template-columns: 52% 48%;
}
._service-overview_staff-augmentation ._service-overview_info_3 {
  padding: 0;
}
._service-overview_staff-augmentation ._service-overview_media {
  top: 10%;
  position: relative;
}
._service-overview_staff-augmentation ._service-overview_media img {
  width: 100%;
}
._service-overview_ai {
  background: #FFFFFF;
}
._service-overview_ai ._service-overview_wrapper {
  gap: 0rem;
  padding-top: 8rem;
  grid-template-columns: 70% 26%;
}
._service-overview_ai ._service-overview_wrapper_ai {
  gap: 6rem;
  display: flex;
  flex-direction: column;
}
._service-overview_ai ._service-overview_desc {
  height: 100%;
  display: grid;
}
._service-overview_ai ._service-overview_desc_footer {
  height: 100%;
  display: flex;
  align-items: end;
}
._service-overview_ai ._service-overview_info {
  padding: 0;
}
._service-overview_ai ._service-overview_info_desc {
  gap: 3.5rem;
  display: grid;
  grid-template-columns: 37rem auto;
}
._service-overview_ai ._service-overview_proccess {
  gap: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 1440px) {
  ._service-overview_ai ._service-overview_proccess {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
._service-overview_ai ._service-overview_proccess_item {
  font-weight: 600;
  font-size: 1.45rem;
  display: list-item;
  list-style-type: disc;
  list-style-position: inside;
}
._service-overview_ai ._service-overview_proccess_responsive {
  display: none;
}
._service-overview_ai ._service-overview_media {
  top: 0rem;
  position: relative;
}
._service-overview_ai ._service-overview_media img {
  max-width: 100%;
}
._service-overview_ai ._service-overview_media img:nth-child(2) {
  bottom: 0rem;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  ._service-overview {
    background: #FFFDF6;
  }
  ._service-overview_wrapper {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
  ._service-overview_wrapper:not(._service-overview_wrapper_block) {
    gap: 3rem;
    display: grid;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 5rem;
    grid-template-columns: 1fr;
  }
  ._service-overview_info {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }
  ._service-overview_info:not(._service-overview_info_block) {
    padding: 0rem 0rem 0rem 0;
  }
  ._service-overview_desc {
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }
  ._service-overview_proccess {
    display: none;
  }
  ._service-overview_proccess_responsive {
    gap: 2rem;
  }
  ._service-overview_proccess_item {
    gap: 1.2rem;
    display: flex;
    align-items: center;
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6rem;
  }
  ._service-overview_proccess_item img {
    width: 1.6rem;
    height: 1.6rem;
  }
  ._service-overview_media {
    gap: 1rem;
    display: grid;
    grid-template-columns: 1fr;
  }
  ._service-overview_media_banner {
    width: 100%;
    height: auto;
  }
  ._service-overview_app-development {
    background: #f6f6f6;
    padding-bottom: 6.5rem;
  }
  ._service-overview_app-development_tech {
    margin: 0 auto;
    max-height: 6rem;
  }
  ._service-overview_app-development_techs {
    padding: 2rem 0;
    background: #fff;
  }
  ._service-overview_app-development ._service-overview_wrapper {
    gap: 0rem;
    padding-bottom: 15rem;
  }
  ._service-overview_app-development ._service-overview_media {
    top: 10rem;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: fit-content;
    margin: 0 auto;
    gap: 9vw;
  }
  ._service-overview_app-development ._service-overview_media img {
    width: 100%;
    height: auto;
  }
  ._service-overview_app-development ._service-overview_media img:nth-child(2) {
    bottom: 5rem;
    position: relative;
  }
  ._service-overview_web-development {
    padding: 0;
    background: #FBF5E4;
    padding-bottom: 5rem;
  }
  ._service-overview_web-development_techs {
    background: #fff;
  }
  ._service-overview_web-development ._service-overview_wrapper_2 {
    gap: 3rem;
    padding-top: 0rem;
    padding-bottom: 3rem;
    grid-template-columns: 1fr;
  }
  ._service-overview_web-development ._service-overview_info_2 {
    padding: 0;
  }
  ._service-overview_web-development ._service-overview_media {
    grid-template-columns: 1fr;
  }
  ._service-overview_web-development ._service-overview_media img {
    width: 100%;
  }
  ._service-overview_staff-augmentation {
    padding: 0;
    background: #FFFFFF;
  }
  ._service-overview_staff-augmentation ._service-overview_wrapper_3 {
    gap: 3rem;
    padding-top: 0rem;
    padding-bottom: 6rem;
    grid-template-columns: 1fr;
  }
  ._service-overview_staff-augmentation ._service-overview_info_3 {
    padding: 0;
  }
  ._service-overview_staff-augmentation ._service-overview_media {
    top: 0;
    position: relative;
  }
  ._service-overview_staff-augmentation ._service-overview_media img {
    width: auto;
  }
  ._service-overview_staff-augmentation ._service-overview_media_banner {
    width: 100% !important;
    height: auto;
  }
  ._service-overview_ai {
    background: #FFFFFF;
  }
  ._service-overview_ai ._service-overview_wrapper {
    gap: 0rem;
    padding-top: 4rem;
    grid-template-columns: 1fr;
  }
  ._service-overview_ai ._service-overview_wrapper_ai {
    gap: 4rem;
    display: flex;
    flex-direction: column;
  }
  ._service-overview_ai ._service-overview_info {
    padding: 0;
  }
  ._service-overview_ai ._service-overview_info_desc {
    gap: 3.5rem;
    display: grid;
    grid-template-columns: 1fr;
  }
  ._service-overview_ai ._service-overview_proccess {
    gap: 1rem;
    flex-direction: column;
  }
  ._service-overview_ai ._service-overview_proccess_item {
    font-weight: 700;
    font-size: 1.2rem;
    display: list-item;
    line-height: 1.6rem;
    list-style-type: disc;
    list-style-position: inside;
  }
  ._service-overview_ai ._service-overview_media {
    gap: 5rem;
    top: 0rem;
    position: relative;
  }
  ._service-overview_ai ._service-overview_media img:nth-child(2) {
    bottom: 0rem;
    position: relative;
  }
}
._job-form {
  gap: 10rem;
  display: flex;
  flex-direction: column;
}
._job-form_overview {
  background: #FBF5E4;
  padding: 6.5rem 8rem;
  gap: 6.5rem;
  display: flex;
  flex-direction: column;
}
._job-form_container {
  width: 100%;
  margin: 0 auto;
  max-width: 144rem;
  margin-bottom: 13rem;
}
@media screen and (max-width: 1728px) {
  ._job-form_container {
    max-width: 129rem;
  }
}
@media only screen and (max-width: 1440px) {
  ._job-form_container {
    padding: 4.5rem 6rem;
    max-width: 129rem;
    margin-bottom: 12rem;
  }
}
@media only screen and (max-width: 1024px) {
  ._job-form_container {
    padding: 2rem;
    margin-bottom: 8rem;
  }
}
@media only screen and (max-width: 1024px) {
  ._job-form_container {
    margin-bottom: 6rem;
  }
}
._job-form_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
._job-form_input {
  width: 100%;
  padding: 1.7rem 4.5rem;
  border-radius: 2.6rem;
  border: 3px solid #B0B0B0;
  font-size: 20px;
  font-weight: 400;
  color: #6B6B6B;
  line-height: 24px;
}
._job-form_input:focus {
  outline: 0;
}
._job-form_input_group {
  gap: 3.8rem;
  display: flex;
  flex-direction: column;
}
._job-form_input_group_row {
  gap: 7.2rem;
  display: flex;
}
._job-form_input_group_item {
  width: 100%;
}
._job-form_input_group_items {
  gap: 7rem;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 768px) {
  ._job-form {
    gap: 3rem;
    display: flex;
    flex-direction: column;
  }
  ._job-form_overview {
    gap: 4.5rem;
    display: flex;
    flex-direction: column;
  }
  ._job-form_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  ._job-form_input {
    padding: 0.8rem 1rem;
    border: 1px solid #B0B0B0;
    font-size: 10px;
    line-height: 16px;
  }
  ._job-form_input_group {
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }
  ._job-form_input_group_row {
    gap: 1.5rem;
  }
  ._job-form_input_group_items {
    gap: 1.2rem;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 415px) {
  ._job-form {
    gap: 3rem;
    display: flex;
    flex-direction: column;
  }
  ._job-form_overview {
    gap: 4.5rem;
    display: flex;
    flex-direction: column;
  }
  ._job-form_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  ._job-form_info_button {
    font-size: 1.2rem;
    line-height: 2rem;
    padding: 1.2rem 2rem;
  }
  ._job-form_title {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  ._job-form_input {
    padding: 0.8rem 1rem;
    border: 1px solid #B0B0B0;
    font-size: 10px;
    line-height: 16px;
  }
  ._job-form_input_group {
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }
  ._job-form_input_group_row {
    gap: 1.5rem;
  }
  ._job-form_input_group_items {
    gap: 1.2rem;
    display: flex;
    flex-direction: column;
  }
  ._job-form_button {
    font-size: 1.2rem;
    line-height: 2rem;
    padding: 1.2rem 2rem;
  }
}
._join-us_way {
  background: #FBF5E4;
  padding: 9.2rem 0;
  gap: 9.3rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1280px) {
  ._join-us_way {
    padding: 6.2rem 0;
  }
}
._join-us_way_proccess {
  display: flex;
  position: relative;
  flex-direction: column;
}
@media only screen and (max-width: 480px) {
  ._join-us_way_proccess {
    padding: 0 0 0 2rem;
  }
}
._join-us_way_wrapper {
  padding-bottom: 20rem;
  gap: 4.5rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  ._join-us_way_wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  ._join-us_way_wrapper {
    padding-bottom: 13rem;
  }
}
._join-us_way_logo {
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  position: absolute;
  inset: 0% auto 0% -28px;
  z-index: 2;
}
._join-us_way_logo_right {
  inset: 0% -33px 0% auto;
}
@media only screen and (max-width: 480px) {
  ._join-us_way_logo_right {
    inset: 0% auto 0% 0%;
  }
}
@media only screen and (max-width: 480px) {
  ._join-us_way_logo {
    width: 3.2rem;
    height: 3.2rem;
    inset: 0% auto 0% 0%;
  }
}
._join-us_way_info {
  display: flex;
  align-items: center;
  justify-content: center;
}
._join-us_way_step {
  z-index: 2;
  width: 50%;
  display: flex;
  padding-bottom: 0;
  padding-left: 5rem;
  position: relative;
  align-self: flex-end;
  justify-content: start;
}
._join-us_way_step:not(:nth-child(4)) {
  margin-bottom: 18rem;
}
._join-us_way_step:nth-child(4) ._join-us_way_logo {
  inset: 10% -33px 0% auto;
}
@media only screen and (max-width: 480px) {
  ._join-us_way_step:nth-child(4) ._join-us_way_logo {
    inset: 42% auto 0% 0%;
  }
}
._join-us_way_step:nth-child(1) ._join-us_way_logo {
  inset: 10% auto 0% -28px;
}
@media only screen and (max-width: 480px) {
  ._join-us_way_step:nth-child(1) ._join-us_way_logo {
    inset: 0% auto 0% 0%;
  }
}
@media only screen and (max-width: 480px) {
  ._join-us_way_step {
    align-self: unset;
    width: 100%;
  }
}
._join-us_way_step_left {
  justify-content: end;
  align-self: flex-start;
  padding-left: 179px;
  padding-right: 5rem;
}
@media only screen and (max-width: 1280px) {
  ._join-us_way_step_left {
    padding-left: 10rem;
  }
}
@media only screen and (max-width: 1024px) {
  ._join-us_way_step_left {
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  ._join-us_way_step_left {
    padding-right: 5rem;
  }
}
@media only screen and (max-width: 480px) {
  ._join-us_way_step_left {
    padding-left: 5rem;
    padding-right: 2rem;
    justify-content: unset;
  }
}
._join-us_way_step_divider {
  z-index: 1;
  transform: translateY(-50%);
  top: 50%;
  width: 1px;
  height: 95%;
  position: absolute;
  border: 3px dashed black;
  left: 50%;
}
@media only screen and (max-width: 480px) {
  ._join-us_way_step_divider {
    left: 3.5rem;
    border: 2px dashed black;
  }
}
._join-us_way_step a {
  height: fit-content;
  width: fit-content;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}
._join-us_way_step_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24.38px;
}
@media only screen and (max-width: 768px) {
  ._join-us_way_step_title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 24.38px;
  }
}
@media only screen and (max-width: 480px) {
  ._join-us_way_step_title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2.2rem;
  }
}
._join-us_way_step_typo {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.5px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (max-width: 768px) {
  ._join-us_way_step_typo {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 18.38px;
  }
}
._join-us_way_step_info {
  gap: 0.8rem;
  display: flex;
  flex-direction: column;
  width: fit-content;
}
@media only screen and (max-width: 480px) {
  ._join-us_way_step_info {
    gap: 0.2rem;
    display: flex;
    flex-direction: column;
  }
}
._join-us_way_title {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  line-height: 54.86px;
  gap: 2.5rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  ._join-us_way_title {
    font-weight: 700;
    font-size: 4rem;
    line-height: 6rem;
  }
}
@media only screen and (max-width: 768px) {
  ._join-us_way_title {
    gap: 2rem;
    font-size: 3rem;
    line-height: 3.8rem;
  }
  ._join-us_way_title svg {
    height: 3rem;
  }
}
@media only screen and (max-width: 480px) {
  ._join-us_way_title {
    gap: 1.8rem;
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
  ._join-us_way_title svg {
    height: 3rem;
  }
}
._join-us_way_footer_text {
  font-size: 32px;
  font-weight: 600;
  line-height: 39.01px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  ._join-us_way_footer_text {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  ._join-us_way_footer_text {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}

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